/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
  --c-p900: #2A0070;
  --c-p800: #3D0099;
  --c-p700: #4A00A8;
  --c-p600: #5E1DC8;
  --c-p500: #7B2FBE;
  --c-p400: #9B6DFF;
  --c-p300: #BFA0FF;
  --c-p200: #DDD0FF;
  --c-p100: #EDE8FF;
  --c-p50:  #F6F3FF;

  --c-bg:       #FFFFFF;
  --c-bg-alt:   #FAFBFF;
  --c-surface:  #FFFFFF;
  --c-border:   rgba(74, 0, 168, 0.10);
  --c-border-strong: rgba(74, 0, 168, 0.18);

  --c-text:     #0C0920;
  --c-text-sub: #4B4766;
  --c-text-dim: #8B87A0;

  --grad:       linear-gradient(135deg, var(--c-p700) 0%, var(--c-p500) 55%, var(--c-p400) 100%);
  --grad-soft:  linear-gradient(135deg, rgba(74,0,168,0.06) 0%, rgba(155,109,255,0.06) 100%);
  --grad-hero:  radial-gradient(ellipse 80% 60% at 70% 50%, rgba(74,0,168,0.07) 0%, transparent 70%);

  /* 8-point spacing */
  --s1:  8px;  --s2:  16px; --s3:  24px; --s4:  32px;
  --s5:  40px; --s6:  48px; --s7:  56px; --s8:  64px;
  --s10: 80px; --s12: 96px; --s16: 128px; --s20: 160px;

  --font-d: 'DM Serif Display', Georgia, serif;
  --font-b: 'DM Sans', system-ui, -apple-system, sans-serif;

  --r-xs: 6px;   --r-sm: 10px;  --r-md: 16px;
  --r-lg: 24px;  --r-xl: 36px;  --r-full: 9999px;

  --sh-xs: 0 1px 3px rgba(74,0,168,0.05), 0 2px 6px rgba(74,0,168,0.04);
  --sh-sm: 0 2px 8px rgba(74,0,168,0.07), 0 4px 16px rgba(74,0,168,0.05);
  --sh-md: 0 8px 24px rgba(74,0,168,0.10), 0 2px 8px rgba(74,0,168,0.06);
  --sh-lg: 0 16px 48px rgba(74,0,168,0.14), 0 4px 16px rgba(74,0,168,0.08);
  --sh-xl: 0 32px 80px rgba(74,0,168,0.18), 0 8px 24px rgba(74,0,168,0.10);

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 88px;
  --max-w: 1240px;
}

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
/* Skip-to-content link (accessibility + Lighthouse) */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--s3);
  z-index: 9999;
  padding: var(--s2) var(--s4);
  background: var(--c-p700);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-sm);
  transition: top 0.2s;
}
.skip-link:focus { top: var(--s2); }

body {
  font-family: var(--font-b);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s5);
}
@media (max-width: 768px) { .wrap { padding: 0 var(--s3); } }

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.r {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.r.in {
  opacity: 1;
  transform: none;
}
.r-d1 { transition-delay: 0.08s; }
.r-d2 { transition-delay: 0.16s; }
.r-d3 { transition-delay: 0.24s; }
.r-d4 { transition-delay: 0.32s; }
.r-d5 { transition-delay: 0.40s; }
.r-d6 { transition-delay: 0.48s; }
.r-d7 { transition-delay: 0.56s; }
.r-d8 { transition-delay: 0.64s; }
.r-d9 { transition-delay: 0.72s; }

/* ─────────────────────────────────────────
   COMMON COMPONENTS
───────────────────────────────────────── */

/* Large ghost-word watermark that anchors each section */
.eyebrow {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(56px, 9vw, 118px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.85;
  /* padding-bottom gives descender glyphs (p, y, g…) room to render */
  padding-bottom: 0.22em;
  /* Gradient fades from deeper purple → lighter, all very translucent */
  background: linear-gradient(
    135deg,
    rgba(74,  0, 168, 0.18) 0%,
    rgba(123, 47, 190, 0.12) 55%,
    rgba(155, 109, 255, 0.07) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
  user-select: none;
  pointer-events: none;
}

/* Light variant for purple/gradient section backgrounds.
   Uses plain color instead of background-clip to avoid the
   gradient rendering as a solid rectangle when clip is unsupported. */
.eyebrow--light {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.24);
}

/* Hero uses a slim all-caps gradient label instead of the ghost word */
.hero-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h1 {
  font-family: var(--font-d);
  font-size: clamp(44px, 5.5vw, 84px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.h2 {
  font-family: var(--font-d);
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.h3 {
  font-family: var(--font-d);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--c-text-sub);
  line-height: 1.75;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  padding: 13px 26px;
  border-radius: var(--r-full);
  font-size: 14.5px;
  font-weight: 500;
  font-family: var(--font-b);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn svg { flex-shrink: 0; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-fill {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 14px rgba(74,0,168,0.28);
}
.btn-fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,0,168,0.38);
}

.btn-stroke {
  background: transparent;
  color: var(--c-p700);
  border: 1.5px solid var(--c-p200);
}
.btn-stroke:hover {
  background: var(--c-p50);
  border-color: var(--c-p400);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--c-p700);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.btn-ghost {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
#nav.stuck {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(74,0,168,0.08), var(--sh-sm);
}
/* wrap fills the full nav bar height */
#nav > .wrap {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--s4);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 68px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s5);
}
.nav-links a {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--c-text-sub);
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--grad);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--c-p700); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: var(--s2); flex-shrink: 0; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: var(--s3) var(--s3) var(--s4);
  box-shadow: var(--sh-lg);
  z-index: 99;
  display: none;
  flex-direction: column;
  gap: 2px;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-drawer.open {
  display: flex;
  transform: none;
  opacity: 1;
}
.nav-drawer a {
  font-size: 16px;
  font-weight: 500;
  color: var(--c-text);
  padding: 12px var(--s2);
  border-radius: var(--r-sm);
  transition: background 0.15s;
}
.nav-drawer a:hover { background: var(--c-p50); color: var(--c-p700); }

@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--c-bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(74,0,168,0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 80% at 100% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 100% 50%, black 20%, transparent 70%);
  opacity: 0.5;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  will-change: transform;
}
.blob-1 {
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(74,0,168,0.10) 0%, rgba(123,47,190,0.05) 50%, transparent 70%);
  top: -240px; right: -120px;
  animation: drift 22s ease-in-out infinite;
}
.blob-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(155,109,255,0.09) 0%, rgba(74,0,168,0.04) 50%, transparent 70%);
  bottom: -100px; left: -80px;
  animation: drift 28s ease-in-out infinite reverse;
}
.blob-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(123,47,190,0.07) 0%, transparent 70%);
  top: 35%; left: 42%;
  animation: drift 18s ease-in-out infinite 4s;
}

@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  30%      { transform: translate(24px,-32px) scale(1.06); }
  60%      { transform: translate(-20px,16px) scale(0.94); }
  80%      { transform: translate(14px,8px) scale(1.02); }
}

.hero-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: center;
  width: 100%;
  padding: var(--s12) 0;
}

.hero-content { max-width: 580px; }

.hero-chip {
  margin-bottom: var(--s3);
  opacity: 0;
  animation: rise 0.8s var(--ease-out) 0.15s forwards;
}

.hero-title {
  margin-bottom: var(--s4);
  opacity: 0;
  animation: rise 0.8s var(--ease-out) 0.30s forwards;
}

.hero-subtitle {
  max-width: 480px;
  margin-bottom: var(--s5);
  opacity: 0;
  animation: rise 0.8s var(--ease-out) 0.45s forwards;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--s2);
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 0.8s var(--ease-out) 0.58s forwards;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: rise 0.9s var(--ease-out) 0.7s forwards;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.hcard {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s4);
  box-shadow: var(--sh-lg);
}

.hcard-main {
  position: relative;
  z-index: 2;
}

.hcard-back {
  position: absolute;
  inset: 0;
  background: var(--c-p50);
  border: 1px solid var(--c-p100);
  border-radius: var(--r-lg);
  transform: rotate(3deg) translate(12px, 12px);
  z-index: 1;
  box-shadow: var(--sh-sm);
}

.hcard-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-p600);
  background: var(--c-p50);
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin-bottom: var(--s2);
}
.hcard-badge-dot {
  width: 5px; height: 5px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.2);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 2px rgba(34,197,94,0.2); }
  50%      { box-shadow: 0 0 0 5px rgba(34,197,94,0.1); }
}

.hcard-amount {
  font-family: var(--font-d);
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.hcard-amount-label {
  font-size: 12.5px;
  color: var(--c-text-dim);
  margin-bottom: var(--s3);
}

.hcard-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--c-border);
  font-size: 13px;
}
.hcard-row-label { color: var(--c-text-dim); }
.hcard-row-val { font-weight: 600; color: var(--c-text); }

.hcard-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 600;
  color: #c2410c;
  background: #fff7ed;
  padding: 2px 8px;
  border-radius: var(--r-full);
}

.hero-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
  margin-top: var(--s3);
}

.hmini {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s2);
  box-shadow: var(--sh-xs);
}
.hmini-num {
  font-family: var(--font-d);
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hmini-label {
  font-size: 11.5px;
  color: var(--c-text-dim);
  margin-top: 2px;
}

.scroll-hint {
  position: absolute;
  bottom: var(--s5);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s1);
  z-index: 2;
  opacity: 0;
  animation: rise 1s var(--ease-out) 1.1s forwards;
}
.scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}
.scroll-arrow {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--c-p400), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 0.9; transform: scaleY(1.15); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    padding: var(--s10) 0;
  }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
}

/* ─────────────────────────────────────────
   STATS RIBBON
───────────────────────────────────────── */
#stats {
  padding: var(--s10) 0;
  background: var(--c-bg);
  position: relative;
}
#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  background: var(--c-surface);
}

.stat-item {
  padding: var(--s6) var(--s5);
  text-align: center;
  position: relative;
  transition: background 0.25s;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--c-border);
}
.stat-item:hover { background: var(--c-p50); }

.stat-num {
  font-family: var(--font-d);
  font-size: clamp(36px, 4.5vw, 50px);
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-text-dim);
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3)::before,
  .stat-item:nth-child(1)::before { display: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid var(--c-border); }
}
@media (max-width: 400px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item + .stat-item { border-top: 1px solid var(--c-border); }
}

/* ─────────────────────────────────────────
   SOLUTIONS
───────────────────────────────────────── */
#solutions {
  padding: var(--s16) 0;
  background: var(--c-bg-alt);
}

.section-head {
  text-align: center;
  margin-bottom: var(--s10);
}
/* Eyebrow in centered sections inherits text-align automatically */
.section-head .h2 { margin-bottom: var(--s3); }
.section-head .lead { max-width: 520px; margin: 0 auto; }

.sol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s3);
}
@media (max-width: 1100px) { .sol-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 740px)  { .sol-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .sol-grid { grid-template-columns: 1fr; } }

.sol-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s4) var(--s3);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.sol-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.sol-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--c-p200);
}
.sol-card:hover::before { transform: scaleX(1); }

.sol-icon {
  width: 42px; height: 42px;
  background: var(--c-p50);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-p600);
  margin-bottom: var(--s3);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease-spring);
}
.sol-card:hover .sol-icon {
  background: var(--grad);
  color: white;
  transform: scale(1.05);
}
.sol-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.sol-desc {
  font-size: 13px;
  color: var(--c-text-dim);
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   PROCESS
───────────────────────────────────────── */
#process {
  padding: var(--s16) 0;
  background: var(--c-bg);
}

.proc-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--s12);
  align-items: start;
}
@media (max-width: 960px) {
  .proc-layout { grid-template-columns: 1fr; gap: var(--s8); }
  .proc-sticky { position: static !important; }
}

.proc-sticky {
  position: sticky;
  top: calc(var(--nav-h) + var(--s6));
}
.proc-sticky .h2 { margin-bottom: var(--s3); }
.proc-sticky .lead { margin-bottom: var(--s5); }

.proc-steps {
  display: flex;
  flex-direction: column;
}

.pstep {
  display: flex;
  gap: var(--s4);
  padding: var(--s4) 0;
  position: relative;
}
.pstep:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-p200) 0%, var(--c-p100) 100%);
}

.pstep-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad);
  color: white;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(74,0,168,0.28);
  transition: transform 0.3s var(--ease-spring);
}
.pstep:hover .pstep-num { transform: scale(1.1); }

.pstep-body { padding-top: 2px; }
.pstep-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.pstep-desc {
  font-size: 13.5px;
  color: var(--c-text-dim);
  line-height: 1.7;
  max-width: 420px;
}

/* ─────────────────────────────────────────
   WHY S9
───────────────────────────────────────── */
#why {
  padding: var(--s16) 0;
  background: var(--c-bg-alt);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
}
@media (max-width: 680px) { .why-layout { grid-template-columns: 1fr; } }

.why-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s5);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}

.why-icon {
  width: 52px; height: 52px;
  background: var(--grad);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: var(--s3);
}
.why-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.015em;
  margin-bottom: var(--s2);
}
.why-desc {
  font-size: 14px;
  color: var(--c-text-sub);
  line-height: 1.75;
}

/* ─────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────── */
#cta {
  padding: var(--s20) 0;
  background: var(--grad);
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(255,255,255,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 85% 50%, rgba(0,0,0,0.12) 0%, transparent 60%);
  pointer-events: none;
}
#cta::after {
  content: '';
  position: absolute;
  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: 48px 48px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-title {
  font-family: var(--font-d);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: var(--s3);
}
.cta-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.78);
  -webkit-text-fill-color: rgba(255,255,255,0.78);
  background: none;
  max-width: 460px;
  margin: 0 auto var(--s6);
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
#footer {
  background: #080518;
  color: rgba(255,255,255,0.55);
  padding: var(--s12) 0 var(--s5);
}

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: var(--s8);
  padding-bottom: var(--s8);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: var(--s5);
}
@media (max-width: 960px) { .footer-top { grid-template-columns: 1fr 1fr; gap: var(--s5); } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand-logo {
  height: 58px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.88;
  margin-bottom: var(--s3);
}
.footer-brand-desc {
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: var(--s3);
}
.footer-tagline {
  font-family: var(--font-d);
  font-style: italic;
  font-size: 15px;
  color: var(--c-p400);
}

.footer-col-h {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--s3);
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col-links a:hover { color: rgba(255,255,255,0.9); }

.footer-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  flex-wrap: wrap;
}
.footer-copy { font-size: 12.5px; }
.footer-legal { display: flex; gap: var(--s4); }
.footer-legal a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ─────────────────────────────────────────
   UTILITIES
───────────────────────────────────────── */
.mt-3 { margin-top: var(--s3); }
.mt-4 { margin-top: var(--s4); }

:focus-visible {
  outline: 2px solid var(--c-p400);
  outline-offset: 3px;
  border-radius: 4px;
}
