@font-face{font-family:"Source Serif 4";font-style:normal;font-weight:400;font-display:swap;src:url(/assets/ss4-normal.woff2) format('woff2')}
@font-face{font-family:"Source Serif 4";font-style:italic;font-weight:400;font-display:swap;src:url(/assets/ss4-italic.woff2) format('woff2')}
/* ---------------------------------------------------------------
   TOKENS
   Ground is tinted, never a pure neutral: #0A0B0D carries a trace of
   the accent's blue so the page reads as chosen rather than default.
   Scale: base 17px, ratio 1.333 (perfect fourth). Every size below is
   a step on it — 12.8 / 17 / 22.7 / 30.2 / 40.3 / 53.7 / 71.6 / 95.4.
----------------------------------------------------------------- */
:root{
  --ground:#0A0B0D;
  --raise:#121419;
  --raise-2:#171A20;
  --ink:#F2F3F5;
  --ink-2:#9AA0AA;
  --ink-3:#6C727C;
  --accent:#4D7CFF;
  --accent-soft:rgba(77,124,255,.14);
  --line:rgba(242,243,245,.09);
  --line-2:rgba(242,243,245,.16);

  --serif:"Source Serif 4","Source Serif Pro",Charter,"Iowan Old Style",Palatino,Georgia,serif;
  --sans:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;

  --pad:clamp(22px,5.2vw,64px);
  --section:clamp(86px,12vw,178px);
  --ease:cubic-bezier(.16,.84,.28,1);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%;overflow-x:clip}
body{
  background:var(--ground);color:var(--ink);
  font-family:var(--sans);font-size:17px;line-height:1.6;
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
  overflow-x:clip;
  font-variant-numeric:tabular-nums;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
:focus-visible{outline:2px solid var(--accent);outline-offset:3px;border-radius:2px}

.wrap{width:100%;max-width:1240px;margin:0 auto;padding-inline:var(--pad)}
.measure{max-width:34ch}
.measure-wide{max-width:52ch}

/* ---------- type ---------- */
.display{
  font-family:var(--serif);font-weight:400;
  letter-spacing:-.04em;line-height:.92;
  /* Stops a short word orphaning onto its own line at large sizes — at 105px an
     orphan is a hole in the page, not a ragged edge. Unsupported browsers just
     get the normal greedy wrap. */
  text-wrap:balance;
}
h1{font-size:clamp(3rem,12.2vw,6.6rem)}
h2{font-size:clamp(2.35rem,7.4vw,4.2rem)}
h3{font-family:var(--sans);font-size:1.335rem;font-weight:600;letter-spacing:-.015em;line-height:1.3}
.accent-word{color:var(--accent);font-style:italic}
.label{
  font-size:.755rem;font-weight:500;letter-spacing:.2em;text-transform:uppercase;
  color:var(--ink-3);
}
.lede{font-size:clamp(1.06rem,2.5vw,1.335rem);color:var(--ink-2);line-height:1.55}
.small{font-size:.94rem;color:var(--ink-3);line-height:1.65}

/* ---------- chrome ---------- */
header{
  position:fixed;inset:0 0 auto 0;z-index:60;
  padding:16px 0;transition:background .4s var(--ease),border-color .4s var(--ease);
  border-bottom:1px solid transparent;
}
header.stuck{background:rgba(10,11,13,.86);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-bottom-color:var(--line)}
.bar{display:flex;align-items:center;justify-content:space-between;gap:18px}
.mark{font-family:var(--serif);font-size:1.18rem;letter-spacing:-.02em;white-space:nowrap}
.mark i{font-style:italic;color:var(--accent)}
.mini{
  display:none;align-items:center;gap:.5em;font-size:.9rem;font-weight:500;
  padding:.6em 1.15em;border-radius:100px;border:1px solid var(--line-2);white-space:nowrap;
  transition:border-color .3s var(--ease),background .3s var(--ease);
}
.mini:hover{border-color:var(--accent);background:var(--accent-soft)}
@media(min-width:781px){.mini{display:inline-flex}}

/* ---------- hero ---------- */
.hero{
  position:relative;min-height:100svh;display:flex;align-items:center;
  padding:118px 0 clamp(60px,10vw,110px);
}
.hero::before{
  content:"";position:absolute;inset:0;z-index:0;pointer-events:none;
  background:
    radial-gradient(78% 58% at 74% 8%, rgba(77,124,255,.20) 0%, rgba(77,124,255,.05) 38%, transparent 68%),
    radial-gradient(66% 52% at 6% 96%, rgba(77,124,255,.09) 0%, transparent 60%);
}
/* Grain. Invisible on its own, obvious by its absence. */
.grain{
  position:fixed;inset:0;z-index:1;pointer-events:none;opacity:.5;
  background-image:radial-gradient(rgba(255,255,255,.05) .5px,transparent .5px);
  background-size:3px 3px;
}
.hero .wrap{position:relative;z-index:2}
.hero h1{margin-bottom:.42em}
.hero .lede{margin-bottom:clamp(30px,4.6vw,46px)}
.eyebrow-row{display:flex;align-items:center;gap:.85em;margin-bottom:clamp(24px,4vw,38px)}
.eyebrow-row::after{content:"";height:1px;flex:1;background:var(--line-2);max-width:180px}
@media(max-width:520px){.eyebrow-row::after{display:none}.eyebrow-row .label{white-space:nowrap}}

.cta-row{display:flex;flex-wrap:wrap;gap:12px;align-items:center}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55em;
  min-height:60px;padding:0 1.85em;border-radius:100px;
  font-family:var(--sans);font-size:1.02rem;font-weight:600;letter-spacing:-.01em;
  transition:transform .28s var(--ease),background .28s var(--ease),border-color .28s var(--ease);
}
.btn-main{background:var(--accent);color:#fff}
.btn-main:hover{background:#3F6DF0;transform:translateY(-2px)}
.btn-ghost{border:1px solid var(--line-2);color:var(--ink)}
.btn-ghost:hover{border-color:var(--ink-3);transform:translateY(-2px)}
.hero-note{margin-top:clamp(22px,3.4vw,30px);font-size:.94rem;color:var(--ink-3)}
.hero-note b{color:var(--ink-2);font-weight:500}

/* ---------- sections ---------- */
section{padding-block:var(--section);position:relative;z-index:2}
.rule{border-top:1px solid var(--line)}
.js [data-reveal]{opacity:0;transform:translateY(18px);transition:opacity .62s var(--ease),transform .62s var(--ease)}
.js [data-reveal].seen{opacity:1;transform:none}

/* ---------- entrance ----------
   Gated on .js (set by an inline script in <head>) so a blocked or failed script
   leaves the page fully visible rather than blank.
   ⚠️ The business name and the call button TRANSLATE but never FADE. An animation
   that fails to finish must not be able to ship an invisible headline — and a
   fully transparent element still has a bounding box, so qa.mjs would pass it.
   Everything decorative may fade; those two may not. */
@keyframes rise{from{opacity:0;transform:translateY(15px)}to{opacity:1;transform:none}}
@keyframes lift{from{transform:translateY(20px)}to{transform:none}}
@keyframes drift{from{transform:translate3d(0,0,0) scale(1)}to{transform:translate3d(-2.5%,1.5%,0) scale(1.07)}}
@media(prefers-reduced-motion:no-preference){
  .js .hero .eyebrow-row,
  .js .hero .lede,
  .js .hero .hero-note{opacity:0;animation:rise .78s var(--ease) forwards}
  .js .hero h1,
  .js .hero .cta-row{animation:lift .9s var(--ease) both}
  .js .hero .eyebrow-row{animation-delay:.06s}
  .js .hero h1{animation-delay:.16s}
  .js .hero .lede{animation-delay:.38s}
  .js .hero .cta-row{animation-delay:.5s}
  .js .hero .hero-note{animation-delay:.62s}
  /* Ambient: the glow behind the hero moves slowly enough that you notice it only
     if it stops. One element, transform only, so it composites on the GPU. */
  .hero::before{animation:drift 24s ease-in-out infinite alternate}
}
@media(prefers-reduced-motion:reduce){
  .js [data-reveal]{opacity:1;transform:none;transition:none}
  .btn,.mini,.offer,.ccard{transition:none}
}

.head{margin-bottom:clamp(44px,6.5vw,76px)}
.head .label{display:block;margin-bottom:1.5rem}

/* ---------- price ----------
   ONE service, not two. The monthly is a detail INSIDE the launch fee, never a
   second card beside it — two cards read as two products to buy, which is not
   what is being sold. Operator instruction, and it is not negotiable. */
.offer{
  max-width:840px;
  border:1px solid var(--line);border-radius:24px;padding:clamp(30px,4.6vw,56px);
  background:linear-gradient(168deg,var(--raise) 0%,rgba(18,20,25,.35) 100%);
}
.offer > .label{display:block;margin-bottom:1.7rem}
.figure{
  font-family:var(--serif);font-weight:400;letter-spacing:-.04em;line-height:.9;
  font-size:clamp(3.4rem,12.5vw,5.2rem);
}
.offer .cadence{margin-top:.85rem;color:var(--ink-3);font-size:.96rem}
.offer ul{list-style:none;margin-top:2.4rem;display:grid;gap:.95rem}
.offer li{position:relative;padding-left:1.6em;color:var(--ink-2);font-size:1.02rem}
.offer li::before{
  content:"";position:absolute;left:0;top:.62em;width:7px;height:7px;border-radius:50%;
  background:var(--accent);opacity:.75;
}
.offer li b{color:var(--ink);font-weight:600}
/* The recurring charge is disclosed on the page itself, not behind a link —
   the card networks require that, and it is also just the honest way round. */
.then{
  margin-top:clamp(30px,4.2vw,46px);padding-top:clamp(26px,3.4vw,36px);
  border-top:1px solid var(--line-2);
}
.then .label{display:block;margin-bottom:1rem}
.then-figure{
  font-family:var(--serif);font-size:clamp(1.85rem,6vw,2.5rem);
  letter-spacing:-.03em;line-height:1;margin-bottom:1.05rem;color:var(--ink-2);
}
.then-figure b{font-weight:400;color:var(--accent)}
.then p{color:var(--ink-2);font-size:1rem;max-width:56ch}
.then p b{color:var(--ink);font-weight:600}
.then ul{margin-top:1.6rem}
/* The one promise no template shop can match cheaply, so it gets its own surface
   rather than a bullet. Every figure in it is measured by tools/qa.mjs against the
   deployed site — never write a number here that has not been. */
.guarantee{
  max-width:840px;margin-top:20px;
  border:1px solid rgba(77,124,255,.34);border-radius:24px;
  padding:clamp(28px,3.8vw,44px);
  background:linear-gradient(168deg,rgba(77,124,255,.10),rgba(77,124,255,.015));
}
.guarantee .label{display:block;margin-bottom:1.1rem;color:var(--accent)}
.guarantee .claim{
  font-family:var(--serif);font-size:clamp(1.5rem,4.4vw,2.1rem);
  letter-spacing:-.03em;line-height:1.1;margin-bottom:1.1rem;
}
.guarantee p{color:var(--ink-2);font-size:1rem;max-width:58ch}
.guarantee b{color:var(--ink);font-weight:600}

/* ---------- steps ---------- */
.steps{display:grid;gap:clamp(38px,5vw,54px);grid-template-columns:1fr}
@media(min-width:781px){.steps{grid-template-columns:repeat(3,1fr);gap:clamp(30px,3.4vw,54px)}}
.step{border-top:1px solid var(--line-2);padding-top:26px}
.step .n{
  font-family:var(--serif);font-size:1.02rem;color:var(--accent);
  display:block;margin-bottom:1.4rem;letter-spacing:.02em;
}
.step h3{margin-bottom:.65em}
.step p{color:var(--ink-2);font-size:1rem}

/* ---------- the negative space section ---------- */
.nots{display:grid;gap:10px;margin-top:clamp(34px,4.6vw,52px)}
@media(min-width:601px){.nots{grid-template-columns:repeat(2,1fr);gap:12px}}
.not{
  display:flex;align-items:center;gap:.9em;
  border:1px solid var(--line);border-radius:100px;
  padding:.95em 1.5em;color:var(--ink-2);font-size:.98rem;
  background:rgba(242,243,245,.014);
}
.not svg{flex:none;opacity:.85}

/* ---------- contact ---------- */
.callout{
  border:1px solid var(--line-2);border-radius:26px;
  padding:clamp(34px,5.4vw,66px);
  background:
    radial-gradient(120% 150% at 82% 0%, rgba(77,124,255,.13) 0%, transparent 62%),
    var(--raise);
}
.phone{
  font-family:var(--serif);letter-spacing:-.035em;line-height:1;
  font-size:clamp(2.5rem,9.6vw,4.2rem);
  display:inline-block;margin-block:.35em .5em;
  transition:color .3s var(--ease);
}
.phone:hover{color:var(--accent)}
.mailto{color:var(--ink-2);border-bottom:1px solid var(--line-2);padding-bottom:2px;transition:color .3s var(--ease),border-color .3s var(--ease)}
.mailto:hover{color:var(--accent);border-color:var(--accent)}

/* ---------- footer ---------- */
footer{border-top:1px solid var(--line);padding:clamp(48px,6vw,70px) 0 calc(clamp(48px,6vw,70px) + env(safe-area-inset-bottom));position:relative;z-index:2}
.fgrid{display:grid;gap:34px}
@media(min-width:781px){.fgrid{grid-template-columns:1.4fr 1fr 1fr;gap:40px}}
footer a:hover{color:var(--accent)}

/* ---------- sticky mobile call bar ---------- */
.callbar{
  position:fixed;left:0;right:0;bottom:0;z-index:70;
  padding:10px var(--pad) calc(10px + env(safe-area-inset-bottom));
  background:rgba(10,11,13,.92);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-top:1px solid var(--line);
}
.callbar .btn{width:100%}
@media(min-width:781px){.callbar{display:none}}
@media(max-width:780px){body{padding-bottom:92px}}

/* At 320x568 the hero runs long enough to push the Call button under the fold —
   the one thing that must never happen. Scoped below 360 so real phones keep the
   full-size display type. */
@media(max-width:359.98px){
  .hero{padding-top:96px}
  .hero h1{font-size:2.45rem}
  .eyebrow-row{margin-bottom:18px}
  .hero .lede{font-size:1rem;line-height:1.5;margin-bottom:26px}
  .btn{min-height:54px;font-size:.97rem}
  .hero-note{margin-top:18px}
}
/* ---------- sub-pages ---------- */
/* The homepage hero is 100svh because it is the mid-call moment. Inner pages
   should not make you scroll past a full screen to reach the content. */
.page-hero{min-height:auto;padding:146px 0 clamp(48px,7vw,84px)}
.page-hero h1{font-size:clamp(2.5rem,8.6vw,4.4rem);max-width:20ch}
.page-hero .lede{margin-bottom:0}

/* Header nav appears from 781px, matching the call button. Below that the fixed
   header stays two items wide and the full navigation lives in the footer -
   a hamburger would need JS to open, and nothing else on this site does. */
.nav{display:none;align-items:center;gap:clamp(18px,2vw,30px);font-size:.95rem}
@media(min-width:781px){.nav{display:flex}}
.nav a{color:var(--ink-2);transition:color .25s var(--ease)}
.nav a:hover,.nav a[aria-current="page"]{color:var(--ink)}
.fnav{display:flex;flex-wrap:wrap;gap:12px 22px;margin-top:1rem}
.fnav a{color:var(--ink-2)}

/* Question and answer blocks */
.qa{border-top:1px solid var(--line);padding:28px 0}
.qa:first-of-type{border-top:0;padding-top:4px}
.qa h3{margin-bottom:.7em;font-size:1.2rem}
.qa p{color:var(--ink-2);max-width:62ch;margin-bottom:.85rem}
.qa p:last-child{margin-bottom:0}
.qa p b{color:var(--ink);font-weight:600}

/* ---------- two ways to pay ----------
   Not two products - one service, two payment structures. The up-front option is
   listed first and marked as the lead because it is better for cash flow; the
   $0-down premium is stated in plain dollars rather than left for the customer to
   work out, because both numbers are on the page and they will work it out. */
.pays{display:grid;gap:16px;grid-template-columns:1fr;margin-top:22px;max-width:840px}
@media(min-width:781px){.pays{grid-template-columns:1fr 1fr;gap:18px}}
.pay{border:1px solid var(--line);border-radius:20px;padding:clamp(24px,3.2vw,34px)}
.pay.lead{border-color:rgba(77,124,255,.34);background:linear-gradient(168deg,rgba(77,124,255,.09),rgba(77,124,255,.015))}
.pay .label{display:block;margin-bottom:1.2rem}
.pay .amt{font-family:var(--serif);font-size:clamp(1.85rem,5.4vw,2.4rem);letter-spacing:-.03em;line-height:1.05;margin-bottom:.55rem}
.pay .amt b{font-weight:400;color:var(--accent)}
.pay .sub{color:var(--ink-2);font-size:1rem;margin-bottom:1rem}
.pay .fine{color:var(--ink-3);font-size:.93rem;line-height:1.6}
/* The closing line of the argument section — a single sentence given room, set
   off by a hairline. It reframes the product, so it does not sit inside a
   paragraph like a normal sentence. */
.closer{
  margin-top:clamp(44px,6vw,72px);
  padding-top:clamp(30px,4vw,46px);
  border-top:1px solid var(--line);
  font-size:clamp(1.55rem,4.6vw,2.35rem);
  max-width:24ch;
}


/* ---------- service deck ----------
   Six panels of what the service actually is. Deliberately NOT the generic
   rounded-white-icon-chip pattern: hairline panels on the page ground, a small
   accent stroke mark rather than a filled tile, and the type doing the work. */
.deck{display:grid;gap:16px;grid-template-columns:1fr;margin-top:clamp(34px,4.6vw,54px)}
@media(min-width:641px){.deck{grid-template-columns:1fr 1fr;gap:18px}}
@media(min-width:1000px){.deck{grid-template-columns:repeat(3,1fr)}}
.tile{
  border:1px solid var(--line);border-radius:20px;
  padding:clamp(26px,3vw,34px);
  background:linear-gradient(168deg,rgba(255,255,255,.024),rgba(255,255,255,.004));
  transition:border-color .35s var(--ease);
}
.tile:hover{border-color:var(--line-2)}
.tile svg{display:block;margin-bottom:1.45rem}
.tile h3{margin-bottom:.72em;font-size:1.14rem}
.tile p{color:var(--ink-2);font-size:.99rem}
.tile p b{color:var(--ink);font-weight:600}

/* A deck panel that is also a link. Whole panel is the target so it is a real tap
   area on a phone, not a 12px "Read More". */
a.tile{display:block;text-decoration:none;color:inherit}
a.tile:hover{border-color:rgba(77,124,255,.4)}
a.tile .more{
  display:inline-flex;align-items:center;gap:.45em;margin-top:1.25rem;
  font-size:.9rem;font-weight:600;color:var(--accent);
}
a.tile .more svg{margin:0;transition:transform .3s var(--ease)}
a.tile:hover .more svg{transform:translateX(4px)}
@media(prefers-reduced-motion:reduce){a.tile .more svg{transition:none}}

/* ---------- header: logo left, nav centred, call right ---------- */
.bar{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:16px}
.bar > .mark{justify-self:start}
.bar > .nav{justify-self:center}
.bar > .mini{justify-self:end}

/* ---------- nav dropdown ----------
   CSS only, on :hover AND :focus-within, so it opens for a keyboard and needs no
   JavaScript. Hidden state uses visibility, which also takes the links out of the
   tab order rather than leaving invisible focus stops behind. */
.nav .drop{position:relative}
.nav .drop > a::after{
  content:"";display:inline-block;width:5px;height:5px;margin-left:.55em;
  border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;
  transform:rotate(45deg) translateY(-2px);transition:transform .25s var(--ease);
}
.nav .drop:hover > a::after,
.nav .drop:focus-within > a::after{transform:rotate(225deg) translateY(1px)}
/* bridges the gap between the trigger and the panel so hover does not drop */
.nav .drop::after{content:"";position:absolute;left:-10px;right:-10px;top:100%;height:16px}
.nav .panel{
  position:absolute;top:100%;left:50%;z-index:60;
  transform:translateX(-50%) translateY(8px);
  min-width:248px;margin-top:14px;padding:9px;
  list-style:none;display:grid;gap:2px;
  background:rgba(13,15,19,.97);
  backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
  border:1px solid var(--line-2);border-radius:16px;
  box-shadow:0 24px 60px rgba(0,0,0,.55);
  opacity:0;visibility:hidden;
  transition:opacity .22s var(--ease),transform .22s var(--ease),visibility .22s;
}
.nav .drop:hover .panel,
.nav .drop:focus-within .panel{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.nav .panel a{display:block;padding:.66em .82em;border-radius:10px;font-size:.92rem;color:var(--ink-2);white-space:nowrap}
.nav .panel a:hover,.nav .panel a:focus-visible{background:rgba(77,124,255,.13);color:var(--ink)}
.nav .panel .soon{display:block;padding:.66em .82em;font-size:.86rem;color:var(--ink-3);white-space:nowrap}
@media(prefers-reduced-motion:reduce){
  .nav .panel,.nav .drop > a::after{transition:none}
}
