/* ==========================================================================
   More Than Mobiles  -  Design System
   Palette: charcoal + electric cyan  |  Type: Space Grotesk + Inter
   ========================================================================== */

/* ----- Tokens ----------------------------------------------------------- */
:root {
  --bg:            #0B0E13;
  --bg-2:          #0D1119;
  --surface:       #11161F;
  --surface-2:     #161D28;
  --surface-3:     #1B2331;
  --border:        #222C3B;
  --border-strong: #2D3A4C;

  --text:          #E9EFF7;
  --text-muted:    #95A3B8;
  --text-dim:      #8B99AE;

  --accent:        #1FE3E3;   /* electric cyan */
  --accent-2:      #3BA7F2;   /* electric blue, used sparingly */
  --accent-deep:   #0B8E97;
  --accent-soft:   rgba(31, 227, 227, 0.12);
  --accent-line:   rgba(31, 227, 227, 0.30);
  --accent-glow:   rgba(31, 227, 227, 0.45);

  --ok:            #34d399;
  --warn:          #fbbf24;

  --grad-cyan:     linear-gradient(135deg, #1FE3E3 0%, #3BA7F2 100%);
  --grad-surface:  linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  --grad-hero:     radial-gradient(60% 80% at 80% 10%, rgba(31,227,227,0.16), transparent 60%),
                   radial-gradient(50% 60% at 10% 30%, rgba(59,167,242,0.12), transparent 60%);

  --radius-sm: 10px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --shadow:    0 18px 50px -24px rgba(0,0,0,0.7);
  --shadow-lg: 0 40px 90px -40px rgba(0,0,0,0.85);
  --shadow-cyan: 0 20px 60px -28px rgba(31,227,227,0.55);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);

  --font-head: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.18s var(--ease);
  --t:      0.32s var(--ease);
  --t-slow: 0.6s  var(--ease);
}

/* ----- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--accent); color: #04161a; }

/* ----- Typography ------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.06rem; letter-spacing: -0.01em; }
p  { color: var(--text-muted); }
strong { color: var(--text); font-weight: 600; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--text-muted); line-height: 1.7; }
.accent { color: var(--accent); }
.text-grad {
  background: var(--grad-cyan);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ----- Layout ----------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding: clamp(64px, 9vw, 128px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 16px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: var(--accent-line);
}
.section-head.center .eyebrow { justify-content: center; }

.grid { display: grid; gap: 22px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ----- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 500; font-size: 0.97rem;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t), border-color var(--t), color var(--t);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--t); }
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--grad-cyan); color: #03171a; font-weight: 600;
  box-shadow: var(--shadow-cyan);
}
.btn--primary:hover { box-shadow: 0 26px 70px -26px rgba(31,227,227,0.7); }
.btn--primary:hover svg { transform: translateX(3px); }
.btn--ghost {
  background: rgba(255,255,255,0.03); color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--accent-line); color: #fff; background: var(--accent-soft); }
.btn--sm { padding: 10px 18px; font-size: 0.88rem; }
.btn--block { width: 100%; }

.textlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 500; color: var(--accent);
  transition: gap var(--t);
}
.textlink svg { width: 16px; height: 16px; }
.textlink:hover { gap: 13px; }

/* ----- Pills / badges --------------------------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--border);
  font-size: 0.82rem; color: var(--text-muted);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }
.tag {
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); padding: 5px 11px; border-radius: 7px;
  background: var(--accent-soft); border: 1px solid var(--accent-line);
}

/* ----- Cards ------------------------------------------------------------ */
.card {
  position: relative; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; overflow: hidden;
  transition: transform var(--t), border-color var(--t), background var(--t);
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: var(--grad-surface); opacity: 0; transition: opacity var(--t); pointer-events: none;
}
.card:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 52px; height: 52px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: var(--accent-soft); border: 1px solid var(--accent-line);
}
.card__icon svg { width: 26px; height: 26px; color: var(--accent); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.96rem; }

.card--glow:hover { box-shadow: var(--shadow-cyan); }

/* feature list inside cards */
.ticks { display: grid; gap: 11px; margin-top: 18px; }
.ticks li { position: relative; padding-left: 28px; color: var(--text-muted); font-size: 0.94rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 17px; height: 17px;
  border-radius: 50%; background: var(--accent-soft); border: 1px solid var(--accent-line);
}
.ticks li::after {
  content: ""; position: absolute; left: 5.5px; top: 7px; width: 6px; height: 3.5px;
  border-left: 1.6px solid var(--accent); border-bottom: 1.6px solid var(--accent);
  transform: rotate(-45deg);
}

/* ----- Header / Nav ----------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0;
  transition: padding var(--t), background var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 11px 0;
  background: rgba(11, 14, 19, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { height: 30px; width: auto; }
.brand__name { font-family: var(--font-head); font-weight: 600; font-size: 1.18rem; color: #fff; letter-spacing: -0.02em; }
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  font-size: 0.95rem; color: var(--text-muted); padding: 9px 14px; border-radius: 9px;
  transition: color var(--t), background var(--t);
}
.nav__links a:hover, .nav__links a.active { color: #fff; background: rgba(255,255,255,0.04); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle {
  display: none; width: 44px; height: 44px; border-radius: 11px;
  background: var(--surface-2); border: 1px solid var(--border);
  position: relative;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 18px; height: 1.8px;
  background: var(--text); transform: translate(-50%, -50%); transition: transform var(--t), opacity var(--t);
}
.nav__toggle span::before { transform: translate(-50%, -7px); }
.nav__toggle span::after  { transform: translate(-50%, 5px); }
.nav__toggle.open span { background: transparent; }
.nav__toggle.open span::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav__toggle.open span::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* ----- Backgrounds / FX ------------------------------------------------- */
.fx { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.fx > * { position: absolute; }
.aurora {
  width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  border-radius: 50%; filter: blur(90px); opacity: 0.5;
  background: radial-gradient(circle at 50% 50%, var(--accent), transparent 65%);
  animation: drift 22s var(--ease) infinite alternate;
}
.aurora.a2 { background: radial-gradient(circle at 50% 50%, var(--accent-2), transparent 65%); opacity: 0.4; animation-duration: 28s; animation-direction: alternate-reverse; }
.grid-overlay {
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
}
.particles { inset: 0; width: 100%; height: 100%; opacity: 0.85; }
@keyframes drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(40px, -30px) scale(1.12); }
}

/* ----- Hero ------------------------------------------------------------- */
.hero { position: relative; padding: clamp(130px, 18vh, 200px) 0 clamp(70px, 9vw, 120px); overflow: hidden; }
.hero .fx { background: var(--grad-hero); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 40px; }
.hero__meta div { display: flex; flex-direction: column; gap: 2px; }
.hero__meta b { font-family: var(--font-head); font-size: 1.45rem; color: #fff; }
.hero__meta span { font-size: 0.84rem; color: var(--text-dim); }
.hero__visual { position: relative; }
.hero__visual img { width: 100%; filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6)); animation: float 7s var(--ease) infinite alternate; }
@keyframes float { from { transform: translateY(0); } to { transform: translateY(-16px); } }

/* ----- Marquee (logos/keywords) ---------------------------------------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: scrollx 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--font-head); font-size: 1.05rem; color: var(--text-dim); display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; }
.marquee__track span::before { content: ""; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; opacity: 0.6; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ----- Split / pillars -------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pillar {
  position: relative; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 40px; overflow: hidden; background: var(--surface);
  transition: border-color var(--t), transform var(--t);
}
.pillar:hover { border-color: var(--accent-line); transform: translateY(-4px); }
.pillar__art { width: 100%; border-radius: var(--radius); margin: 24px 0; border: 1px solid var(--border); }
.pillar h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }

/* ----- Process steps ---------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 20px; }
.step {
  position: relative; display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start;
  padding: 26px 28px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface);
  transition: border-color var(--t), background var(--t);
}
.step:hover { border-color: var(--border-strong); background: var(--surface-2); }
.step__no {
  counter-increment: step; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  color: var(--accent); background: var(--accent-soft); border: 1px solid var(--accent-line);
}
.step__no::before { content: "0" counter(step); }
.step h3 { font-size: 1.06rem; letter-spacing: -0.01em; margin-bottom: 6px; }
.step p { font-size: 0.95rem; }

/* ----- Pricing ---------------------------------------------------------- */
.price-grid { display: grid; gap: 22px; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.price-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.price-card.featured { border-color: var(--accent-line); box-shadow: var(--shadow-cyan); background: linear-gradient(180deg, rgba(31,227,227,0.06), transparent 60%), var(--surface); }
.price-card.featured::after {
  content: "Most popular"; position: absolute; top: 20px; right: 20px;
  font-family: var(--font-head); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #03171a; background: var(--grad-cyan); padding: 5px 11px; border-radius: 7px; font-weight: 600;
}
.price-card__name { font-family: var(--font-head); font-weight: 600; color: #fff; font-size: 1.18rem; }
.price-card__desc { font-size: 0.9rem; color: var(--text-dim); margin-top: 6px; min-height: 38px; }
.price-card__price { display: flex; align-items: baseline; gap: 6px; margin: 22px 0 4px; }
.price-card__price b { font-family: var(--font-head); font-weight: 600; font-size: 2.4rem; color: #fff; letter-spacing: -0.03em; }
.price-card__price span { color: var(--text-dim); font-size: 0.92rem; }
.price-card .ticks { flex: 1; margin: 22px 0 26px; }
.price-card .btn { margin-top: auto; }

/* compact service tier rows */
.tier-row {
  display: grid; grid-template-columns: 1.4fr 0.8fr auto; gap: 18px; align-items: center;
  padding: 20px 24px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); transition: border-color var(--t), background var(--t);
}
.tier-row + .tier-row { margin-top: 12px; }
.tier-row:hover { border-color: var(--accent-line); background: var(--surface-2); }
.tier-row h3, .tier-row h4 { font-size: 1.05rem; letter-spacing: -0.01em; margin-bottom: 4px; }
.tier-row p { font-size: 0.9rem; }
.tier-row__price { font-family: var(--font-head); font-weight: 600; color: #fff; font-size: 1.2rem; text-align: right; }
.tier-row__price small { display: block; font-size: 0.72rem; color: var(--text-dim); font-weight: 400; }

/* service family block */
.svc-block { border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--surface); overflow: hidden; }
.svc-block__head { display: flex; align-items: center; gap: 18px; padding: 28px 30px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.svc-block__head .card__icon { margin: 0; flex: none; }
.svc-block__head p { font-size: 0.95rem; margin-top: 4px; }
.svc-block__body { padding: 26px 30px; }

/* ----- Stats ------------------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 28px 18px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.stat b { display: block; font-family: var(--font-head); font-weight: 600; font-size: clamp(1.9rem, 3vw, 2.6rem); color: #fff; }
.stat span { font-size: 0.88rem; color: var(--text-muted); }

/* ----- FAQ -------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; color: #fff;
  font-family: var(--font-head); font-weight: 500; font-size: 1.08rem;
  padding: 24px 40px 24px 0; position: relative; display: flex; gap: 14px;
}
.faq__q::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg); transition: transform var(--t);
}
.faq__item.open .faq__q::after { transform: translateY(-30%) rotate(-135deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--t-slow); }
.faq__a p { padding: 0 40px 26px 0; font-size: 0.98rem; }

/* ----- CTA band --------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-xl); border: 1px solid var(--accent-line); padding: clamp(40px, 6vw, 70px); text-align: center; background: linear-gradient(180deg, rgba(31,227,227,0.08), rgba(11,14,19,0.4)); }
.cta-band h2 { margin-bottom: 16px; }
.cta-band .lead { max-width: 600px; margin: 0 auto 30px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ----- Forms ------------------------------------------------------------ */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; min-width: 0; }
.field label { font-family: var(--font-head); font-size: 0.86rem; color: var(--text); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 0.97rem; color: var(--text);
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px 16px; transition: border-color var(--t), background var(--t);
  width: 100%; min-width: 0;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: var(--surface-3); box-shadow: 0 0 0 3px var(--accent-soft); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ----- Contact info ----------------------------------------------------- */
.info-list { display: grid; gap: 16px; }
.info-item { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; padding: 18px 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.info-item .card__icon { width: 44px; height: 44px; margin: 0; }
.info-item .card__icon svg { width: 22px; height: 22px; }
.info-item h3 { font-size: 1.06rem; letter-spacing: -0.01em; margin-bottom: 3px; }
.info-item p, .info-item a { font-size: 0.94rem; color: var(--text-muted); }
.info-item a:hover { color: var(--accent); }

/* ----- Footer ----------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: clamp(56px, 7vw, 84px) 0 36px; margin-top: 40px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand .brand { margin-bottom: 18px; }
.footer__brand p { font-size: 0.95rem; max-width: 320px; }
.footer__col h5 { font-family: var(--font-head); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
.footer__col a { display: block; font-size: 0.95rem; color: var(--text-muted); padding: 6px 0; transition: color var(--t); }
.footer__col a:hover { color: var(--accent); }
.footer__legal {
  margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 16px 30px; justify-content: space-between; align-items: flex-start;
}
.footer__legal .legal-block { font-size: 0.82rem; color: var(--text-dim); line-height: 1.7; max-width: 640px; }
.footer__legal .legal-block strong { color: var(--text-muted); font-weight: 600; }
.footer__legal .legal-links { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer__legal .legal-links a { font-size: 0.82rem; color: var(--text-dim); }
.footer__legal .legal-links a:hover { color: var(--accent); }

/* ----- Page hero (interior) -------------------------------------------- */
.page-hero { position: relative; padding: clamp(140px, 16vh, 190px) 0 clamp(40px, 5vw, 64px); overflow: hidden; }
.page-hero .fx { background: var(--grad-hero); }
.page-hero__inner { position: relative; z-index: 2; max-width: 780px; }
.page-hero h1 { margin-bottom: 20px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: var(--text-dim); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: 0.5; }

/* ----- Prose (legal) ---------------------------------------------------- */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.5rem; margin: 44px 0 14px; }
.prose h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.prose p, .prose li { color: var(--text-muted); font-size: 0.99rem; margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); }
.prose strong { color: var(--text); }
.prose .updated { font-size: 0.86rem; color: var(--text-dim); margin-bottom: 28px; }

/* ----- Reveal animation ------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

/* ----- Responsive ------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 560px; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tier-row { grid-template-columns: 1fr auto; }
  .tier-row p { grid-column: 1 / -1; order: 3; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: block; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; gap: 4px; align-items: stretch;
    position: absolute; top: calc(100% + 10px); left: var(--gutter); right: var(--gutter);
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 14px; box-shadow: var(--shadow-lg);
  }
  .nav.open .nav__links a { padding: 13px 16px; }
  .cols-2, .cols-3, .split, .field--row { grid-template-columns: 1fr; }
  .hero__meta { gap: 20px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cols-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .card, .pillar, .price-card { padding: 24px; }
  .footer__legal { flex-direction: column; }
}

/* ----- Reduced motion --------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__visual img { animation: none; }
}
