/* ==========================================================================
   Webcroft — homepage
   Tokens first; every colour/size in the page comes from here.
   ========================================================================== */
:root {
  --blue: #008ee0;
  --blue-deep: #0072b8;
  --sky: #32afe2;
  --pink: #f3216e;
  --yellow: #ffc61a;
  --green: #1e9e63;

  --ink: #0e1b2a;
  --ink-2: #3b4855;
  --ink-3: #6b7683;
  --line: #e3e8ee;
  --paper: #ffffff;
  --paper-2: #f5f7fa;
  --paper-3: #eaeff5;
  --navy: #0b1f36;
  --navy-2: #12304f;

  --tint-yellow: #fff4cc;
  --tint-pink: #ffe3ec;
  --tint-blue: #dcf0fc;

  --font: "Figtree", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 24px;
  --radius-sm: 14px;
  --header-h: 72px;

  --ease: cubic-bezier(0.22, 0.7, 0.2, 1);
  --shadow-card: 0 30px 50px -35px rgba(14, 27, 42, 0.45);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; letter-spacing: -0.02em; font-weight: 800; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
input, select { font: inherit; color: inherit; }
svg { display: block; }
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; border-radius: 8px; }
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

h1 { font-size: clamp(2.6rem, 5.7vw, 4.6rem); letter-spacing: -0.035em; line-height: 1.0; }
h2 { font-size: clamp(1.95rem, 3.7vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: 1.3rem; letter-spacing: -0.012em; }
.serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow .mark { width: 18px; height: auto; }
.lede { font-size: clamp(1.1rem, 1.5vw, 1.25rem); color: var(--ink-2); max-width: 36rem; line-height: 1.55; }
.muted { color: var(--ink-2); }

/* marker highlight that draws itself in when revealed */
.hl { position: relative; white-space: nowrap; z-index: 0; }
.hl::after {
  content: ""; position: absolute; left: -0.06em; right: -0.06em; bottom: 0.06em; height: 0.34em; z-index: -1;
  background: var(--yellow); border-radius: 3px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.7s var(--ease) 0.5s;
}
.in .hl::after, .hl.in::after { transform: scaleX(1); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.65rem;
  min-height: 50px; padding: 0.65rem 1.5rem; border-radius: 999px;
  font-weight: 700; text-decoration: none; line-height: 1.2; white-space: nowrap;
  transition: transform 0.25s var(--ease), background-color 0.25s, box-shadow 0.25s, color 0.25s;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 14px 24px -14px rgba(0, 142, 224, 0.75); }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 18px 28px -14px rgba(0, 142, 224, 0.8); }
.btn-primary .arrow { background: #fff; color: var(--blue); }
.btn-ghost { background: var(--paper-2); color: var(--ink); }
.btn-ghost:hover { background: var(--paper-3); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--ink); box-shadow: 0 14px 24px -16px rgba(0, 0, 0, 0.5); }
.btn-white:hover { transform: translateY(-2px); }
.btn-white .arrow { background: var(--blue); color: #fff; }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-yellow:hover { background: #ffd24d; transform: translateY(-2px); }
.btn-yellow .arrow { background: var(--ink); color: var(--yellow); }
.btn .arrow {
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; flex: none;
  margin-right: -0.7rem; transition: transform 0.35s var(--ease);
}
.btn .arrow svg { width: 16px; height: 16px; }
.btn:hover .arrow { transform: translateX(3px); }
.btn.btn-lg { min-height: 56px; padding: 0.8rem 1.75rem; font-size: 1.05rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; text-decoration: none;
  padding-bottom: 2px; background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 0 2px;
  transition: background-size 0.3s var(--ease);
}
.link-arrow:hover { background-size: 100% 2px; }
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60; background: var(--paper);
  transition: box-shadow 0.35s var(--ease);
}
.site-header.scrolled { box-shadow: 0 1px 0 var(--line), 0 12px 30px -24px rgba(14, 27, 42, 0.35); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; font-weight: 800; font-size: 1.4rem; letter-spacing: -0.03em; z-index: 70; position: relative; }
.brand .mark { width: 30px; height: auto; transition: transform 0.5s var(--ease); }
.brand:hover .mark { transform: rotate(-8deg) scale(1.08); }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { text-decoration: none; font-weight: 600; color: var(--ink-2); position: relative; padding: 0.25rem 0; transition: color 0.2s; }
.nav a:hover { color: var(--ink); }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; border-radius: 2px;
  background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav .nav-mail { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--ink); background: var(--paper-2); padding: 0.55rem 1rem; border-radius: 999px; }
.nav .nav-mail:hover { background: var(--paper-3); }
.nav .nav-mail::after { display: none; }
.nav-mail svg { width: 18px; height: 18px; color: var(--blue); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px; place-items: center; position: relative; z-index: 70;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.2s; position: relative;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 0; padding: calc(var(--header-h) + 1.5rem) var(--gutter) 2rem; background: var(--paper);
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0.5rem;
    opacity: 0; pointer-events: none; transform: translateY(-10px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .nav a { font-size: 1.85rem; font-weight: 800; letter-spacing: -0.02em; padding: 0.6rem 0; width: 100%; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav a::after { display: none; }
  .nav .nav-mail { margin-top: 1.5rem; font-size: 1.05rem; font-weight: 700; width: auto; border-bottom: 0; }
  .nav-toggle { display: grid; }
}

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; }
.section-head { max-width: 42rem; margin-bottom: clamp(2rem, 4.5vw, 3.5rem); display: grid; gap: 1rem; }
.section-head.split { max-width: none; grid-template-columns: 1fr 1fr; align-items: end; gap: 2rem; }
.section-head.split p { max-width: 34rem; justify-self: end; }
.section-head.row { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 2rem; flex-wrap: wrap; }
@media (max-width: 760px) {
  .section-head.split { grid-template-columns: 1fr; }
  .section-head.split p { justify-self: start; }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.in { opacity: 1; transform: none; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: calc(var(--i, 0) * 90ms); }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hl::after { transform: scaleX(1); transition: none; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(2rem, 5vw, 4.5rem) 0 clamp(3.5rem, 7vw, 6rem); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-copy { display: grid; gap: 1.6rem; position: relative; z-index: 2; }
.hero-copy h1 { max-width: 12ch; }
.hero-copy h1 .serif { font-size: 1.08em; }
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-proof { display: flex; gap: 1.1rem 1.5rem; flex-wrap: wrap; color: var(--ink-2); font-weight: 600; font-size: 0.95rem; }
.hero-proof li { display: flex; align-items: center; gap: 0.5rem; }
.hero-proof li::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--yellow); flex: none; }
.hero-proof li:nth-child(2)::before { background: var(--pink); }
.hero-proof li:nth-child(3)::before { background: var(--blue); }

.hero-demo { position: relative; display: grid; justify-items: center; gap: 1.1rem; }
.stripes { position: absolute; inset: -12% -8% -6%; z-index: 0; pointer-events: none; overflow: visible; }
.stripes i {
  position: absolute; top: 0; bottom: 0; width: 15%; border-radius: 14px; transform: skewX(-13deg) translateY(var(--py, 0px));
  transition: transform 0.2s linear;
}
.stripes i:nth-child(1) { left: 22%; background: var(--tint-yellow); }
.stripes i:nth-child(2) { left: 42%; background: var(--tint-pink); }
.stripes i:nth-child(3) { left: 62%; background: var(--tint-blue); }

/* Phone mock — sizes inside are em, driven by container width */
.phone {
  --w: clamp(240px, 64vw, 300px);
  width: var(--w); container-type: inline-size; position: relative; z-index: 1;
  aspect-ratio: 9 / 19; background: #101418; border-radius: 15.5cqw; padding: 3.3cqw;
  box-shadow: 0 40px 70px -35px rgba(14, 27, 42, 0.6), inset 0 0 0 2px #2b3138;
  transform: rotate(var(--tilt, 0deg)) translateY(var(--float, 0px));
  transition: transform 0.6s var(--ease);
}
.phone::before { content: ""; position: absolute; top: 6.5cqw; left: 50%; translate: -50% 0; width: 30cqw; height: 8.5cqw; background: #101418; border-radius: 999px; z-index: 5; }
.screen {
  height: 100%; border-radius: 12.5cqw; background: #fff; overflow: hidden; display: flex; flex-direction: column; position: relative;
  font-size: 3.7cqw; line-height: 1.35; color: #111;
  --t: #008ee0; --t-ink: #fff;
}
.s-status { display: flex; justify-content: space-between; padding: 4.5cqw 8cqw 0; font-size: 0.9em; font-weight: 700; color: #111; }
.s-top { display: flex; align-items: center; justify-content: space-between; padding: 3.2em 1.4em 1em; }
.s-logo { display: flex; align-items: center; gap: 0.55em; font-weight: 800; font-size: 1.05em; letter-spacing: -0.01em; }
.s-logo b { width: 2em; height: 2em; border-radius: 0.55em; background: var(--t); color: var(--t-ink); display: grid; place-items: center; font-family: var(--serif); font-size: 1.15em; font-weight: 400; transition: background-color 0.6s, color 0.6s; }
.s-burger { width: 1.5em; height: 0.18em; background: #111; box-shadow: 0 -0.45em 0 #111, 0 0.45em 0 #111; border-radius: 1em; }
.s-hero { margin: 0 0.9em; padding: 1.1em 1.2em 1.3em; border-radius: 1.5em; background: var(--t); color: var(--t-ink); transition: background-color 0.6s, color 0.6s; }
.s-pin { display: inline-flex; align-items: center; gap: 0.35em; font-size: 0.82em; font-weight: 700; opacity: 0.9; }
.s-pin svg { width: 1em; height: 1em; }
.s-hero h3 { font-size: 1.7em; line-height: 1.08; margin: 0.35em 0 0.6em; letter-spacing: -0.02em; color: inherit; min-height: 2.2em; }
.s-hero li { display: flex; align-items: center; gap: 0.5em; font-size: 0.9em; font-weight: 600; margin: 0.25em 0; }
.s-hero li svg { width: 1em; height: 0.85em; flex: none; }
.s-btn { display: inline-block; margin-top: 0.9em; padding: 0.7em 1.2em; border-radius: 999px; background: #fff; color: var(--t); font-weight: 800; font-size: 0.9em; transition: color 0.6s; }
.s-photo {
  margin: 0.9em; flex: 1 1 auto; min-height: 7em; border-radius: 1.3em; position: relative; overflow: hidden;
  background-color: color-mix(in srgb, var(--t) 14%, #fff);
  background-image: repeating-linear-gradient(-45deg, color-mix(in srgb, var(--t) 22%, #fff) 0 0.6em, transparent 0.6em 1.6em);
  transition: background-color 0.6s;
}
.s-photo-label { position: absolute; left: 0.9em; bottom: 0.8em; font-size: 0.78em; font-weight: 700; padding: 0.35em 0.7em; border-radius: 999px; background: rgba(255, 255, 255, 0.85); color: #111; }
.s-services { margin: 0 0.9em 0.8em; display: grid; gap: 0.45em; }
.s-h { font-size: 0.8em; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #6b7683; }
.s-chips { display: flex; flex-wrap: wrap; gap: 0.4em; }
.s-chips span { font-size: 0.82em; font-weight: 700; padding: 0.4em 0.75em; border-radius: 999px; background: color-mix(in srgb, var(--t) 12%, #fff); color: #111; transition: background-color 0.6s; }
.s-areas { display: flex; align-items: center; gap: 0.4em; margin: 0 0.9em 0.8em; font-size: 0.8em; font-weight: 600; color: #4a5560; }
.s-areas svg { width: 1em; height: 1em; color: var(--t); transition: color 0.6s; }
.s-reviews { display: flex; align-items: center; gap: 0.5em; margin: 0 0.9em; padding: 0.7em 0.9em; border: 1px solid #e9edf2; border-radius: 1em; font-size: 0.82em; font-weight: 700; }
.s-g { width: 1.6em; height: 1.6em; border-radius: 50%; display: grid; place-items: center; font-weight: 900; color: #4285f4; background: #fff; border: 1px solid #e3e8ee; }
.s-stars { color: #f5b301; letter-spacing: 0.05em; }
.s-url { margin-top: auto; display: flex; align-items: center; justify-content: center; gap: 0.4em; padding: 0.9em; border-top: 1px solid #edf0f4; font-size: 0.8em; color: #4a5560; font-weight: 600; }
.s-url svg { width: 1em; height: 1em; }
.caret { display: inline-block; width: 0.08em; height: 1em; background: currentColor; vertical-align: -0.15em; margin-left: 0.1em; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.demo-controls {
  position: relative; z-index: 1; width: min(100%, 440px); display: flex; gap: 0.4rem; padding: 0.4rem;
  background: #fff; border: 1px solid var(--line); border-radius: 999px; box-shadow: 0 20px 40px -28px rgba(14, 27, 42, 0.45);
}
.demo-controls input {
  flex: 1 1 auto; min-width: 0; border: 0; background: var(--paper-2); border-radius: 999px; padding: 0.7rem 1rem; font-weight: 600;
}
.demo-controls input::placeholder { color: var(--ink-3); font-weight: 500; }
.demo-controls input:focus { outline: 2px solid var(--blue); outline-offset: 0; }
.demo-select { position: relative; flex: 0 0 auto; }
.demo-select select {
  appearance: none; -webkit-appearance: none; border: 0; background: var(--ink); color: #fff; border-radius: 999px;
  padding: 0.7rem 2.2rem 0.7rem 1rem; font-weight: 700; cursor: pointer;
}
.demo-select svg { position: absolute; right: 0.85rem; top: 50%; translate: 0 -50%; width: 14px; height: 14px; color: #fff; pointer-events: none; }
.demo-hint { font-size: 0.85rem; color: var(--ink-3); font-weight: 600; text-align: center; position: relative; z-index: 1; }
.demo-hint .serif { font-size: 1.15em; color: var(--ink-2); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { max-width: 14ch; }
  .hero-demo { padding-top: 1rem; }
  .stripes { inset: -4% -12% -2%; }
}
@media (max-width: 480px) {
  .demo-controls { flex-direction: column; border-radius: 22px; }
  .demo-select select { width: 100%; }
}

/* ---------- Trades ticker ---------- */
.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 0.9rem 0; background: var(--paper); }
.ticker-track { display: flex; width: max-content; animation: ticker 40s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-list { display: flex; align-items: center; }
.ticker-list li { display: flex; align-items: center; gap: 1.5rem; padding-right: 1.5rem; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em; color: var(--ink-2); white-space: nowrap; }
.ticker-list li::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }
.ticker-list li:nth-child(3n+2)::after { background: var(--pink); }
.ticker-list li:nth-child(3n)::after { background: var(--blue); }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; width: auto; flex-wrap: wrap; }
  .ticker-list[aria-hidden="true"] { display: none; }
  .ticker-list { flex-wrap: wrap; row-gap: 0.5rem; }
}

/* ---------- Got one of our cards ---------- */
.cards-section { background: var(--tint-yellow); overflow: hidden; }
.cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.cards-copy { display: grid; gap: 1.25rem; }
.cards-copy .ctas { display: flex; gap: 1.25rem 1.5rem; align-items: center; flex-wrap: wrap; margin-top: 0.5rem; }
.card-stage { perspective: 1400px; display: grid; justify-items: center; gap: 1rem; padding: 1rem 0; }
.bcard {
  width: min(470px, 90vw); aspect-ratio: 85 / 55; position: relative; transform-style: preserve-3d; cursor: pointer;
  transform: rotateX(var(--rx, 0deg)) rotateY(calc(var(--ry, 0deg) + var(--flip, 0deg)));
  transition: transform 0.9s var(--ease);
  border: 0; text-align: left; font: inherit; color: inherit; background: none; display: block;
}
.bface {
  position: absolute; inset: 0; border-radius: 20px; padding: clamp(1.1rem, 3vw, 1.6rem) clamp(1.2rem, 3.2vw, 1.8rem);
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 40px 60px -30px rgba(14, 27, 42, 0.55);
}
.bface.front { background: var(--navy); color: #fff; }
.bface.back { background: #fff; color: var(--ink); transform: rotateY(180deg); border: 1px solid var(--line); }
.bface .brand { font-size: 1.25rem; color: inherit; }
.bface .brand .mark { width: 26px; }
.bface-title { font-size: clamp(1.3rem, 3.4vw, 1.75rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; max-width: 12ch; }
.bface-foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; font-size: 0.85rem; font-weight: 600; opacity: 0.85; }
.bface-bars { display: flex; gap: 6px; }
.bface-bars i { width: 34px; height: 6px; border-radius: 3px; transform: skewX(-14deg); }
.bface-bars i:nth-child(1) { background: var(--yellow); }
.bface-bars i:nth-child(2) { background: var(--pink); }
.bface-bars i:nth-child(3) { background: var(--blue); }
.bface .label { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.bface .url { font-size: clamp(1.1rem, 3vw, 1.5rem); font-weight: 800; letter-spacing: -0.02em; color: var(--blue); word-break: break-all; }
.bface .url .ph { color: var(--ink-3); font-weight: 600; }
.bface dl { display: grid; grid-template-columns: auto 1fr; gap: 0.2rem 1rem; font-size: 0.9rem; margin: 0; }
.bface dt { font-weight: 800; }
.bface dd { margin: 0; color: var(--ink-2); font-weight: 600; }
.card-hint { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 700; color: var(--ink-2); }
.card-hint svg { width: 16px; height: 16px; animation: nudge 1.6s var(--ease) infinite; }
@keyframes nudge { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(180deg); } }
@media (max-width: 860px) {
  .cards-grid { grid-template-columns: 1fr; }
  .card-stage { order: 2; }
}

/* ---------- How it works ---------- */
.how .section-head { display: grid; gap: 1rem; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 3vw, 2.5rem); }
.step { display: grid; gap: 0.6rem; align-content: start; }
.step-rail { height: 6px; border-radius: 999px; background: var(--paper-3); overflow: hidden; margin-bottom: 0.9rem; }
.step-rail i { display: block; height: 100%; background: var(--blue); transform: scaleX(var(--seg, 0)); transform-origin: left; border-radius: inherit; }
.step:nth-child(1) .step-rail i { background: var(--yellow); }
.step:nth-child(2) .step-rail i { background: var(--pink); }
.step:nth-child(3) .step-rail i { background: var(--blue); }
.step:nth-child(4) .step-rail i { background: var(--sky); }
.step-no { font-family: var(--serif); font-size: 3.2rem; line-height: 0.9; color: var(--ink); font-style: italic; }
.step-no small { font-family: var(--font); font-style: normal; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-left: 0.4rem; vertical-align: 0.9em; }
.step h3 { font-size: 1.2rem; }
.step p { color: var(--ink-2); font-size: 1rem; }
.how-foot { margin-top: clamp(2rem, 5vw, 3.5rem); display: flex; align-items: center; gap: 1.25rem 2rem; flex-wrap: wrap; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; gap: 1.75rem; } }

/* ---------- What you get ---------- */
.get { background: var(--paper-2); }
.get-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.get-tabs { display: grid; gap: 0.5rem; }
.get-tab {
  text-align: left; padding: 1.15rem 1.35rem; border-radius: 18px; border: 1px solid transparent; display: grid; gap: 0.3rem;
  transition: background-color 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease);
}
.get-tab:hover { background: rgba(255, 255, 255, 0.6); }
.get-tab[aria-selected="true"] { background: #fff; border-color: var(--line); box-shadow: var(--shadow-card); transform: translateX(6px); }
.get-tab h3 { font-size: 1.15rem; display: flex; align-items: center; gap: 0.6rem; }
.get-tab h3::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--paper-3); flex: none; transition: background-color 0.3s, transform 0.3s; }
.get-tab[aria-selected="true"] h3::before { background: var(--tab-c, var(--blue)); transform: scale(1.25); }
.get-tab:nth-child(1) { --tab-c: var(--yellow); }
.get-tab:nth-child(2) { --tab-c: var(--pink); }
.get-tab:nth-child(3) { --tab-c: var(--blue); }
.get-tab p { color: var(--ink-2); font-size: 0.98rem; }
.get-media { position: relative; aspect-ratio: 5 / 4; border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.get-panel { position: absolute; inset: 0; opacity: 0; transform: scale(1.03); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); pointer-events: none; }
.get-panel.active { opacity: 1; transform: none; pointer-events: auto; }
.get-panel img { width: 100%; height: 100%; object-fit: cover; }
.get-panel .ph-badge { position: absolute; top: 1rem; left: 1rem; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(255, 255, 255, 0.9); padding: 0.35rem 0.6rem; border-radius: 999px; color: var(--ink-2); }

/* illustration: browser window */
.illu { position: absolute; inset: 0; display: grid; place-items: center; padding: clamp(1rem, 4vw, 2.5rem); background: var(--tint-blue); }
.illu-pink { background: var(--tint-pink); }
.illu-yellow { background: var(--tint-yellow); }
.browser { width: 100%; max-width: 440px; background: #fff; border-radius: 16px; box-shadow: 0 30px 50px -30px rgba(14, 27, 42, 0.5); overflow: hidden; border: 1px solid var(--line); }
.browser-bar { display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--line); background: var(--paper-2); }
.browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.browser-bar i:nth-child(1) { background: #ff5f57; } .browser-bar i:nth-child(2) { background: #febc2e; } .browser-bar i:nth-child(3) { background: #28c840; }
.browser-url { flex: 1; display: flex; align-items: center; gap: 0.4rem; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 0.3rem 0.7rem; font-size: 0.8rem; font-weight: 700; color: var(--ink-2); }
.browser-url svg { width: 12px; height: 12px; color: var(--green); }
.browser-url .type { color: var(--ink); }
.browser-body { padding: 1rem; display: grid; gap: 0.6rem; }
.browser-body .ln { height: 10px; border-radius: 5px; background: var(--paper-3); }
.browser-body .ln.h { height: 18px; width: 70%; background: var(--ink); }
.browser-body .ln.w60 { width: 60%; } .browser-body .ln.w80 { width: 80%; }
.browser-body .cta { width: 110px; height: 26px; border-radius: 999px; background: var(--blue); }
.badge-own { position: absolute; right: clamp(0.75rem, 3vw, 1.5rem); bottom: clamp(0.75rem, 3vw, 1.5rem); background: var(--ink); color: #fff; font-weight: 800; font-size: 0.85rem; padding: 0.6rem 0.9rem; border-radius: 999px; display: inline-flex; align-items: center; gap: 0.5rem; box-shadow: 0 20px 30px -18px rgba(0, 0, 0, 0.6); }
.badge-own svg { width: 16px; height: 16px; color: var(--yellow); }

/* illustration: timeline */
.timeline { width: 100%; max-width: 460px; display: grid; gap: 0.75rem; }
.tl-row { display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: 0.9rem; background: #fff; border-radius: 14px; padding: 0.75rem 0.9rem; border: 1px solid var(--line); box-shadow: 0 16px 30px -26px rgba(14, 27, 42, 0.5); transform: translateX(-12px); opacity: 0; transition: transform 0.6s var(--ease), opacity 0.6s var(--ease); }
.get-panel.active .tl-row { transform: none; opacity: 1; }
.get-panel.active .tl-row:nth-child(2) { transition-delay: 0.1s; } .get-panel.active .tl-row:nth-child(3) { transition-delay: 0.2s; } .get-panel.active .tl-row:nth-child(4) { transition-delay: 0.3s; }
.tl-day { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.tl-day b { display: block; font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 1.6rem; letter-spacing: 0; color: var(--ink); line-height: 1; }
.tl-what { font-weight: 700; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.tl-what small { font-weight: 600; color: var(--ink-3); }
.live { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); }
.live::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(30, 158, 99, 0.5); animation: pulse 1.6s infinite; }
@keyframes pulse { to { box-shadow: 0 0 0 10px rgba(30, 158, 99, 0); } }

.keep { margin-top: clamp(2rem, 5vw, 3.5rem); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.5rem); display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr); gap: 1.5rem 3rem; align-items: start; }
.keep h3 { font-size: 1.5rem; }
.keep .muted { font-size: 1rem; margin-top: 0.5rem; }
.ticks { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 2rem; }
.ticks li { display: flex; gap: 0.7rem; align-items: flex-start; font-weight: 600; font-size: 1rem; line-height: 1.45; }
.tick { flex: none; width: 20px; height: 17px; margin-top: 0.3rem; color: var(--blue); }
.ticks li:nth-child(3n+1) .tick { color: var(--blue); }
.ticks li:nth-child(3n+2) .tick { color: var(--pink); }
.ticks li:nth-child(3n) .tick { color: var(--yellow); }
@media (max-width: 900px) { .get-grid { grid-template-columns: 1fr; } .get-tab[aria-selected="true"] { transform: none; } .keep { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .ticks { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column; gap: 1rem; padding: clamp(1.4rem, 3vw, 2rem);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.price-card.featured { background: var(--blue); color: #fff; border-color: transparent; box-shadow: 0 30px 60px -35px rgba(0, 142, 224, 0.9); }
.price-card.featured .muted { color: rgba(255, 255, 255, 0.85); }
.price-card.added { border-color: var(--ink); }
.price-card h3 { font-size: 1.35rem; padding-right: 5rem; }
.price-card .muted { font-size: 0.98rem; min-height: 3.1em; }
.price { display: flex; align-items: baseline; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.25rem; }
.amount { font-size: clamp(2.4rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.per { font-weight: 600; opacity: 0.8; }
.tag { position: absolute; top: 1.25rem; right: 1.25rem; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.4rem 0.65rem; border-radius: 999px; background: var(--paper-2); color: var(--ink-2); }
.tag.hot { background: var(--yellow); color: var(--ink); }
.price-card .ticks { grid-template-columns: 1fr; gap: 0.65rem; margin-top: 0.25rem; }
.price-card .ticks li { font-size: 0.95rem; font-weight: 500; }
.price-card.featured .tick { color: #fff !important; }
.price-card[data-addon="45"] .tick { color: var(--pink) !important; }
.price-card[data-addon="175"] .tick { color: var(--yellow) !important; }
.addon { margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; font-weight: 700; cursor: pointer; user-select: none; }
.switch { position: relative; width: 48px; height: 28px; border-radius: 999px; background: var(--paper-3); transition: background-color 0.3s; flex: none; }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25); transition: transform 0.3s var(--ease); }
.addon input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.addon input:checked + .switch { background: var(--ink); }
.addon input:checked + .switch::after { transform: translateX(20px); }
.addon input:focus-visible + .switch { outline: 3px solid var(--yellow); outline-offset: 3px; }
.featured .cta-inline { margin-top: auto; }
.plan-summary {
  margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem 2rem; flex-wrap: wrap;
  background: var(--navy); color: #fff; border-radius: 20px; padding: 1.25rem 1.5rem;
  transition: transform 0.3s var(--ease);
}
.plan-summary.pulse { transform: scale(1.01); }
.plan-summary .label { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); display: block; margin-bottom: 0.2rem; }
.plan-line { font-size: 1.25rem; font-weight: 700; display: flex; flex-wrap: wrap; gap: 0.25rem 0.6rem; align-items: baseline; }
.plan-line strong { font-size: 1.6rem; letter-spacing: -0.03em; }
.plan-line .plus { color: var(--yellow); }
.plan-line [hidden] { display: none; }
@media (max-width: 960px) { .price-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } .price-card .muted { min-height: 0; } }

/* ---------- Why we're different ---------- */
.different { background: var(--blue); color: #fff; overflow: hidden; }
.different h2 { color: #fff; }
.carousel-nav { display: flex; gap: 0.6rem; }
.carousel-nav button { width: 52px; height: 52px; border-radius: 50%; background: #fff; color: var(--blue); display: grid; place-items: center; transition: transform 0.3s var(--ease), opacity 0.3s; }
.carousel-nav button:hover { transform: scale(1.06); }
.carousel-nav button:disabled { opacity: 0.4; cursor: default; transform: none; }
.carousel-nav svg { width: 20px; height: 20px; }
.carousel {
  display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  padding: 0.5rem max(var(--gutter), calc((100% - var(--container)) / 2)) 1.5rem;
  scroll-padding-inline: max(var(--gutter), calc((100% - var(--container)) / 2));
}
.carousel::-webkit-scrollbar { display: none; }
.diff-card {
  flex: 0 0 min(100%, 780px); scroll-snap-align: start; background: #fff; color: var(--ink); border-radius: var(--radius);
  display: grid; grid-template-columns: 1.05fr 0.95fr; overflow: hidden; min-height: 380px; box-shadow: 0 40px 60px -40px rgba(0, 0, 0, 0.5);
}
.diff-copy { padding: clamp(1.5rem, 4vw, 2.75rem); display: grid; gap: 1rem; align-content: center; }
.diff-copy h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
.diff-copy p { color: var(--ink-2); }
.diff-media { position: relative; background: var(--paper-2); min-height: 240px; }
.diff-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.diff-media .illu { padding: 1.5rem; }
.c-progress { display: flex; gap: 8px; margin-top: 0.5rem; }
.c-progress i { width: 64px; height: 7px; border-radius: 4px; background: rgba(255, 255, 255, 0.3); overflow: hidden; transform: skewX(-14deg); }
.c-progress i::after { content: ""; display: block; height: 100%; background: var(--yellow); transform: scaleX(var(--p, 0)); transform-origin: left; transition: transform 0.2s linear; }
.c-progress i:nth-child(2)::after { background: var(--pink); }
.c-progress i:nth-child(3)::after { background: #fff; }
.offline-bar { display: flex; align-items: center; gap: 0.5rem; background: var(--tint-pink); color: #b2123f; font-weight: 800; font-size: 0.8rem; padding: 0.5rem 0.7rem; border-radius: 10px; }
.offline-bar svg { width: 16px; height: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.chip { font-size: 0.78rem; font-weight: 700; padding: 0.35rem 0.6rem; border-radius: 999px; background: var(--paper-2); color: var(--ink-2); }
.chip.on { background: var(--ink); color: #fff; }
.person { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: center; width: 100%; max-width: 400px; }
.person .avatar { width: 84px; height: 84px; border-radius: 50%; background: var(--navy); color: var(--yellow); font-family: var(--serif); font-style: italic; font-size: 2.6rem; display: grid; place-items: center; box-shadow: 0 20px 30px -18px rgba(0, 0, 0, 0.6); }
.bubble { background: #fff; border-radius: 16px 16px 16px 4px; padding: 0.9rem 1rem; font-weight: 600; font-size: 0.95rem; box-shadow: 0 20px 30px -24px rgba(14, 27, 42, 0.5); position: relative; }
.bubble + .bubble { grid-column: 2; border-radius: 16px 16px 4px 16px; background: var(--ink); color: #fff; justify-self: end; }
@media (max-width: 760px) {
  .diff-card { grid-template-columns: 1fr; flex-basis: calc(100% - 1.5rem); }
  .diff-media { min-height: 220px; order: -1; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--paper-2); }
.faq .section-head { text-align: center; margin-inline: auto; justify-items: center; }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 0.75rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 18px; transition: box-shadow 0.3s var(--ease), border-color 0.3s; }
.faq-item.open { box-shadow: var(--shadow-card); border-color: transparent; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.2rem 1.4rem; text-align: left; font-weight: 700; font-size: 1.08rem; letter-spacing: -0.01em; border-radius: 18px; }
.faq-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--paper-2); position: relative; flex: none; transition: background-color 0.3s, transform 0.4s var(--ease); }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 2.5px; border-radius: 2px; background: var(--pink); translate: -50% -50%; transition: transform 0.4s var(--ease); }
.faq-icon::after { transform: rotate(90deg); }
.faq-item.open .faq-icon { background: var(--tint-pink); transform: rotate(180deg); }
.faq-item.open .faq-icon::after { transform: rotate(0deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 1.4rem 1.4rem; color: var(--ink-2); max-width: 60ch; }
.faq-a p + p { margin-top: -0.8rem; }
.faq-a .draft { font-size: 0.8rem; color: var(--ink-3); font-weight: 600; }

/* ---------- CTA band + footer ---------- */
.cta-band { background: var(--navy); color: #fff; overflow: hidden; position: relative; }
.cta-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.cta-copy { display: grid; gap: 1.25rem; }
.cta-copy h2 { color: #fff; }
.cta-copy p { color: rgba(255, 255, 255, 0.78); font-size: 1.1rem; max-width: 34rem; }
.cta-copy .ctas { display: flex; gap: 0.75rem 1rem; flex-wrap: wrap; align-items: center; }
.cta-media { position: relative; aspect-ratio: 4 / 3.3; border-radius: var(--radius); overflow: hidden; transform: rotate(2deg); box-shadow: 0 50px 80px -40px rgba(0, 0, 0, 0.7); }
.cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-media .ph-badge { position: absolute; top: 1rem; left: 1rem; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(255, 255, 255, 0.9); padding: 0.35rem 0.6rem; border-radius: 999px; color: var(--ink-2); }
.cta-band .stripes { inset: auto -5% -30% 55%; height: 130%; opacity: 0.12; }
.cta-band .stripes i:nth-child(1) { background: var(--yellow); } .cta-band .stripes i:nth-child(2) { background: var(--pink); } .cta-band .stripes i:nth-child(3) { background: var(--sky); }
.mail-big { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 800; letter-spacing: -0.02em; color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 0.6rem; background: linear-gradient(var(--yellow), var(--yellow)) no-repeat 0 100% / 100% 3px; padding-bottom: 4px; }
.mail-big:hover { background-size: 100% 100%; color: var(--ink); border-radius: 6px; }
@media (max-width: 860px) { .cta-grid { grid-template-columns: 1fr; } .cta-media { max-width: 480px; } }

.footer { background: var(--navy); color: rgba(255, 255, 255, 0.72); border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 2rem 0; font-size: 0.92rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem 2rem; flex-wrap: wrap; }
.footer .brand { color: #fff; font-size: 1.2rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { text-decoration: none; font-weight: 600; }
.footer-links a:hover { color: #fff; }
.footer-note { width: 100%; color: rgba(255, 255, 255, 0.5); font-size: 0.85rem; }

/* ---------- Sticky mobile contact ---------- */
.sticky-cta { position: fixed; left: 50%; bottom: max(14px, env(safe-area-inset-bottom)); translate: -50% 120%; z-index: 55; transition: translate 0.5s var(--ease), opacity 0.4s; opacity: 0; }
.sticky-cta.show { translate: -50% 0; opacity: 1; }
.sticky-cta .btn { box-shadow: 0 20px 40px -18px rgba(14, 27, 42, 0.7); background: var(--ink); color: #fff; }
.sticky-cta .btn svg { width: 18px; height: 18px; }
@media (min-width: 861px) { .sticky-cta { display: none; } }

/* ---------- Placeholder helpers ---------- */
.ph-badge { pointer-events: none; }
