:root{
  --bg:        #0A0E1A;
  --bg-2:      #0E1322;
  --surface:   #111729;
  --surface-2: #161D33;
  --line:      rgba(255,255,255,.08);
  --line-2:    rgba(255,255,255,.14);
  --text:      #F4F4F7;
  --muted:     #9AA3B8;
  --muted-2:   #6E7894;
  --accent-a:  #22D3EE;
  --accent-b:  #8B5CF6;
  --accent-c:  #EC4899;
  --grad:      linear-gradient(120deg, var(--accent-a) 0%, var(--accent-b) 55%, var(--accent-c) 100%);
  --grad-soft: linear-gradient(120deg, rgba(34,211,238,.18), rgba(139,92,246,.18) 55%, rgba(236,72,153,.14));
  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1180px;
  --ease:      cubic-bezier(.2,.7,.2,1);
  --shadow:    0 30px 80px -30px rgba(0,0,0,.7), 0 8px 24px -12px rgba(34,211,238,.18);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  line-height:1.55;
  overflow-x:hidden;
  padding-bottom: env(safe-area-inset-bottom);
}
a{color:inherit;text-decoration:none}
img,svg{display:block;max-width:100%}

/* Ambient backdrop */
.stage{
  position:fixed; inset:0; z-index:-1; pointer-events:none;
  background:
    radial-gradient(60% 50% at 80% -10%, rgba(139,92,246,.28), transparent 60%),
    radial-gradient(50% 40% at 0% 10%, rgba(34,211,238,.20), transparent 60%),
    radial-gradient(40% 35% at 50% 110%, rgba(236,72,153,.16), transparent 60%),
    var(--bg);
}
.grid-overlay{
  position:fixed; inset:-1px; z-index:-1; pointer-events:none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 75%);
}

/* Layout */
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 28px; }
section{ padding:120px 0; position:relative; scroll-margin-top:88px; }

/* Nav */
header.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  background: rgba(10,14,26,.55);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:72px; gap:18px;
}
.brand{ display:flex; align-items:center; gap:12px; font-family:"Space Grotesk", Inter, sans-serif; font-weight:600; letter-spacing:-.01em; min-width:0; }
.brand-mark{
  width:34px; height:34px; border-radius:9px;
  background: var(--grad);
  position:relative; overflow:hidden;
  box-shadow:0 6px 24px -8px rgba(139,92,246,.6);
  flex:0 0 auto;
}
.brand-mark::before, .brand-mark::after{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), transparent 35%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,.45), transparent 38%);
  mix-blend-mode:overlay;
}
.brand-mark::after{
  background: conic-gradient(from 220deg, transparent 0 50%, rgba(0,0,0,.35) 50% 100%);
  mix-blend-mode:multiply; opacity:.5;
}
.brand-name{ font-size:17px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.brand-name span{ color:var(--muted-2); font-weight:500 }

.nav-right{ display:flex; align-items:center; gap:20px; }
.nav-links{ display:flex; align-items:center; gap:22px; }
.nav-links a.link{ font-size:14px; color:var(--muted); transition: color .25s var(--ease); }
.nav-links a.link:hover{ color:var(--text); }
.nav-back{
  font-size:13px; color:var(--muted-2);
  display:inline-flex; align-items:center; gap:6px;
  transition: color .25s var(--ease);
}
.nav-back:hover{ color:var(--text) }
.nav-phone{
  font-size:14px; font-weight:500; color:var(--text);
  display:inline-flex; align-items:center; gap:8px;
}
.nav-phone svg{ width:14px; height:14px; color: var(--accent-a) }
.nav-cta{
  display:inline-flex; align-items:center; gap:8px;
  height:40px; padding:0 18px; border-radius:999px;
  background: var(--grad); color:#0A0E1A;
  border:1px solid transparent;
  font-size:14px; font-weight:600;
  box-shadow: 0 8px 24px -10px rgba(139,92,246,.5);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  white-space:nowrap;
}
.nav-cta:hover{ transform: translateY(-1px); box-shadow: 0 14px 32px -10px rgba(139,92,246,.65); }

/* Hero */
.hero{ padding:120px 0 80px; }
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  padding:7px 14px 7px 10px; border-radius:999px;
  border:1px solid var(--line-2); background:rgba(255,255,255,.03);
  font-size:12.5px; color:var(--muted); letter-spacing:.02em;
}
.eyebrow .dot{
  width:8px; height:8px; border-radius:50%;
  background: var(--grad);
  box-shadow:0 0 12px rgba(34,211,238,.65);
}
h1.hero-title{
  font-family:"Space Grotesk", Inter, sans-serif;
  font-weight:600;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.02;
  letter-spacing:-.035em;
  margin:22px 0 22px;
  max-width: 14ch;
}
h1.hero-title .grad{
  background:var(--grad);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-sub{
  font-size: clamp(17px, 1.6vw, 20px);
  color:var(--muted);
  max-width: 60ch;
  margin:0 0 36px;
}

.btn-row{ display:flex; flex-wrap:wrap; gap:12px; align-items:center; }
.btn{
  display:inline-flex; align-items:center; gap:10px;
  height:52px; padding:0 24px; border-radius:999px;
  font-weight:500; font-size:15px;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn svg{ width:16px; height:16px }
.btn-primary{
  background: var(--grad); color:#0A0E1A;
  box-shadow: 0 12px 32px -10px rgba(139,92,246,.5);
  border:1px solid transparent;
  font-weight:600;
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(139,92,246,.7); }
.btn-ghost{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line-2);
  color:var(--text);
}
.btn-ghost:hover{ background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25); transform: translateY(-1px); }

.hero-call{
  margin-top:14px;
  color:var(--muted); font-size:14px;
}
.hero-call a{
  color:var(--text); font-weight:600;
  border-bottom:1px solid var(--line-2);
  padding-bottom:1px;
  transition: border-color .25s var(--ease);
}
.hero-call a:hover{ border-color: var(--accent-a) }

/* Proof bar */
.proof-bar{
  margin-top: 22px;
  display: flex; flex-wrap: wrap; gap: 14px 26px;
  font-size: 14.5px; color: var(--text);
}
.proof-bar .proof-item{ display:inline-flex; align-items:center; gap:9px; }
.proof-bar svg{ width:16px; height:16px; flex:0 0 auto; color: var(--accent-a); }

/* Trust bar */
.trust{
  margin-top:80px;
  padding:24px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.trust-inner{
  display:flex; align-items:center; justify-content:space-between; gap:28px; flex-wrap:wrap;
}
.trust-label{ font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:var(--muted-2); }
.trust-logos{
  display:flex; align-items:center; gap:36px; flex-wrap:wrap;
  color: var(--muted);
  font-family:"Space Grotesk", Inter, sans-serif;
  font-weight:600; letter-spacing:-.01em; opacity:.92;
}
.trust-logos span{ font-size:15.5px; display:inline-flex; align-items:center; gap:8px; }
.trust-logos span::before{ content:""; width:8px; height:8px; border-radius:2px; background:var(--muted-2); }

/* Section heads */
.sec-head{ max-width:760px; margin-bottom:56px; }
.sec-eyebrow{
  font-size:12.5px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--accent-a); font-weight:600;
}
.sec-title{
  font-family:"Space Grotesk", Inter, sans-serif;
  font-weight:600;
  font-size: clamp(30px, 4vw, 50px);
  line-height:1.05; letter-spacing:-.025em;
  margin:14px 0 16px;
}
.sec-title .grad{
  background:var(--grad);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.sec-sub{ color:var(--muted); font-size: 17px; max-width: 62ch; }

/* Process */
.process{ display:grid; grid-template-columns: repeat(4,1fr); gap:18px; }
.step{
  padding:24px;
  border:1px solid var(--line);
  border-radius:18px;
  background: rgba(255,255,255,.02);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.step:hover{ transform: translateY(-3px); border-color: var(--line-2) }
.step .step-n{
  font-family:"Space Grotesk", Inter, sans-serif;
  font-size:13px; letter-spacing:.16em; color:var(--muted-2);
}
.step h5{
  font-family:"Space Grotesk", Inter, sans-serif; font-weight:600;
  font-size:18px; letter-spacing:-.01em; margin:10px 0 6px;
}
.step p{ margin:0; color:var(--muted); font-size:14.5px }

/* What's included */
.caps{ display:grid; grid-template-columns: repeat(3,1fr); gap:18px; }
.cap{
  padding:26px;
  border:1px solid var(--line);
  border-radius:18px;
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.005));
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.cap:hover{ transform: translateY(-3px); border-color: var(--line-2); }
.cap-ic{
  width:42px; height:42px; border-radius:12px;
  display:grid; place-items:center;
  background: var(--grad);
  margin-bottom:18px;
  box-shadow: 0 8px 20px -8px rgba(139,92,246,.5);
}
.cap-ic svg{ width:20px; height:20px; color:#0A0E1A }
.cap h4{
  font-family:"Space Grotesk", Inter, sans-serif; font-weight:600;
  font-size:17px; letter-spacing:-.01em; margin:0 0 6px;
}
.cap p{ margin:0; color:var(--muted); font-size:14.5px; }

/* Portfolio */
.work-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:22px; }
.work{
  border:1px solid var(--line-2);
  border-radius:20px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.005));
  overflow:hidden;
  display:flex; flex-direction:column;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.work:hover{ transform: translateY(-4px); border-color: rgba(139,92,246,.5); }
.work-thumb{
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, rgba(34,211,238,.18), rgba(139,92,246,.18));
  border-bottom:1px solid var(--line);
  overflow:hidden;
  position:relative;
}
.work-thumb img{
  width:100%; height:100%; object-fit:cover; object-position:top center;
  display:block;
  transition: transform .6s var(--ease);
}
.work:hover .work-thumb img{ transform: scale(1.04); }
.work-meta{ padding:20px 22px 22px; display:flex; flex-direction:column; flex:1; }
.work-tag{
  display:inline-block; font-size:11px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--muted-2); margin-bottom:6px;
}
.work-name{
  font-family:"Space Grotesk", Inter, sans-serif; font-weight:600;
  font-size:19px; letter-spacing:-.01em; margin:0 0 6px;
}
.work-desc{ color:var(--muted); font-size:14px; margin:0 0 16px; flex:1 }
.work-link{
  align-self:flex-start;
  display:inline-flex; align-items:center; gap:8px;
  font-size:14px; color:var(--text); font-weight:500;
  padding-bottom:2px; border-bottom:1px solid var(--line-2);
  transition: gap .25s var(--ease), border-color .25s var(--ease);
}
.work-link:hover{ gap:14px; border-color: rgba(139,92,246,.6); }
.work-link svg{ width:14px; height:14px; }

/* About / Dave */
.about-wrap{
  display:grid; grid-template-columns: 280px 1fr; gap:48px; align-items:center;
  padding:48px;
  border-radius:24px;
  border:1px solid var(--line-2);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(34,211,238,.08), transparent 55%),
    radial-gradient(120% 140% at 100% 100%, rgba(139,92,246,.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.005));
}
.about-photo{
  width:220px; height:220px; border-radius:50%;
  background: var(--grad);
  display:grid; place-items:center;
  box-shadow: var(--shadow);
  margin: 0 auto;
  position:relative; overflow:hidden;
}
.about-photo::after{
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.4), transparent 50%);
  mix-blend-mode:overlay;
}
.about-photo .ph{
  font-family:"Space Grotesk", Inter, sans-serif;
  font-weight:700; font-size:96px; color:#0A0E1A;
  letter-spacing:-.04em;
}
.about-photo img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  border-radius: inherit;
  z-index: 2;
}
.about-tag{
  font-size:12.5px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--accent-a); font-weight:600;
}
.about-body h2{
  font-family:"Space Grotesk", Inter, sans-serif; font-weight:600;
  font-size: clamp(28px, 3.4vw, 40px); letter-spacing:-.025em; line-height:1.1;
  margin:10px 0 14px;
}
.about-lead{ font-size:17px; margin:0 0 14px; color:var(--text) }
.about-body p{ color:var(--muted); margin:0 0 18px; font-size:15.5px }
.about-promise{
  display:flex; align-items:center; gap:12px;
  padding:14px 18px; border-radius:14px;
  background: rgba(34,211,238,.06);
  border:1px solid rgba(34,211,238,.25);
  color: var(--text); font-size:14.5px; font-weight:500;
  margin: 4px 0 22px;
}
.about-promise svg{ width:20px; height:20px; color:var(--accent-a); flex:0 0 auto }
.about-ctas{ display:flex; gap:12px; flex-wrap:wrap }

/* Pricing */
.pricing{ display:grid; grid-template-columns: repeat(3,1fr); gap:20px; align-items:stretch; }
.plan{
  position:relative;
  padding:32px;
  border-radius:22px;
  border:1px solid var(--line-2);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.005));
  display:flex; flex-direction:column;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.plan:hover{ transform: translateY(-4px); }
.plan .plan-tag{
  font-family:"Space Grotesk", Inter, sans-serif;
  font-size:12px; color:var(--muted-2); letter-spacing:.16em; text-transform:uppercase;
}
.plan h3{
  font-family:"Space Grotesk", Inter, sans-serif; font-weight:600;
  font-size:26px; letter-spacing:-.02em; margin:8px 0 14px;
}
.plan .price-from{ color:var(--muted); font-size:13px; }
.plan .price{
  font-family:"Space Grotesk", Inter, sans-serif;
  font-weight:600;
  font-size:52px; letter-spacing:-.03em; line-height:1;
  margin:4px 0 4px;
}
.plan .price-note{ color:var(--muted); font-size:13.5px; margin-bottom:22px }
.plan ul{ list-style:none; padding:0; margin: 0 0 26px; display:grid; gap:10px; flex:1 }
.plan li{ display:flex; align-items:flex-start; gap:10px; color:var(--text); font-size:14.5px; }
.plan li svg{ width:16px; height:16px; flex:0 0 auto; margin-top:3px; color:var(--accent-a); }
.plan-cta{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  height:46px; padding:0 22px; border-radius:999px;
  background: rgba(255,255,255,.05); border:1px solid var(--line-2);
  color:var(--text); font-weight:500; font-size:14.5px;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.plan-cta:hover{ background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.25); transform: translateY(-1px); }
.plan-cta svg{ width:14px; height:14px }

.plan.popular{
  background:
    radial-gradient(120% 200% at 0% 0%, rgba(34,211,238,.14), transparent 55%),
    radial-gradient(120% 200% at 100% 100%, rgba(139,92,246,.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.005));
  box-shadow: var(--shadow);
}
.plan.popular::after{
  content:""; position:absolute; inset:-1px; border-radius:inherit; pointer-events:none;
  background: linear-gradient(120deg, rgba(34,211,238,.65), rgba(139,92,246,.65), rgba(236,72,153,.55));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding:1px;
}
.plan.popular .plan-cta{ background:var(--grad); color:#0A0E1A; border-color:transparent; font-weight:600; }
.plan.popular .plan-cta:hover{ box-shadow: 0 14px 30px -10px rgba(139,92,246,.6); }
.plan-flag{
  position:absolute; top:-12px; left:50%; transform: translateX(-50%);
  font-size:11px; letter-spacing:.14em; text-transform:uppercase;
  padding:6px 12px; border-radius:999px;
  color:#0A0E1A; background: var(--grad);
  font-weight:700;
  box-shadow: 0 6px 16px -6px rgba(139,92,246,.5);
  white-space: nowrap;
}

/* Care plan */
.care{
  margin-top:28px;
  padding:28px 32px;
  border-radius:20px;
  border:1px dashed var(--line-2);
  background: rgba(255,255,255,.02);
  display:grid; grid-template-columns: 1fr 1.4fr; gap:32px; align-items:center;
}
.care-head .care-tag{
  font-family:"Space Grotesk", Inter, sans-serif;
  font-size:11.5px; color:var(--muted-2); letter-spacing:.16em; text-transform:uppercase;
}
.care-head h3{
  font-family:"Space Grotesk", Inter, sans-serif; font-weight:600;
  font-size:26px; letter-spacing:-.02em; margin:6px 0 10px;
}
.care-head .care-price{
  display:flex; align-items:baseline; gap:8px;
}
.care-head .care-price .num{
  font-family:"Space Grotesk", Inter, sans-serif; font-weight:600;
  font-size:38px; letter-spacing:-.025em; line-height:1;
  background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent;
}
.care-head .care-price .per{ color:var(--muted); font-size:14px }
.care ul{ list-style:none; padding:0; margin:0; display:grid; grid-template-columns: 1fr 1fr; gap:8px 18px; }
.care li{ display:flex; align-items:flex-start; gap:8px; color:var(--text); font-size:14px; }
.care li svg{ width:14px; height:14px; flex:0 0 auto; margin-top:4px; color:var(--accent-a); }

.guarantee-row{
  margin-top:36px; display:flex; align-items:center; justify-content:center; gap:12px;
  color: var(--text); font-size:15px; text-align:center;
  padding:18px 22px; border-radius:14px;
  background: rgba(236,72,153,.06);
  border:1px solid rgba(236,72,153,.22);
}
.guarantee-row svg{ width:20px; height:20px; color:var(--accent-c); flex:0 0 auto }
.guarantee-row em{ font-style: normal; font-weight:500 }

/* Testimonials */
.testimonials{
  display:grid; grid-template-columns: repeat(3,1fr); gap:18px;
}
.testimonial{
  padding:28px;
  border-radius:20px;
  border:1px solid var(--line-2);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(34,211,238,.06), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.005));
  display:flex; flex-direction:column;
}
.stars{ display:flex; gap:3px; margin-bottom:14px; }
.stars svg{ width:16px; height:16px; color:#F5C84B }
.quote{
  font-family:"Space Grotesk", Inter, sans-serif;
  font-weight:500;
  font-size:17px; line-height:1.45; letter-spacing:-.005em;
  margin:0 0 22px; color:var(--text);
  flex:1;
}
.who{ display:flex; align-items:center; gap:12px; margin-top:auto }
.avatar{
  width:40px; height:40px; border-radius:50%;
  background: var(--grad);
  display:grid; place-items:center;
  font-family:"Space Grotesk", Inter, sans-serif;
  font-weight:600; color:#0A0E1A; font-size:14px;
  flex:0 0 auto;
}
.who-meta .name{ font-weight:500; font-size:14.5px }
.who-meta .role{ color:var(--muted); font-size:13px }

/* FAQ */
.faq{ display:grid; gap:12px; max-width:920px; }
details.q{
  border:1px solid var(--line);
  border-radius:14px;
  background: rgba(255,255,255,.02);
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
  overflow:hidden;
}
details.q:hover{ border-color: var(--line-2); transform: translateY(-1px); }
details.q[open]{ border-color: rgba(139,92,246,.45); background: rgba(255,255,255,.035); }
details.q summary{
  list-style:none; cursor:pointer;
  padding:20px 22px;
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  font-family:"Space Grotesk", Inter, sans-serif; font-weight:600;
  font-size:17px; letter-spacing:-.005em;
}
details.q summary::-webkit-details-marker{ display:none }
details.q .chev{
  width:30px; height:30px; border-radius:50%;
  border:1px solid var(--line-2);
  display:grid; place-items:center; flex:0 0 auto;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
details.q .chev svg{ width:14px; height:14px; color:var(--muted) }
details.q[open] .chev{ transform: rotate(180deg); background: var(--grad); border-color:transparent; }
details.q[open] .chev svg{ color:#0A0E1A }
details.q .a{
  padding:0 22px 22px;
  color: var(--muted);
  font-size:15.5px; line-height:1.65;
  max-width: 78ch;
}

/* Contact / Final CTA */
.contact-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap:22px;
}
.contact-card{
  padding:36px;
  border-radius:22px;
  border:1px solid var(--line-2);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.005));
}
.contact-card.alt{
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(34,211,238,.10), transparent 55%),
    radial-gradient(120% 140% at 0% 100%, rgba(139,92,246,.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.005));
}
.contact-card h3{
  font-family:"Space Grotesk", Inter, sans-serif; font-weight:600;
  font-size:22px; letter-spacing:-.015em; margin:0 0 8px;
}
.contact-card .desc{ color:var(--muted); font-size:15px; margin:0 0 20px }
.contact-card .opts{ display:grid; gap:10px }
.opts .btn{ width:100%; justify-content:center; }
.promise{
  margin-top:18px; display:flex; align-items:center; gap:10px;
  color:var(--muted-2); font-size:13.5px;
}
.promise svg{ width:14px; height:14px; color:var(--accent-a); flex:0 0 auto }

/* Direct lines (phone + email, unboxed rows — mirrors parent site) */
.contact-direct{
  display:flex; flex-direction:column; gap: 6px;
  margin-bottom: 22px;
}
.contact-direct .row{
  display:flex; align-items:center; gap: 14px;
  padding: 6px 0;
  transition: opacity .25s var(--ease);
}
.contact-direct .row:hover .val{ color: var(--accent-a); }
.contact-direct .row svg{ width:18px; height:18px; color: var(--accent-a); flex:0 0 auto; }
.contact-direct .row > div{ min-width:0; flex:1; }
.contact-direct .row .label{ color: var(--muted-2); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.contact-direct .row .val{ color: var(--text); font-weight: 500; font-size: 15px; overflow:hidden; text-overflow:ellipsis; }

/* Form */
.field{ margin-bottom:14px }
.field label{
  display:block; font-size:13.5px; color:var(--muted); margin-bottom:6px;
}
.field label .req{ color:var(--accent-c) }
.field label .optional{ color: var(--muted-2); font-weight: 400; font-size: 12.5px; }
.field input, .field textarea{
  width:100%;
  padding:13px 16px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line-2);
  border-radius:12px;
  color:var(--text);
  font-family: inherit; font-size:15px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field textarea:focus{
  outline:none;
  border-color: rgba(139,92,246,.6);
  background: rgba(255,255,255,.06);
}
.field textarea{ resize:vertical; min-height:96px; }

/* Honeypot field — visually hidden, accessible to bots only */
.field--hp{
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Form submission status messages */
.form-status{
  margin: 14px 0 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  min-height: 1.2em;
  color: var(--muted);
}
.form-status.is-success{
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.30);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 12px;
}
.form-status.is-error{
  background: rgba(236, 72, 153, 0.08);
  border: 1px solid rgba(236, 72, 153, 0.30);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 12px;
}

.what-next{
  margin: 6px 0 18px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(34,211,238,.05);
  border: 1px solid rgba(34,211,238,.18);
}
.what-next strong{
  display:block;
  font-family:"Space Grotesk", Inter, sans-serif;
  font-weight: 600; font-size: 13.5px;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--accent-a);
  margin-bottom: 10px;
}
.what-next ul{
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
}
.what-next li{
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text);
}
.what-next li svg{
  width: 16px; height: 16px; flex: 0 0 auto;
  margin-top: 2px;
  color: var(--accent-a);
}

/* Lead magnet / guide */
.guide-card{
  display:grid; grid-template-columns: 320px 1fr;
  gap: 48px; align-items:center;
  padding: 48px;
  border-radius: 24px;
  border: 1px solid var(--line-2);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(34,211,238,.10), transparent 55%),
    radial-gradient(120% 140% at 100% 100%, rgba(139,92,246,.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.005));
}
.guide-cover{
  position: relative;
  width: 280px; height: 320px;
  margin: 0 auto;
}
.guide-page{
  position: absolute;
  background: #FAF9F6;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.06);
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 30px 50px -20px rgba(0,0,0,.6), 0 6px 12px -4px rgba(0,0,0,.3);
}
.guide-page.p1{
  top: 0; left: 14px; width: 200px; height: 260px;
  transform: rotate(-4deg);
  z-index: 2;
}
.guide-page.p2{
  top: 38px; right: 0; width: 190px; height: 240px;
  transform: rotate(5deg);
  z-index: 1;
}
.guide-page .g-band{
  height: 4px; border-radius: 999px;
  background: var(--grad);
  width: 56px; margin-bottom: 4px;
}
.guide-page .g-h{
  height: 11px; border-radius: 3px;
  background: rgba(14,19,34,.85);
  width: 92%;
}
.guide-page .g-h.short{ width: 56% }
.guide-page .g-l{
  height: 5px; border-radius: 3px;
  background: rgba(14,19,34,.16);
  width: 100%;
}
.guide-page .g-l.short{ width: 60% }
.guide-page .g-num{
  display: inline-block;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--grad);
  color: #FAF9F6;
  font-family:"Space Grotesk", sans-serif;
  font-weight: 700; font-size: 9.5px;
  text-align: center; line-height: 20px;
  margin-top: 2px;
}
.guide-tag{
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-a); font-weight: 600;
}
.guide-body h2{
  font-family:"Space Grotesk", Inter, sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -.025em; line-height: 1.06;
  margin: 12px 0 14px;
}
.guide-body h2 .grad{
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.guide-body p{ color: var(--muted); margin: 0 0 26px; font-size: 16px; }
.guide-body p em{ font-style: italic; color: var(--text); }
.guide-cta{ margin-bottom: 22px }
.guide-form-label{
  display: block; font-size: 13.5px; color: var(--muted); margin-bottom: 8px;
}
.guide-form-row{
  display: flex; gap: 8px; max-width: 460px;
}
.guide-form-row input{
  flex: 1; min-width:0;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  color: var(--text);
  font: inherit; font-size: 14px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.guide-form-row input:focus{
  outline: none;
  border-color: rgba(139,92,246,.6);
  background: rgba(255,255,255,.06);
}
.guide-form-row button{
  padding: 0 18px; border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-2);
  color: var(--text);
  font-weight: 500; font-size: 14px;
  cursor: pointer; white-space: nowrap;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.guide-form-row button:hover{
  background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.25);
}
.guide-form-note{
  font-size: 12px; color: var(--muted-2); margin-top: 8px;
}
.guide-form-success{
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: rgba(34,211,238,.08);
  border: 1px solid rgba(34,211,238,.3);
  border-radius: 10px;
  color: var(--text); font-size: 14px;
}
.guide-form-success svg{
  width: 18px; height: 18px; flex: 0 0 auto;
  color: var(--accent-a);
}

/* Footer */
footer{
  padding:48px 0 40px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:13.5px;
}
.foot-inner{
  display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap;
}
.foot-links{ display:flex; gap:22px; flex-wrap:wrap; }
.foot-links a:hover{ color:var(--text) }
.foot-links .disabled{ opacity:.55; cursor:not-allowed }
.foot-contact{ display:flex; gap:18px; flex-wrap:wrap; color:var(--muted) }
.foot-contact a:hover{ color:var(--text) }

/* Mobile sticky bar */
.mobile-bar{
  display:none;
  position:fixed; left:0; right:0; bottom:0; z-index:60;
  padding:10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10,14,26,.85);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-top:1px solid var(--line-2);
  gap:10px;
}
.mobile-bar a{
  flex:1;
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  height:48px; border-radius:999px;
  font-size:14.5px; font-weight:600;
}
.mb-call{
  background: var(--grad); color:#0A0E1A;
  box-shadow: 0 8px 20px -8px rgba(139,92,246,.5);
}
.mb-call svg{ width:16px; height:16px; }
.mb-email{
  background: rgba(255,255,255,.06);
  border:1px solid var(--line-2);
  color: var(--text);
}
.mb-email svg{ width:16px; height:16px; color:var(--muted) }

/* Hero greeter — small founder badge inside hero */
.hero-greeter{
  display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line-2);
  margin: 4px 0 22px;
  font-size: 13.5px; color: var(--muted);
}
.hero-greeter .hg-photo{
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--grad);
  color: #0A0E1A;
  display: grid; place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 13px;
  flex: 0 0 auto;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 12px -4px rgba(139,92,246,.5);
}
.hero-greeter .hg-photo img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-greeter strong{ color: var(--text); font-weight: 600; }
.hero-greeter a{
  color: var(--text);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 1px;
  transition: border-color .25s var(--ease);
  white-space: nowrap;
}
.hero-greeter a:hover{ border-color: var(--accent-a); }

/* Section vouch — small founder attribution under a section title */
.section-vouch{
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 18px;
  padding: 7px 14px 7px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line-2);
  font-size: 13px; color: var(--muted);
}
.section-vouch .sv-photo{
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--grad);
  color: #0A0E1A;
  display: grid; place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 12px;
  flex: 0 0 auto;
  position: relative; overflow: hidden;
}
.section-vouch .sv-photo img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Reveal */
.reveal{
  opacity:0; transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in{ opacity:1; transform: none }
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none; transition:none}
  html{scroll-behavior:auto}
}

a:focus-visible, button:focus-visible, summary:focus-visible{
  outline: 2px solid var(--accent-a); outline-offset: 3px; border-radius:8px;
}

/* =================================================================
   Responsive — mobile-first refinements
   ================================================================= */

@media (max-width: 980px){
  .nav-links{ display:none }
  .process{ grid-template-columns: repeat(2,1fr) }
  .work-grid{ grid-template-columns: repeat(2,1fr) }
  .pricing{ grid-template-columns: 1fr; max-width:520px; margin:0 auto }
}

@media (max-width: 880px){
  .caps{ grid-template-columns: repeat(2,1fr) }
  .testimonials{ grid-template-columns: 1fr; max-width:560px; margin:0 auto }
  .contact-grid{ grid-template-columns: 1fr }
  .about-wrap{ grid-template-columns: 1fr; gap:28px; padding:32px 24px }
  .guide-card{ grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  section{ padding: 88px 0; }
  .sec-head{ margin-bottom: 40px }
}

@media (max-width: 780px){
  section{ padding: 76px 0; }
  .wrap{ padding: 0 20px }
  .hero{ padding: 64px 0 32px }
  .care{ grid-template-columns: 1fr; padding:24px }
}

@media (max-width: 680px){
  /* Nav: tighten */
  .nav-inner{ height: 60px; gap: 10px; }
  .nav-right{ gap: 10px; }
  .nav-back, .nav-phone{ display:none }
  .brand-name{ font-size: 14.5px; }
  .brand-name span{ display: none; }
  .nav-cta{ height: 36px; padding: 0 14px; font-size: 13px; gap: 6px; }
  .nav-cta svg{ width: 12px; height: 12px; }

  /* Hero */
  .hero{ padding: 44px 0 20px; }
  .eyebrow{ font-size: 11.5px; padding: 6px 12px 6px 9px; }
  h1.hero-title{ max-width: none; font-size: clamp(34px, 9vw, 54px); margin: 18px 0 18px; }
  .hero-sub{ font-size: 15.5px; margin-bottom: 26px; line-height: 1.55; }

  /* Buttons — better tap targets */
  .btn{ height: 48px; padding: 0 20px; font-size: 14.5px; }
  .btn-row{ gap: 10px; }

  /* Proof bar */
  .proof-bar{ gap: 8px 18px; margin-top: 20px; font-size: 13px; }
  .proof-bar svg{ width: 14px; height: 14px; }

  /* Trust bar */
  .trust{ margin-top: 56px; padding: 20px 0; }
  .trust-inner{ gap: 14px; }
  .trust-label{ font-size: 11px; }
  .trust-logos{ gap: 12px 22px; }
  .trust-logos span{ font-size: 14px; }

  /* Section heads */
  .sec-head{ margin-bottom: 32px; }
  .sec-title br{ display: none; }
  .sec-sub{ font-size: 15.5px; }

  /* Work cards (portfolio) */
  .work-grid{ grid-template-columns: 1fr; gap: 18px; }
  .work-meta{ padding: 18px 18px 20px; }

  /* Caps grid */
  .caps{ gap: 14px; }
  .cap{ padding: 22px 20px; }

  /* About */
  .about-wrap{ padding: 28px 22px; gap: 24px; }
  .about-photo{ width: 160px; height: 160px; }
  .about-photo .ph{ font-size: 72px; }
  .about-body h2{ margin: 8px 0 12px; }
  .about-lead{ font-size: 16px; }
  .about-body p{ font-size: 15px; }
  .about-promise{ padding: 12px 14px; font-size: 13.5px; }
  .about-ctas .btn{ flex: 1; }

  /* Pricing */
  .plan{ padding: 28px 24px; border-radius: 18px; }
  .plan h3{ font-size: 24px; }
  .plan .price{ font-size: 44px; }
  .plan li{ font-size: 14px; }

  /* Care plan */
  .care{ padding: 24px 20px; gap: 20px; }
  .care-head .care-price .num{ font-size: 34px; }
  .care ul{ grid-template-columns: 1fr; }
  .guarantee-row{ font-size: 14px; padding: 16px 18px; gap: 10px; }

  /* Testimonials */
  .testimonial{ padding: 24px 22px; }
  .quote{ font-size: 16px; }

  /* FAQ */
  details.q summary{ padding: 18px 18px; font-size: 16px; gap: 14px; }
  details.q .a{ padding: 0 18px 20px; font-size: 15px; }
  details.q .chev{ width: 28px; height: 28px; }

  /* Guide card */
  .guide-card{ padding: 28px 22px; gap: 28px; border-radius: 20px; }
  .guide-cover{ width: 240px; height: 280px; }
  .guide-page.p1{ width: 180px; height: 230px; left: 8px; }
  .guide-page.p2{ width: 170px; height: 210px; }
  .guide-body h2{ font-size: clamp(22px, 6.5vw, 30px); }
  .guide-body p{ font-size: 15px; }
  .guide-form-row{ flex-direction: column; gap: 8px; }
  .guide-form-row input{ padding: 12px 14px; font-size: 14px; }
  .guide-form-row button{ padding: 12px 14px; font-size: 14px; }

  /* Contact cards */
  .contact-card{ padding: 26px 22px; border-radius: 18px; }
  .contact-card h3{ font-size: 20px; }
  .contact-card .desc{ font-size: 14px; margin-bottom: 18px; }
  .what-next{ padding: 14px 16px; margin-bottom: 16px; }
  .what-next li{ font-size: 13.5px; }

  /* Plan flag — center it cleanly above */
  .plan-flag{ top: -10px; font-size: 10px; padding: 5px 10px; }

  /* Footer */
  footer{ padding: 32px 0 28px; }
  .foot-inner{ gap: 12px; font-size: 12.5px; }
  .foot-links{ gap: 16px; }
  .foot-contact{ gap: 14px; }

  /* Mobile sticky bar shown */
  .mobile-bar{ display:flex }
  body{ padding-bottom: calc(68px + env(safe-area-inset-bottom)) }
}

@media (max-width: 520px){
  .caps{ grid-template-columns: 1fr }
  .process{ grid-template-columns: 1fr }
  .about-ctas{ flex-direction: column; }
  .about-ctas .btn{ width: 100%; }
}

@media (max-width: 380px){
  .brand-mark{ width: 30px; height: 30px; border-radius: 8px; }
  .brand-name{ font-size: 14px; }
  .nav-cta{ padding: 0 12px; font-size: 12.5px; }
  h1.hero-title{ font-size: clamp(28px, 9vw, 42px); }
  .about-photo{ width: 140px; height: 140px; }
  .about-photo .ph{ font-size: 64px; }
}

/* =========================================================
   Subscription pricing additions (Starter / Growth / Premium)
   ========================================================= */
.plan .price .per-mo{
  font-family:"Space Grotesk", Inter, sans-serif;
  font-size: .42em;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -.01em;
  margin-left: 4px;
}

/* --- Annual prepay banner --- */
.prepay{
  margin-top: 32px;
  padding: 22px 26px;
  background: linear-gradient(120deg, rgba(34,211,238,.10), rgba(139,92,246,.10));
  border: 1px solid rgba(139,92,246,.28);
  border-radius: var(--radius);
  display:flex; align-items:center; gap: 18px;
}
.prepay-ic{
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--grad);
  display:grid; place-items:center;
  flex: 0 0 auto;
  box-shadow: 0 8px 22px -10px rgba(139,92,246,.6);
}
.prepay-ic svg{ width: 22px; height: 22px; color: #0A0E1A; }
.prepay-body{ display:flex; flex-direction:column; gap: 2px; }
.prepay-body strong{ font-family:"Space Grotesk", Inter, sans-serif; font-size: 16.5px; }
.prepay-body span{ color: var(--muted); font-size: 14.5px; }

/* --- Web Design Only — one-time card --- */
.one-time{
  margin-top: 28px;
  padding: 36px 36px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.one-time::before{
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(60% 80% at 100% 0%, rgba(236,72,153,.10), transparent 60%);
  pointer-events: none;
}
.one-time-tag{
  font-family:"Space Grotesk", Inter, sans-serif;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-c);
  margin-bottom: 18px;
  position: relative;
}
.one-time-grid{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
}
.one-time-body h3{
  margin: 0 0 10px;
  font-family:"Space Grotesk", Inter, sans-serif;
  font-size: 28px; font-weight: 600;
  letter-spacing: -.01em;
}
.one-time-price{
  display:flex; align-items: baseline; gap: 10px;
  margin-bottom: 14px;
}
.one-time-price .from{ color: var(--muted); font-size: 14px; }
.one-time-price .num{
  font-family:"Space Grotesk", Inter, sans-serif;
  font-size: 38px; font-weight: 700;
  letter-spacing: -.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.one-time-price .per{ color: var(--muted); font-size: 14px; }
.one-time-body p{ margin: 0 0 18px; color: var(--muted); font-size: 15px; max-width: 640px; }
.one-time-list{ list-style:none; padding:0; margin:0; display:grid; gap: 8px; }
.one-time-list li{ display:flex; align-items:flex-start; gap:10px; color: var(--text); font-size: 14.5px; }
.one-time-list li svg{ width:16px; height:16px; flex:0 0 auto; margin-top:3px; color: var(--accent-a); }
.one-time-cta-wrap{ display:flex; align-items:center; }
.one-time-cta-wrap .btn{ white-space: nowrap; }

@media (max-width: 720px){
  .one-time{ padding: 28px 24px; }
  .one-time-grid{ grid-template-columns: 1fr; gap: 22px; }
  .one-time-cta-wrap .btn{ width: 100%; justify-content: center; }
  .prepay{ flex-direction: column; align-items: flex-start; }
}
