/* ================================================================
   IX LANDING — Aurora Purple Theme
   Accent: #a855f7 (violet) + #f43f5e (rose) + #fbbf24 (gold)
   ================================================================ */

/* ── Variables ── */
:root {
  --ix-bg:        #06010f;
  --ix-bg2:       #0b0220;
  --ix-surface:   rgba(168, 85, 247, 0.06);
  --ix-surface2:  rgba(255, 255, 255, 0.04);
  --ix-glass:     rgba(255, 255, 255, 0.05);
  --ix-line:      rgba(168, 85, 247, 0.15);
  --ix-line2:     rgba(255, 255, 255, 0.07);
  --ix-text:      #f0e6ff;
  --ix-muted:     #9483b5;

  --ix-violet:       #a855f7;
  --ix-violet-dark:  #7c3aed;
  --ix-violet-glow:  rgba(168, 85, 247, 0.38);
  --ix-violet-soft:  rgba(168, 85, 247, 0.12);

  --ix-rose:      #f43f5e;
  --ix-rose-soft: rgba(244, 63, 94, 0.12);

  --ix-gold:      #fbbf24;
  --ix-gold-soft: rgba(251, 191, 36, 0.14);
  --ix-gold-glow: rgba(251, 191, 36, 0.32);

  --ix-green:     #34d399;
  --ix-green-soft:rgba(52, 211, 153, 0.12);

  --ix-cyan:      #22d3ee;
  --ix-cyan-soft: rgba(34, 211, 238, 0.10);

  --ix-r:   28px;
  --ix-r-lg:22px;
  --ix-r-md:16px;
  --ix-r-sm:12px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a, button, input, textarea, select { font: inherit; }

/* ── Body ── */
body {
  font-family: "Manrope", sans-serif;
  color: var(--ix-text);
  background-color: var(--ix-bg);
  background-image:
    radial-gradient(ellipse 80% 55% at 5% -5%,   rgba(168,85,247,0.30), transparent 55%),
    radial-gradient(ellipse 60% 45% at 95% 2%,    rgba(244,63,94,0.20), transparent 50%),
    radial-gradient(ellipse 55% 40% at 50% 100%,  rgba(251,191,36,0.12), transparent 55%),
    radial-gradient(ellipse 40% 35% at 80% 55%,   rgba(34,211,238,0.08), transparent 50%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Grid dot overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(168,85,247,0.18) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 65%);
  z-index: 0;
}

/* Aurora orb */
body::after {
  content: "";
  position: fixed;
  top: -200px; right: -180px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.22), rgba(244,63,94,0.10) 45%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  animation: auroraOrb 14s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes auroraOrb {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-50px, 80px) scale(1.18); }
}

main { position: relative; z-index: 1; }

/* ================================================================
   NAVBAR
   ================================================================ */
.ix-navbar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 20px));
  min-height: 68px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  border-radius: 999px;
  border: 1px solid rgba(168,85,247,0.20);
  background: rgba(6,1,15,0.80);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 0 0 1px rgba(168,85,247,0.08) inset,
    0 24px 60px rgba(0,0,0,0.60);
  z-index: 1000;
  transition: top 0.22s ease, opacity 0.22s ease, border-color 0.22s ease;
}

.ix-navbar.scrolled {
  border-color: rgba(168,85,247,0.28);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 28px 70px rgba(0,0,0,0.70);
}

.ix-navbar.hidden {
  top: -90px;
  opacity: 0;
  pointer-events: none;
}

/* Logo */
.ix-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.ix-logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ix-violet-dark), var(--ix-rose));
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 20px rgba(168,85,247,0.50);
}

.ix-logo-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

/* Nav links */
.ix-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.ix-nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ix-muted);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 0.16s, background 0.16s;
}

.ix-nav-links a i {
  font-size: 16px;
}

.ix-nav-links a:hover {
  color: #fff;
  background: rgba(168,85,247,0.10);
}

/* Nav right */
.ix-nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Buttons */
.ix-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}

.ix-btn i { font-size: 18px; }

/* Ghost */
.ix-btn-ghost {
  min-height: 40px;
  padding: 9px 18px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
}

.ix-btn-ghost:hover {
  background: rgba(255,255,255,0.11);
  color: #fff;
  transform: translateY(-1px);
}

/* Primary */
.ix-btn-primary {
  min-height: 40px;
  padding: 9px 20px;
  font-size: 0.86rem;
  color: #fff;
  background: linear-gradient(135deg, var(--ix-violet-dark), var(--ix-violet));
  box-shadow: 0 8px 22px rgba(168,85,247,0.40);
}

.ix-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(168,85,247,0.55);
}

/* Large */
.ix-btn-lg {
  min-height: 52px;
  padding: 13px 28px;
  font-size: 0.97rem;
  border-radius: 16px;
}

/* Burger */
.ix-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: var(--ix-muted);
  cursor: pointer;
  transition: color 0.16s, background 0.16s;
}

.ix-burger:hover { color: #fff; background: rgba(255,255,255,0.12); }

/* ================================================================
   LAYOUT HELPERS
   ================================================================ */
.ix-hero,
.ix-section,
.ix-final,
.ix-footer { width: min(1200px, calc(100% - 28px)); margin-inline: auto; }

/* Reveal animation */
.ix-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.60s ease, transform 0.60s ease;
}
.ix-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section head */
.ix-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.ix-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ix-violet);
  background: var(--ix-violet-soft);
  border: 1px solid rgba(168,85,247,0.22);
}

.ix-tag-rose {
  color: var(--ix-rose);
  background: var(--ix-rose-soft);
  border-color: rgba(244,63,94,0.22);
}

.ix-tag-gold {
  color: var(--ix-gold);
  background: var(--ix-gold-soft);
  border-color: rgba(251,191,36,0.22);
}

.ix-section-head h2 {
  margin: 14px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #fff;
}

.ix-section-head p {
  margin: 12px auto 0;
  color: var(--ix-muted);
  line-height: 1.70;
  max-width: 54ch;
}

/* ================================================================
   HERO
   ================================================================ */
.ix-hero {
  padding-top: 116px;
  padding-bottom: 16px;
}

.ix-hero-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.ix-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(251,191,36,0.28);
  background: rgba(251,191,36,0.10);
  color: #fde68a;
  font-size: 0.84rem;
  font-weight: 700;
}

.ix-hero-badge i { color: #fbbf24; font-size: 18px; }

.ix-hero-inner h1 {
  margin: 20px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #fff;
}

.ix-hero-inner h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--ix-violet), var(--ix-rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ix-hero-sub {
  margin: 20px auto 0;
  color: var(--ix-muted);
  font-size: 1.05rem;
  line-height: 1.72;
  max-width: 56ch;
}

.ix-hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Hero stats pills */
.ix-hero-stats {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.ix-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(168,85,247,0.20);
  background: rgba(168,85,247,0.08);
  color: rgba(255,255,255,0.85);
  font-size: 0.86rem;
  font-weight: 700;
}

.ix-stat-pill i { color: var(--ix-violet); font-size: 18px; }

.ix-stat-green { border-color: rgba(52,211,153,0.22); background: rgba(52,211,153,0.08); }
.ix-stat-green i { color: var(--ix-green); }

.ix-stat-gold { border-color: rgba(251,191,36,0.22); background: rgba(251,191,36,0.08); }
.ix-stat-gold i { color: var(--ix-gold); }

/* ================================================================
   SECTIONS
   ================================================================ */
.ix-section { padding-top: 36px; }

/* ================================================================
   CAROUSEL SECTION
   ================================================================ */
.ix-carousel-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* Carousel group */
.ix-car-group {
  border-radius: 28px;
  border: 1px solid var(--ix-line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.50);
  transition: border-color 0.22s;
}

.ix-car-group:hover {
  border-color: rgba(168,85,247,0.32);
}

/* LQ: violet glow, FC: green glow */
.ix-car-lq { --car-accent: var(--ix-violet); --car-glow: rgba(168,85,247,0.18); }
.ix-car-fc { --car-accent: var(--ix-green); --car-glow: rgba(52,211,153,0.14); }

.ix-car-group:hover { box-shadow: 0 28px 70px rgba(0,0,0,0.60), 0 0 0 1px var(--car-glow) inset; }

/* Label bar */
.ix-car-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
}

.ix-car-icon { font-size: 1.5rem; line-height: 1; }

.ix-car-label > div { flex: 1; min-width: 0; }
.ix-car-label strong { display: block; color: #fff; font-size: 0.96rem; font-family: "Space Grotesk", sans-serif; }
.ix-car-label small { display: block; color: var(--ix-muted); font-size: 0.78rem; margin-top: 2px; }

.ix-car-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--car-accent);
  text-decoration: none;
  font-size: 0.80rem;
  font-weight: 700;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.16s;
}
.ix-car-more i { font-size: 16px; }
.ix-car-more:hover { opacity: 1; }

/* Carousel viewport */
.ix-carousel {
  position: relative;
  height: 340px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(168,85,247,0.10), transparent 65%),
    rgba(0,0,0,0.18);
}

/* ── Floating slides ── */
.ix-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72%;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1),
              opacity  0.55s cubic-bezier(0.4,0,0.2,1),
              filter   0.55s ease;
  z-index: 1;
  pointer-events: none;
}

.ix-slide-active {
  transform: translateX(-50%) translateY(calc(-50% - 10px));
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
  animation: cardFloat 3.8s ease-in-out infinite;
}

.ix-slide-prev {
  transform: translateX(calc(-50% - 68%)) translateY(-50%) scale(0.76);
  opacity: 0.55;
  z-index: 5;
  filter: brightness(0.72) blur(0.5px);
  pointer-events: auto;
}

.ix-slide-next {
  transform: translateX(calc(-50% + 68%)) translateY(-50%) scale(0.76);
  opacity: 0.55;
  z-index: 5;
  filter: brightness(0.72) blur(0.5px);
  pointer-events: auto;
}

.ix-slide-hidden {
  transform: translateX(-50%) translateY(-50%) scale(0.4);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

@keyframes cardFloat {
  0%,100% { transform: translateX(-50%) translateY(calc(-50% - 10px)); }
  50%      { transform: translateX(-50%) translateY(calc(-50% - 22px)); }
}

/* Slide inner & image */
.ix-slide-inner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 12px 28px rgba(0,0,0,0.30);
}

.ix-slide-active .ix-slide-inner {
  box-shadow:
    0 40px 90px rgba(0,0,0,0.70),
    0 0 60px var(--car-glow, rgba(168,85,247,0.30)),
    0 0 0 1px rgba(255,255,255,0.10) inset;
}

.ix-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.50s ease;
}

.ix-slide-active:hover .ix-slide img { transform: scale(1.04); }

/* Glow blob under active card */
.ix-slide-glow {
  position: absolute;
  bottom: -18px; left: 10%; right: 10%;
  height: 28px;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}
.ix-slide-active .ix-slide-glow { opacity: 1; }
.ix-glow-lq { background: rgba(168,85,247,0.75); }
.ix-glow-fc { background: rgba(52,211,153,0.70); }

/* Arrows */
.ix-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(10,5,25,0.70);
  backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  z-index: 20;
  opacity: 0.75;
  transition: opacity 0.22s, background 0.18s, transform 0.18s;
}

.ix-arrow:hover {
  opacity: 1;
  background: rgba(168,85,247,0.55);
  border-color: rgba(168,85,247,0.50);
  transform: translateY(-50%) scale(1.10);
}

.ix-arrow-prev { left: 14px; }
.ix-arrow-next { right: 14px; }

/* Dots */
.ix-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.ix-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.22s, width 0.22s, border-radius 0.22s;
  padding: 0;
}

.ix-dot.active {
  width: 22px;
  border-radius: 4px;
  background: #fff;
}

/* Counter */
.ix-car-counter {
  position: absolute;
  top: 10px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.85);
  font-size: 0.74rem;
  font-weight: 700;
  z-index: 10;
}

/* Empty state */
.ix-car-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 24px;
  text-align: center;
  color: var(--ix-muted);
  height: 100%;
}

.ix-car-empty i { font-size: 44px; opacity: 0.35; }
.ix-car-empty p { font-size: 0.90rem; line-height: 1.60; }
.ix-car-empty code {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  font-family: monospace;
  font-size: 0.84rem;
  color: var(--ix-violet);
}

/* ================================================================
   4 STEPS
   ================================================================ */
.ix-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.ix-step-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 22px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  box-shadow: 0 18px 48px rgba(0,0,0,0.42);
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}

.ix-step-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ix-violet), var(--ix-rose));
  opacity: 0;
  transition: opacity 0.22s;
}

.ix-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168,85,247,0.28);
  box-shadow: 0 28px 64px rgba(0,0,0,0.52);
}

.ix-step-card:hover::before { opacity: 1; }

.ix-step-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--ix-violet), var(--ix-rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ix-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--ix-violet-soft);
  border: 1px solid rgba(168,85,247,0.18);
  color: var(--ix-violet);
}

.ix-step-icon i { font-size: 22px; }

.ix-step-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  color: #fff;
  line-height: 1.25;
}

.ix-step-card p {
  color: var(--ix-muted);
  font-size: 0.91rem;
  line-height: 1.62;
  flex: 1;
}

.ix-step-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.ix-step-foot a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ix-violet);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  transition: gap 0.16s;
}

.ix-step-foot a:hover { gap: 8px; }
.ix-step-foot a i { font-size: 16px; }

.ix-step-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ix-muted);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
}

.ix-step-badge-green {
  color: var(--ix-green);
  background: var(--ix-green-soft);
  border-color: rgba(52,211,153,0.20);
}

/* Flow bar */
.ix-flow-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 28px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}

.ix-flow-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  color: var(--ix-muted);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.ix-flow-item i { font-size: 18px; color: var(--ix-muted); }

.ix-flow-highlight {
  color: #fff;
  border-color: rgba(168,85,247,0.24);
  background: rgba(168,85,247,0.09);
}

.ix-flow-highlight i { color: var(--ix-violet); }

.ix-flow-arrow {
  color: rgba(255,255,255,0.20);
  font-size: 20px !important;
  flex-shrink: 0;
}

/* ================================================================
   WHY SECTION
   ================================================================ */
.ix-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ix-why-card {
  padding: 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: 0 14px 40px rgba(0,0,0,0.40);
  transition: transform 0.22s, border-color 0.22s;
}

.ix-why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168,85,247,0.22);
}

.ix-why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  margin-bottom: 14px;
}

.ix-why-icon i { font-size: 24px; }

.ix-why-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 8px;
}

.ix-why-card p {
  color: var(--ix-muted);
  font-size: 0.91rem;
  line-height: 1.62;
}

/* ================================================================
   FINAL CTA
   ================================================================ */
.ix-final {
  position: relative;
  margin-top: 36px;
  margin-bottom: 32px;
  padding: 52px 44px;
  border-radius: 32px;
  border: 1px solid rgba(168,85,247,0.25);
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(168,85,247,0.14), transparent 60%),
    linear-gradient(160deg, #0f0430 0%, #0a0120 60%, #060010 100%);
  box-shadow:
    0 0 0 1px rgba(168,85,247,0.10) inset,
    0 40px 100px rgba(0,0,0,0.65);
}

.ix-final-glow {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.22), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

.ix-final-content { position: relative; z-index: 1; }

.ix-final-content h2 {
  margin: 14px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
}

.ix-final-content p {
  margin: 14px auto 0;
  color: var(--ix-muted);
  line-height: 1.68;
  max-width: 50ch;
}

.ix-final-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.ix-footer {
  padding-bottom: 32px;
}

.ix-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 18px;
}

.ix-footer-brand p {
  margin-top: 8px;
  color: var(--ix-muted);
  font-size: 0.85rem;
}

.ix-footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ix-footer-links a {
  color: var(--ix-muted);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  transition: color 0.16s;
}

.ix-footer-links a:hover { color: #fff; }

.ix-footer-copy {
  text-align: center;
  color: var(--ix-muted);
  font-size: 0.82rem;
  opacity: 0.65;
}

/* ================================================================
   RESPONSIVE — 1080px
   ================================================================ */
@media (max-width: 1080px) {
  .ix-carousel-row {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }

  .ix-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ix-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ix-flow-bar {
    gap: 6px;
  }
}

/* ================================================================
   RESPONSIVE — 860px
   ================================================================ */
@media (max-width: 860px) {
  .ix-navbar {
    border-radius: 24px;
    top: 10px;
  }

  .ix-nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border-radius: 22px;
    border: 1px solid rgba(168,85,247,0.20);
    background: rgba(10,3,25,0.96);
    backdrop-filter: blur(24px);
    box-shadow: 0 28px 70px rgba(0,0,0,0.70);
  }

  .ix-nav-links.open { display: flex; }

  .ix-nav-links a {
    width: 100%;
    justify-content: center;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.85);
  }

  .ix-burger { display: inline-flex; }

  .ix-btn-ghost { display: none; }

  .ix-hero { padding-top: 96px; }

  .ix-flow-item span { display: none; }
  .ix-flow-item { padding: 10px 12px; }
}

/* ================================================================
   RESPONSIVE — 640px
   ================================================================ */
@media (max-width: 640px) {
  .ix-hero, .ix-section, .ix-final, .ix-footer {
    width: calc(100% - 16px);
  }

  .ix-hero-inner h1 { letter-spacing: -0.04em; }

  .ix-hero-btns { flex-direction: column; align-items: stretch; }
  .ix-btn-lg { width: 100%; justify-content: center; }

  .ix-step-grid { grid-template-columns: 1fr; }
  .ix-why-grid  { grid-template-columns: 1fr; }

  .ix-final { padding: 36px 24px; }

  .ix-footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ix-footer-links { gap: 14px; }

  .ix-flow-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
  .ix-flow-arrow { display: none; }
  .ix-flow-item span { display: inline; }

  .ix-carousel-row { max-width: 100%; }
}
