/* ============================================================
   Build by Neil Busque - The Ownership Build
   Light premium modern-agency reskin (drewl-style).
   Hybrid blue->purple->coral gradient. Schibsted Grotesk + Inter.
   ============================================================ */

:root {
  --bg:        #F7F7F7;   /* page background, cool neutral (drewl-matched) */
  --bg-card:   #FFFFFF;   /* cards */
  --bg-soft:   #F1F1F2;   /* subtle alt band / inset chips (cool-matched) */
  --ink:       #1C1C1C;   /* headings */
  --ink-2:     #262626;
  --ink-body:  #3F3F46;   /* body text (>= AA on --bg) */
  --muted:     #6E6E76;   /* secondary text */
  --muted-2:   #9A9AA2;   /* eyebrows / tertiary */
  --line:      rgba(17,17,20,0.10);
  --line-2:    rgba(17,17,20,0.16);
  --coral:     #E94F37;   /* solid accent where a gradient is overkill */
  --coral-soft:rgba(233,79,55,0.10);
  --good:      #2E9E6B;   /* "for you" check, AA on light */
  /* gradient - hybrid blue->purple->coral, resolves into brand coral (Neil's pick) */
  --g1:#8BD8FC; --g2:#5FA6F5; --g3:#8C7DF7; --g4:#A37BF0; --g5:#E94F37;
  --grad: linear-gradient(96deg, #8BD8FC 0%, #5FA6F5 20%, #8C7DF7 42%, #A37BF0 60%, #E0589C 80%, #E94F37 100%);
  --grad-soft: linear-gradient(96deg, rgba(68,154,250,0.14), rgba(125,107,249,0.14), rgba(142,99,242,0.12));
  /* shadows (soft, light-mode) */
  --shadow-pill: 0 1px 2px rgba(16,18,30,0.06), 0 6px 16px -6px rgba(16,18,30,0.16);
  --shadow-card: 0 2px 4px rgba(16,18,30,0.04), 0 14px 36px -16px rgba(16,18,30,0.16);
  --r:16px; --r-lg:22px; --maxw:1180px;
  --ease: cubic-bezier(0.22,1,0.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink-body);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* light glows (drewl signature) */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(900px 520px at 72% -5%, rgba(95,140,235,0.06), transparent 60%),
    radial-gradient(720px 520px at 8% 8%, rgba(68,154,250,0.07), transparent 55%),
    radial-gradient(620px 420px at 92% 16%, rgba(95,140,235,0.04), transparent 55%);
}

img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

/* ---------- Type ---------- */
.display { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 600;
}
.eyebrow.muted { color: var(--muted-2); opacity: 0.78; }

h1 { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 600; line-height: 1.05; letter-spacing: -0.025em; color: var(--ink); }
h2 { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 550; line-height: 1.08; letter-spacing: -0.022em; color: var(--ink); }
h3 { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); }

.lead { font-size: clamp(18px, 2vw, 21px); color: var(--muted); line-height: 1.6; }

/* gradient text utility (replaces old em.h coral) */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* inline keyword pill */
.kw {
  display: inline-block; border: 1px solid var(--line); border-radius: 999px;
  padding: 1px 9px; font-size: 0.86em; color: var(--ink); background: #fff;
  white-space: nowrap; line-height: 1.5;
}

/* ---------- Buttons (pills) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 16px;
  padding: 15px 28px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .25s var(--ease), background .25s, box-shadow .25s, border-color .25s;
  white-space: nowrap; line-height: 1;
}
.btn-primary {
  background: #1C1C1C; color: #fff; box-shadow: var(--shadow-pill);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(16,18,30,0.07), 0 14px 30px -8px rgba(16,18,30,0.22); }
.btn-grad {
  background: var(--grad); color: #fff; box-shadow: var(--shadow-pill);
}
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(16,18,30,0.08), 0 16px 34px -10px rgba(125,107,249,0.5); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-pill); }
.btn-ghost:hover { border-color: var(--line-2); transform: translateY(-2px); }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--coral-soft); border-radius: 6px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; transition: background .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(247,247,247,0.82); backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px dotted var(--line-2); padding: 12px 28px;
}
.brand { display: flex; align-items: center; gap: 9px; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 600; font-size: 22px; letter-spacing: -0.01em; color: var(--ink); }
.brand .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--grad); box-shadow: 0 1px 6px rgba(125,107,249,0.5); }
.nav .btn { padding: 11px 20px; font-size: 15px; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
@media (max-width: 640px) { .nav-secondary { display: none; } }

/* ---------- Hero (centered, drewl-style) ---------- */
.hero { padding: 184px 0 88px; position: relative; overflow: hidden; }
.hero-inner { max-width: 880px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }

/* faint blueprint tracery + podium reflection live behind the text */
.hero-bp { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-bp svg { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1400px; max-width: none; height: 100%; opacity: 1; -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%); mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%); }
.hero-podium { position: absolute; left: 50%; bottom: -40px; transform: translateX(-50%); width: 820px; max-width: 94%; height: 250px; z-index: 0; pointer-events: none; background: radial-gradient(70% 80% at 50% 100%, rgba(255,255,255,1), rgba(255,255,255,0) 72%), radial-gradient(60% 80% at 50% 100%, rgba(120,130,150,0.10), rgba(120,130,150,0) 70%); filter: blur(11px); }

.hero .eyebrow { display: inline-flex; align-items: center; gap: 12px; justify-content: center; }
.hero .eyebrow .mk { display: inline-block; width: 22px; height: 1px; background: rgba(154,154,162,0.5); opacity: 0.5; }
.hero h1 { font-size: clamp(42px, 6.6vw, 80px); margin: 22px 0 4px; font-weight: 500; line-height: 1.02; letter-spacing: -0.035em; }
.hero h1 .grad-text { display: inline-block; }
.hero-underline { display: block; width: clamp(260px, 46vw, 540px); height: 26px; margin: 2px auto 22px; }
.hero-underline path { fill: none; stroke-width: 5; stroke-linecap: round; }
.hero .lead { max-width: 62ch; margin: 0 auto; }
.hero-cta { margin-top: 32px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-cta small { width: 100%; color: var(--muted); font-size: 14px; margin-top: 4px; }
.trust { margin-top: 30px; color: var(--muted); font-size: 14px; letter-spacing: 0.01em; }
.trust b { color: var(--ink); font-weight: 600; }

/* ---------- Section frame ---------- */
section { padding: clamp(80px, 9vw, 128px) 0; position: relative; }
.sec-head { max-width: 760px; margin-bottom: 76px; }
.sec-head h2 { font-size: clamp(30px, 4.4vw, 50px); margin: 16px 0 18px; }
.sec-head p { color: var(--muted); font-size: 18px; }
.divider { border: none; border-top: 1px solid var(--line); margin: 0; }

/* ---------- Pain quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.quote {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-card);
  padding: 28px 26px; position: relative; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.quote:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 4px 8px rgba(16,18,30,0.05), 0 20px 44px -18px rgba(16,18,30,0.2); }
.quote .mark { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 600; font-size: 56px; line-height: 0.6; color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; opacity: .85; }
.quote p { margin-top: 14px; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 500; font-size: 20px; line-height: 1.35; color: var(--ink); letter-spacing: -0.01em; }
.quote .who { margin-top: 16px; font-size: 12.5px; color: var(--muted-2); letter-spacing: 0.04em; }

/* ---------- Why options fail / hidden costs ---------- */
.fails { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.fail { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-card); padding: 32px 30px; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.fail:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 4px 8px rgba(16,18,30,0.05), 0 20px 44px -18px rgba(16,18,30,0.2); }
.fail .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-soft); border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 20px; }
.fail .ico svg { width: 22px; height: 22px; stroke: var(--muted); }
.fail h3 { font-size: 21px; margin-bottom: 6px; }
.fail .sub { font-size: 12.5px; color: var(--muted-2); letter-spacing: 0.04em; margin-bottom: 18px; }
.fail ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.fail li { display: flex; gap: 11px; font-size: 15.5px; color: var(--ink-body); line-height: 1.5; }
.fail li::before { content: "\2715"; color: var(--muted-2); font-size: 13px; margin-top: 3px; }
.fail .cost { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.fail .cost b { color: var(--ink); font-weight: 600; }

/* ---------- Comparison table ---------- */
.cmp-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-card); box-shadow: var(--shadow-card); }
table.cmp { width: 100%; border-collapse: collapse; min-width: 760px; }
table.cmp th, table.cmp td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
table.cmp thead th { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
table.cmp thead th.ours { color: var(--coral); }
table.cmp tbody th { font-weight: 600; color: var(--ink); font-size: 15px; }
table.cmp td { font-size: 15px; color: var(--ink-body); }
table.cmp .ours { background: var(--coral-soft); }
table.cmp td.ours { color: var(--ink); font-weight: 500; }
table.cmp tr:last-child th, table.cmp tr:last-child td { border-bottom: none; }

/* ---------- Offer / method ---------- */
.offer { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 12px; }
.step { position: relative; padding: 30px 28px; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-card); box-shadow: var(--shadow-card); transition: transform .3s var(--ease), box-shadow .3s; }
.step:hover { transform: translateY(-4px); box-shadow: 0 4px 8px rgba(16,18,30,0.05), 0 20px 44px -18px rgba(16,18,30,0.2); }
.step .n { font-size: 12px; font-weight: 700; color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; letter-spacing: 0.1em; }
.step h3 { font-size: 26px; margin: 10px 0 12px; font-weight: 600; }
.step p { color: var(--ink-body); font-size: 15.5px; }
.step .when { margin-top: 16px; font-size: 12px; color: var(--muted-2); letter-spacing: 0.04em; font-weight: 600; text-transform: uppercase; }

/* ---------- Included list ---------- */
.incl { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
.incl li { list-style: none; display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 16.5px; color: var(--ink); }
.incl li svg { flex: 0 0 auto; width: 22px; height: 22px; stroke: var(--coral); margin-top: 2px; }
.incl li span small { display: block; color: var(--muted); font-size: 14px; margin-top: 2px; font-weight: 400; }

/* ---------- Guarantee ---------- */
.guarantee { display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-card); padding: 44px 48px; position: relative; overflow: hidden; }
.guarantee .seal { width: 96px; height: 96px; border-radius: 50%; border: 2px solid transparent; background: linear-gradient(#fff, #fff) padding-box, var(--grad) border-box; display: grid; place-items: center; }
.guarantee .seal svg { width: 44px; height: 44px; stroke: var(--coral); }
.guarantee h2 { font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 12px; }
.guarantee p { color: var(--ink-body); font-size: 17px; max-width: 60ch; }
.guarantee p + p { margin-top: 14px; }

/* ---------- For / not for ---------- */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fit-col { border: 1px solid var(--line); border-radius: var(--r); padding: 32px; background: var(--bg-card); box-shadow: var(--shadow-card); }
.fit-col h3 { font-size: 19px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.fit-col.yes h3 { color: var(--good); }
.fit-col.no h3 { color: var(--muted); }
.fit-col li { list-style: none; display: flex; gap: 12px; padding: 11px 0; font-size: 16px; color: var(--ink-body); border-bottom: 1px solid var(--line); }
.fit-col li:last-child { border-bottom: none; }
.fit-col.yes li::before { content: "\2713"; color: var(--good); }
.fit-col.no li::before { content: "\2013"; color: var(--muted-2); }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.about .card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-card); padding: 34px; }
.about .card > p { color: var(--ink-body); }
.about .stat-row { display: flex; gap: 32px; margin-top: 26px; }
.about .stat .num { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 600; font-size: 40px; color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; line-height: 1; letter-spacing: -0.02em; }
.about .stat .lab { font-size: 11px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 8px; font-weight: 600; }
.about h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 20px; }
.about p { color: var(--ink-body); margin-bottom: 16px; }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary { list-style: none; cursor: pointer; padding: 22px 4px; font-size: 19px; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; gap: 20px; align-items: center; transition: color .2s; font-family: 'Schibsted Grotesk', sans-serif; letter-spacing: -0.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--coral); }
.faq summary .pm { flex: 0 0 auto; width: 26px; height: 26px; border: 1px solid var(--line-2); border-radius: 50%; display: grid; place-items: center; font-size: 18px; color: var(--coral); transition: transform .3s var(--ease); }
.faq details[open] summary .pm { transform: rotate(45deg); }
.faq details p { padding: 0 4px 24px; color: var(--ink-body); font-size: 16px; max-width: 70ch; }

/* ---------- Final CTA + form ---------- */
.final { background: var(--bg-soft); border-top: 1px solid var(--line); }
.final-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.final h2 { font-size: clamp(32px, 4.6vw, 54px); margin: 16px 0 20px; }
.final .lead { margin-bottom: 26px; }
.final .reassure { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.final .reassure li { display: flex; gap: 12px; color: var(--ink-body); font-size: 16px; }
.final .reassure li svg { width: 20px; height: 20px; stroke: var(--coral); flex: 0 0 auto; }

form.book { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-card); padding: 32px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 600; }
.field input, .field textarea, .field select {
  width: 100%; background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; color: var(--ink); font-family: 'Inter', sans-serif; font-size: 16px; transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px var(--coral-soft); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236E6E76' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
form.book .btn { width: 100%; justify-content: center; margin-top: 8px; }
form.book .fineprint { margin-top: 14px; text-align: center; font-size: 13px; color: var(--muted-2); }
.form-msg { margin-top: 14px; font-size: 14px; text-align: center; display: none; }
.form-msg.err { display: block; color: var(--coral); }

/* ---------- Footer ---------- */
footer { padding: 56px 0 40px; border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.foot { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.foot .brand { font-size: 20px; }
.foot .links { display: flex; gap: 24px; font-size: 14px; color: var(--muted); flex-wrap: wrap; }
.foot .links a:hover { color: var(--ink); }
.foot .legal { width: 100%; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 13px; }
.foot-wordmark { margin-top: 30px; text-align: center; line-height: 0.82; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 600; font-size: clamp(80px, 18vw, 220px); letter-spacing: -0.04em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: 0.18; -webkit-text-stroke: 1px rgba(28,28,28,0.05); user-select: none; pointer-events: none; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } .hero-underline path { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; } }

/* hero underline draw-in (respects reduced-motion above) */
.hero-underline path { stroke-dasharray: 620; stroke-dashoffset: 620; transition: stroke-dashoffset 1.1s var(--ease) .2s; }
.reveal.in .hero-underline path { stroke-dashoffset: 0; }

/* ---------- Logo strip ---------- */
.logos { padding: 42px 0; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #fff, #F4F4F6); }
.logos-eyebrow { text-align: center; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; margin: 0 0 24px; }
.logo-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 44px; }
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); opacity: 0.7; filter: grayscale(1); transition: color .25s var(--ease), opacity .25s var(--ease), filter .25s var(--ease); }
.logo:hover { color: var(--ink); opacity: 1; filter: grayscale(0); }
.logo svg { width: 22px; height: 22px; flex: 0 0 auto; }
.logo b { font-weight: 600; font-size: 15.5px; letter-spacing: -0.01em; }
@media (max-width: 560px) { .logos { padding: 32px 0; } .logo-row { gap: 14px 26px; } .logo svg { width: 19px; height: 19px; } .logo b { font-size: 13.5px; } }

/* ---------- ROI calculator ---------- */
.roi { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 48px; align-items: stretch; }
.roi-inputs, .roi-out { min-width: 0; }
.roi-inputs { display: flex; flex-direction: column; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-card); padding: 30px 30px 24px; }
.roi-field { margin-bottom: 22px; }
.roi-label { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; font-size: 15px; color: var(--ink-body); margin-bottom: 11px; line-height: 1.3; }
.roi-label span { flex: 1 1 auto; min-width: 0; }
.roi-label b { flex: 0 0 auto; color: var(--ink); font-weight: 600; font-size: 15px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.roi-note { font-size: 13px; color: var(--muted); margin: 6px 0 0; }
#roi input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: var(--bg-soft); outline: none; cursor: pointer; }
#roi input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--coral); border: none; box-shadow: 0 0 0 4px var(--coral-soft), 0 2px 6px rgba(16,18,30,0.18); transition: transform .15s var(--ease); }
#roi input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
#roi input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border: none; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px var(--coral-soft); }
#roi input[type="range"]::-moz-range-track { height: 6px; border-radius: 999px; background: var(--bg-soft); }

.roi-out { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-card); padding: 34px 32px; display: flex; flex-direction: column; }
.roi-hero { padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.roi-hero-num { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 600; font-size: clamp(46px, 7vw, 76px); line-height: 1; display: flex; align-items: baseline; gap: 12px; letter-spacing: -0.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.roi-hero-num .roi-unit { font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 600; -webkit-text-fill-color: var(--muted); color: var(--muted); letter-spacing: 0; background: none; }
.roi-hero-lab { color: var(--ink-body); font-size: 16px; margin: 12px 0 0; }
.roi-hero-lab b { color: var(--ink); }
.roi-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; margin: 24px 0; }
.roi-stat { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 15px 16px; }
.roi-stat span { display: block; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 600; font-size: 27px; color: var(--ink); letter-spacing: -0.01em; }
.roi-stat small { display: block; color: var(--muted); font-size: 12.5px; margin-top: 3px; }
.roi-stat.ours { border-color: var(--coral); background: var(--coral-soft); }
.roi-stat.ours span { color: var(--coral); }
.roi-foot { color: var(--ink-body); font-size: 14.5px; line-height: 1.55; margin: auto 0 20px; }
.roi-out .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }

/* ---------- What's possible (outcomes) ---------- */
.wins { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.win { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-card); padding: 32px 30px; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.win:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 4px 8px rgba(16,18,30,0.05), 0 20px 44px -18px rgba(16,18,30,0.2); }
.win .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--grad); display: grid; place-items: center; margin-bottom: 20px; box-shadow: 0 6px 16px -8px rgba(125,107,249,0.20); }
.win .ico svg { width: 22px; height: 22px; stroke: #fff; }
.win h3 { font-size: 20px; margin-bottom: 10px; line-height: 1.25; font-weight: 600; }
.win p { color: var(--ink-body); font-size: 15.5px; line-height: 1.55; }
.wins-foot { margin-top: 38px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.wins-foot p { color: var(--ink-body); font-size: 17px; max-width: 62ch; }
.wins-foot p b { color: var(--ink); font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .about, .final-grid, .roi { grid-template-columns: 1fr; gap: 40px; }
  .quotes, .fails, .steps, .wins { grid-template-columns: 1fr; }
  .incl, .fit { grid-template-columns: 1fr; }
  .guarantee { grid-template-columns: 1fr; text-align: center; padding: 36px 28px; }
  .guarantee .seal { margin: 0 auto; }
  .guarantee p { margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .nav { padding: 14px 20px; }
  .nav .brand span.full { display: none; }
  .hero { padding: 130px 0 56px; }
  section { padding: 64px 0; }
  .guarantee p { font-size: 15px; }
  form.book { padding: 24px; }
}

/* ===== PORTFOLIO COMPONENTS ===== */

/* ---------- Stat band ---------- */
.statband {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(48px, 6vw, 80px) 0;
}
.statband-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 56px;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
}
.statband-item { flex: 1 1 160px; }
.statband-num {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}
.statband-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 6px;
  display: block;
}

/* ---------- Work rows ---------- */
.work-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding: clamp(60px, 8vw, 110px) 0;
  border-bottom: 1px solid var(--line);
}
.work-row:nth-child(even) { direction: rtl; }
.work-row:nth-child(even) > * { direction: ltr; }
.work-row:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .work-row {
    grid-template-columns: 1fr;
    gap: 36px;
    direction: ltr !important;
  }
  .work-row:nth-child(even) > * { direction: ltr; }
  .work-row .work-media { order: -1; }
}

/* ---------- Work media ---------- */
.work-media {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border-top: 3px solid transparent;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box, var(--grad) border-box;
  position: relative;
}
.mock {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-card) 100%);
  padding: 32px;
}
.mock-label {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}
.mock-sub {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  max-width: 24ch;
}
.mock-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--grad);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
  box-shadow: 0 8px 24px -8px rgba(125,107,249,0.4);
}
.mock-icon svg { width: 28px; height: 28px; stroke: #fff; }

/* ---------- Work copy ---------- */
.work-copy { }
.work-copy h3 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 6px; }
.work-copy .tag {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: 400;
}
.work-copy p { color: var(--ink-body); margin-bottom: 16px; }
.work-copy .qa { margin: 24px 0; }
.work-copy .qa .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 8px;
}
.work-copy .qa p { color: var(--ink-body); font-size: 15.5px; margin: 0; }

/* ---------- How list ---------- */
.how {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}
.how li {
  display: flex;
  gap: 10px;
  font-size: 15.5px;
  color: var(--ink-body);
  line-height: 1.5;
}
.how li::before {
  content: "\2713";
  color: var(--coral);
  font-weight: 700;
  flex: 0 0 auto;
  margin-top: 1px;
}

/* ---------- Tech chips ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 24px;
}
.chip {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ---------- Work button row ---------- */
.work-btns { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }

/* ---------- App grid ---------- */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.app-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-card);
  padding: 24px;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.app-card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 4px 8px rgba(16,18,30,0.05), 0 20px 44px -18px rgba(16,18,30,0.2); }
.app-thumb {
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-card) 100%);
  border: 1px solid var(--line);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.app-thumb-label {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.app-card h4 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.app-card .one-liner {
  font-size: 15px;
  color: var(--ink-body);
  line-height: 1.5;
  margin-bottom: 10px;
}
.app-card .why {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}
.app-card-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
}
.app-card-foot a { color: var(--coral); font-weight: 600; }
.app-card-foot a:hover { text-decoration: underline; }

/* ---------- Bridge section ---------- */
.bridge {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: clamp(80px, 9vw, 128px) 0;
}
.bridge h2 { font-size: clamp(28px, 4.4vw, 48px); margin: 12px 0 20px; max-width: 720px; margin-left: auto; margin-right: auto; }
.bridge .lead { max-width: 60ch; margin: 0 auto; }

/* ---------- CTA section ---------- */
.cta {
  text-align: center;
  padding: clamp(80px, 9vw, 128px) 0;
}
.cta h2 { font-size: clamp(28px, 4.4vw, 50px); margin: 12px 0 20px; }
.cta .lead { max-width: 56ch; margin: 0 auto 32px; }
.cta .scarcity {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
  margin-top: 20px;
  display: block;
}

/* ---------- Portfolio footer ---------- */
.footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
  flex-wrap: wrap;
}
.footer-links a:hover { color: var(--ink); }
.footer-legal {
  width: 100%;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 13px;
}
.ghost-word {
  position: absolute;
  bottom: -0.1em;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(120px, 22vw, 300px);
  letter-spacing: -0.04em;
  color: var(--line);
  line-height: 0.82;
  z-index: 0;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
}
.footer-inner { position: relative; z-index: 1; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  background: rgba(20, 20, 24, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }

.demo-shell {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  max-width: 1100px;
  max-height: 760px;
  width: 92vw;
  height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px -20px rgba(16,18,30,0.5);
}

.demo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  flex-shrink: 0;
}
.demo-title {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
#demoClose {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--bg-card);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--muted);
  transition: background .2s, color .2s;
}
#demoClose:hover { background: var(--ink); color: #fff; }

.demo-frame {
  flex: 1;
  width: 100%;
  border: 0;
  display: block;
}

@media (max-width: 760px) {
  .demo-shell {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    border-radius: 0;
  }
  .lightbox { padding: 0; }
}

/* ===== REAL SCREENSHOTS (work portfolio) ===== */
.work-media .shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}
.app-thumb .shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .5s var(--ease);
}
.app-card:hover .app-thumb .shot { transform: scale(1.045); }
.work-btns .note {
  font-size: 13px;
  color: var(--muted-2);
  font-weight: 600;
  letter-spacing: 0.02em;
}
