/* ── DESIGN TOKENS ─────────────────────────────────────────────────── */
:root {
  --bg:          #07070f;
  --bg-2:        #0d0d1a;
  --bg-3:        #111120;
  --card:        rgba(255,255,255,0.04);
  --card-hover:  rgba(255,255,255,0.07);
  --border:      rgba(255,255,255,0.08);
  --border-hi:   rgba(124,58,237,0.35);

  --purple:      #7c3aed;
  --purple-hi:   #a78bfa;
  --teal:        #22d3ee;
  --pink:        #d946ef;

  --text:        #ededef;
  --text-2:      #8a8f98;
  --text-3:      rgba(237,237,239,0.25);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --r:    20px;
  --r-sm: 12px;
}

/* ── RESET ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── SKIP LINK ──────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--purple); color: #fff;
  padding: 8px 16px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 600;
  text-decoration: none; z-index: 9999;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--purple-hi); outline-offset: 3px; border-radius: 4px; }

/* ── NAV ────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(7,7,15,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: height 0.3s ease, background 0.3s ease;
}
.nav.scrolled { height: 58px; background: rgba(7,7,15,0.95); }

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  text-decoration: none;
}
.nav-logo .accent { color: var(--purple-hi); }

.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  color: var(--text-2); font-size: 14px; font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--purple) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 14px !important;
  box-shadow: 0 0 24px rgba(124,58,237,0.3);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
  background: #8b4fff !important;
  box-shadow: 0 0 40px rgba(124,58,237,0.5) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(7,7,15,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 99;
  flex-direction: column; gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-2); font-size: 16px; font-weight: 500;
  text-decoration: none; padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--text); }
.mobile-nav .mob-cta {
  margin-top: 12px;
  background: var(--purple); color: #fff !important;
  text-align: center; border-radius: 100px;
  font-weight: 600 !important; padding: 13px;
  border: none !important;
}

/* ── LAYOUT HELPERS ─────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 48px; }
.section { padding: 120px 0; }
.section--dark  { background: var(--bg-2); }
.section--mid   { background: var(--bg-3); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--purple-hi); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: currentColor; }

.heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -1.5px; margin-bottom: 18px;
}
.subtext { font-size: 17px; color: var(--text-2); line-height: 1.75; max-width: 540px; }

/* ── BUTTONS ────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--purple); color: #fff;
  padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 0 36px rgba(124,58,237,0.35);
  transition: background 0.2s, box-shadow 0.25s, transform 0.15s var(--ease);
}
.btn-primary:hover {
  background: #8b4fff;
  box-shadow: 0 8px 48px rgba(124,58,237,0.5);
  transform: translateY(-2px);
}
.btn-primary:active { transform: scale(0.97); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); color: var(--text);
  padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 500;
  text-decoration: none; cursor: pointer;
  border: 1px solid var(--border);
  transition: background 0.2s, transform 0.15s var(--ease);
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); transform: translateY(-2px); }
.btn-ghost:active { transform: scale(0.97); }

/* ── HERO ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 128px 24px 96px;
  overflow: hidden;
}

/* Grid lines */
.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 80%);
}

/* Ambient blobs */
.hero__blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
  animation: blobDrift 16s ease-in-out infinite;
}
.hero__blob--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
  top: -200px; left: 50%; transform: translateX(-50%);
  animation-duration: 14s;
}
.hero__blob--2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(34,211,238,0.12) 0%, transparent 70%);
  bottom: -50px; right: -80px;
  animation-duration: 18s; animation-direction: reverse;
}
.hero__blob--3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(217,70,239,0.09) 0%, transparent 70%);
  bottom: 80px; left: -60px;
  animation-duration: 22s; animation-delay: -6s;
}

@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -25px) scale(1.05); }
  66%       { transform: translate(-15px, 18px) scale(0.97); }
}
.hero__blob--1 {
  animation-name: blob1Drift;
}
@keyframes blob1Drift {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50%       { transform: translateX(calc(-50% + 25px)) scale(1.07); }
}

.hero__content { position: relative; z-index: 1; max-width: 860px; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.28);
  border-radius: 100px; padding: 7px 18px;
  font-size: 13px; font-weight: 500; color: var(--purple-hi);
  margin-bottom: 32px; letter-spacing: 0.04em;
}
.hero__badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 8px var(--teal);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.hero__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 7.5vw, 92px);
  font-weight: 800; line-height: 1.0;
  letter-spacing: -3px; margin-bottom: 24px;
}
.hero__title .line  { display: block; color: var(--text); }
.hero__title .grad  {
  display: block;
  background: linear-gradient(135deg, var(--purple-hi) 0%, var(--teal) 50%, var(--pink) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 8s ease infinite;
}
@keyframes gradShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-2); max-width: 600px;
  margin: 0 auto 44px; line-height: 1.75;
}

.hero__actions {
  display: flex; align-items: center;
  justify-content: center; gap: 14px; flex-wrap: wrap;
}

/* ── HERO ENTRANCE ANIMATIONS ───────────────────────────────────────── */
/* Base: all hero-anim elements start hidden */
.hero-anim {
  opacity: 0;
  transform: translateY(32px);
  will-change: transform, opacity;
}

/* Badge — slides in from slightly above */
.hero-anim--badge {
  transform: translateY(-16px);
  animation: heroBadge 0.7s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
}
@keyframes heroBadge {
  to { opacity: 1; transform: translateY(0); }
}

/* Line 1 words — stagger up */
.hero-anim--line1 {
  animation: heroLine 0.8s cubic-bezier(0.16,1,0.3,1) 0.45s forwards;
}
/* Line 2 gradient words — slightly after */
.hero-anim--line2 {
  animation: heroLine 0.8s cubic-bezier(0.16,1,0.3,1) 0.6s forwards;
}
@keyframes heroLine {
  to { opacity: 1; transform: translateY(0); }
}

/* Individual word stagger within lines */
.hw {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}
/* Line 1 words */
.hero-anim--line1 .hw:nth-child(1) { animation: wordUp 0.65s cubic-bezier(0.16,1,0.3,1) 0.45s forwards; }
.hero-anim--line1 .hw:nth-child(2) { animation: wordUp 0.65s cubic-bezier(0.16,1,0.3,1) 0.52s forwards; }
/* Line 2 words */
.hero-anim--line2 .hw:nth-child(1) { animation: wordUp 0.65s cubic-bezier(0.16,1,0.3,1) 0.62s forwards; }
.hero-anim--line2 .hw:nth-child(2) { animation: wordUp 0.65s cubic-bezier(0.16,1,0.3,1) 0.70s forwards; }

@keyframes wordUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Subtext */
.hero-anim--sub {
  animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.88s forwards;
}
/* CTAs */
.hero-anim--ctas {
  animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 1.05s forwards;
}
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Gradient headline lines need overflow hidden for clean reveal */
.hero__line, .hero__grad-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: 4px; /* prevent clipping descenders */
}

/* Shimmer scan on gradient text */
.hw--grad {
  position: relative;
}
.hw--grad::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: shimmerScan 3.5s ease 1.8s infinite;
  pointer-events: none;
}
@keyframes shimmerScan {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── FLOATING CHIPS ─────────────────────────────────────────────────── */
.hero__chips { position: absolute; inset: 0; pointer-events: none; }

.chip {
  position: absolute;
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 12px; font-weight: 500; color: var(--text-2);
  white-space: nowrap;
  opacity: 0;
  will-change: transform, opacity;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.chip__dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.chip__dot--green  { background: #4ade80; box-shadow: 0 0 6px #4ade80; }
.chip__dot--purple { background: var(--purple-hi); box-shadow: 0 0 6px var(--purple-hi); }
.chip__dot--teal   { background: var(--teal); box-shadow: 0 0 6px var(--teal); }

.chip__icon { width: 13px; height: 13px; flex-shrink: 0; stroke: var(--teal); }

/* Chip positions */
.chip--1 { top: 22%; left: 6%;  animation: chipIn 0.7s cubic-bezier(0.16,1,0.3,1) 1.1s forwards, chipFloat 6s ease-in-out 1.8s infinite; }
.chip--2 { top: 18%; right: 8%; animation: chipIn 0.7s cubic-bezier(0.16,1,0.3,1) 1.25s forwards, chipFloat 7s ease-in-out 1.95s infinite; }
.chip--3 { bottom: 30%; left: 4%; animation: chipIn 0.7s cubic-bezier(0.16,1,0.3,1) 1.4s forwards, chipFloat 8s ease-in-out 2.1s infinite reverse; }
.chip--4 { bottom: 25%; right: 6%; animation: chipIn 0.7s cubic-bezier(0.16,1,0.3,1) 1.55s forwards, chipFloat 5.5s ease-in-out 2.25s infinite; }
.chip--5 { top: 55%; right: 3%; animation: chipIn 0.7s cubic-bezier(0.16,1,0.3,1) 1.7s forwards, chipFloat 9s ease-in-out 2.4s infinite reverse; }

@keyframes chipIn {
  from { opacity: 0; transform: translateY(16px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Hide chips on small screens */
@media (max-width: 900px) {
  .chip--1, .chip--4 { display: none; }
  .chip--2 { top: 12%; right: 4%; }
  .chip--3 { bottom: 15%; left: 2%; font-size: 11px; }
  .chip--5 { display: none; }
}
@media (max-width: 600px) {
  .hero__chips { display: none; }
}

/* ── REDUCED MOTION OVERRIDES ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-anim,
  .hw,
  .chip {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hw--grad::after { animation: none !important; }
  .hero__blob { animation: none !important; }
}

/* ── HERO TITLE UPDATED STRUCTURE ───────────────────────────────────── */
.hero__line      { display: block; }
.hero__grad-wrap { display: block; }

/* Gradient words */
.hw--grad {
  background: linear-gradient(135deg, var(--purple-hi) 0%, var(--teal) 50%, var(--pink) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wordUp 0.65s cubic-bezier(0.16,1,0.3,1) 0.62s forwards,
             gradShift 8s ease 1.8s infinite;
}
.hero-anim--line2 .hw--grad:nth-child(2) {
  animation: wordUp 0.65s cubic-bezier(0.16,1,0.3,1) 0.70s forwards,
             gradShift 8s ease 1.8s infinite;
}

.hero__scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-3); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; pointer-events: none;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.15); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 7px;
  background: var(--purple-hi); border-radius: 3px;
  animation: wheelScroll 2s ease infinite;
}
@keyframes wheelScroll {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(8px); opacity: 0; }
  61%  { transform: translateY(0); opacity: 0; }
  100% { opacity: 1; }
}

/* ── TRUST MARQUEE ──────────────────────────────────────────────────── */
.trust {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0; overflow: hidden;
}
.trust__label {
  text-align: center;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 22px;
}
.trust__track {
  display: flex; gap: 72px; width: max-content;
  animation: marquee 28s linear infinite;
}
.trust__wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.trust__item {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 14px;
  color: rgba(237,237,239,0.2);
  white-space: nowrap; letter-spacing: 0.06em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── PROBLEM SECTION ────────────────────────────────────────────────── */
.problem__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.problem__statement {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700; line-height: 1.25; letter-spacing: -0.8px;
}
.problem__statement em {
  font-style: normal; color: var(--purple-hi);
}
.problem__note {
  font-size: 16px; color: var(--text-2);
  line-height: 1.7; margin-top: 18px;
}

.fix-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fix-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: background 0.25s, border-color 0.25s, transform 0.2s var(--ease);
}
.fix-item:hover {
  background: var(--card-hover);
  border-color: rgba(124,58,237,0.2);
  transform: translateX(4px);
}
.fix-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.18);
}
.fix-icon svg { width: 18px; height: 18px; stroke: var(--purple-hi); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.fix-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.fix-text span   { font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* ── STATS ──────────────────────────────────────────────────────────── */
.stats {
  background: var(--bg-2);
  border-top: 1px solid rgba(124,58,237,0.1);
  border-bottom: 1px solid rgba(124,58,237,0.1);
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 60px 32px; text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(124,58,237,0.04); }
.stat__val {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 800; line-height: 1; letter-spacing: -2px;
  color: var(--purple-hi);
  margin-bottom: 10px;
}
.stat__label { font-size: 13px; color: var(--text-2); line-height: 1.5; max-width: 150px; margin: 0 auto; }

/* ── BENTO SERVICES ─────────────────────────────────────────────────── */
.bento {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 60px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px; position: relative; overflow: hidden;
  transition: background 0.3s, border-color 0.3s, transform 0.25s var(--ease), box-shadow 0.3s;
}
.card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-hi), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.card:hover { background: var(--card-hover); border-color: var(--border-hi); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.35); }
.card:hover::before { opacity: 1; }

.card--wide { grid-column: span 2; }
.card--tall { grid-row: span 2; }
.card--feat {
  background: linear-gradient(135deg, rgba(124,58,237,0.1) 0%, rgba(34,211,238,0.04) 100%);
  border-color: rgba(124,58,237,0.16);
}

.card__icon {
  width: 48px; height: 48px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card__icon--purple { background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.2); }
.card__icon--purple svg { stroke: var(--purple-hi); }
.card__icon--teal   { background: rgba(34,211,238,0.1);  border: 1px solid rgba(34,211,238,0.2); }
.card__icon--teal svg { stroke: var(--teal); }
.card__icon--pink   { background: rgba(217,70,239,0.1);  border: 1px solid rgba(217,70,239,0.2); }
.card__icon--pink svg { stroke: var(--pink); }
.card__icon svg { width: 22px; height: 22px; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

.card__title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; }
.card__desc  { font-size: 13.5px; color: var(--text-2); line-height: 1.65; }

.card__tag {
  display: inline-block; margin-top: 16px;
  padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.18);
  color: var(--purple-hi);
}
.card__tag--teal { background: rgba(34,211,238,0.08); border-color: rgba(34,211,238,0.18); color: var(--teal); }

.card__outcome {
  margin-top: 24px; padding: 14px 16px;
  background: rgba(34,211,238,0.06);
  border: 1px solid rgba(34,211,238,0.12);
  border-radius: var(--r-sm);
}
.card__outcome-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 5px; }
.card__outcome p { font-size: 13px; color: var(--text-2); line-height: 1.55; }

.card__row { display: flex; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.card__row-main { flex: 1; min-width: 180px; }

.card__pills { display: flex; flex-direction: column; gap: 8px; min-width: 180px; }
.card__pill {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: rgba(124,58,237,0.07);
  border: 1px solid rgba(124,58,237,0.14);
  border-radius: var(--r-sm);
  font-size: 13px; color: var(--text-2);
}
.card__pill svg { width: 14px; height: 14px; stroke: var(--purple-hi); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── PROCESS ────────────────────────────────────────────────────────── */
.process__steps {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0; margin-top: 72px; position: relative;
}
.process__steps::before {
  content: '';
  position: absolute; top: 30px;
  left: calc(100% / 12); right: calc(100% / 12);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(124,58,237,0.4), rgba(34,211,238,0.4), rgba(124,58,237,0.4), transparent);
}
.step { padding: 0 12px; text-align: center; }
.step__dot {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid rgba(124,58,237,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Syne', sans-serif;
  font-size: 17px; font-weight: 800; color: var(--purple-hi);
  position: relative; z-index: 1;
  box-shadow: 0 0 18px rgba(124,58,237,0.18);
  transition: background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s, transform 0.2s var(--ease);
}
.step:hover .step__dot {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  box-shadow: 0 0 36px rgba(124,58,237,0.45);
  transform: scale(1.1);
}
.step__title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.step__desc  { font-size: 12.5px; color: var(--text-2); line-height: 1.55; }

/* ── WHY DEFYN ──────────────────────────────────────────────────────── */
.why__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin-top: 60px;
}
.why-card {
  padding: 38px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  position: relative; overflow: hidden;
  transition: background 0.3s, border-color 0.3s, transform 0.25s var(--ease);
}
.why-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.why-card:hover { background: var(--card-hover); border-color: var(--border-hi); transform: translateY(-3px); }
.why-card:hover::after { transform: scaleX(1); }
.why-card__num {
  font-family: 'Syne', sans-serif;
  font-size: 52px; font-weight: 800; line-height: 1;
  color: rgba(124,58,237,0.2); margin-bottom: 12px;
}
.why-card__title { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; }
.why-card__desc  { font-size: 14.5px; color: var(--text-2); line-height: 1.72; }

/* ── TESTIMONIALS ───────────────────────────────────────────────────── */
.testi__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 60px;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px; display: flex; flex-direction: column; gap: 22px;
  transition: background 0.3s, border-color 0.3s, transform 0.25s var(--ease), box-shadow 0.3s;
}
.testi-card:hover {
  background: var(--card-hover);
  border-color: var(--border-hi);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.testi-card__stars { display: flex; gap: 3px; }
.testi-card__stars svg { width: 14px; height: 14px; fill: #fbbf24; }
.testi-card__quote {
  font-size: 15px; color: var(--text-2);
  line-height: 1.72; font-style: italic; flex: 1;
}
.testi-card__quote::before {
  content: '\201C';
  font-family: 'Syne', sans-serif;
  font-size: 48px; line-height: 0;
  vertical-align: -16px; color: var(--purple);
  margin-right: 3px;
}
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 14px;
  font-weight: 700; color: #fff; flex-shrink: 0;
}
.av-1 { background: linear-gradient(135deg, #7c3aed, #6366f1); }
.av-2 { background: linear-gradient(135deg, #0891b2, #7c3aed); }
.av-3 { background: linear-gradient(135deg, #d946ef, #7c3aed); }
.testi-card__name { font-weight: 600; font-size: 14px; }
.testi-card__co   { font-size: 12px; color: var(--text-3); margin-top: 1px; }

/* ── CTA / FORM ─────────────────────────────────────────────────────── */
.cta-section { position: relative; overflow: hidden; }
.cta-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

.cta__points { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.cta__point  { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--text-2); }
.cta__check  {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(34,211,238,0.08); border: 1px solid rgba(34,211,238,0.2);
}
.cta__check svg { width: 12px; height: 12px; stroke: var(--teal); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.cta__phone {
  margin-top: 36px; padding: 20px 22px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-sm);
}
.cta__phone-label { font-size: 12px; color: var(--text-3); margin-bottom: 3px; }
.cta__phone-num {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 700; color: var(--text);
  text-decoration: none; letter-spacing: -0.5px;
  transition: color 0.2s;
}
.cta__phone-num:hover { color: var(--purple-hi); }
.cta__phone-hours { font-size: 12px; color: var(--text-3); margin-top: 2px; }

/* Form panel */
.form-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 28px; padding: 44px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.form-panel__title { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.5px; }
.form-panel__sub   { font-size: 14px; color: var(--text-2); margin-bottom: 28px; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 12px; }
.form-group label {
  display: block; font-size: 12.5px; font-weight: 500;
  color: var(--text-2); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 14.5px; color: var(--text);
  font-family: 'Inter', sans-serif;
  outline: none;
  -webkit-appearance: none; appearance: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(124,58,237,0.55);
  background: rgba(124,58,237,0.04);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.form-group input.is-error,
.form-group select.is-error { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,0.1); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(237,237,239,0.2); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(237,237,239,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px; cursor: pointer;
}
.form-group select option { background: #1a1a2e; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 90px; line-height: 1.6; }
.field-err {
  font-size: 12px; color: #f87171; margin-top: 4px; display: none;
}
.field-err.show { display: block; }

.form-submit {
  width: 100%; margin-top: 6px;
  background: var(--purple); color: #fff;
  border: none; border-radius: 100px;
  padding: 14px 24px;
  font-size: 15px; font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 0 36px rgba(124,58,237,0.3);
  transition: background 0.2s, box-shadow 0.25s, transform 0.15s var(--ease);
}
.form-submit svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.form-submit:hover { background: #8b4fff; box-shadow: 0 8px 48px rgba(124,58,237,0.5); transform: translateY(-1px); }
.form-submit:active { transform: scale(0.97); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-privacy {
  text-align: center; font-size: 12px; color: var(--text-3);
  margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px;
}
.form-privacy svg { width: 12px; height: 12px; stroke: var(--text-3); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

/* Success */
.form-success { display: none; text-align: center; padding: 40px 0; }
.success-ring {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(34,211,238,0.1); border: 1px solid rgba(34,211,238,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  animation: popIn 0.5s var(--ease);
}
@keyframes popIn {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
.success-ring svg { width: 30px; height: 30px; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.success-title { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.success-msg { font-size: 14.5px; color: var(--text-2); line-height: 1.65; }
.success-msg a { color: var(--purple-hi); text-decoration: none; }

/* ── FOOTER ─────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 44px;
}
.footer__logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 800; color: #fff;
  margin-bottom: 12px;
}
.footer__logo .accent { color: var(--purple-hi); }
.footer__tagline { font-size: 13.5px; color: var(--text-2); line-height: 1.65; max-width: 260px; }
.footer__contact { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.footer__contact a {
  font-size: 13px; color: var(--text-2); text-decoration: none;
  display: flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.footer__contact a svg { width: 13px; height: 13px; stroke: var(--text-3); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.footer__contact a:hover { color: var(--purple-hi); }

.footer__col-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 16px; color: var(--text); }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 13px; color: var(--text-2); text-decoration: none; transition: color 0.2s; }
.footer__links a:hover { color: var(--purple-hi); }

.footer__bottom {
  padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.footer__copy { font-size: 12px; color: var(--text-3); }
.footer__made { font-size: 12px; color: var(--text-3); }
.footer__made span { color: var(--purple-hi); }

/* ── FLOATING CTA ───────────────────────────────────────────────────── */
.floating-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  background: var(--purple); color: #fff;
  padding: 12px 22px; border-radius: 100px;
  font-size: 13.5px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 36px rgba(124,58,237,0.45);
  opacity: 0; transform: translateY(60px); pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.2s, box-shadow 0.25s;
}
.floating-cta svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.floating-cta.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.floating-cta:hover { background: #8b4fff; box-shadow: 0 12px 48px rgba(124,58,237,0.55); transform: translateY(-2px); }

/* ── REVEAL ANIMATIONS ──────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .card--wide { grid-column: span 2; }
  .card--tall { grid-row: span 1; }
  .process__steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process__steps::before { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:nth-child(odd)  { border-right: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .problem__grid { grid-template-columns: 1fr; gap: 36px; }
  .bento { grid-template-columns: 1fr; }
  .card--wide { grid-column: span 1; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why__grid { grid-template-columns: 1fr; }
  .testi__grid { grid-template-columns: 1fr; }
  .cta__inner { grid-template-columns: 1fr; gap: 44px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-panel { padding: 28px 20px; }
  .floating-cta { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .hero__title { letter-spacing: -2px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
}
