/* ============================================================
   WebMart — trust-forward marketing site
   Type: Schibsted Grotesk (display) · Public Sans (body) · IBM Plex Mono (labels)
   ============================================================ */

:root {
  /* ====== WARM EDITORIAL palette — cream base, trust blue, terracotta ====== */
  --ink:        oklch(0.235 0.022 268);  /* deep charcoal-navy text     */
  --ink-soft:   oklch(0.43 0.02 264);    /* secondary text              */
  --muted:      oklch(0.56 0.017 264);   /* tertiary / captions         */

  --brand:      oklch(0.52 0.16 256);    /* confident trust blue        */
  --brand-700:  oklch(0.45 0.165 258);   /* hover / strong              */
  --brand-300:  oklch(0.80 0.075 256);   /* light line / ring           */
  --brand-tint: oklch(0.93 0.045 250);   /* pale blue surface           */
  --accent:     oklch(0.65 0.155 45);    /* terracotta / warm amber     */
  --accent-2:   oklch(0.74 0.14 62);     /* lighter amber               */
  --accent-soft:oklch(0.93 0.045 55);    /* warm wash                   */
  --accent-tint:oklch(0.93 0.045 55);    /* alias of accent-soft        */

  --bg:         oklch(0.974 0.014 78);   /* warm ivory page             */
  --bg-2:       oklch(0.958 0.018 74);   /* deeper warm                 */
  --paper:      oklch(0.992 0.006 82);   /* cards / surfaces            */
  --surface:    oklch(0.992 0.006 82);   /* alias of paper              */
  --surface-2:  oklch(0.958 0.018 74);   /* alt section / alias bg-2    */
  --navy:       oklch(0.27 0.032 262);   /* dark sections (warm-navy)   */
  --navy-2:     oklch(0.225 0.03 264);

  --line:       oklch(0.89 0.013 70);
  --line-soft:  oklch(0.93 0.01 72);
  --line-strong:oklch(0.85 0.015 70);

  /* Type scale */
  --font-display: "Schibsted Grotesk", system-ui, sans-serif;
  --font-body: "Public Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Spacing rhythm */
  --pad: clamp(20px, 5vw, 64px);
  --maxw: 1200px;
  --radius: 14px;
  --radius-lg: 22px;

  /* warm-tinted shadows */
  --shadow-sm: 0 1px 2px oklch(0.32 0.03 60 / 0.06), 0 2px 6px oklch(0.32 0.03 60 / 0.05);
  --shadow-md: 0 6px 18px oklch(0.32 0.03 60 / 0.09), 0 2px 6px oklch(0.32 0.03 60 / 0.06);
  --shadow-lg: 0 28px 60px oklch(0.30 0.035 60 / 0.16), 0 10px 24px oklch(0.30 0.035 60 / 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* warm atmospheric background — restrained, fixed behind everything */
.bg-mesh {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1200px 700px at 50% -12%, oklch(0.92 0.05 60 / .85), transparent 56%),
    radial-gradient(800px 520px at 6% 22%, oklch(0.90 0.045 250 / .45), transparent 55%),
    radial-gradient(800px 520px at 94% 22%, oklch(0.93 0.045 45 / .5), transparent 55%),
    var(--bg);
}
.bg-grain {
  position: fixed; inset: 0; z-index: -1; opacity: .5; pointer-events: none; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
}

p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--tint { background: var(--surface-2); border-block: 1px solid var(--line); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-head { max-width: 660px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 { font-size: clamp(30px, 4.2vw, 52px); margin: 16px 0 0; }
.section-head p { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-soft); margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 1px 2px oklch(0.3 0.05 256 / .2), 0 8px 20px oklch(0.55 0.15 256 / .28);
}
.btn-primary:hover { background: var(--brand-700); box-shadow: 0 1px 2px oklch(0.3 0.05 256 / .25), 0 12px 28px oklch(0.55 0.15 256 / .38); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); background: var(--surface); }
.btn-light { background: white; color: var(--ink); }
.btn-light:hover { background: oklch(0.96 0.01 256); }
.btn-lg { padding: 17px 30px; font-size: 17px; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: oklch(0.974 0.014 78 / 0.72);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; }
.brand .mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  flex: none;
}
.brand .mark svg { width: 100%; height: 100%; display: block; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 15.5px; font-weight: 500; color: var(--ink-soft); transition: color .15s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; border-radius: 2px; }
/* CTA shown only inside the opened mobile menu (folded out of the top bar so
   brand + button + hamburger can't overflow a phone's width). */
.nav-menu-cta { display: none; }

/* ============================================================
   HERO (centered) + SHOWCASE — signature living demo (appears once)
   ============================================================ */
.hero {
  position: relative; text-align: center;
  display: flex; flex-direction: column; justify-content: center;
  min-height: calc(100svh - 140px);
  padding-top: clamp(24px, 3vw, 44px); padding-bottom: clamp(6px, 1.4vw, 12px);
}
.hero-field {
  position: absolute; inset: -12% 0 auto; height: 130%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(1100px 560px at 50% -10%, oklch(0.91 0.055 55 / .65), transparent 62%),
    radial-gradient(800px 480px at 14% 16%,  oklch(0.93 0.04 250 / .55), transparent 64%),
    radial-gradient(820px 500px at 86% 10%,  oklch(0.92 0.05 45 / .5),  transparent 62%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right,  oklch(0.235 0.022 268 / .055) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(0.235 0.022 268 / .055) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 72% 62% at 50% 32%, black 28%, transparent 74%);
          mask-image: radial-gradient(ellipse 72% 62% at 50% 32%, black 28%, transparent 74%);
}
.hero-copy { max-width: 980px; margin-inline: auto; position: relative; z-index: 1; }
.tagline {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono);
  font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--accent);
  font-weight: 500; background: var(--accent-soft); padding: 7px 14px; border-radius: 999px;
}
.tagdot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: tag-pulse 2.4s infinite; }
@keyframes tag-pulse {
  0%   { box-shadow: 0 0 0 0 oklch(0.65 0.155 45 / .5); }
  70%  { box-shadow: 0 0 0 8px oklch(0.65 0.155 45 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.65 0.155 45 / 0); }
}
.hero h1 { font-size: clamp(44px, 7vw, 96px); line-height: 1.0; margin-top: 24px; }

/* hand-drawn underline on the key phrase — the ONE human accent */
.scribble { position: relative; white-space: nowrap; }
.scribble svg { position: absolute; left: -1%; bottom: -0.15em; width: 102%; height: 0.32em; overflow: visible; }
.scribble path { fill: none; stroke: var(--accent); stroke-width: 7; stroke-linecap: round; }
/* phones: scale the headline down so the unbreakable underlined phrase fits one
   line with margin to spare. At the desktop 44px minimum that single line is
   ~407px wide and forces a ~455px min page width, zooming the whole site out.
   white-space:normal is a graceful fallback so it can never force-zoom again. */
@media (max-width: 600px) {
  .hero h1 { font-size: clamp(27px, 8vw, 44px); }
  .scribble { white-space: normal; }
  /* the absolute underline SVG (width:102%, preserveAspectRatio:none) can't
     track the phrase once it wraps — drop it on phones rather than let it
     stretch off-screen; the accent stays on tablet/desktop where it fits. */
  .scribble svg { display: none; }
}
@keyframes scribble-draw { to { stroke-dashoffset: 0; } }

.hero-sub { font-size: clamp(18px, 1.7vw, 21px); color: var(--ink-soft); margin: 26px auto 0; max-width: 54ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; justify-content: center; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 30px; justify-content: center; }
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; color: var(--ink-soft); font-weight: 500; }
.hero-trust .ck { color: var(--accent); flex: none; }

/* ---- SHOWCASE: the demo, blown up below the fold ---- */
.showcase { padding-top: clamp(14px, 2vw, 26px); padding-bottom: clamp(56px, 7vw, 96px); }
.showcase .cap {
  text-align: center; font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 18px;
}
.stage { position: relative; max-width: 1080px; margin-inline: auto; }
.mock {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.mock-bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.tl { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.tl.r { background: #ff5f57; } .tl.y { background: #febc2e; } .tl.g { background: #28c840; }
.mock-url {
  margin-left: 14px; flex: 1; max-width: 380px; height: 30px; border-radius: 8px;
  background: var(--paper); border: 1px solid var(--line); display: flex; align-items: center;
  padding: 0 14px; font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); transition: color .4s ease;
}
.mock-screen { position: relative; width: 100%; aspect-ratio: 16 / 9.3; background: var(--paper); }

.lslide {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  opacity: 0; transform: scale(1.012); transition: opacity .8s ease, transform .8s ease; pointer-events: none;
}
.lslide.active { opacity: 1; transform: none; }
.lslide .lbar { display: flex; align-items: center; justify-content: space-between; padding: clamp(14px, 2vw, 22px) clamp(20px, 3vw, 34px); }
.lslide .logo { font-family: var(--font-display); font-weight: 800; font-size: clamp(15px, 1.6vw, 19px); letter-spacing: -.02em; }
.lslide .menu { display: flex; gap: clamp(12px, 1.8vw, 22px); font-size: clamp(10px, 1.1vw, 12.5px); opacity: .75; font-weight: 500; }
.lslide .lrow { flex: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(18px, 3vw, 40px); align-items: center; padding: 0 clamp(20px, 3vw, 34px) clamp(22px, 3vw, 38px); }
.lslide .kicker { font-family: var(--font-mono); font-size: clamp(9px, 1vw, 11px); letter-spacing: .12em; text-transform: uppercase; opacity: .72; margin-bottom: 12px; }
.lslide .head { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 3.6vw, 46px); line-height: 1.0; letter-spacing: -.03em; }
.lslide .desc { font-size: clamp(11px, 1.2vw, 14px); margin-top: 14px; max-width: 34ch; opacity: .8; line-height: 1.5; }
.lslide .cta { display: inline-block; margin-top: 20px; font-family: var(--font-body); font-weight: 600; font-size: clamp(11px, 1.2vw, 13.5px); padding: 11px 20px; border-radius: 999px; }
.lslide .visual { height: 100%; min-height: 120px; border-radius: 16px; position: relative; overflow: hidden; display: grid; place-items: center; }
.lslide .visual .glyph { width: 46%; height: 46%; border-radius: 50%; opacity: .9; }

/* sample 1 — café (warm) */
.s-cafe { background: linear-gradient(165deg, oklch(0.96 0.03 70), oklch(0.91 0.055 52)); color: oklch(0.3 0.05 48); }
.s-cafe .cta { background: oklch(0.54 0.14 40); color: #fff; }
.s-cafe .visual { background: linear-gradient(150deg, oklch(0.84 0.09 55), oklch(0.7 0.12 40)); }
.s-cafe .glyph { background: radial-gradient(circle at 38% 32%, oklch(0.97 0.04 70), oklch(0.78 0.1 45)); }
/* sample 2 — salon (soft, elegant, dark) */
.s-salon { background: linear-gradient(160deg, oklch(0.27 0.035 320), oklch(0.19 0.04 300)); color: oklch(0.95 0.02 330); }
.s-salon .cta { background: oklch(0.86 0.07 340); color: oklch(0.22 0.04 320); }
.s-salon .head { font-weight: 600; letter-spacing: -.01em; }
.s-salon .visual { background: linear-gradient(150deg, oklch(0.5 0.07 330), oklch(0.32 0.06 310)); }
.s-salon .glyph { background: radial-gradient(circle at 40% 35%, oklch(0.9 0.05 340), oklch(0.55 0.08 330)); }
/* sample 3 — trades (bold blue) */
.s-trade { background: linear-gradient(160deg, oklch(0.42 0.13 250), oklch(0.29 0.12 256)); color: #fff; }
.s-trade .cta { background: oklch(0.78 0.16 80); color: oklch(0.25 0.06 255); }
.s-trade .visual { background: linear-gradient(150deg, oklch(0.62 0.13 235), oklch(0.4 0.13 252)); }
.s-trade .glyph { background: radial-gradient(circle at 40% 35%, oklch(0.85 0.14 85), oklch(0.6 0.15 70)); }

/* slide indicator */
.dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 4; }
.dots button { width: 7px; height: 7px; border-radius: 999px; border: none; background: oklch(1 0 0 / .5); cursor: pointer; padding: 0; transition: width .3s ease, background .3s ease; }
.dots button.on { width: 24px; background: #fff; }

/* floating outcome chips — sell the RESULT */
.chip {
  position: absolute; background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: 13px 16px; display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600; z-index: 5; transition: transform .2s ease, box-shadow .2s ease;
}
.chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.chip small { display: block; font-weight: 500; color: var(--muted); font-size: 12px; margin-top: 1px; }
.chip .ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.chip-1 { left: -34px; bottom: 54px; }
.chip-1 .ic { background: var(--accent-soft); color: var(--accent); }
.chip-2 { right: -30px; top: -22px; }
.chip-2 .ic { background: oklch(0.92 0.05 250); color: var(--brand); }

/* entrance choreography — plays ONLY when the page loads in the foreground
   (html.hero-animate is set pre-paint by the head script). Default state is fully
   visible, so a backgrounded/hidden load never traps the hero invisible. */
@keyframes hero-rise { to { opacity: 1; transform: none; } }
html.hero-animate .anim { opacity: 0; transform: translateY(20px); animation: hero-rise .7s cubic-bezier(.22,.61,.36,1) forwards; }
html.hero-animate .d1 { animation-delay: .05s; }
html.hero-animate .d2 { animation-delay: .16s; }
html.hero-animate .d3 { animation-delay: .27s; }
html.hero-animate .d4 { animation-delay: .38s; }
html.hero-animate .d5 { animation-delay: .49s; }
html.hero-animate .stage { opacity: 0; transform: translateY(28px) scale(.99); animation: hero-rise .9s cubic-bezier(.22,.61,.36,1) .55s forwards; }
html.hero-animate .chip { opacity: 0; animation: hero-rise .6s ease forwards; }
html.hero-animate .chip-1 { animation-delay: 1.25s; }
html.hero-animate .chip-2 { animation-delay: 1.4s; }
html.hero-animate .scribble path { stroke-dasharray: 640; stroke-dashoffset: 640; animation: scribble-draw 1s cubic-bezier(.6,0,.2,1) .85s forwards; }

/* ============================================================
   LOGO / TRUST STRIP
   ============================================================ */
.strip { padding-block: 30px; border-block: 1px solid var(--line); background: var(--surface); }
.strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.strip-label { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.strip-items { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.strip-items .item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; color: var(--ink-soft); }

/* ============================================================
   VALUE / FULLY MANAGED
   ============================================================ */
/* ============================================================
   VALUE — asymmetric outcomes + ROI card (warm editorial)
   ============================================================ */
.value {
  position: relative;
  background:
    radial-gradient(900px 500px at 92% 6%, oklch(0.93 0.045 45 / .4), transparent 60%),
    var(--paper);
  border-top: 1px solid var(--line);
}
.value-head { max-width: 760px; }
.value-label {
  display: inline-block; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 18px;
}
.value-head h2 { font-size: clamp(30px, 4.6vw, 56px); }
.value-head p { font-size: clamp(17px, 1.7vw, 21px); color: var(--ink-soft); margin-top: 22px; max-width: 60ch; }
.value-head .lead { color: var(--ink); font-weight: 600; }

.value-body {
  display: grid; grid-template-columns: 1.12fr 0.88fr; gap: clamp(40px, 5vw, 80px);
  align-items: start; margin-top: clamp(44px, 5vw, 68px);
}

/* outcomes — destination, not features */
.outcomes { display: flex; flex-direction: column; }
.outcome { display: flex; gap: 20px; padding: 26px 0; border-top: 1px solid var(--line); }
.outcome:first-child { border-top: none; padding-top: 0; }
.outcome:last-child { padding-bottom: 0; }
.o-ic {
  width: 50px; height: 50px; border-radius: 14px; flex: none; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); transition: transform .2s ease;
}
.outcome:nth-child(2) .o-ic { background: oklch(0.92 0.05 250); color: var(--brand); }
.outcome:nth-child(4) .o-ic { background: oklch(0.92 0.05 250); color: var(--brand); }
.outcome:hover .o-ic { transform: translateY(-3px) rotate(-3deg); }
.o-text h3 { font-size: 21px; }
.o-text p { color: var(--ink-soft); font-size: 16px; margin-top: 7px; max-width: 42ch; }

/* the ROI / "is it worth it" card */
.math {
  background: linear-gradient(165deg, var(--navy), var(--navy-2)); color: #fff;
  border-radius: var(--radius-lg); padding: clamp(28px, 3vw, 40px); box-shadow: var(--shadow-lg);
  position: sticky; top: 96px; overflow: hidden;
}
.math::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(440px 280px at 100% 0, oklch(0.65 0.155 45 / .35), transparent 62%);
}
.math > * { position: relative; }
.math-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-2); }
.math-big { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 2.8vw, 34px); letter-spacing: -.03em; line-height: 1.05; margin-top: 16px; }
.math-body { color: oklch(0.86 0.02 264); font-size: 15.5px; margin-top: 18px; }
.math-body b { color: #fff; }
.math-divide { height: 1px; background: oklch(1 0 0 / .14); margin: 24px 0; }
.math-reassure { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: oklch(0.9 0.015 264); }
.math-reassure .ck { color: var(--accent-2); flex: none; margin-top: 2px; }
.math-btn { width: 100%; margin-top: 26px; background: #fff; color: var(--ink); box-shadow: none; }
.math-btn:hover { background: oklch(0.95 0.01 70); transform: translateY(-2px); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how.how { background:
  radial-gradient(800px 460px at 8% 0, oklch(0.9 0.045 250 / .35), transparent 58%),
  var(--surface-2); }

.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 52px); margin-top: clamp(8px, 2vw, 20px); }
/* the connecting timeline — one line through all three nodes */
.steps::before {
  content: ""; position: absolute; top: 30px; left: 16.6%; right: 16.6%; height: 2px; z-index: 0;
  background: linear-gradient(to right, var(--ink), var(--brand), var(--accent)); opacity: .28;
}
.step { position: relative; z-index: 1; text-align: center; }
.step .node {
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 24px;
  font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #fff; border: 4px solid var(--surface-2);
}
.step:nth-child(1) .node { background: var(--ink); }
.step:nth-child(2) .node { background: var(--brand); }
.step:nth-child(3) .node { background: var(--accent); }
.step h3 { font-size: 23px; }
.step .what { color: var(--ink-soft); font-size: 16px; margin-top: 12px; max-width: 34ch; margin-inline: auto; }
.step .you { margin-top: 16px; font-size: 14px; }
.step .you b { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.step .you span { color: var(--ink); font-weight: 600; }
.step .chip { display: inline-block; margin-top: 16px; font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--accent); background: var(--accent-soft); padding: 6px 13px; border-radius: 999px; }

.how-foot { margin-top: clamp(48px, 6vw, 72px); text-align: center; }
.how-foot p { font-family: var(--font-display); font-weight: 700; font-size: clamp(19px, 2.2vw, 26px); letter-spacing: -.02em; max-width: 24ch; margin-inline: auto; line-height: 1.2; }
.how-foot p .hl { color: var(--brand); }
.how-foot .btn { margin-top: 28px; }

/* ============================================================
   OUR WORK
   ============================================================ */
.work { background: var(--paper); border-block: 1px solid var(--line); }
.work-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-bottom: clamp(40px, 5vw, 60px); }
.work-head .section-head h2 { font-size: clamp(30px, 4.4vw, 52px); }
.work-head .section-head p { font-size: 17px; margin-top: 14px; max-width: 46ch; }

/* badges */
.badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .05em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 7px; backdrop-filter: blur(4px);
}
.badge.live { background: var(--brand); color: #fff; }
.badge.live .dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; }
.badge.sample { background: oklch(1 0 0 / .85); color: var(--muted); border: 1px solid var(--line); }

/* featured real client */
.featured {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--paper); box-shadow: var(--shadow-md); margin-bottom: 22px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.featured:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.feat-bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.tl { width: 11px; height: 11px; border-radius: 50%; }
.tl.r { background: #ff5f57; } .tl.y { background: #febc2e; } .tl.g { background: #28c840; }
.feat-url {
  margin-left: 12px; flex: 1; max-width: 320px; height: 26px; border-radius: 7px;
  background: var(--paper); border: 1px solid var(--line); display: flex; align-items: center;
  padding: 0 12px; font-family: var(--font-mono); font-size: 12px; color: var(--muted);
}
.feat-thumb {
  position: relative; aspect-ratio: 16 / 7.4;
  background: radial-gradient(700px 300px at 80% 0, oklch(0.93 0.04 250 / .5), transparent 60%), var(--surface-2);
}
.feat-thumb image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.feat-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; flex-wrap: wrap; }
.feat-meta h3 { font-size: 20px; }
.feat-meta p { color: var(--muted); font-size: 14px; margin-top: 3px; }
.visit { display: inline-flex; align-items: center; gap: 7px; color: var(--brand); font-weight: 600; font-size: 14.5px; }
.visit svg { transition: transform .2s ease; }
.visit:hover svg { transform: translate(2px, -2px); }

/* sample concepts */
.samples { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sample { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); transition: transform .2s ease, box-shadow .2s ease; }
.sample:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.thumb { position: relative; aspect-ratio: 16 / 10.5; overflow: hidden; }
.mini { position: absolute; inset: 0; display: flex; flex-direction: column; }
.mini .mb { display: flex; align-items: center; justify-content: space-between; padding: 11px 14px; font-size: 8.5px; }
.mini .mlogo { font-family: var(--font-display); font-weight: 800; font-size: 11px; letter-spacing: -.02em; }
.mini .mmenu { display: flex; gap: 9px; opacity: .7; }
.mini .mbody { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 2px 16px 16px; }
.mini .mhead { font-family: var(--font-display); font-weight: 800; font-size: 18px; line-height: 1; letter-spacing: -.02em; }
.mini .mcta { align-self: flex-start; margin-top: 12px; font-size: 9px; font-weight: 600; padding: 6px 12px; border-radius: 999px; }
.m-cafe { background: linear-gradient(160deg, oklch(0.96 0.03 70), oklch(0.91 0.055 52)); color: oklch(0.3 0.05 48); }
.m-cafe .mcta { background: oklch(0.54 0.14 40); color: #fff; }
.m-salon { background: linear-gradient(160deg, oklch(0.27 0.035 320), oklch(0.19 0.04 300)); color: oklch(0.95 0.02 330); }
.m-salon .mcta { background: oklch(0.86 0.07 340); color: oklch(0.22 0.04 320); }
.m-salon .mhead { font-weight: 600; }
.m-trade { background: linear-gradient(160deg, oklch(0.42 0.13 250), oklch(0.29 0.12 256)); color: #fff; }
.m-trade .mcta { background: oklch(0.78 0.16 80); color: oklch(0.25 0.06 255); }
.sample-meta { padding: 16px 18px; }
.sample-meta h3 { font-size: 16.5px; }
.sample-meta p { color: var(--muted); font-size: 13.5px; margin-top: 3px; }

/* ============================================================
   contact call / text buttons — additive
   ============================================================ */
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 6px; }

/* ============================================================
   PRICING
   ============================================================ */
.section.pricing {
  text-align: center;
  background:
    radial-gradient(900px 540px at 50% -10%, oklch(0.93 0.045 55 / .45), transparent 60%),
    radial-gradient(700px 420px at 12% 80%, oklch(0.9 0.045 250 / .3), transparent 58%),
    var(--bg);
  border-block: 1px solid var(--line);
}
.pricing .eyebrow { display: inline-block; }
.pricing .price-lead { font-size: clamp(34px, 5vw, 62px); margin-top: 18px; }

.price-row { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-top: clamp(10px, 2vw, 22px); line-height: 1; }
.price-row .cur { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 7vw, 92px); letter-spacing: -.03em; align-self: flex-start; margin-top: clamp(10px, 2vw, 28px); color: var(--ink); }
.price-row .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(110px, 20vw, 224px); letter-spacing: -.05em; color: var(--ink); }
.price-row .per { text-align: left; align-self: flex-end; margin-bottom: clamp(14px, 2.6vw, 34px); }
.price-row .per b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 3vw, 36px); letter-spacing: -.02em; }
.price-row .per small { display: block; color: var(--muted); font-size: clamp(13px, 1.4vw, 16px); margin-top: 4px; font-weight: 500; }

.price-anchor { color: var(--muted); font-size: clamp(14px, 1.4vw, 16px); margin-top: 18px; }
.price-anchor b { color: var(--ink-soft); }

.includes { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin-top: clamp(30px, 4vw, 44px); }
.includes span { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; color: var(--ink-soft); }
.includes .ck { color: var(--accent); flex: none; }

.risk { font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; font-size: clamp(17px, 1.9vw, 22px); margin-top: clamp(28px, 3.6vw, 40px); }
.risk .hl { color: var(--brand); }

.price-cta { margin-top: clamp(28px, 3.6vw, 40px); display: flex; flex-direction: column; align-items: center; gap: 14px; }
.price-cta .micro { font-size: 14.5px; color: var(--muted); }
.price-cta .micro a { color: var(--ink); font-weight: 600; border-bottom: 1.5px solid var(--line); transition: border-color .2s ease; }
.price-cta .micro a:hover { border-color: var(--ink); }

/* ============================================================
   ABOUT
   ============================================================ */
.section.about {
  background:
    radial-gradient(760px 460px at 4% 10%, oklch(0.93 0.045 55 / .35), transparent 58%),
    var(--paper);
  border-block: 1px solid var(--line);
}
.about-grid { display: grid; grid-template-columns: 1fr; gap: clamp(40px, 5.5vw, 84px); max-width: 760px; }

/* photo with overlapping, slightly tilted name chip */
.photo-stage { position: relative; }
.photo {
  position: relative; aspect-ratio: 4 / 4.6; border-radius: var(--radius-lg); overflow: hidden;
  background: radial-gradient(420px 300px at 70% 20%, oklch(0.92 0.05 250 / .5), transparent 60%), var(--bg-2);
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.photo image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
/* branded fill — stands in until a real founder photo is dropped in */
.photo-fill { position: absolute; inset: 0; display: grid; place-items: center; }
.photo-mark { width: clamp(96px, 28%, 150px); height: auto; opacity: .9; filter: drop-shadow(0 8px 22px oklch(0.55 0.15 256 / .22)); }
.name-chip {
  position: absolute; right: -18px; bottom: 26px; background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-md); padding: 12px 16px; display: flex; align-items: center;
  gap: 11px; transform: rotate(-1.6deg);
}
.name-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex: none; }
.name-chip b { font-size: 14.5px; display: block; }
.name-chip small { color: var(--muted); font-size: 12.5px; display: block; margin-top: 1px; }

/* story */
.story h2 { font-size: clamp(30px, 4.4vw, 52px); }
.story p { color: var(--ink-soft); font-size: clamp(16px, 1.6vw, 18.5px); margin-top: 18px; max-width: 54ch; }
.story p b { color: var(--ink); }
.story .eyebrow { display: inline-block; margin-bottom: 16px; }
.local { font-family: var(--font-mono); font-size: 13px; color: var(--muted); margin-top: 20px; display: flex; align-items: center; gap: 9px; }
.local svg { color: var(--accent); flex: none; }

/* stats with count-up */
.about-stats { display: flex; gap: clamp(28px, 4vw, 56px); margin-top: clamp(28px, 3.4vw, 40px); flex-wrap: wrap; }
.about-stats .stat .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 4vw, 48px); letter-spacing: -.04em; color: var(--brand); line-height: 1; font-variant-numeric: tabular-nums; }
.about-stats .stat .l { color: var(--muted); font-size: 14.5px; margin-top: 6px; font-weight: 500; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 5.5vw, 84px); align-items: start; }
.faq-left { position: sticky; top: 100px; }
.faq-left h2 { font-size: clamp(32px, 4.6vw, 54px); }
.faq-left p { color: var(--ink-soft); font-size: 17px; margin-top: 18px; }
.faq-left p a { color: var(--ink); font-weight: 600; border-bottom: 1.5px solid var(--line); transition: border-color .2s ease; }
.faq-left p a:hover { border-color: var(--ink); }

.qa { border-top: 1px solid var(--line); }
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa button {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left;
  background: none; border: none; cursor: pointer; padding: 22px 4px; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(17px, 1.8vw, 20px); letter-spacing: -.015em; color: var(--ink);
}
.qa button:hover .q-ic { background: var(--accent-soft); color: var(--accent); }
.q-ic {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; flex: none;
  color: var(--muted); transition: transform .3s cubic-bezier(.2,.7,.3,1), background .2s, color .2s;
}
.qa.open .q-ic { transform: rotate(45deg); background: var(--accent-soft); color: var(--accent); border-color: transparent; }
.qa .a { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.2,.7,.3,1); }
.qa .a-in { padding: 0 44px 24px 4px; color: var(--ink-soft); font-size: 16.5px; }
.qa .a-in b { color: var(--ink); }

.faq-cta { margin-top: clamp(48px, 6vw, 64px); text-align: center; }
.faq-cta p { font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 2vw, 23px); letter-spacing: -.02em; }
.faq-cta .row { display: flex; flex-direction: column; align-items: center; gap: 13px; margin-top: 22px; }
.faq-cta .micro { font-size: 14.5px; color: var(--muted); }
.faq-cta .micro a { color: var(--ink); font-weight: 600; border-bottom: 1.5px solid var(--line); transition: border-color .2s ease; }
.faq-cta .micro a:hover { border-color: var(--ink); }
@media (prefers-reduced-motion: reduce) { .qa .a { transition: none; } }

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.contact { background: var(--navy); color: white; position: relative; overflow: hidden; }
.contact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 90% 0, oklch(0.55 0.15 256 / .35), transparent 60%), radial-gradient(600px 400px at 0 100%, oklch(0.62 0.12 200 / .2), transparent 55%); }
.contact .wrap { position: relative; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact-copy .eyebrow { color: var(--accent); }
.contact-copy h2 { color: white; font-size: clamp(30px, 4.2vw, 52px); margin-top: 16px; }
.contact-copy p { color: oklch(0.85 0.02 256); font-size: 18px; margin-top: 18px; max-width: 42ch; }
.contact-list { margin-top: 36px; display: grid; gap: 18px; }
.contact-list a, .contact-list div { display: flex; align-items: center; gap: 14px; color: oklch(0.9 0.015 256); font-size: 16px; }
.contact-list .ci { width: 42px; height: 42px; border-radius: 11px; background: oklch(1 0 0 / .1); display: grid; place-items: center; flex: none; color: white; }
.contact-list small { display: block; color: oklch(0.7 0.02 256); font-size: 13px; }

.form { background: white; border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 38px); box-shadow: var(--shadow-lg); }
/* let the contact columns shrink so the form's nowrap submit button can't blow
   out the single-column grid track on a 320px phone (would clip the card edge). */
.contact-copy, .form { min-width: 0; }
.field input, .field textarea { min-width: 0; }
.form h3 { font-size: 22px; color: var(--ink); }
.form .sub { color: var(--ink-soft); font-size: 15px; margin-top: 6px; }
.field { margin-top: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 11px; padding: 13px 15px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px oklch(0.55 0.15 256 / .12); }
.field textarea { resize: vertical; min-height: 96px; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field.row .field { margin-top: 0; }
.field .err { color: oklch(0.55 0.18 25); font-size: 12.5px; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid textarea { border-color: oklch(0.6 0.18 25); }
.field.invalid .err { display: block; }
.form .btn { width: 100%; margin-top: 22px; }
/* full-width submit can wrap its label on tiny screens instead of overflowing */
@media (max-width: 600px) { .form .btn { white-space: normal; } }
.form-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 14px; }
.form-success { text-align: center; padding: 30px 10px; display: none; }
.form-success.show { display: block; }
.form-success .big { width: 64px; height: 64px; border-radius: 50%; background: var(--accent-tint); color: var(--accent); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success h3 { font-size: 24px; }
.form-success p { color: var(--ink-soft); margin-top: 10px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-2); color: oklch(0.78 0.018 256); padding-block: 56px 32px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid oklch(1 0 0 / .1); }
.footer .brand { color: white; }
.footer-blurb { max-width: 30ch; font-size: 15px; margin-top: 16px; color: oklch(0.7 0.018 256); }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { color: white; font-size: 13px; font-family: var(--font-mono); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; font-weight: 500; }
.footer-col a { display: block; font-size: 15px; margin-bottom: 11px; color: oklch(0.78 0.018 256); transition: color .15s; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 28px; font-size: 13.5px; color: oklch(0.62 0.02 256); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
/* hidden state applies ONLY when JS is present (html.wm-js). No JS / JS error => content visible. */
html.wm-js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1); }
html.wm-js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-sub { max-width: 54ch; }
  .value-body { grid-template-columns: 1fr; gap: 44px; }
  .math { position: static; }
  .pricing-grid, .about-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; }
  .faq-grid { gap: 40px; }
  .faq-left { position: static; }
  .about-grid { gap: 48px; }
  .photo-stage { max-width: 480px; margin-inline: auto; width: 100%; }
  .name-chip { right: 6px; }
}
@media (max-width: 820px) {
  .hero { min-height: 0; }
  .lslide .lrow { grid-template-columns: 1fr; }
  .lslide .visual { display: none; }
  .chip-1 { left: -10px; } .chip-2 { right: -8px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
}
/* Nav: the full bar (brand + 4 links + two buttons) needs ~834px to sit
   comfortably, so it collapses to a hamburger below 900px — otherwise iPad
   portrait (768/834) shows the links crammed into the wordmark. */
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-ghost, .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    padding: 8px var(--pad) 20px;
  }
  .nav.open .nav-links a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav.open .nav-menu-cta { display: inline-flex; align-self: stretch; margin-top: 16px; }
}
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .samples { grid-template-columns: 1fr 1fr; }
  .feat-thumb { aspect-ratio: 16 / 9; }
  .field.row { grid-template-columns: 1fr; }
  .strip-inner { justify-content: flex-start; }
}
@media (max-width: 460px) {
  body { font-size: 16px; }
  .chip { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .samples { grid-template-columns: 1fr; }
}
