
:root{
  --ink:#0d0d0d;
  --paper:#f4f0e6;
  --paper-2:#e8e1d4;
  --white:#fffdf8;
  --acid:#eaff45;
  --pink:#ff5b8a;
  --orange:#ff6b35;
  --blue:#6f86ff;
  --mint:#bff3d0;
  --line:rgba(13,13,13,.18);
  --softline:rgba(13,13,13,.09);
  --max:1380px;
  --r:30px;
  --shadow:0 28px 70px rgba(13,13,13,.12);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(circle at 92% 2%, rgba(255,91,138,.07), transparent 20%),
    var(--paper);
  font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;
  line-height:1.42;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}
img{display:block;max-width:100%}
::selection{background:var(--acid);color:var(--ink)}
.wrap{width:min(calc(100% - 52px),var(--max));margin-inline:auto}
.narrow{width:min(calc(100% - 52px),960px);margin-inline:auto}
.mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace}
.muted{color:rgba(13,13,13,.6)}
.kicker,.eyebrow,.micro{
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.15em;
}
.eyebrow{display:flex;align-items:center;gap:10px}
.eyebrow::before{
  content:"";
  width:9px;height:9px;border-radius:50%;
  background:var(--pink);flex:none;
}
h1,h2,h3,h4{margin:0;letter-spacing:-.065em}
h1{
  font-size:clamp(72px,11.2vw,170px);
  line-height:.79;
  font-weight:800;
}
h2{
  font-size:clamp(48px,6.5vw,94px);
  line-height:.88;
  font-weight:800;
}
h3{
  font-size:clamp(30px,3vw,46px);
  line-height:.95;
  font-weight:800;
}
h4{
  font-size:24px;
  line-height:1;
  font-weight:800;
}
p{margin:0}
.lead{
  font-size:clamp(24px,2.55vw,38px);
  line-height:1.08;
  letter-spacing:-.038em;
}
.body-lg{
  font-size:clamp(28px,3.1vw,50px);
  line-height:1.03;
  letter-spacing:-.05em;
}
.body{font-size:18px;line-height:1.52}
.small{font-size:12px}
.tag{
  display:inline-flex;align-items:center;
  min-height:31px;padding:0 12px;
  border:1px solid currentColor;
  border-radius:999px;
  font-size:11px;font-weight:800;
  text-transform:uppercase;letter-spacing:.08em;
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  min-height:50px;padding:0 18px;
  border-radius:999px;border:1px solid var(--ink);
  font-size:13px;font-weight:800;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-2px);box-shadow:0 10px 20px rgba(13,13,13,.08)}
.btn.dark{background:var(--ink);color:var(--paper)}
.btn.acid{background:var(--acid);border-color:var(--acid)}
.btn.pink{background:var(--pink);border-color:var(--pink)}
.actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}

/* Header */
.top{
  position:sticky;top:0;z-index:50;
  background:rgba(244,240,230,.92);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(16px);
}
.topin{
  min-height:78px;
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:30px;align-items:center;
}
.brand{
  display:flex;align-items:center;gap:10px;
  font-size:25px;font-weight:800;letter-spacing:-.058em;
}
.brandmark{
  width:30px;height:30px;background:var(--pink);
  border-radius:50% 50% 50% 8px;
  transform:rotate(-9deg);
}
nav{display:flex;gap:26px;font-size:13px}
nav a{position:relative}
nav a::after{
  content:"";position:absolute;left:0;bottom:-5px;width:0;height:2px;
  background:var(--pink);transition:.2s ease;
}
nav a:hover::after{width:100%}
.navcta{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:40px;padding:0 16px;border-radius:999px;
  background:var(--ink);color:var(--paper);
  font-size:12px;font-weight:800;
}
.navcta:hover{background:var(--pink);color:var(--ink)}

/* Hero */
.hero{padding:72px 0 36px;border-bottom:1px solid var(--line);overflow:hidden}
.hero-grid{
  display:grid;grid-template-columns:1.5fr .5fr;
  gap:44px;align-items:end;
}
.hero-title{max-width:1200px}
.highlight{
  display:inline-block;
  background:var(--acid);
  padding:0 .08em .055em;
  border-radius:.15em;
  transform:rotate(-1.2deg);
}
.hero-side{padding-bottom:10px}
.hero-side .lead{font-size:clamp(22px,2vw,31px)}
.hero-art{
  margin-top:30px;
  display:grid;grid-template-columns:1.15fr .85fr;
  gap:14px;
}
.art-main{
  min-height:560px;padding:32px;border-radius:var(--r);
  background:var(--pink);
  position:relative;overflow:hidden;
}
.art-main::after{
  content:"";position:absolute;
  width:430px;height:430px;border:78px solid var(--acid);border-radius:50%;
  right:-155px;bottom:-210px;
}
.art-main .spec{
  position:absolute;left:32px;bottom:32px;z-index:2;
  max-width:760px;
  font-size:clamp(44px,5.6vw,80px);
  line-height:.89;letter-spacing:-.068em;font-weight:800;
}
.art-side{display:grid;grid-template-rows:1fr 1fr;gap:14px}
.art-card{
  min-height:270px;padding:27px;border-radius:var(--r);
  display:flex;flex-direction:column;justify-content:space-between;
}
.art-card.acid{background:var(--acid)}
.art-card.blue{background:var(--blue);color:white}
.art-card .big{
  font-size:clamp(62px,7vw,108px);
  line-height:.7;letter-spacing:-.09em;font-weight:800;
}
.hero-ticker{
  margin-top:56px;border-top:1px solid var(--ink);border-bottom:1px solid var(--ink);
  overflow:hidden;
}
.ticker-track{display:flex;width:max-content;animation:ticker 26s linear infinite}
.ticker-item{
  padding:14px 24px 13px 0;
  font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.12em;
}
.ticker-item::after{content:"●";color:var(--pink);margin-left:24px}
@keyframes ticker{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* Generic sections */
.section{padding:114px 0;border-bottom:1px solid var(--line)}
.section-head{
  display:grid;grid-template-columns:.56fr 1.44fr;
  gap:62px;align-items:start;margin-bottom:60px;
}
.section-head .intro{
  margin-top:24px;max-width:820px;
  font-size:20px;line-height:1.46;
}
.reveal{opacity:0;transform:translateY(20px);transition:.65s ease}
.reveal.visible{opacity:1;transform:none}

/* Problem */
.problem{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.problem-left{
  min-height:560px;padding:34px;border-radius:var(--r);
  background:var(--ink);color:var(--paper);
  display:flex;flex-direction:column;justify-content:space-between;
}
.zero{
  font-size:clamp(185px,22vw,350px);
  line-height:.62;letter-spacing:-.1em;font-weight:800;color:var(--acid);
}
.problem-left p{max-width:540px}
.problem-right{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.reason{
  min-height:272px;padding:24px;border-radius:var(--r);
  border:1px solid var(--line);background:var(--white);
  display:flex;flex-direction:column;justify-content:space-between;
}
.reason:nth-child(1){background:var(--acid)}
.reason:nth-child(4){background:var(--mint)}
.reason .n{
  width:35px;height:35px;border:1px solid var(--ink);border-radius:50%;
  display:grid;place-items:center;font-size:12px;font-weight:800;
}

/* Products */
.products{display:grid;grid-template-columns:repeat(12,1fr);gap:16px}
.product{
  grid-column:span 4;
  min-height:580px;padding:29px;border-radius:var(--r);
  display:flex;flex-direction:column;
  position:relative;overflow:hidden;transition:.25s ease;
}
.product:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.product.one{background:var(--acid)}
.product.two{background:var(--white);border:1px solid var(--line)}
.product.three{background:var(--pink)}
.product .label{font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.12em}
.product h3{margin-top:76px;max-width:330px}
.product p{margin-top:18px;max-width:340px}
.product ul{margin:22px 0 0;padding-left:18px}
.product .bottom{margin-top:auto;padding-top:24px;border-top:1px solid rgba(13,13,13,.4)}
.product .price{font-size:29px;font-weight:800;letter-spacing:-.05em}
.product .more{display:block;margin-top:8px;font-size:12px;font-weight:800}

/* Compare */
.compare{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.compare-card{
  min-height:520px;padding:30px;border-radius:var(--r);
  position:relative;overflow:hidden;
}
.compare-card.kit{background:#ded8ce}
.compare-card.custom{background:var(--blue);color:white}
.compare-card .title{
  margin-top:60px;
  font-size:clamp(52px,6.1vw,90px);
  line-height:.84;letter-spacing:-.072em;font-weight:800;
}
.compare-card .caption{
  position:absolute;left:30px;right:30px;bottom:30px;
  max-width:580px;font-size:19px;
}
.fake-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:46px}
.fake-grid div{height:112px;border:1px solid rgba(13,13,13,.34);background:rgba(255,255,255,.28)}
.custom-shape{
  position:absolute;width:290px;height:290px;right:-48px;top:120px;
  border-radius:50% 50% 8% 50%;background:var(--acid);transform:rotate(18deg);
}
.custom-line{height:2px;background:white;width:55%;margin-top:58px}

/* CMS */
.cms{display:grid;grid-template-columns:1.1fr .9fr;gap:16px}
.cms-main{
  min-height:580px;padding:34px;border-radius:var(--r);
  background:var(--mint);
  display:flex;flex-direction:column;justify-content:space-between;
}
.cms-main .statement{
  max-width:940px;
  font-size:clamp(50px,6.9vw,98px);
  line-height:.86;letter-spacing:-.072em;font-weight:800;
}
.cms-side{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.benefit{
  min-height:282px;padding:24px;border-radius:var(--r);
  border:1px solid var(--line);background:var(--white);
  display:flex;flex-direction:column;justify-content:space-between;
}
.benefit strong{font-size:28px;letter-spacing:-.045em}

/* Process */
.process{display:grid;grid-template-columns:repeat(5,1fr);border-top:1px solid var(--ink)}
.step{
  min-height:310px;padding:18px 22px 20px 0;
  border-right:1px solid var(--line);
}
.step+.step{padding-left:22px}
.step:last-child{border-right:0}
.step .num{font-size:11px;font-weight:800;letter-spacing:.12em}
.step h3{font-size:29px;margin-top:72px}
.step p{margin-top:12px;color:rgba(13,13,13,.7)}

/* Case */
.case{
  min-height:640px;padding:30px;border-radius:var(--r);
  background:var(--ink);color:var(--paper);
  display:grid;grid-template-columns:.8fr 1.2fr;gap:28px;
}
.case-copy{display:flex;flex-direction:column}
.case-copy h3{font-size:clamp(54px,7vw,104px);margin-top:82px}
.case-copy p{margin-top:20px;max-width:450px;color:#d8d3ca}
.case-copy .meta{margin-top:auto;font-size:12px;color:#aaa49b}
.case-screen{
  align-self:stretch;border-radius:22px;overflow:hidden;
  background:#f2efe8;color:var(--ink);
  box-shadow:0 30px 70px rgba(0,0,0,.26);
}
.screenbar{height:42px;background:#ddd6ca;border-bottom:1px solid #c4bdb2;display:flex;align-items:center;gap:7px;padding:0 14px}
.screenbar i{width:8px;height:8px;border-radius:50%;background:#aaa49c}
.screenbody{padding:34px}
.mini-kicker{font-size:9px;letter-spacing:.15em;text-transform:uppercase}
.mini-title{
  margin:26px 0 36px;
  font-size:clamp(52px,7vw,100px);
  line-height:.8;letter-spacing:-.07em;font-weight:800;
}
.screen-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.screen-cards div{height:156px;border:1px solid #c5beb3;background:#e7e1d7}

/* Prices */
.price-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.price-card{min-height:235px;border-top:1px solid var(--ink);padding-top:16px}
.price-card span{font-size:12px;text-transform:uppercase;letter-spacing:.1em}
.price-card strong{
  display:block;margin-top:60px;
  font-size:clamp(34px,3.5vw,54px);
  line-height:.95;letter-spacing:-.065em;
}

/* FAQ */
.faq{max-width:930px;margin-left:auto}
details{border-top:1px solid var(--line);padding:22px 0}
details:last-child{border-bottom:1px solid var(--line)}
summary{
  list-style:none;cursor:pointer;
  font-size:23px;font-weight:800;letter-spacing:-.03em;
}
summary::-webkit-details-marker{display:none}
summary::after{content:"+";float:right;color:var(--pink)}
details[open] summary::after{content:"–"}
details p{margin-top:14px;max-width:790px;color:rgba(13,13,13,.72)}

/* Closer */
.closer{padding:110px 0}
.closer-box{
  min-height:530px;padding:34px;border-radius:var(--r);
  background:var(--acid);
  position:relative;overflow:hidden;
  display:flex;flex-direction:column;justify-content:space-between;
}
.closer-box::after{
  content:"";position:absolute;width:390px;height:390px;
  background:var(--pink);border-radius:50% 50% 10% 50%;
  right:-118px;top:-118px;transform:rotate(24deg);
}
.closer-box h2{max-width:1080px;position:relative;z-index:2}
.closer-bottom{
  position:relative;z-index:2;
  display:flex;justify-content:space-between;gap:30px;align-items:end;
}
.closer-bottom p{max-width:530px;font-size:19px}

/* Subpage hero */
.subhero{
  padding:92px 0 72px;
  border-bottom:1px solid var(--line);
}
.subhero-grid{
  display:grid;grid-template-columns:1.35fr .65fr;
  gap:48px;align-items:end;
}
.subhero h1{
  margin-top:18px;
  max-width:1100px;
  font-size:clamp(68px,9vw,138px);
}
.subhero .lead{margin-top:30px;max-width:850px}
.subhero-side{
  padding:24px;
  border-radius:var(--r);
  background:var(--white);
  border:1px solid var(--line);
}
.subhero-side .big-price{
  display:block;
  margin-top:42px;
  font-size:42px;font-weight:800;letter-spacing:-.055em;
}

/* Subpage navigation strip */
.subnav{
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.22);
}
.subnavin{
  min-height:58px;
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;
}
.subnav a{
  padding:7px 10px;border-radius:999px;
  font-size:12px;font-weight:800;
}
.subnav a:hover{background:var(--acid)}

/* Subpage content */
.prose{font-size:18px}
.prose h2{font-size:50px;margin:70px 0 18px}
.prose h3{font-size:30px;margin:42px 0 14px}
.prose p,.prose li{color:rgba(13,13,13,.76)}
.prose ul{padding-left:22px}
.prose strong{color:var(--ink)}
.prose-section{padding:86px 0;border-bottom:1px solid var(--line)}
.service-strip{
  display:grid;grid-template-columns:repeat(3,1fr);gap:16px;
}
.service-strip div{border-top:1px solid var(--ink);padding-top:14px}
.service-strip span{font-size:11px;text-transform:uppercase;letter-spacing:.1em}
.service-strip strong{display:block;margin-top:8px;font-size:28px;letter-spacing:-.045em}
.two-col{
  display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:start;
}
.feature-stack{border-top:1px solid var(--ink)}
.feature-row{
  display:grid;grid-template-columns:46px 1fr;gap:16px;
  padding:18px 0;border-bottom:1px solid var(--line);
}
.feature-row .n{
  width:32px;height:32px;border:1px solid var(--ink);border-radius:50%;
  display:grid;place-items:center;font-size:11px;font-weight:800;
}
.fit-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.fit-card{
  min-height:360px;padding:26px;border-radius:var(--r);
  display:flex;flex-direction:column;justify-content:space-between;
}
.fit-card.yes{background:var(--mint)}
.fit-card.no{background:#ded8ce}
.fit-card ul{margin:30px 0 0;padding-left:18px}
.mini-process{
  display:grid;grid-template-columns:repeat(4,1fr);gap:16px;
}
.mini-step{
  min-height:230px;padding:20px;border-radius:24px;
  background:var(--white);border:1px solid var(--line);
  display:flex;flex-direction:column;justify-content:space-between;
}
.mini-step strong{font-size:24px;letter-spacing:-.04em}

/* Contact */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:34px}
.contact-card{
  min-height:350px;padding:28px;border-radius:var(--r);
  background:var(--pink);
}
.contact-card h3{margin-top:58px}
.contact-card p{margin-top:18px}
.contact-note{
  margin-top:20px;padding-top:16px;border-top:1px solid rgba(13,13,13,.35);
  font-size:13px;
}

/* Footer */
.footer{border-top:1px solid var(--line);padding:34px 0 64px}
.footer-top{display:grid;grid-template-columns:1fr auto;gap:28px;align-items:end}
.footer-brand{
  font-size:clamp(54px,8vw,118px);
  line-height:.75;letter-spacing:-.075em;font-weight:800;
}
.footer-links{display:flex;gap:16px;flex-wrap:wrap;justify-content:flex-end;font-size:12px}
.footer-note{margin-top:28px;color:rgba(13,13,13,.55);font-size:12px}

/* Cookie */
.cookie{
  position:fixed;left:22px;right:22px;bottom:22px;z-index:90;
  display:none;grid-template-columns:1fr auto;gap:24px;align-items:center;
  border-radius:22px;background:rgba(13,13,13,.97);color:var(--paper);
  padding:18px;box-shadow:0 24px 70px rgba(0,0,0,.28);
}
.cookie.show{display:grid}
.cookie p{font-size:14px;color:#ddd7ce;max-width:850px}
.cookie-actions{display:flex;gap:8px}
.cookie button{
  padding:11px 14px;border-radius:999px;cursor:pointer;
  border:1px solid #6d6861;background:transparent;color:var(--paper);
}
.cookie .allow{background:var(--acid);border-color:var(--acid);color:var(--ink)}

@media(max-width:1040px){
  .topin{grid-template-columns:1fr auto}
  nav{display:none}
  .hero-grid,.section-head,.problem,.cms,.case,.subhero-grid,.two-col,.contact-grid{grid-template-columns:1fr}
  .hero-art{grid-template-columns:1fr}
  .art-side{grid-template-columns:1fr 1fr;grid-template-rows:auto}
  .products{grid-template-columns:1fr}
  .product{grid-column:auto}
  .compare{grid-template-columns:1fr}
  .process{grid-template-columns:1fr 1fr}
  .step{border-bottom:1px solid var(--line)}
  .price-grid{grid-template-columns:1fr 1fr}
  .mini-process{grid-template-columns:1fr 1fr}
}
@media(max-width:720px){
  .wrap,.narrow{width:min(calc(100% - 24px),var(--max))}
  .hero{padding-top:58px}
  .hero-grid{gap:28px}
  .hero-art,.problem-right,.cms-side,.price-grid,.service-strip,.art-side,.fit-grid,.mini-process{grid-template-columns:1fr}
  .art-main{min-height:440px}
  .problem-left{min-height:470px}
  .section,.prose-section{padding:78px 0}
  .section-head{gap:28px}
  .process{grid-template-columns:1fr}
  .step,.step+.step{padding-left:0;border-right:0}
  .screen-cards{grid-template-columns:1fr 1fr}
  .closer-box{min-height:620px;padding:26px}
  .closer-bottom{flex-direction:column;align-items:flex-start}
  .footer-top{grid-template-columns:1fr}
  .footer-links{justify-content:flex-start}
  .cookie{grid-template-columns:1fr}
  .cookie-actions{flex-direction:column}
}
@media(prefers-reduced-motion:reduce){
  *{scroll-behavior:auto!important}
  .ticker-track{animation:none}
  .reveal{opacity:1;transform:none;transition:none}
}


/* Freeform contact */
.contact-free{
  padding:110px 0;
  border-bottom:1px solid var(--line);
}
.contact-free-box{
  border-radius:var(--r);
  background:var(--pink);
  padding:34px;
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  gap:56px;
  align-items:start;
  position:relative;
  overflow:hidden;
}
.contact-free-box::after{
  content:"";
  position:absolute;
  width:320px;height:320px;
  border:64px solid var(--acid);
  border-radius:50%;
  left:-150px;bottom:-190px;
  pointer-events:none;
}
.contact-free-copy,
.contact-form{
  position:relative;
  z-index:2;
}
.contact-free-copy h2{
  margin-top:26px;
  max-width:600px;
}
.contact-free-copy p{
  margin-top:22px;
  max-width:500px;
  font-size:18px;
}
.contact-form{
  border-radius:24px;
  background:var(--paper);
  padding:24px;
}
.field{margin-bottom:20px}
.field label{
  display:block;
  margin-bottom:8px;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.field input,
.field textarea{
  width:100%;
  border:1px solid rgba(13,13,13,.35);
  background:var(--white);
  color:var(--ink);
  border-radius:16px;
  padding:15px 16px;
  font:inherit;
  font-size:16px;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field textarea:focus{
  border-color:var(--ink);
  box-shadow:0 0 0 3px rgba(234,255,69,.75);
}
.field textarea{
  min-height:230px;
  resize:vertical;
}
.form-row{
  display:flex;
  gap:14px;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}
.form-note{
  max-width:420px;
  font-size:12px;
  color:rgba(13,13,13,.62);
}
.form-note a{
  text-decoration:underline;
  text-underline-offset:3px;
}
.form-status{
  margin-top:16px;
  padding:12px 14px;
  border-radius:14px;
  font-size:13px;
  display:none;
}
.form-status.show{display:block}
.form-status.ok{background:var(--mint)}
.form-status.error{background:#ffd0d7}
.hp-field{
  position:absolute!important;
  left:-9999px!important;
  width:1px!important;height:1px!important;
  overflow:hidden!important;
}
@media(max-width:1040px){
  .contact-free-box{grid-template-columns:1fr}
}
@media(max-width:720px){
  .contact-free{padding:78px 0}
  .contact-free-box{padding:24px;gap:30px}
  .contact-form{padding:18px}
  .form-row{align-items:flex-start;flex-direction:column}
  .form-row .btn{width:100%}
}


/* v0.6 optical hero alignment */
.hero-heading{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.hero-heading > span{
  display:block;
  width:max-content;
  max-width:100%;
}
.hero-heading .optical-w{
  margin-left:-0.045em;
}
.hero-heading .optical-n{
  margin-left:-0.028em;
}
.hero-heading .highlight{
  margin-top:.035em;
}

/* Hero stats: deliberate distance between numeral and caption */
.art-card .stat-copy{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.art-card .stat-copy .big{
  line-height:.78;
  margin:0 0 22px;
}
.art-card .stat-copy p{
  font-size:17px;
  line-height:1.25;
  max-width:310px;
}
@media(max-width:720px){
  .hero-heading .optical-w{margin-left:-0.03em}
  .hero-heading .optical-n{margin-left:-0.018em}
  .art-card .stat-copy .big{margin-bottom:18px}
}


/* v0.7 navigation refinement */
nav{
  display:flex;
  gap:24px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.015em;
}
nav a{
  position:relative;
  line-height:1;
}
nav a::after{
  bottom:-7px;
  height:2px;
}


/* v0.8 typography corrections */

/* Hero: align actual visible glyph edges instead of pushing W/N left */
.hero-heading .optical-w{
  margin-left:.065em;
}
.hero-heading .optical-n{
  margin-left:.006em;
}

/* Give the hero lines a touch more vertical breathing room */
.hero-heading{
  row-gap:.018em;
}

/* Freeform contact headline: avoid collisions between large lines */
.contact-free-copy h2{
  line-height:.96;
  letter-spacing:-.058em;
}

/* Slightly more breathing room below the contact headline */
.contact-free-copy p{
  margin-top:28px;
}

@media(max-width:720px){
  .hero-heading .optical-w{margin-left:.048em}
  .hero-heading .optical-n{margin-left:.004em}
  .contact-free-copy h2{line-height:.98}
}


/* ============================================================
   v1 RESPONSIVE PASS
   ============================================================ */

html,body{max-width:100%;overflow-x:hidden}
main,.top,.topin,
.hero-grid>*,.hero-art>*,.section-head>*,
.problem>*,.problem-right>*,.products>*,
.cms>*,.cms-side>*,.case>*,
.subhero-grid>*,.two-col>*,
.contact-grid>*,.contact-free-box>*{min-width:0}

/* ----- Accessible hamburger ----- */
.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  padding:0;
  border:1px solid var(--ink);
  border-radius:999px;
  background:transparent;
  color:var(--ink);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
}
.menu-toggle span{
  width:18px;
  height:2px;
  display:block;
  background:currentColor;
  border-radius:999px;
  transform-origin:center;
  transition:transform .22s ease, opacity .22s ease;
}
.menu-toggle[aria-expanded="true"] span:first-child{
  transform:translateY(4px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child{
  transform:translateY(-4px) rotate(-45deg);
}
.mobile-menu-cta{display:none}

@media(max-width:1040px){
  .topin{
    min-height:70px;
    grid-template-columns:1fr auto;
    gap:14px;
  }
  .brand{font-size:23px}
  .brandmark{width:28px;height:28px}

  .navcta{display:none}
  .menu-toggle{display:flex;z-index:3}

  .main-nav{
    display:flex;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    margin:0;
    padding:18px 26px 26px;
    flex-direction:column;
    gap:0;
    background:rgba(244,240,230,.985);
    border-bottom:1px solid var(--ink);
    box-shadow:0 22px 46px rgba(13,13,13,.12);
    visibility:hidden;
    opacity:0;
    pointer-events:none;
    transform:translateY(-8px);
    transition:opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .main-nav.is-open{
    visibility:visible;
    opacity:1;
    pointer-events:auto;
    transform:none;
  }
  .main-nav a{
    width:100%;
    padding:15px 0;
    border-bottom:1px solid var(--line);
    font-size:clamp(25px,4.8vw,38px);
    line-height:1;
    font-weight:800;
    letter-spacing:-.045em;
  }
  .main-nav a::after{display:none}
  .main-nav a[aria-current="page"]{color:rgba(13,13,13,.48)}
  .main-nav .mobile-menu-cta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:16px;
    padding:16px 18px;
    border:1px solid var(--ink);
    border-radius:999px;
    background:var(--ink);
    color:var(--paper);
    font-size:14px;
    line-height:1;
    letter-spacing:0;
  }
}

/* ----- Phones ----- */
@media(max-width:720px){
  :root{--r:22px}

  .wrap,.narrow{
    width:calc(100% - 32px);
    max-width:none;
  }

  h1{
    font-size:clamp(46px,14.8vw,72px);
    line-height:.84;
    letter-spacing:-.058em;
  }
  h2{
    font-size:clamp(39px,12.6vw,60px);
    line-height:.91;
    letter-spacing:-.055em;
  }
  h3{
    font-size:clamp(28px,8.8vw,40px);
    line-height:.98;
    letter-spacing:-.05em;
  }
  h4{font-size:21px}
  .lead{
    font-size:clamp(21px,6.8vw,29px);
    line-height:1.13;
  }
  .body-lg{
    font-size:clamp(27px,8vw,38px);
    line-height:1.08;
  }
  .body{font-size:17px}

  .topin{min-height:64px}
  .brand{font-size:20px;letter-spacing:-.045em;gap:8px}
  .brandmark{width:25px;height:25px}
  .menu-toggle{width:42px;height:42px}
  .main-nav{padding:14px 16px 22px}
  .main-nav a{font-size:30px;padding:14px 0}

  .hero{
    padding:44px 0 24px;
  }
  .hero-grid{gap:24px}
  .hero-heading{
    row-gap:.025em;
  }
  .hero-heading>span{
    width:auto;
    max-width:100%;
    white-space:nowrap;
  }
  .hero-heading .optical-w,
  .hero-heading .optical-n{
    margin-left:0;
  }
  .hero-heading .highlight{margin-top:.06em}
  .hero-side{padding-bottom:0}
  .hero-side .lead{font-size:24px}
  .hero-art{
    margin-top:22px;
    gap:10px;
  }
  .art-main{
    min-height:335px;
    padding:22px;
  }
  .art-main::after{
    width:270px;
    height:270px;
    border-width:48px;
    right:-110px;
    bottom:-130px;
  }
  .art-main .spec{
    left:22px;
    right:22px;
    bottom:22px;
    font-size:clamp(38px,12.2vw,56px);
    line-height:.91;
  }
  .art-side{gap:10px}
  .art-card{
    min-height:175px;
    padding:20px;
  }
  .art-card .big{
    font-size:78px;
  }
  .art-card .stat-copy .big{margin-bottom:16px}
  .art-card .stat-copy p{font-size:16px}
  .hero-ticker{margin-top:34px}
  .ticker-item{padding-top:11px;padding-bottom:10px}

  .section{
    padding:70px 0;
  }
  .section-head{
    gap:24px;
    margin-bottom:38px;
  }
  .section-head .intro{
    margin-top:18px;
    font-size:18px;
  }

  .problem{gap:10px}
  .problem-left{
    min-height:390px;
    padding:23px;
  }
  .zero{
    font-size:clamp(135px,47vw,205px);
    line-height:.68;
  }
  .problem-right{gap:10px}
  .reason{
    min-height:195px;
    padding:20px;
  }

  .products{gap:10px}
  .product{
    min-height:480px;
    padding:23px;
  }
  .product h3{margin-top:50px}
  .product .price{font-size:27px}

  .cms{gap:10px}
  .cms-main{
    min-height:410px;
    padding:23px;
  }
  .cms-main .statement{
    font-size:clamp(40px,12.7vw,58px);
    line-height:.9;
  }
  .cms-side{gap:10px}
  .benefit{
    min-height:205px;
    padding:20px;
  }
  .benefit strong{font-size:24px}

  .process{border-top:1px solid var(--ink)}
  .step,.step+.step{
    min-height:0;
    padding:22px 0 24px;
  }
  .step h3{
    margin-top:32px;
    font-size:28px;
  }

  .case{
    min-height:0;
    padding:20px;
    gap:24px;
  }
  .case-copy h3{
    margin-top:42px;
    font-size:clamp(45px,14vw,66px);
  }
  .case-copy .meta{margin-top:34px}
  .screenbar{height:36px}
  .screenbody{padding:20px}
  .mini-title{
    margin:22px 0 28px;
    font-size:clamp(43px,13vw,62px);
    line-height:.84;
  }
  .screen-cards{gap:7px}
  .screen-cards div{height:100px}

  .price-grid{gap:20px}
  .price-card{
    min-height:150px;
    padding-top:14px;
  }
  .price-card strong{
    margin-top:36px;
    font-size:40px;
  }

  .faq{max-width:none;margin-left:0}
  details{padding:19px 0}
  summary{
    position:relative;
    padding-right:34px;
    font-size:20px;
    line-height:1.2;
  }
  summary::after{
    position:absolute;
    right:0;
    top:0;
  }

  .closer{padding:70px 0}
  .closer-box{
    min-height:500px;
    padding:23px;
  }
  .closer-box::after{
    width:250px;
    height:250px;
    right:-95px;
    top:-90px;
  }
  .closer-bottom{gap:22px}
  .closer-bottom p{font-size:17px}

  .subhero{
    padding:56px 0 46px;
  }
  .subhero-grid{gap:30px}
  .subhero h1{
    margin-top:14px;
    max-width:100%;
    font-size:clamp(50px,15.2vw,74px);
    line-height:.85;
  }
  .subhero .lead{
    margin-top:22px;
  }
  .subhero-side{
    padding:21px;
  }
  .subhero-side .big-price{
    margin-top:30px;
    font-size:36px;
  }

  .subnavin{
    min-height:0;
    padding:11px 0;
    gap:6px;
  }
  .subnav a{
    padding:6px 9px;
    font-size:11px;
  }

  .prose-section{
    padding:64px 0;
  }
  .prose{font-size:17px}
  .prose h2{
    margin:52px 0 16px;
    font-size:clamp(34px,10.5vw,47px);
    line-height:.95;
  }
  .prose h3{
    margin:36px 0 12px;
    font-size:27px;
  }
  .prose ul{padding-left:19px}

  .service-strip{gap:20px}
  .service-strip div{padding-top:12px}
  .service-strip strong{font-size:24px}

  .two-col{gap:34px}
  .feature-row{
    grid-template-columns:38px 1fr;
    gap:12px;
    padding:16px 0;
  }

  .fit-grid{gap:10px}
  .fit-card{
    min-height:285px;
    padding:21px;
  }

  .mini-process{gap:10px}
  .mini-step{
    min-height:185px;
    padding:19px;
  }
  .mini-step strong{font-size:22px}

  .contact-grid{gap:10px}
  .contact-card{
    min-height:290px;
    padding:22px;
  }
  .contact-card h3{margin-top:45px}

  .contact-free{
    padding:70px 0;
  }
  .contact-free-box{
    padding:21px;
    gap:26px;
  }
  .contact-free-box::after{
    width:240px;
    height:240px;
    border-width:46px;
    left:-130px;
    bottom:-155px;
  }
  .contact-free-copy h2{
    margin-top:20px;
    line-height:.97;
    letter-spacing:-.052em;
  }
  .contact-free-copy p{
    margin-top:23px;
    font-size:17px;
  }
  .contact-form{
    padding:17px;
    border-radius:19px;
  }
  .field input,.field textarea{
    padding:14px;
    border-radius:13px;
  }
  .field textarea{min-height:195px}
  .form-row{gap:16px}

  .footer{
    padding:28px 0 44px;
  }
  .footer-top{gap:24px}
  .footer-brand{
    font-size:clamp(48px,15vw,70px);
    line-height:.8;
  }
  .footer-links{
    gap:12px 16px;
    line-height:1.4;
  }

  .cookie{
    left:10px;
    right:10px;
    bottom:10px;
    padding:15px;
    border-radius:18px;
    gap:16px;
  }
  .cookie p{font-size:13px}
  .cookie button{
    width:100%;
    min-height:44px;
  }
}

/* ----- Very small phones ----- */
@media(max-width:390px){
  .wrap,.narrow{width:calc(100% - 26px)}
  h1{font-size:clamp(44px,14.3vw,56px)}
  h2{font-size:clamp(37px,12vw,47px)}
  .brand{font-size:18px}
  .brandmark{width:23px;height:23px}
  .main-nav a{font-size:28px}
  .hero-side .lead{font-size:22px}
  .art-main{min-height:305px}
  .art-main .spec{font-size:39px}
  .product{min-height:450px}
  .screenbody{padding:16px}
  .screen-cards div{height:82px}
  .footer-brand{font-size:48px}
}

@media(prefers-reduced-motion:reduce){
  .menu-toggle span,.main-nav{transition:none!important}
}


/* final narrow-phone safeguards */
@media(max-width:390px){
  .footer-brand{
    font-size:clamp(40px,12.5vw,48px);
    max-width:100%;
  }
  .subhero h1{
    overflow-wrap:anywhere;
  }
}
