:root {
  --bg: #0a0a0f;
  --surface: #111118;
  --text: #f0f0f5;
  --text-muted: #8888a8;
  --accent: #c8a0e0;
  --accent-pink: #b04090;
  --border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  background: var(--bg);
  color: var(--text);
}

html {
  overflow-x: hidden;
}

#root {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  padding: 0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============ NAV ============ */
nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px 40px;
  z-index: 100;
  background: transparent;
}

.nav-logo {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  justify-self: start;
}

.nav-menu {
  display: contents;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  justify-self: center;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-self: end;
}

.btn-login,
.btn-signup {
  border: none;
  cursor: pointer;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.btn-login {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-signup {
  background: linear-gradient(135deg, #6d4ae0 0%, #c0509f 55%, #e8893f 100%);
  background-size: 200% 200%;
  animation: shimmerBtn 4s ease infinite;
  color: #fff;
  font-weight: 600;
  border: none;
}

.btn-signup:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 14px;
  position: relative;
  padding: 0;
}

.menu-toggle span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  bottom: 0;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ============ HERO CARD ============ */
.hero-card {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  border: none;
  overflow: hidden;
  position: relative;
  background: #000;
  padding: 80px 40px 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% 42%, rgba(10, 10, 15, 0.15) 0%, rgba(10, 10, 15, 0.45) 100%),
    linear-gradient(to bottom, rgba(10, 10, 15, 0.1), rgba(10, 10, 15, 0.4));
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% -70%,
      transparent 60%,
      rgba(176, 48, 136, 0.03) 63%,
      rgba(176, 48, 136, 0.08) 65%,
      rgba(176, 48, 136, 0.16) 67%,
      rgba(176, 48, 136, 0.28) 69%,
      rgba(176, 48, 136, 0.40) 71%,
      rgba(176, 48, 136, 0.52) 73%,
      rgba(176, 48, 136, 0.64) 75%,
      rgba(176, 48, 136, 0.74) 77%,
      rgba(176, 48, 136, 0.82) 79%,
      rgba(210, 70, 175, 0.92) 85%,
      rgba(240, 110, 210, 0.88) 87%,
      rgba(255, 205, 250, 0.92) 91%,
      rgba(255, 240, 255, 0.98) 93%,
      #ffffff 95%),
    radial-gradient(circle at 50% 35%, rgba(120, 40, 180, 0.08) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
  filter: hue-rotate(var(--aura-hue, 0deg)) saturate(var(--aura-sat, 1));
  opacity: var(--glow-strength, 1);
  transition: opacity 0.5s ease, filter 0.5s ease;
  mix-blend-mode: screen;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(circle at 50% -70%, transparent 60%, black 78%);
  mask-image: radial-gradient(circle at 50% -70%, transparent 60%, black 78%);
  z-index: 0;
  pointer-events: none;
  opacity: var(--grid-strength, 1);
  transition: opacity 0.5s ease;
}

/* ============ ICON PIPELINE ============ */
.icon-pipeline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin-bottom: 52px;
  z-index: 1;
}

.beam-svg {
  position: absolute;
  inset: 0;
  filter: hue-rotate(var(--aura-hue, 0deg)) saturate(var(--aura-sat, 1));
  transition: filter 0.5s ease;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 2;
  pointer-events: none;
}

.icon-node {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #1a1a24;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 3;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow:
    6px 6px 12px rgba(0, 0, 0, 0.4),
    -4px -4px 10px rgba(255, 255, 255, 0.03),
    inset 1px 1px 1px rgba(255, 255, 255, 0.05),
    inset 4px 4px 8px rgba(0, 0, 0, 0.4);
}

.icon-node::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px dotted #1a1a24;
  border-radius: 50%;
  pointer-events: none;
}

.icon-node:hover {
  transform: translateY(-1px);
  box-shadow:
    8px 8px 16px rgba(0, 0, 0, 0.5),
    -5px -5px 12px rgba(255, 255, 255, 0.04),
    inset 1px 1px 1px rgba(255, 255, 255, 0.06),
    inset 4px 4px 8px rgba(0, 0, 0, 0.45);
}

.icon-node:active {
  box-shadow:
    inset 1px 1px 1px rgba(255, 255, 255, 0.05),
    inset 6px 6px 10px rgba(0, 0, 0, 0.5);
}

.icon-node svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
}

/* Side light glows */
.node-light-right::before,
.node-light-left::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 4;
}

.node-light-right::before {
  background: radial-gradient(circle at right, rgba(200, 200, 200, 0.45) 0%, transparent 70%);
}

.node-light-left::before {
  background: radial-gradient(circle at left, rgba(200, 100, 255, 0.5) 0%, transparent 70%);
}

.node-light-right.active::before,
.node-light-left.active::before {
  opacity: 1;
}

/* Pipeline lines */
.pipeline-line {
  width: 280px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.07));
  position: relative;
  z-index: 1;
}

.pipeline-line.right {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.15));
}

/* Center node */
.center-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-node-center {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1e1e2c;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  box-shadow:
    8px 8px 16px rgba(0, 0, 0, 0.5),
    -6px -6px 14px rgba(255, 255, 255, 0.04),
    inset 1px 1px 2px rgba(255, 255, 255, 0.06),
    inset 6px 6px 12px rgba(0, 0, 0, 0.5);
}

.icon-node-center svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.splash {
  position: absolute;
  filter: hue-rotate(var(--aura-hue, 0deg)) saturate(var(--aura-sat, 1));
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 200, 0.6) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.4);
  z-index: 2;
  pointer-events: none;
}

.splash.animate {
  animation: splash-anim 0.8s ease-out forwards;
}

@keyframes splash-anim {
  0% {
    transform: scale(0.4);
    opacity: 0.8;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ============ HERO TEXT ============ */
.hero-content {
  max-width: 920px;
  z-index: 1;
  position: relative;
}

.hero-heading {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 auto 12px;
  text-align: center;
}

.hero-heading strong {
  display: inline-block;
  font-weight: 700;
  margin: 6px auto 0;
  white-space: normal;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffffff, #e87fb0, #9b5cf0);
  background-size: 200% 200%;
  animation: shimmerBtn 6s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.btn-cta {
  display: inline-block;
  background: #ffffff;
  color: #0a0a0f;
  padding: 12px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ============ BRANDS ROW ============ */
.brands {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 24px 48px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.brands-track {
  display: flex;
  width: max-content;
  gap: 64px;
  padding-right: 64px;
  animation: marquee 30s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.brand-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.1rem;
  font-weight: 500;
  white-space: nowrap;
}

.brand-item svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.northwind-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  vertical-align: super;
  margin: 0 1px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .icon-pipeline {
    gap: 0;
    margin-bottom: 40px;
  }

  .pipeline-line {
    width: 80px;
  }
}

@media (max-width: 768px) {
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 80px 24px 24px;
    gap: 24px;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
    justify-self: stretch;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .nav-actions a,
  .nav-actions button {
    width: 100%;
    padding: 12px 18px;
    font-size: 0.95rem;
    text-align: center;
    display: block;
    box-sizing: border-box;
  }

  .icon-node {
    width: 38px;
    height: 38px;
  }

  .icon-node-center {
    width: 52px;
    height: 52px;
  }

  .icon-node-center svg {
    width: 22px;
    height: 22px;
  }

  .hero-card {
    padding: 60px 20px 60px;
    min-height: auto;
  }

  .brands {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-card {
    border-radius: 0;
    padding: 80px 16px 40px;
  }

  .brands {
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .hero-card {
    min-height: max(560px, calc(100vh - 200px));
  }
}

/* ============ HOW IT WORKS ============ */
html {
  scroll-behavior: smooth;
}

.hiw {
  width: 100%;
  max-width: 100%;
  position: relative;
  padding: 100px 24px 0;
  background: #0a0a0f;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* aurora wisps behind the light transition */
.hiw-transition::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 80px;
  width: 140%;
  height: 460px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse 50% 70% at 28% 100%, rgba(150, 90, 240, 0.15), transparent 72%),
    radial-gradient(ellipse 45% 65% at 72% 100%, rgba(210, 110, 220, 0.12), transparent 72%),
    radial-gradient(ellipse 60% 80% at 50% 120%, rgba(120, 70, 230, 0.15), transparent 72%);
  filter: blur(26px);
  pointer-events: none;
  z-index: 0;
}

.hiw-head {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin-bottom: 56px;
}

.hiw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(150, 90, 240, 0.12);
  border: 1px solid rgba(150, 90, 240, 0.28);
  color: #c9b3f5;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.hiw-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b07bff;
  box-shadow: 0 0 8px #b07bff;
}

.hiw-title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

.hiw-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: start;
}

/* glow behind the elevated card */
.hiw-grid::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 25%;
  width: 30%;
  height: 360px;
  background: radial-gradient(ellipse at center, rgba(150, 80, 240, 0.45), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

.hiw-card {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(180, 130, 255, 0.25);
  padding: 28px 24px 30px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 70% -15%, rgba(165, 95, 240, 0.05), transparent 58%),
    linear-gradient(180deg, #15101f 0%, #0a080f 100%);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1), box-shadow 0.35s ease, border-color 0.3s ease, background 0.3s ease;
  overflow: hidden;
}

.hiw-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 130, 255, 0.3), transparent);
  opacity: 0.1;
  transition: opacity 0.35s ease;
}

.hiw-card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: rgba(180, 130, 255, 0.8);
  background:
    radial-gradient(circle at 75% -10%, rgba(180, 120, 255, 0.4), transparent 65%),
    linear-gradient(180deg, #1c142c 0%, #0d0a17 100%);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(180, 130, 255, 0.3);
}

.hiw-card:hover::after {
  opacity: 1;
}

.hiw-card:hover .hiw-pill {
  background: rgba(150, 90, 240, 0.10);
  border-color: rgba(150, 90, 240, 0.22);
}

.hiw-card:hover .hiw-step {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(150, 90, 240, 0.25);
  border-color: rgba(150, 90, 240, 0.4);
}

.hiw-card.featured {
  border-color: rgba(180, 130, 255, 0.22);
  background:
    radial-gradient(circle at 70% -15%, rgba(165, 95, 240, 0.55), transparent 58%),
    linear-gradient(180deg, #221634 0%, #120c20 100%);
  box-shadow: 0 24px 50px rgba(90, 40, 160, 0.40);
}

.hiw-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 5px 12px 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.hiw-pill .ico {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(150, 90, 240, 0.2);
}

.hiw-pill .ico svg {
  width: 11px;
  height: 11px;
  stroke: #c9b3f5;
  stroke-width: 2;
  fill: none;
}

.hiw-card h3 {
  margin-top: auto;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.01em;
}

.hiw-bullets {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.hiw-bullets li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.hiw-bullets .chk {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(150, 90, 240, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw-bullets .chk svg {
  width: 9px;
  height: 9px;
  stroke: #b07bff;
  stroke-width: 2.4;
  fill: none;
}

.hiw-cta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.hiw-btn {
  border: none;
  cursor: pointer;
  padding: 14px 40px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #6d4ae0 0%, #c0509f 55%, #e8893f 100%);
  box-shadow: 0 14px 30px rgba(140, 70, 200, 0.35);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.hiw-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* light transition block */
.hiw-transition {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 24px 40px;
  margin-top: 60px;
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfbfe 35%, #f2ebfa 75%, #e9ddf7 100%);
  border-radius: 50% 50% 0 0 / 100px 100px 0 0;
}

.pill-control {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(150, 90, 240, 0.10);
  border: 1px solid rgba(150, 90, 240, 0.25);
  color: #7a4fd0;
  font-size: 0.74rem;
  font-weight: 600;
  margin-bottom: 26px;
}

.pill-control .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9b5cf0;
  box-shadow: 0 0 8px #9b5cf0;
}

.hiw-bigtitle {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #1a1438;
}

.hiw-bigtitle span {
  background: linear-gradient(90deg, #7a4fd0, #c0509f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 1024px) {
  .hiw-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hiw-grid::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .hiw {
    padding-top: 70px;
  }

  .hiw-grid {
    grid-template-columns: 1fr;
  }

  .hiw-transition {
    padding: 100px 20px 30px;
  }
}

/* ============ BENEFITS / COMPARE ============ */
.compare {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px) 1fr;
  align-items: center;
  gap: 24px;
}

.cmp-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cmp-card {
  text-align: left;
  background: #ffffff;
  border: 1px solid rgba(120, 80, 200, 0.10);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  box-shadow: 0 8px 22px rgba(80, 50, 140, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cmp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(80, 50, 140, 0.13);
}

.cmp-ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.cmp-ico svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cmp-card.bad .cmp-ico {
  background: #eceaf0;
}

.cmp-card.bad .cmp-ico svg {
  stroke: #9aa0ab;
}

.cmp-card.bad p {
  color: #8c8f99;
}

.cmp-card.good .cmp-ico {
  background: rgba(140, 90, 235, 0.14);
}

.cmp-card.good .cmp-ico svg {
  stroke: #8b5cf0;
}

.cmp-card.good p {
  color: #3a3550;
  font-weight: 500;
}

.cmp-card p {
  font-size: 0.82rem;
  line-height: 1.4;
  letter-spacing: -0.005em;
}

/* center orb */
.cmp-orb-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 340px;
}

.cmp-orb {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
}

.cmp-orb::after {
  content: "";
  position: absolute;
  inset: -50px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(180, 130, 250, 0.25), rgba(240, 160, 120, 0.12) 45%, transparent 70%);
  filter: blur(24px);
  z-index: 0;
}

/* Outer thick ring */
.cmp-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 180deg,
      #a8e6cf, #88d8a8, #f0c27f, #f4845f, #e87fb0, #c48bde, #a78bfa, #a8e6cf);
  -webkit-mask: radial-gradient(farthest-side, transparent 62%, #000 64%);
  mask: radial-gradient(farthest-side, transparent 62%, #000 64%);
  opacity: 0.9;
  animation: orb-spin 12s linear infinite;
  box-shadow: inset 0 0 30px rgba(255,255,255,0.15);
}

/* Middle ring */
.cmp-ring.inner {
  inset: 36px;
  background: conic-gradient(from 90deg,
      #c48bde, #f4845f, #a8e6cf, #88d8a8, #e87fb0, #a78bfa, #c48bde);
  -webkit-mask: radial-gradient(farthest-side, transparent 58%, #000 60%);
  mask: radial-gradient(farthest-side, transparent 58%, #000 60%);
  opacity: 0.7;
  animation: orb-spin 9s linear infinite reverse;
}

/* Thin decorative ring between outer and inner */
.cmp-ring.dotted {
  inset: 18px;
  background: none;
  border: 1px solid rgba(200, 170, 255, 0.2);
  -webkit-mask: none;
  mask: none;
  animation: orb-spin 30s linear infinite;
}

/* Glowing white center core */
.cmp-orb-core {
  position: absolute;
  inset: 78px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, #ffffff 0%, #f5f0ff 40%, #ece4fa 65%, #ddd0f5 100%);
  box-shadow:
    inset 0 -8px 20px rgba(180, 140, 250, 0.3),
    inset 0 4px 12px rgba(255, 255, 255, 0.8),
    0 6px 28px rgba(150, 100, 230, 0.25),
    0 0 60px rgba(200, 160, 255, 0.15);
  z-index: 1;
}

@keyframes orb-spin {
  to {
    transform: rotate(360deg);
  }
}


@media (max-width: 920px) {
  .compare {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 50px;
  }

  .cmp-orb-wrap {
    order: -1;
    min-height: 260px;
  }

  .cmp-orb {
    width: 220px;
    height: 220px;
  }

  .cmp-orb-core {
    inset: 62px;
  }

  .cmp-ring.inner {
    inset: 32px;
  }
}

/* ============ WHO IS IT FOR ============ */
.who {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 100px 24px 220px;
  text-align: center;
  background: linear-gradient(180deg, #e9ddf7 0%, #fdfcff 180px, #fdfcff 100%);
  overflow: hidden;
}

.who-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(150, 90, 240, 0.10);
  border: 1px solid rgba(150, 90, 240, 0.25);
  color: #7a4fd0;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.who-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9b5cf0;
  box-shadow: 0 0 8px #9b5cf0;
}

.who-ask {
  font-size: 1.3rem;
  color: #8a85a0;
  margin-bottom: 10px;
}

.who-q {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1a1438;
  margin-bottom: 18px;
}

.who-q span {
  background: linear-gradient(90deg, #7a4fd0, #c0509f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.who-sub {
  font-size: 1.4rem;
  font-weight: 600;
  color: #3a3550;
  margin-bottom: 44px;
}

.who-grid {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 48px;
  text-align: left;
}

.who-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: #ffffff;
  border: 1px solid rgba(120, 80, 200, 0.10);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(80, 50, 140, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.who-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(80, 50, 140, 0.12);
}

.who-item .chk {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(140, 90, 235, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-item .chk svg {
  width: 16px;
  height: 16px;
  stroke: #8b5cf0;
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.who-item span.txt {
  font-size: 1.15rem;
  color: #3a3550;
  font-weight: 500;
}

.who-waves {
  position: relative;
  z-index: 1;
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  margin-top: 80px;
  padding-top: 40px;
  padding-bottom: 20px;
  display: block;
  line-height: 0;
  background: #0a0a0f;
  border-radius: 50% 50% 0 0 / 100px 100px 0 0;
}

.who-waves svg {
  width: 100%;
  height: clamp(160px, 18vw, 280px);
  display: block;
}

@media (max-width: 640px) {
  .who {
    padding-top: 90px;
  }

  .who-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 440px;
  }

  .icon-pipeline {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .pipeline-line {
    width: 2px !important;
    height: 50px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.07)) !important;
  }

  .pipeline-line.right {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.15)) !important;
  }

  .cmp-orb-wrap {
    min-height: 240px;
  }

  .cmp-orb {
    width: 220px;
    height: 220px;
  }

  .cmp-orb-img {
    width: 220px;
    height: 220px;
  }
}

@keyframes shimmerBtn {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ============ FINAL CTA ============ */
.final-cta {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 140px 24px;
  text-align: center;
  background: #0a0a0f;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
  padding: 80px 40px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(20, 16, 30, 0.6) 0%, rgba(10, 8, 15, 0.4) 100%);
  border: 1px solid rgba(150, 90, 240, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.final-cta-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(circle at 50% 0%, rgba(150, 90, 240, 0.15), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.final-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(150, 90, 240, 0.10);
  border: 1px solid rgba(150, 90, 240, 0.25);
  color: #c0a0f0;
  font-size: 0.74rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.final-cta-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9b5cf0;
  box-shadow: 0 0 8px #9b5cf0;
}

.final-cta-q {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.final-cta-q span {
  background: linear-gradient(135deg, #ffffff, #c9b3f5, #e87fb0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

.final-cta-btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b07bff, #e87fb0);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(176, 123, 255, 0.3);
  transition: transform 0.2s ease, filter 0.2s ease;
  position: relative;
  z-index: 2;
}

.final-cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.who-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 0;
  line-height: 0;
  opacity: 0.5;
  pointer-events: none;
}

.who-waves svg {
  width: 100%;
  height: clamp(160px, 20vw, 280px);
  display: block;
}


.cmp-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 auto 16px;
}

.cmp-label.bad-label {
  color: #797182;
  background: #f0edf4;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.cmp-label.bad-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a39ca8;
}

.cmp-label.good-label {
  color: #965af0;
  background: rgba(150, 90, 240, 0.1);
  border: 1px solid rgba(150, 90, 240, 0.2);
}

.cmp-label.good-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b07bff;
  box-shadow: 0 0 8px rgba(176, 123, 255, 0.7);
}


.hiw-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 580px;
  margin: 20px auto 0;
  line-height: 1.65;
}

.hiw-step {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(200, 160, 255, 0.6);
  background: rgba(150, 90, 240, 0.12);
  border: 1px solid rgba(150, 90, 240, 0.2);
}


.welcome-title {
  color: #fff;
  font-weight: 600;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.3;
  letter-spacing: -0.03em;
  margin: 0;
  background: linear-gradient(135deg, #ffffff, #e87fb0, #9b5cf0);
  background-size: 200% 200%;
  animation: shimmerBtn 6s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feat-main-card {
  background: linear-gradient(180deg, #3e2b66 0%, #2a1c4a 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1), box-shadow 0.35s ease, border-color 0.3s ease, background 0.3s ease;
}

.feat-main-card:hover {
  transform: translateY(-8px);
  border-color: rgba(180, 130, 255, 0.8);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(180, 130, 255, 0.3);
}