/* ==========================================================================
   TRIVIA — Solutions That Create Impact
   Design tokens → base → components → sections → responsive
   ========================================================================== */

/* ---------- 1. TOKENS ---------- */
:root {
  /* brand */
  --violet:      #7C3AED;
  --violet-600:  #6D28D9;
  --violet-300:  #A78BFA;
  --indigo:      #5B4BF5;
  --blue:        #22A6F2;
  --blue-400:    #38BDF8;
  --cyan:        #22D3EE;
  --teal:        #14B8A6;
  --amber:       #F59E0B;
  --orange:      #FB8C3C;
  --rose:        #F43F5E;
  --emerald:     #10B981;
  --green:       #25D366;

  --grad:        linear-gradient(100deg, var(--violet) 0%, var(--indigo) 45%, var(--blue) 100%);
  --grad-soft:   linear-gradient(135deg, rgba(124,58,237,.10), rgba(34,166,242,.10));

  /* surfaces & ink (light) */
  --bg:          #FFFFFF;
  --surface:     #F6F7FC;
  --card:        #FFFFFF;
  --card-2:      #FFFFFF;
  --line:        rgba(16, 27, 69, .10);
  --line-strong: rgba(16, 27, 69, .16);
  --ink:         #0E1436;
  --ink-2:       #263063;
  --muted:       #5B6485;
  --muted-2:     #7C86A6;
  --shadow-sm:   0 1px 2px rgba(14,20,54,.05), 0 4px 12px rgba(14,20,54,.05);
  --shadow-md:   0 2px 6px rgba(14,20,54,.06), 0 18px 40px -12px rgba(14,20,54,.14);
  --shadow-lg:   0 30px 70px -20px rgba(48,32,140,.28);
  --ring:        rgba(124,58,237,.35);

  /* type */
  --font-display: 'Poppins', 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* rhythm */
  --shell:   1200px;
  --pad:     clamp(20px, 5vw, 40px);
  --sec-y:   clamp(72px, 10vw, 140px);
  --r-sm:    12px;
  --r:       18px;
  --r-lg:    26px;
  --r-xl:    34px;

  /* motion */
  --e-out:  cubic-bezier(.16, 1, .3, 1);
  --e-io:   cubic-bezier(.65, 0, .35, 1);
  --e-spring: cubic-bezier(.34, 1.56, .64, 1);
}

html[data-theme="dark"] {
  --bg:          #080B1E;
  --surface:     #0C1027;
  --card:        #111634;
  --card-2:      #151B3E;
  --line:        rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.16);
  --ink:         #F1F3FF;
  --ink-2:       #C9CEEE;
  --muted:       #9BA3C8;
  --muted-2:     #7A82A8;
  --shadow-sm:   0 1px 2px rgba(0,0,0,.3), 0 4px 14px rgba(0,0,0,.3);
  --shadow-md:   0 2px 8px rgba(0,0,0,.35), 0 20px 44px -14px rgba(0,0,0,.6);
  --shadow-lg:   0 34px 80px -22px rgba(0,0,0,.8);
  --violet-300:  #C4B5FD;
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font: 400 clamp(15px, 1.05vw, 16.5px)/1.7 var(--font-body);
  letter-spacing: -.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background .45s var(--e-out), color .45s var(--e-out);
}

body.is-loading { overflow: hidden; }
body.nav-open  { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }

:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: rgba(124,58,237,.22); }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.skip-link {
  position: fixed; top: 10px; left: 50%;
  transform: translate(-50%, -160%);
  z-index: 300;
  background: var(--ink); color: #fff;
  padding: 10px 20px; border-radius: 999px;
  font-size: .88rem; font-weight: 600;
  transition: transform .3s var(--e-out);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ---------- 3. TYPE HELPERS ---------- */
.h2 {
  font: 600 clamp(2rem, 4.6vw, 3.6rem)/1.08 var(--font-display);
  letter-spacing: -.035em;
}
.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
  max-width: 52ch;
}
.lead--center { margin-inline: auto; text-align: center; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.gradient-text-light {
  background: linear-gradient(100deg, #C4B5FD, #7DD3FC 60%, #67E8F9);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font: 600 .78rem/1 var(--font-body);
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 22px;
}
html[data-theme="dark"] .kicker { color: var(--violet-300); }
.kicker__rule {
  width: 34px; height: 2px; border-radius: 2px;
  background: var(--grad);
}
.kicker--light { color: #C4B5FD; }
.kicker--light .kicker__rule { background: linear-gradient(90deg,#C4B5FD,#7DD3FC); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: color-mix(in srgb, var(--card) 70%, transparent);
  backdrop-filter: blur(10px);
  font-size: .84rem; font-weight: 500;
  color: var(--ink-2);
  letter-spacing: .01em;
  margin-bottom: 28px;
}
.eyebrow strong { font-weight: 600; color: var(--violet); }
html[data-theme="dark"] .eyebrow strong { color: var(--violet-300); }
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 0 rgba(124,58,237,.55);
  animation: pulse 2.4s var(--e-io) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(124,58,237,.5); }
  70%  { box-shadow: 0 0 0 10px rgba(124,58,237,0); }
  100% { box-shadow: 0 0 0 0 rgba(124,58,237,0); }
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; color: var(--violet);
  margin-top: 30px;
}
html[data-theme="dark"] .link-arrow { color: var(--violet-300); }
.link-arrow svg {
  width: 18px; height: 18px; fill: none;
  stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .35s var(--e-out);
}
.link-arrow:hover svg { transform: translateX(6px); }

/* ---------- 4. BUTTONS ---------- */
.btn {
  --btn-y: 15px; --btn-x: 28px;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--btn-y) var(--btn-x);
  border: 1px solid transparent;
  border-radius: 999px;
  font: 600 .95rem/1 var(--font-body);
  letter-spacing: -.005em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s var(--e-out), box-shadow .4s var(--e-out),
              border-color .3s, background .3s, color .3s;
  will-change: transform;
}
.btn svg {
  width: 18px; height: 18px; fill: none;
  stroke: currentColor; stroke-width: 2.1;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .4s var(--e-out);
}
.btn:hover svg { transform: translateX(5px); }
.btn--sm { --btn-y: 11px; --btn-x: 20px; font-size: .88rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--grad);
  background-size: 160% 100%;
  color: #fff;
  box-shadow: 0 10px 26px -8px rgba(91,75,245,.55);
}
.btn--primary::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, var(--blue), var(--violet));
  opacity: 0; transition: opacity .45s var(--e-out);
}
.btn--primary:hover {
  box-shadow: 0 18px 40px -10px rgba(91,75,245,.62);
}
.btn--primary:hover::after { opacity: 1; }
.btn--primary:active { transform: scale(.97); }

.btn--outline-light {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.22);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.45);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--violet);
  color: var(--violet);
  background: rgba(124,58,237,.05);
}
html[data-theme="dark"] .btn--ghost:hover { color: var(--violet-300); border-color: var(--violet-300); }

/* ---------- 5. PRELOADER ---------- */
.loader {
  position: fixed; inset: 0; z-index: 400;
  display: grid; place-items: center;
  background: var(--bg);
  transition: opacity .7s var(--e-out), visibility .7s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { display: grid; justify-items: center; gap: 26px; }
.loader__mark { width: 74px; height: 74px; }
.ld-p { opacity: 0; transform-origin: 50% 20%; animation: ldIn .7s var(--e-out) forwards; }
.ld-1 { animation-delay: .05s; }
.ld-2 { animation-delay: .18s; }
.ld-3 { animation-delay: .32s; }
@keyframes ldIn {
  from { opacity: 0; transform: translateY(-10px) scale(.9); }
  to   { opacity: 1; transform: none; }
}
.loader__bar {
  width: 130px; height: 3px; border-radius: 99px;
  background: var(--line); overflow: hidden;
}
.loader__bar span {
  display: block; height: 100%; width: 0;
  border-radius: 99px; background: var(--grad);
  animation: ldBar 1.1s var(--e-io) .25s forwards;
}
@keyframes ldBar { to { width: 100%; } }

/* ---------- 6. SCROLL PROGRESS + CURSOR ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 210;
  height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: var(--grad);
  pointer-events: none;
}
.cursor-glow {
  position: fixed; top: 0; left: 0; z-index: 1;
  width: 520px; height: 520px; border-radius: 50%;
  margin: -260px 0 0 -260px;
  background: radial-gradient(circle, rgba(124,58,237,.16), rgba(34,166,242,.09) 45%, transparent 70%);
  pointer-events: none; opacity: 0;
  transition: opacity .6s var(--e-out);
  filter: blur(20px);
}
.cursor-glow.is-on { opacity: 1; }
@media (hover: none) { .cursor-glow { display: none; } }

/* ---------- 7. NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px 0;
  transition: padding .45s var(--e-out), background .45s var(--e-out),
              box-shadow .45s var(--e-out), border-color .45s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  padding: 10px 0;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 34px; height: 34px; flex: none;
  transition: transform .6s var(--e-spring);
}
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.08); }
.brand__type {
  font: 600 1.42rem/1 var(--font-display);
  letter-spacing: -.03em;
  color: var(--ink);
}
.grad-v { color: var(--violet); }
.grad-i { color: var(--blue); }

.nav__links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav__links a {
  position: relative;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: .93rem; font-weight: 500;
  color: var(--muted);
  transition: color .3s, background .3s;
}
.nav__links a::after {
  content: ''; position: absolute; left: 15px; right: 15px; bottom: 4px;
  height: 2px; border-radius: 2px; background: var(--grad);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .4s var(--e-out);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--ink); font-weight: 600; }

.nav__actions { display: flex; align-items: center; gap: 10px; }

.theme-toggle {
  position: relative;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: border-color .3s, transform .5s var(--e-spring), background .3s;
}
.theme-toggle:hover { border-color: var(--violet); transform: rotate(20deg); }
.theme-toggle svg {
  position: absolute;
  width: 18px; height: 18px; fill: none;
  stroke: var(--ink); stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
  transition: opacity .35s var(--e-out), transform .5s var(--e-out);
}
.ic-moon { opacity: 0; transform: rotate(-60deg) scale(.6); }
html[data-theme="dark"] .ic-sun  { opacity: 0; transform: rotate(60deg) scale(.6); }
html[data-theme="dark"] .ic-moon { opacity: 1; transform: none; }

.burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line-strong); border-radius: 12px;
  background: transparent; cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute; left: 11px; width: 18px; height: 2px;
  border-radius: 2px; background: var(--ink);
  transition: transform .4s var(--e-out), opacity .3s;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 23px; }
body.nav-open .burger span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------- 8. HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 140px 0 110px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  will-change: transform;
}
.blob--1 {
  width: 46vw; height: 46vw; min-width: 380px; min-height: 380px;
  top: -14%; right: -8%;
  background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.55), rgba(124,58,237,0) 68%);
  animation: float1 22s var(--e-io) infinite;
}
.blob--2 {
  width: 40vw; height: 40vw; min-width: 320px; min-height: 320px;
  bottom: -18%; left: -10%;
  background: radial-gradient(circle at 60% 40%, rgba(34,166,242,.48), rgba(34,166,242,0) 68%);
  animation: float2 26s var(--e-io) infinite;
}
.blob--3 {
  width: 30vw; height: 30vw; min-width: 260px; min-height: 260px;
  top: 30%; left: 42%;
  background: radial-gradient(circle at 50% 50%, rgba(34,211,238,.34), rgba(34,211,238,0) 66%);
  animation: float3 30s var(--e-io) infinite;
}
html[data-theme="dark"] .blob { opacity: .42; filter: blur(80px); }
@keyframes float1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-6%, 8%) scale(1.12); }
}
@keyframes float2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(8%, -6%) scale(1.08); }
}
@keyframes float3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-10%, -10%) scale(1.16); }
}

.grid-fade {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 20%, transparent 78%);
  opacity: .8;
}

.hero__inner { position: relative; z-index: 2; text-align: center; }

.hero__title {
  font: 600 clamp(2.5rem, 7.4vw, 5.5rem)/1.02 var(--font-display);
  letter-spacing: -.045em;
  max-width: 17ch;
  margin: 0 auto 30px;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero__title .line > span {
  display: block;
  transform: translateY(105%);
  transition: transform 1.05s var(--e-out);
}
.hero__title.is-in .line > span { transform: none; }
.hero__title .line:nth-child(2) > span { transition-delay: .09s; }
.hero__title .line:nth-child(3) > span { transition-delay: .18s; }
.hero__title .line:nth-child(4) > span { transition-delay: .27s; }

.hero__sub {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.72;
  max-width: 58ch; margin: 0 auto 40px;
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin-bottom: 64px;
}

.hero__proof {
  display: inline-flex; align-items: center; gap: clamp(18px, 4vw, 46px);
  flex-wrap: wrap; justify-content: center;
  padding: 22px clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: color-mix(in srgb, var(--card) 62%, transparent);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}
.proof__item { display: grid; gap: 3px; text-align: center; }
.proof__item strong {
  font: 600 clamp(1.5rem, 2.6vw, 2.1rem)/1 var(--font-display);
  letter-spacing: -.03em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.proof__item span { font-size: .8rem; color: var(--muted); letter-spacing: .01em; }
.proof__sep { width: 1px; height: 34px; background: var(--line-strong); }

.scroll-cue {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: grid; justify-items: center; gap: 9px;
  color: var(--muted-2);
}
.scroll-cue__line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, transparent, var(--violet));
  position: relative; overflow: hidden;
}
.scroll-cue__line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--bg);
  animation: cue 2.2s var(--e-io) infinite;
}
@keyframes cue {
  0%   { transform: translateY(-100%); }
  60%,100% { transform: translateY(100%); }
}
.scroll-cue__txt {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
}
.scroll-cue:hover { color: var(--violet); }

/* ---------- 9. MARQUEE ---------- */
.marquee {
  position: relative;
  padding: 20px 0;
  border-block: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marq 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: 26px; padding-right: 26px; }
.marquee__group span {
  font: 600 clamp(1rem, 1.6vw, 1.35rem)/1 var(--font-display);
  letter-spacing: -.02em;
  color: var(--ink);
  opacity: .82;
  white-space: nowrap;
}
.marquee__group i {
  font-style: normal; font-size: .8rem;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- 10. SECTIONS ---------- */
.section { position: relative; padding: var(--sec-y) 0; }
.section--surface { background: var(--surface); }
.section--surface::before,
.section--surface::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: var(--line);
}
.section--surface::before { top: 0; }
.section--surface::after  { bottom: 0; }

.sec-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 76px);
}
.sec-head .lead { margin-top: 22px; }

/* about */
.about__grid {
  display: grid; gap: clamp(44px, 6vw, 80px);
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: start;
}
.pillars { display: grid; gap: 14px; }
.pillar {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--e-out), box-shadow .5s var(--e-out), border-color .4s;
}
.pillar:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.pillar h3 {
  font: 600 1.12rem/1.3 var(--font-display);
  letter-spacing: -.02em; margin-bottom: 7px;
}
.pillar p { color: var(--muted); font-size: .95rem; line-height: 1.68; }

.pillar__icon,
.card__icon,
.step__icon,
.ccard__icon {
  flex: none;
  display: grid; place-items: center;
  border-radius: 16px;
}
.pillar__icon { width: 54px; height: 54px; border-radius: 18px; }
.pillar__icon svg, .card__icon svg, .step__icon svg, .ccard__icon svg {
  width: 24px; height: 24px; fill: none;
  stroke: #fff; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.pillar__icon--violet { background: linear-gradient(135deg, #8B5CF6, #6D28D9); box-shadow: 0 8px 20px -8px rgba(109,40,217,.65); }
.pillar__icon--blue   { background: linear-gradient(135deg, #38BDF8, #2563EB); box-shadow: 0 8px 20px -8px rgba(37,99,235,.6); }
.pillar__icon--teal   { background: linear-gradient(135deg, #2DD4BF, #0D9488); box-shadow: 0 8px 20px -8px rgba(13,148,136,.6); }

/* ---------- 11. SERVICE CARDS ---------- */
.cards {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
}
.card {
  position: relative;
  padding: 28px 26px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  isolation: isolate;
  transition: transform .55s var(--e-out), box-shadow .55s var(--e-out), border-color .4s;
}
.card::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 0%),
              rgba(124,58,237,.09), transparent 62%);
  opacity: 0; transition: opacity .45s var(--e-out);
}
.card::after {
  content: ''; position: absolute; inset: 0; z-index: -2;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(124,58,237,.5), rgba(34,166,242,.45));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .45s var(--e-out);
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.card:hover::before, .card:hover::after { opacity: 1; }

.card__icon { width: 50px; height: 50px; margin-bottom: 20px; transition: transform .55s var(--e-spring); }
.card:hover .card__icon { transform: translateY(-3px) rotate(-6deg) scale(1.06); }
.card h3 {
  font: 600 1.08rem/1.32 var(--font-display);
  letter-spacing: -.022em; margin-bottom: 9px;
}
.card p { color: var(--muted); font-size: .93rem; line-height: 1.66; }

.card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.card__tags li {
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .74rem; font-weight: 500;
  color: var(--muted-2);
  background: var(--surface);
  transition: color .3s, border-color .3s;
}
.card:hover .card__tags li { color: var(--violet); border-color: rgba(124,58,237,.3); }
html[data-theme="dark"] .card:hover .card__tags li { color: var(--violet-300); }

.card--cta {
  display: grid; align-content: center; gap: 12px;
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 20px 46px -16px rgba(91,75,245,.6);
}
.card--cta h3 { font-size: 1.24rem; }
.card--cta p { color: rgba(255,255,255,.86); }
.card--cta .btn--primary {
  background: #fff; color: var(--violet);
  box-shadow: none; margin-top: 8px; justify-self: start;
}
.card--cta .btn--primary::after { display: none; }
.card--cta:hover { transform: translateY(-7px); }

/* icon colour ramps */
.i-violet  { background: linear-gradient(135deg,#8B5CF6,#6D28D9); box-shadow: 0 8px 20px -9px rgba(109,40,217,.6); }
.i-blue    { background: linear-gradient(135deg,#38BDF8,#2563EB); box-shadow: 0 8px 20px -9px rgba(37,99,235,.55); }
.i-teal    { background: linear-gradient(135deg,#2DD4BF,#0D9488); box-shadow: 0 8px 20px -9px rgba(13,148,136,.55); }
.i-amber   { background: linear-gradient(135deg,#FBBF24,#F59E0B); box-shadow: 0 8px 20px -9px rgba(245,158,11,.55); }
.i-rose    { background: linear-gradient(135deg,#FB7185,#E11D48); box-shadow: 0 8px 20px -9px rgba(225,29,72,.5); }
.i-orange  { background: linear-gradient(135deg,#FDBA74,#F97316); box-shadow: 0 8px 20px -9px rgba(249,115,22,.5); }
.i-indigo  { background: linear-gradient(135deg,#818CF8,#4F46E5); box-shadow: 0 8px 20px -9px rgba(79,70,229,.55); }
.i-cyan    { background: linear-gradient(135deg,#67E8F9,#0891B2); box-shadow: 0 8px 20px -9px rgba(8,145,178,.5); }
.i-emerald { background: linear-gradient(135deg,#6EE7B7,#059669); box-shadow: 0 8px 20px -9px rgba(5,150,105,.5); }

/* ---------- 12. APPROACH ---------- */
.steps {
  position: relative;
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.steps__rail {
  position: absolute; top: 42px; left: 6%; right: 6%;
  height: 2px; border-radius: 2px;
  background: var(--line-strong);
  overflow: hidden;
}
.steps__fill {
  display: block; height: 100%; width: 0;
  background: var(--grad);
  transition: width .9s var(--e-out);
}
.step {
  position: relative;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .5s var(--e-out), box-shadow .5s var(--e-out);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num {
  display: block;
  font: 700 .78rem/1 var(--font-display);
  letter-spacing: .16em;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.step__icon { width: 52px; height: 52px; margin: 0 auto 18px; border-radius: 18px; }
.step h3 {
  font: 600 1.06rem/1.32 var(--font-display);
  letter-spacing: -.02em; margin-bottom: 8px;
}
.step p { color: var(--muted); font-size: .92rem; line-height: 1.66; }

/* ---------- 13. STATEMENT BAND ---------- */
.band {
  position: relative;
  padding: clamp(80px, 10vw, 130px) 0;
  background: linear-gradient(135deg, #150F42 0%, #2A1C86 42%, #0E4FA8 78%, #0A7BC4 100%);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.band__bg { position: absolute; inset: 0; }
.blob--b1 {
  width: 44vw; height: 44vw; min-width: 340px; min-height: 340px;
  top: -20%; left: -8%;
  background: radial-gradient(circle, rgba(167,139,250,.5), transparent 66%);
  animation: float1 24s var(--e-io) infinite;
  opacity: .7;
}
.blob--b2 {
  width: 38vw; height: 38vw; min-width: 300px; min-height: 300px;
  bottom: -22%; right: -6%;
  background: radial-gradient(circle, rgba(103,232,249,.42), transparent 66%);
  animation: float2 28s var(--e-io) infinite;
  opacity: .7;
}
.band__inner { position: relative; z-index: 2; }
.band__title {
  font: 600 clamp(1.9rem, 5vw, 3.5rem)/1.1 var(--font-display);
  letter-spacing: -.04em;
  max-width: 20ch; margin: 0 auto 22px;
}
.band__sub {
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  max-width: 56ch; margin: 0 auto;
}
.stats {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: clamp(36px, 4vw, 52px);
  border-top: 1px solid rgba(255,255,255,.16);
}
.stat { display: grid; gap: 6px; }
.stat strong {
  font: 600 clamp(2rem, 4vw, 3rem)/1 var(--font-display);
  letter-spacing: -.04em;
  background: linear-gradient(180deg,#fff,#C7D2FE);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { font-size: .84rem; color: rgba(255,255,255,.66); line-height: 1.5; }

/* ---------- 14. FAQ ---------- */
.faq__grid {
  display: grid; gap: clamp(40px, 6vw, 76px);
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  align-items: start;
}
.acc { display: grid; gap: 10px; }
.acc__item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--card);
  overflow: hidden;
  transition: border-color .35s, box-shadow .4s var(--e-out), background .35s;
}
.acc__item.is-open { border-color: rgba(124,58,237,.35); box-shadow: var(--shadow-sm); }
.acc__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 22px;
  border: none; background: none; cursor: pointer;
  text-align: left;
  font: 600 1rem/1.45 var(--font-display);
  letter-spacing: -.02em;
  transition: color .3s;
}
.acc__q:hover { color: var(--violet); }
html[data-theme="dark"] .acc__q:hover { color: var(--violet-300); }
.acc__q svg {
  flex: none; width: 20px; height: 20px; fill: none;
  stroke: currentColor; stroke-width: 2; stroke-linecap: round;
  transition: transform .45s var(--e-out), color .3s;
}
.acc__item.is-open .acc__q { color: var(--violet); }
html[data-theme="dark"] .acc__item.is-open .acc__q { color: var(--violet-300); }
.acc__item.is-open .acc__q svg { transform: rotate(135deg); }
.acc__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .5s var(--e-out);
}
.acc__item.is-open .acc__a { grid-template-rows: 1fr; }
.acc__a p {
  overflow: hidden;
  padding: 0 22px;
  color: var(--muted);
  font-size: .95rem; line-height: 1.72;
  opacity: 0;
  transition: opacity .4s var(--e-out), padding .5s var(--e-out);
}
.acc__item.is-open .acc__a p { opacity: 1; padding-bottom: 22px; }

/* ---------- 15. CONTACT ---------- */
.contact__grid {
  display: grid; gap: clamp(22px, 3vw, 34px);
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: start;
}
.contact__cards { display: grid; gap: 12px; }
.ccard {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--e-out), box-shadow .45s var(--e-out), border-color .35s;
}
.ccard:hover { transform: translateX(5px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.ccard__icon { width: 48px; height: 48px; border-radius: 16px; }
.cc-green  { background: linear-gradient(135deg,#4ADE80,#16A34A); box-shadow: 0 8px 20px -9px rgba(22,163,74,.55); }
.cc-blue   { background: linear-gradient(135deg,#38BDF8,#2563EB); box-shadow: 0 8px 20px -9px rgba(37,99,235,.55); }
.cc-violet { background: linear-gradient(135deg,#8B5CF6,#6D28D9); box-shadow: 0 8px 20px -9px rgba(109,40,217,.55); }
/* :not(.socials) — the note card holds a social row that must stay a flex row */
.ccard div:not(.socials) { display: grid; gap: 2px; }
.ccard strong { font: 600 1rem/1.3 var(--font-display); letter-spacing: -.02em; }
.ccard span { color: var(--muted); font-size: .92rem; }
.ccard__go {
  margin-left: auto; flex: none;
  width: 20px; height: 20px; fill: none;
  stroke: var(--violet); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  opacity: 0; transform: translateX(-6px);
  transition: opacity .4s var(--e-out), transform .4s var(--e-out);
}
.ccard:hover .ccard__go { opacity: 1; transform: none; }
.ccard--note {
  background: var(--grad-soft);
  border-color: rgba(124,58,237,.2);
  box-shadow: none;
}
.ccard--note:hover { transform: none; }
.ccard--note { flex-direction: column; align-items: stretch; gap: 18px; }
.ccard--note p { color: var(--muted); font-size: .93rem; line-height: 1.7; }
.ccard--note strong { display: block; color: var(--ink); margin-bottom: 5px; font-size: 1rem; }

/* ---------- 15b. SOCIAL LINKS ---------- */
.socials { display: flex; flex-wrap: wrap; gap: 10px; }

.socials a {
  position: relative;
  width: 46px; height: 46px;
  display: inline-grid; place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  background: rgba(255,255,255,.045);
  color: rgba(230,233,255,.82);
  isolation: isolate;
  transition: color .35s var(--e-out), border-color .35s var(--e-out),
              transform .45s var(--e-spring), box-shadow .45s var(--e-out);
}
.socials a::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  border-radius: inherit;
  opacity: 0;
  transform: scale(.55);
  transition: opacity .4s var(--e-out), transform .5s var(--e-spring);
}
.socials a svg {
  flex: none; width: 19px; height: 19px; fill: none;
  stroke: currentColor; stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .5s var(--e-spring);
}
/* label is announced, not drawn — the tooltip carries it visually */
.socials a span {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}
.socials a::after {
  content: attr(data-tip);
  position: absolute; bottom: calc(100% + 10px); left: 50%;
  padding: 6px 11px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--bg);
  font-size: .74rem; font-weight: 600; letter-spacing: .01em;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, 6px);
  pointer-events: none;
  transition: opacity .3s var(--e-out), transform .35s var(--e-out);
}
html[data-theme="dark"] .socials a::after { background: #F1F3FF; color: #0B1030; }
.footer .socials a::after { background: #F1F3FF; color: #0B1030; }
.socials a:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-4px);
}
.socials a:hover::before { opacity: 1; transform: none; }
.socials a:hover::after  { opacity: 1; transform: translate(-50%, 0); }
.socials a:hover svg { transform: rotate(-8deg) scale(1.14); }

/* brand-true hover fills */
.socials a[data-net="ig"]::before   { background: linear-gradient(45deg,#F9CE34 0%,#EE2A7B 48%,#6228D7 100%); }
.socials a[data-net="fb"]::before   { background: linear-gradient(135deg,#3B82F6,#1877F2); }
.socials a[data-net="wa"]::before   { background: linear-gradient(135deg,#4ADE80,#16A34A); }
.socials a[data-net="mail"]::before { background: var(--grad); }
.socials a[data-net="ig"]:hover   { box-shadow: 0 12px 26px -10px rgba(238,42,123,.7); }
.socials a[data-net="fb"]:hover   { box-shadow: 0 12px 26px -10px rgba(24,119,242,.7); }
.socials a[data-net="wa"]:hover   { box-shadow: 0 12px 26px -10px rgba(22,163,74,.7); }
.socials a[data-net="mail"]:hover { box-shadow: 0 12px 26px -10px rgba(109,40,217,.7); }

/* variant sitting on a light surface (contact card) */
.socials--inline a {
  width: 42px; height: 42px;
  border-color: var(--line-strong);
  background: var(--card);
  color: var(--muted);
}
.socials--inline a:hover { color: #fff; }

/* form */
.form {
  display: grid; gap: 14px;
  padding: clamp(26px, 3.4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--card);
  box-shadow: var(--shadow-md);
}
.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 22px 18px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--ink);
  font-size: .96rem;
  transition: border-color .3s, box-shadow .3s;
  resize: vertical;
}
.field select { appearance: none; padding-right: 44px; cursor: pointer; }
.field label {
  position: absolute; left: 19px; top: 18px;
  font-size: .96rem; color: var(--muted-2);
  pointer-events: none;
  transform-origin: 0 50%;
  transition: transform .3s var(--e-out), color .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(124,58,237,.12);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus + label,
.field select:valid + label {
  transform: translateY(-11px) scale(.78);
  color: var(--violet);
}
html[data-theme="dark"] .field input:focus + label,
html[data-theme="dark"] .field select:valid + label { color: var(--violet-300); }
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(244,63,94,.1);
}
.field__chev {
  position: absolute; right: 17px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px; fill: none;
  stroke: var(--muted-2); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  pointer-events: none;
}
.form__note {
  font-size: .83rem; color: var(--muted-2); text-align: center; line-height: 1.6;
}
.form__note.is-ok { color: var(--emerald); font-weight: 500; }
.form__note.is-err { color: var(--rose); font-weight: 500; }

/* ---------- 16. FOOTER ---------- */
.footer {
  background: #070A1C;
  color: #E6E9FF;
  padding: clamp(60px, 8vw, 96px) 0 30px;
}
html[data-theme="dark"] .footer { background: #05071A; border-top: 1px solid rgba(255,255,255,.06); }

.footer__cta {
  position: relative;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 32px;
  padding: clamp(30px, 4vw, 46px);
  margin-bottom: clamp(48px, 6vw, 72px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(124,58,237,.34), transparent 58%),
    radial-gradient(120% 160% at 100% 100%, rgba(34,166,242,.3), transparent 58%),
    rgba(255,255,255,.03);
  overflow: hidden;
}
.footer__cta h2 {
  font: 600 clamp(1.6rem, 3.4vw, 2.6rem)/1.14 var(--font-display);
  letter-spacing: -.035em;
  color: #fff;
  margin-bottom: 12px;
}
.footer__cta p { color: rgba(230,233,255,.65); font-size: .96rem; max-width: 44ch; }
.footer__cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.footer__top {
  display: grid; gap: clamp(40px, 6vw, 70px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  padding-bottom: clamp(40px, 5vw, 60px);
}
.footer__brand .socials { margin-top: 26px; }
.brand--footer .brand__type { color: #fff; }
.brand--footer .grad-v { color: var(--violet-300); }
.brand--footer .grad-i { color: #7DD3FC; }
.footer__tag {
  font-size: .72rem; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(230,233,255,.55);
  margin: 14px 0 18px;
}
.footer__blurb { color: rgba(230,233,255,.6); font-size: .93rem; max-width: 34ch; }

.footer__cols {
  display: grid; gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.footer__cols h4 {
  font: 600 .8rem/1 var(--font-body);
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(230,233,255,.45);
  margin-bottom: 18px;
}
.footer__cols ul { display: grid; gap: 11px; }
.footer__cols a {
  font-size: .93rem; color: rgba(230,233,255,.78);
  transition: color .3s, transform .3s var(--e-out);
  display: inline-block;
}
.footer__cols a:hover { color: #fff; transform: translateX(4px); }

.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .85rem;
  color: rgba(230,233,255,.5);
}
.footer__sign { font-weight: 500; color: rgba(230,233,255,.72); }

.to-top {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  transition: background .35s, border-color .35s, transform .45s var(--e-spring);
}
.to-top svg {
  width: 17px; height: 17px; fill: none;
  stroke: rgba(230,233,255,.8); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .3s;
}
.to-top:hover {
  background: var(--grad);
  border-color: transparent;
  transform: translateY(-4px);
}
.to-top:hover svg { stroke: #fff; }

/* ---------- 17. WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 150;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg,#4ADE80,#16A34A);
  box-shadow: 0 12px 30px -8px rgba(22,163,74,.6);
  opacity: 0; transform: translateY(20px) scale(.8);
  pointer-events: none;
  transition: opacity .5s var(--e-out), transform .5s var(--e-spring), box-shadow .4s;
}
.wa-float.is-in { opacity: 1; transform: none; pointer-events: auto; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 16px 38px -8px rgba(22,163,74,.7); }
.wa-float svg {
  width: 26px; height: 26px; fill: none;
  stroke: #fff; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- 18. REVEAL SYSTEM ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--e-out), transform .85s var(--e-out);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* ---------- 19. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about__grid,
  .faq__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .steps__rail { display: none; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 80px; }

  .nav__links {
    position: fixed;
    inset: 0 0 auto;
    top: 0;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    height: 100svh;
    margin: 0;
    padding: 90px 32px 40px;
    background: color-mix(in srgb, var(--bg) 96%, transparent);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0; visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .45s var(--e-out), transform .5s var(--e-out), visibility .45s;
  }
  body.nav-open .nav__links { opacity: 1; visibility: visible; transform: none; }
  .nav__links a {
    font: 600 clamp(1.6rem, 7vw, 2.3rem)/1.3 var(--font-display);
    letter-spacing: -.03em;
    padding: 10px 4px;
    color: var(--ink);
    opacity: 0; transform: translateY(16px);
    transition: opacity .5s var(--e-out), transform .5s var(--e-out), color .3s;
  }
  body.nav-open .nav__links a { opacity: 1; transform: none; }
  body.nav-open .nav__links a:nth-child(1) { transition-delay: .08s; }
  body.nav-open .nav__links a:nth-child(2) { transition-delay: .14s; }
  body.nav-open .nav__links a:nth-child(3) { transition-delay: .20s; }
  body.nav-open .nav__links a:nth-child(4) { transition-delay: .26s; }
  body.nav-open .nav__links a:nth-child(5) { transition-delay: .32s; }
  .nav__links a::after { left: 4px; right: auto; width: 40px; bottom: 6px; }

  .nav__actions { margin-left: auto; }
  .burger { display: block; z-index: 210; }
  .nav__actions .btn--primary { display: none; }

  .footer__top { grid-template-columns: 1fr; }
  .proof__sep { display: none; }
  .hero { padding: 120px 0 96px; min-height: auto; }
  .scroll-cue { display: none; }
}

@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero__proof { width: 100%; justify-content: space-around; gap: 16px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- 20. MOTION PREFERENCE ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__title .line > span { transform: none; }
  .cursor-glow { display: none; }
}

/* ---------- 21. PRINT ---------- */
@media print {
  .nav, .loader, .wa-float, .scroll-progress, .cursor-glow,
  .marquee, .scroll-cue, .hero__bg, .band__bg { display: none !important; }
  body { color: #000; background: #fff; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
