:root{
  --blue:#6c87a1;
  --yellow:#ffc500;
  --soft:#f3f5f9;
  --gray:#62615f;
  --black:#050505;
  --white:#fff;
  --cream:#f7f2ee;
  --line:#e7dfda;
  --shadow:0 24px 70px rgba(5,5,5,.16);
  --radius:28px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  background:var(--soft);
  color:var(--black);
  line-height:1.55;
}

.wrap{
  width:min(1120px,92vw);
  margin:0 auto;
}

.site-nav{
  position:sticky;
  top:0;
  z-index:99;
  background:rgba(243,245,249,.9);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(98,97,95,.12);
}

.nav-inner{
  height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--black);
  font-weight:900;
}

.brand img{
  width:52px;
  height:52px;
  object-fit:contain;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:22px;
  font-size:15px;
}

.nav-links a{
  color:var(--gray);
  text-decoration:none;
  font-weight:700;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  border-radius:999px;
  padding:15px 24px;
  font-weight:900;
  border:2px solid var(--black);
  box-shadow:6px 6px 0 var(--black);
  transition:.18s ease;
}

.btn:hover{
  transform:translate(-2px,-2px);
  box-shadow:8px 8px 0 var(--black);
}

.btn-yellow{
  background:var(--yellow);
  color:var(--black);
}

.btn-dark{
  background:var(--black);
  color:var(--white);
  box-shadow:6px 6px 0 var(--yellow);
}

.btn-soft{
  background:var(--white);
  color:var(--black);
}

.hero{
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,var(--blue),#819ab2);
  padding:78px 0 88px;
}

.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 75% 18%,rgba(255,197,0,.35),transparent 30%),
    radial-gradient(circle at 10% 75%,rgba(255,255,255,.22),transparent 36%);
}

.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:56px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.36);
  color:var(--white);
  border-radius:999px;
  padding:8px 14px;
  font-weight:900;
  letter-spacing:.02em;
}

.hero h1{
  font-size:clamp(42px,6vw,78px);
  line-height:1.03;
  margin:22px 0 28px;
  letter-spacing:-.06em;
}

.hero h1 span{
  display:inline-block;
  background:var(--yellow);
  padding:.08em .22em .14em;
  border:3px solid var(--black);
  border-radius:22px;
  box-shadow:8px 8px 0 var(--black);
  white-space:nowrap;
  line-height:1.02;
}

.hero p{
  font-size:20px;
  color:rgba(255,255,255,.95);
  max-width:650px;
  margin:34px 0 26px;
}

.hero-actions{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
}

.hero-note{
  font-weight:900;
  color:var(--white);
  opacity:.95;
}

.hero-art{
  position:relative;
  min-height:520px;
}

.shot{
  position:absolute;
  border-radius:18px;
  box-shadow:var(--shadow);
  border:4px solid rgba(255,255,255,.85);
  background:#fff;
  object-fit:cover;
}

.shot-layout{
  width:88%;
  right:5%;
  top:12%;
  transform:rotate(-5deg);
  opacity:.9;
}

.shot-pdf{
  width:78%;
  left:-2%;
  bottom:10%;
  transform:rotate(3deg);
  z-index:2;
}

.logo-float{
  position:absolute;
  right:0;
  bottom:0;
  width:36%;
  z-index:3;
  border-radius:24px;
  box-shadow:var(--shadow);
}

section{
  padding:92px 0;
}

.section-head{
  text-align:center;
  max-width:820px;
  margin:0 auto 48px;
}

.kicker{
  color:var(--blue);
  font-weight:1000;
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:.16em;
}

.section-head h2,
.legal h1{
  font-size:clamp(34px,4vw,56px);
  line-height:1;
  margin:10px 0 14px;
  letter-spacing:-.045em;
}

.section-head p{
  font-size:19px;
  color:var(--gray);
}

.problem{
  background:var(--white);
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.card{
  background:var(--soft);
  border:1px solid rgba(98,97,95,.14);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:0 10px 35px rgba(5,5,5,.06);
}

.card h3{
  font-size:24px;
  line-height:1.1;
  margin:0 0 10px;
}

.card p{
  color:var(--gray);
  margin:0;
}

.workflow{
  background:var(--soft);
}

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.step{
  position:relative;
  background:var(--white);
  border:1px solid rgba(98,97,95,.16);
  border-radius:24px;
  padding:24px;
  min-height:210px;
}

.num{
  width:42px;
  height:42px;
  background:var(--yellow);
  border:2px solid var(--black);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:1000;
  margin-bottom:20px;
}

.step h3{
  margin:0 0 10px;
  font-size:21px;
}

.step p{
  margin:0;
  color:var(--gray);
  font-size:15px;
}

.included{
  background:var(--white);
}

.included-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:26px;
  align-items:stretch;
}

.big-card{
  background:var(--blue);
  color:var(--white);
  border-radius:var(--radius);
  padding:42px;
  box-shadow:var(--shadow);
}

.big-card h2{
  font-size:44px;
  line-height:1;
  margin:0 0 18px;
  letter-spacing:-.04em;
}

.checks{
  display:grid;
  gap:14px;
  margin:26px 0 0;
}

.check{
  display:flex;
  gap:12px;
  align-items:flex-start;
  font-weight:800;
}

.check b{
  background:var(--yellow);
  color:var(--black);
  border-radius:50%;
  width:26px;
  height:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.academy{
  background:var(--soft);
}

.module-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.module{
  background:#fff;
  border-radius:24px;
  border:1px solid rgba(98,97,95,.13);
  padding:22px;
}

.module strong{
  display:inline-flex;
  width:34px;
  height:34px;
  align-items:center;
  justify-content:center;
  background:var(--blue);
  color:#fff;
  border-radius:50%;
  margin-bottom:16px;
}

.module h3{
  font-size:19px;
  line-height:1.15;
  margin:0 0 8px;
}

.module p{
  font-size:15px;
  color:var(--gray);
  margin:0;
}

.pricing{
  background:linear-gradient(180deg,var(--white),var(--soft));
}

.price-card{
  max-width:740px;
  margin:0 auto;
  background:var(--black);
  color:var(--white);
  border-radius:36px;
  padding:44px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}

.price-card:before{
  content:"Launch Price";
  position:absolute;
  right:-44px;
  top:30px;
  background:var(--yellow);
  color:var(--black);
  font-weight:1000;
  padding:12px 60px;
  transform:rotate(18deg);
  border:2px solid var(--black);
}

.price{
  font-size:82px;
  font-weight:1000;
  letter-spacing:-.07em;
  line-height:1;
  margin:8px 0;
}

.price small{
  font-size:18px;
  color:rgba(255,255,255,.72);
  letter-spacing:0;
}

.price-card p{
  color:rgba(255,255,255,.8);
}

.price-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:26px 0;
}

.price-list div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;
  padding:13px 15px;
  font-weight:800;
}

.faq{
  background:var(--white);
}

details{
  background:var(--soft);
  border-radius:18px;
  padding:18px 22px;
  margin:14px 0;
  border:1px solid rgba(98,97,95,.14);
}

summary{
  font-weight:900;
  cursor:pointer;
  font-size:18px;
}

details p{
  color:var(--gray);
  margin:12px 0 0;
}

.final-cta{
  background:var(--blue);
  color:#fff;
  text-align:center;
}

.final-cta h2{
  font-size:clamp(36px,5vw,64px);
  line-height:1;
  margin:0 0 16px;
  letter-spacing:-.05em;
}

.final-cta p{
  font-size:20px;
  max-width:760px;
  margin:0 auto 28px;
  color:rgba(255,255,255,.9);
}

/* Footer */

footer{
  background:#111;
  color:#fff;
  padding:40px 0;
  border-top:4px solid var(--yellow);
  font-size:16px;
}

.footer-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:18px;
}

.footer-inner div:last-child{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:22px;
}

footer a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:color .2s ease;
}

footer a:hover{
  color:var(--yellow);
}

.footer-note{
  color:#bfc8d3;
  font-size:14px;
  margin:0;
  max-width:760px;
}

.legal{
  background:var(--white);
  padding:80px 0;
}

.legal .wrap{
  max-width:900px;
}

.legal h2{
  font-size:30px;
  margin-top:38px;
}

.legal p,
.legal li{
  color:var(--gray);
}

.contact-box{
  background:var(--soft);
  border-radius:26px;
  padding:34px;
  border:1px solid rgba(98,97,95,.14);
}

.contact-box a{
  color:#476781;
  font-weight:900;
}

@media(max-width:900px){
  .nav-links a:not(.btn){
    display:none;
  }

  .hero-grid,
  .included-grid{
    grid-template-columns:1fr;
  }

  .hero-art{
    min-height:410px;
    order:-1;
  }

  .cards,
  .steps,
  .module-grid{
    grid-template-columns:1fr 1fr;
  }

  .price-list{
    grid-template-columns:1fr;
  }

  .hero p{
    font-size:18px;
    margin-top:18px;
  }
}

@media(max-width:620px){
  .cards,
  .steps,
  .module-grid{
    grid-template-columns:1fr;
  }

  .hero{
    padding:44px 0 64px;
  }

  .hero-art{
    min-height:310px;
  }

  .shot-layout{
    width:92%;
    right:0;
    top:10%;
  }

  .shot-pdf{
    width:86%;
    left:0;
    bottom:10%;
  }

  .logo-float{
    width:42%;
  }

  .footer-inner div:last-child{
    flex-direction:column;
    gap:10px;
  }

  .price-card{
    padding:34px 24px;
  }

  .price{
    font-size:66px;
  }
}

/* Updated hero headline for PDF-Linkr Creator Academy */

.hero-title{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
  margin:22px 0 28px;
  line-height:.9;
  font-size:clamp(48px,7vw,88px);
  font-weight:1000;
  letter-spacing:-.06em;
  max-width:760px;
}

.hero-title span{
  display:block;
}

.hero-title .hero-highlight{
  display:inline-block;
  width:max-content;
  max-width:100%;
  margin-top:18px;
  padding:22px 34px 26px;
  background:var(--yellow);
  color:var(--black);
  border:4px solid var(--black);
  border-radius:24px;
  box-shadow:10px 10px 0 var(--black);
  font-size:clamp(30px,4.2vw,56px);
  line-height:1.02;
  letter-spacing:-.055em;
}

.hero h1.hero-title span{
  background:transparent;
  padding:0;
  border:0;
  border-radius:0;
  box-shadow:none;
  white-space:normal;
  line-height:.9;
}

.hero h1.hero-title .hero-highlight{
  background:var(--yellow);
  padding:22px 34px 26px;
  border:4px solid var(--black);
  border-radius:24px;
  box-shadow:10px 10px 0 var(--black);
  line-height:1.02;
}

@media(max-width:620px){
  .hero-title{
    font-size:clamp(42px,13vw,64px);
    gap:8px;
  }

  .hero-title .hero-highlight,
  .hero h1.hero-title .hero-highlight{
    width:100%;
    font-size:clamp(26px,8vw,40px);
    padding:18px 22px 22px;
    box-shadow:7px 7px 0 var(--black);
  }
}
