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

:root {
  /* Backgrounds — matches dashboard */
  --bg-base: #050506;
  --bg-raised: #0a0a0c;
  --bg-overlay: #131315;
  --bg-subtle: rgba(255,255,255,0.03);
  --bg-muted: rgba(255,255,255,0.06);

  /* Borders */
  --border-subtle: rgba(255,255,255,0.04);
  --border-default: rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.1);

  /* Text */
  --text-primary: #ededf0;
  --text-secondary: rgba(255,255,255,0.62);
  --text-tertiary: rgba(255,255,255,0.35);

  /* Accents */
  --red: #c8102e;
  --red-text: #f0566a;
  --red-surface: rgba(200,16,46,0.08);
  --green: #3ec76a;
  --green-text: #4ade80;
  --green-surface: rgba(62,199,106,0.08);
  --blue: #3e6fc7;
  --blue-text: #60a5fa;
  --blue-surface: rgba(62,111,199,0.08);
  --yellow: #c7a33e;
  --yellow-text: #fbbf24;
  --yellow-surface: rgba(199,163,62,0.08);

  /* Radii, shadows, transitions */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.3);
  --transition-fast: 0.12s ease;
  --transition-base: 0.15s ease;
  --transition-slow: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Noise texture overlay — adds depth, breaks the flat digital feel */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Subtle vignette — darkens edges, draws focus to center content */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, transparent 55%, rgba(0,0,0,0.35) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Scrollbars ── */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

/* ── Animations ── */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

/* aurora keyframes removed */

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes btn-shine {
  0% { left: -100%; }
  100% { left: 200%; }
}

@property --shine-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes shine-rotate {
  from { --shine-angle: 0deg; }
  to { --shine-angle: 360deg; }
}

@keyframes glass-sweep {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(250%); }
}

.animate-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navigation ── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 6, 8, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.8);
  transition: border-color var(--transition-base), background var(--transition-base);
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(0,0,0,0.7),
    0 8px 24px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 -1px 0 rgba(0,0,0,0.4),
    /* Subtle inner edge vignette — darkens edges, suggests curved glass depth */
    inset 80px 0 60px -60px rgba(0,0,0,0.15),
    inset -80px 0 60px -60px rgba(0,0,0,0.15);
}

/* Silver sheen flash — tight, concentrated, directional */
.nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 15%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200,210,225,0.02) 25%,
    rgba(200,210,225,0.06) 45%,
    rgba(220,225,235,0.10) 50%,
    rgba(200,210,225,0.06) 55%,
    rgba(200,210,225,0.02) 75%,
    transparent 100%
  );
  pointer-events: none;
  animation: obsidian-flash 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Secondary faint flash — trails the main one for depth */
.nav::after {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 25%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(180,190,210,0.01) 30%,
    rgba(180,190,210,0.025) 50%,
    rgba(180,190,210,0.01) 70%,
    transparent 100%
  );
  pointer-events: none;
  animation: obsidian-flash 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: -0.3s;
}

@keyframes obsidian-flash {
  0%   { left: -25%; opacity: 0; }
  5%   { opacity: 1; }
  50%  { left: 100%; opacity: 1; }
  55%  { opacity: 0; }
  100% { opacity: 0; left: 100%; }
}

.nav.scrolled {
  border-bottom-color: rgba(0,0,0,0.9);
  background: rgba(5, 5, 7, 0.98);
}

.nav-brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}

.nav-brand span {
  color: var(--red);
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-base);
  position: relative;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-login {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-base);
}

.nav-login:hover {
  color: var(--text-primary);
}

/* Liquid glass — red tint (compact nav size) */
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(220,20,50,0.78) 0%, rgba(180,14,38,0.68) 100%);
  backdrop-filter: blur(12px) saturate(220%);
  -webkit-backdrop-filter: blur(12px) saturate(220%);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.18);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(200,16,46,0.15),
    0 2px 6px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -1px 0 rgba(255,255,255,0.05);
}

/* Specular top highlight */
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent);
  pointer-events: none;
  z-index: 1;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.nav-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: none;
  z-index: 2;
}

.nav-cta:hover::after {
  animation: btn-shine 0.5s ease forwards;
}

.nav-cta:hover {
  background:
    linear-gradient(180deg, rgba(230,22,55,0.85) 0%, rgba(190,16,42,0.75) 100%);
  border-color: rgba(255,255,255,0.25);
  box-shadow:
    0 4px 20px rgba(200,16,46,0.25),
    0 2px 8px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(255,255,255,0.08);
}

.nav-cta:active {
  transform: scale(0.98);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 1px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* ── Section Layout ── */

.section {
  padding: 120px 40px;
  position: relative;
}

.section-alt {
  background: linear-gradient(
    180deg,
    var(--bg-base) 0%,
    var(--bg-raised) 6%,
    var(--bg-raised) 94%,
    var(--bg-base) 100%
  );
  border-top: none;
  border-bottom: none;
}

/* Subtle gradient accent line */
.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,16,46,0.25), transparent);
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--red-text);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--red-text);
  opacity: 0.6;
}

.section-heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Hero ── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 100px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(200,16,46,0.09) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 60%, rgba(62,111,199,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(200,16,46,0.04) 0%, transparent 50%);
  pointer-events: none;
  animation: glow-pulse 6s ease-in-out infinite;
}

/* Aurora blobs — drifting color behind hero */
.hero::before,
.hero::after {
  display: none;
}

.hero-grid-bg {
  display: none;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  animation: fadeInUp 0.6s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  /* Shimmer text — red base with bright white flash */
  background: linear-gradient(
    90deg,
    #f0566a 0%,
    #f0566a 30%,
    #fff 50%,
    #f0566a 70%,
    #f0566a 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-text 3s linear infinite;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 18px;
  border-radius: 9999px;
  margin-bottom: 32px;
  position: relative;
  overflow: visible;
  cursor: default;
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.6),
    inset 0 -1px 1px rgba(255,255,255,0.06),
    0 1px 3px rgba(0,0,0,0.4);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.hero-badge:hover {
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.6),
    inset 0 -1px 1px rgba(255,255,255,0.08),
    0 1px 3px rgba(0,0,0,0.4),
    0 0 16px rgba(200,16,46,0.08);
  transform: translateY(-1px);
}

/* Badge surface fill — smoky dark glass */
.hero-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  border-radius: 9999px;
  z-index: -1;
  pointer-events: none;
}

/* Bottom reflection glow */
.hero-badge::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 15%;
  right: 15%;
  height: 60%;
  border-radius: 9999px;
  background: rgba(255,255,255,0.04);
  filter: blur(8px);
  z-index: -2;
  pointer-events: none;
}

@keyframes shimmer-text {
  0%   { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Top glossy highlight — curved glass refraction */

.hero-badge-icon {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(
    90deg,
    var(--red-text) 0%,
    #ff8a94 25%,
    #ffc2c8 50%,
    #ff8a94 75%,
    var(--red-text) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s ease-in-out infinite;
}

.hero-sub {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

/* ── Liquid Glass Buttons ── */

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* Base — tint + refraction handled by lg- layers when present */
  background:
    linear-gradient(180deg, rgba(220,20,50,0.78) 0%, rgba(180,14,38,0.68) 100%);
  backdrop-filter: blur(12px) saturate(220%);
  -webkit-backdrop-filter: blur(12px) saturate(220%);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.18);
  transition: all var(--transition-base);
  box-shadow:
    0 8px 32px rgba(200,16,46,0.2),
    0 2px 8px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -1px 0 rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

/* Liquid glass specular highlight — top-half shine */
.btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.06) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

/* Shine sweep on hover */
.btn-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: none;
  z-index: 2;
}

.btn-hero:hover::after {
  animation: btn-shine 0.6s ease forwards;
}

.btn-hero:hover {
  background:
    linear-gradient(180deg, rgba(230,22,55,0.85) 0%, rgba(190,16,42,0.75) 100%);
  box-shadow:
    0 8px 40px rgba(200,16,46,0.3),
    0 4px 16px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
}

.btn-hero:active {
  transform: scale(0.98);
}

.btn-icon {
  width: 16px;
  height: 16px;
}

/* ── Liquid Glass 4-Layer System ── */

.lg-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* Override base background/backdrop — layers handle it */
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Layer 1: SVG displacement filter + minimal blur (the refraction) */
.lg-filter {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  filter: url(#liquid-glass) saturate(180%) brightness(1.1);
}

/* Layer 2: Color tint overlay */
.lg-tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
}

.lg-tint-red {
  background: linear-gradient(
    180deg,
    rgba(220, 25, 55, 0.72) 0%,
    rgba(170, 15, 40, 0.62) 100%
  );
}

.lg-tint-clear {
  background: rgba(255, 255, 255, 0.06);
}

/* Layer 3: Mouse-reactive specular highlight */
.lg-specular {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  overflow: hidden;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 0 4px rgba(255, 255, 255, 0.2);
  transition: background 0.15s ease;
  pointer-events: none;
}

/* Layer 4: Content (text, icons) */
.lg-content {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* Remove old pseudo-element specular highlights — lg-specular replaces them */
.lg-btn.btn-hero::before,
.lg-btn.nav-cta::before,
.lg-btn.pricing-cta::before {
  display: none;
}

/* Keep the shine sweep on hover (::after) */
.lg-btn.btn-hero::after,
.lg-btn.nav-cta::after,
.lg-btn.pricing-cta::after {
  z-index: 4;
}

/* Ghost button: hide old ::before, repurpose ::after for sweep */
.lg-btn.btn-hero-outline::before {
  display: none;
}

.lg-btn.btn-hero-outline::after {
  z-index: 4;
}

/* ── Mouse-reactive glow wrapper for CTA buttons ── */

.glow-btn-wrap {
  position: relative;
  display: inline-flex;
  padding: 2px;
  border-radius: calc(var(--radius-sm) + 2px);
  background: radial-gradient(
    200px circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(200,16,46, var(--glow-opacity, 0)),
    transparent 60%
  ), rgba(255,255,255,0.08);
  transition: background 0.1s ease;
}

.glow-btn-wrap::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: radial-gradient(
    250px circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(200,16,46, var(--glow-opacity, 0)),
    transparent 50%
  );
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.glow-btn-wrap .btn-hero {
  border: none;
}

.glow-btn-wrap .btn-hero:hover {
  border: none;
}

/* Nav CTA inside glow wrap — smaller padding */
.glow-btn-wrap.glow-btn-sm {
  padding: 1px;
  border-radius: calc(var(--radius-sm) + 1px);
}

.glow-btn-wrap .nav-cta {
  border: none;
}

.glow-btn-wrap .nav-cta:hover {
  border: none;
}

/* Ghost/outline button inside glow wrap — white glow instead of red */
.glow-btn-wrap.glow-btn-ghost {
  background: radial-gradient(
    200px circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(255,255,255, calc(var(--glow-opacity, 0) * 0.25)),
    transparent 60%
  ), rgba(255,255,255,0.04);
}

.glow-btn-wrap.glow-btn-ghost::before {
  background: radial-gradient(
    250px circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(255,255,255, calc(var(--glow-opacity, 0) * 0.2)),
    transparent 50%
  );
}

.glow-btn-wrap .btn-hero-outline {
  border: none;
}

/* Pricing CTA inside glow wrap — full width */
.glow-btn-wrap.glow-btn-full {
  display: flex;
  width: 100%;
}

.glow-btn-wrap .pricing-cta {
  border: none;
}

.glow-btn-wrap .pricing-cta:hover {
  border: none;
}

/* Liquid glass — neutral/clear tint */
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px) saturate(200%);
  -webkit-backdrop-filter: blur(12px) saturate(200%);
  transition: all var(--transition-base);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.15),
    0 2px 8px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -1px 0 rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

/* Specular top highlight + slow sweep */
.btn-hero-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.1) 0%,
    rgba(255,255,255,0.03) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Slow glass sweep animation */
.btn-hero-outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  pointer-events: none;
  animation: glass-sweep 8s ease-in-out infinite;
  z-index: 2;
}

.btn-hero-outline:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  box-shadow:
    0 8px 40px rgba(0,0,0,0.2),
    0 4px 16px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -1px 0 rgba(255,255,255,0.06);
}

.hero-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-default);
  padding: 6px 14px;
  border-radius: 20px;
}

.platform-icon {
  width: 14px;
  height: 14px;
}

/* ── How It Works — Steps ── */

.steps-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
  padding-top: 8px;
}

/* Connecting gradient flow line — runs behind cards at icon height */
.steps-flow-line {
  position: absolute;
  top: 120px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(96,165,250,0.3) 15%,
    rgba(200,16,46,0.4) 50%,
    rgba(62,199,106,0.3) 85%,
    transparent 100%
  );
  z-index: 0;
  pointer-events: none;
}

/* Glow behind the flow line */
.steps-flow-line::after {
  content: '';
  position: absolute;
  inset: -4px 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(96,165,250,0.08) 15%,
    rgba(200,16,46,0.12) 50%,
    rgba(62,199,106,0.08) 85%,
    transparent 100%
  );
  filter: blur(8px);
}

.step-card {
  position: relative;
  overflow: hidden;
  background: rgba(17, 17, 19, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), var(--shadow-sm);
  transition: border-color var(--transition-slow), transform var(--transition-slow), box-shadow var(--transition-slow);
  z-index: 1;
}

/* Top accent border — unique color per card */
.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  z-index: 2;
  pointer-events: none;
}

.step-card[data-step="1"]::before {
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.5), transparent);
}

.step-card[data-step="2"]::before {
  background: linear-gradient(90deg, transparent, rgba(200,16,46,0.6), transparent);
}

.step-card[data-step="3"]::before {
  background: linear-gradient(90deg, transparent, rgba(62,199,106,0.5), transparent);
}

/* Mouse-reactive glow */
.step-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(200,16,46,0.06),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.step-card[data-step="1"]::after {
  background: radial-gradient(
    400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(96,165,250,0.07),
    transparent 40%
  );
}

.step-card[data-step="3"]::after {
  background: radial-gradient(
    400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(62,199,106,0.06),
    transparent 40%
  );
}

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

.step-card > * {
  position: relative;
  z-index: 1;
}

.step-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 16px 48px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.04);
}

/* Featured middle card — subtle elevation */
.step-card-featured {
  background: rgba(20, 20, 23, 0.8);
  border-color: rgba(200,16,46,0.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 4px 20px rgba(0,0,0,0.2),
    0 0 0 1px rgba(200,16,46,0.04);
  transform: translateY(-4px);
}

.step-card-featured:hover {
  border-color: rgba(200,16,46,0.2);
  transform: translateY(-8px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 20px 56px rgba(0,0,0,0.4),
    0 0 40px rgba(200,16,46,0.06),
    0 0 0 1px rgba(200,16,46,0.08);
}

/* Large step numbers — the hero element of each card */
.step-num-large {
  margin-bottom: 20px;
}

.step-num-gradient {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  user-select: none;
}

/* Per-card number color accents on hover */
.step-card[data-step="1"]:hover .step-num-gradient {
  background: linear-gradient(180deg, rgba(96,165,250,0.35) 0%, rgba(96,165,250,0.1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.step-card[data-step="2"]:hover .step-num-gradient {
  background: linear-gradient(180deg, rgba(240,86,106,0.4) 0%, rgba(200,16,46,0.12) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.step-card[data-step="3"]:hover .step-num-gradient {
  background: linear-gradient(180deg, rgba(62,199,106,0.35) 0%, rgba(62,199,106,0.1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.step-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background: var(--red-surface);
  border: 1px solid rgba(200,16,46,0.12);
  margin-bottom: 24px;
  transition: border-color var(--transition-slow), box-shadow var(--transition-slow);
}

/* Per-card icon wrap color */
.step-card[data-step="1"] .step-icon-wrap {
  background: var(--blue-surface);
  border-color: rgba(96,165,250,0.12);
}

.step-card[data-step="1"] .step-icon {
  color: var(--blue-text);
}

.step-card[data-step="3"] .step-icon-wrap {
  background: var(--green-surface);
  border-color: rgba(62,199,106,0.12);
}

.step-card[data-step="3"] .step-icon {
  color: var(--green-text);
}

.step-card:hover .step-icon-wrap {
  box-shadow: 0 0 20px rgba(200,16,46,0.1);
}

.step-card[data-step="1"]:hover .step-icon-wrap {
  box-shadow: 0 0 20px rgba(96,165,250,0.1);
}

.step-card[data-step="3"]:hover .step-icon-wrap {
  box-shadow: 0 0 20px rgba(62,199,106,0.1);
}

.step-icon {
  width: 26px;
  height: 26px;
  color: var(--red-text);
}

.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Features Grid ── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  background: rgba(17, 17, 19, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: border-color var(--transition-slow), transform var(--transition-slow), box-shadow var(--transition-slow);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(200,16,46,0.08),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  border-color: rgba(200,16,46,0.15);
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(200,16,46,0.06);
}

.feature-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--red-surface);
  border: 1px solid rgba(200,16,46,0.1);
  margin-bottom: 20px;
}

.feature-icon-wrap .feature-icon {
  color: var(--red-text);
}

.feature-icon-wrap.feature-icon-blue {
  background: var(--blue-surface);
  border-color: rgba(62,111,199,0.1);
}

.feature-icon-wrap.feature-icon-blue .feature-icon {
  color: var(--blue-text);
}

.feature-icon-wrap.feature-icon-green {
  background: var(--green-surface);
  border-color: rgba(62,199,106,0.1);
}

.feature-icon-wrap.feature-icon-green .feature-icon {
  color: var(--green-text);
}

.feature-icon-wrap.feature-icon-yellow {
  background: var(--yellow-surface);
  border-color: rgba(199,163,62,0.1);
}

.feature-icon-wrap.feature-icon-yellow .feature-icon {
  color: var(--yellow-text);
}

.feature-icon {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Social Proof / Stats ── */

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.proof-stat {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 32px 20px;
  background: rgba(17, 17, 19, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: border-color var(--transition-slow), box-shadow var(--transition-slow);
}

.proof-stat::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(199,163,62,0.07),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.proof-stat:hover::after {
  opacity: 1;
}

.proof-stat > * {
  position: relative;
  z-index: 1;
}

.proof-stat:hover {
  border-color: rgba(199,163,62,0.1);
}

.proof-number {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
  transition: transform 0.3s ease;
}

.proof-stat:hover .proof-number {
  transform: scale(1.05);
}

.proof-stat:nth-child(1) .proof-number { color: var(--blue-text); }
.proof-stat:nth-child(2) .proof-number { color: var(--green-text); }
.proof-stat:nth-child(3) .proof-number { color: var(--yellow-text); }
.proof-stat:nth-child(4) .proof-number { color: var(--red-text); }

.proof-label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── Testimonials Columns (vertical marquee) ── */

.testimonials-columns {
  display: flex;
  gap: 20px;
  justify-content: center;
  height: 500px;
  overflow: hidden;
  -webkit-mask-image:
    linear-gradient(180deg, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image:
    linear-gradient(180deg, transparent 0%, black 15%, black 85%, transparent 100%);
}

.testimonials-col {
  display: flex;
  flex-direction: column;
  width: 340px;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonials-col-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
  animation: tc-scroll-up 30s linear infinite;
}

.testimonials-col.reverse .testimonials-col-inner {
  animation: tc-scroll-down 35s linear infinite;
}

.testimonials-col.slow .testimonials-col-inner {
  animation: tc-scroll-up 40s linear infinite;
}

@keyframes tc-scroll-up {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes tc-scroll-down {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

.tc-card {
  background: rgba(17, 17, 19, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 2px 8px rgba(0,0,0,0.3);
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.tc-card:hover {
  border-color: var(--border-strong);
  transform: scale(1.02);
}

.tc-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

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

.tc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-surface), rgba(200,16,46,0.18));
  border: 1px solid rgba(200,16,46,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--red-text);
  flex-shrink: 0;
}

.tc-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.tc-role {
  font-size: 11px;
  color: var(--text-tertiary);
}

/* ── Pricing ── */

.shine-border {
  position: relative;
  max-width: 480px;
  margin: 64px auto 0;
  padding: 1px;
  border-radius: calc(var(--radius-xl) + 1px);
  background: conic-gradient(from var(--shine-angle), var(--red), transparent 25%, transparent 50%, var(--blue-text) 75%, transparent);
  animation: shine-rotate 4s linear infinite;
}

.shine-border .pricing-card {
  max-width: none;
  margin: 0;
  border: none;
  border-top: none;
  background: #111113;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), var(--shadow-lg);
}

.pricing-card {
  max-width: 480px;
  margin: 64px auto 0;
  background: rgba(17, 17, 19, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-default);
  border-top: 1px solid rgba(200,16,46,0.25);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), var(--shadow-lg), 0 -1px 20px rgba(200,16,46,0.06);
  position: relative;
  overflow: hidden;
}

.pricing-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(200,16,46,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--red-text);
  background: var(--red-surface);
  border: 1px solid rgba(200,16,46,0.15);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
  position: relative;
}

.pricing-amount {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 4px;
  position: relative;
}

.pricing-dollar {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0;
  vertical-align: top;
  position: relative;
  top: 8px;
  margin-right: 2px;
  color: var(--text-secondary);
}

.pricing-period {
  font-size: 15px;
  color: var(--text-tertiary);
  margin-bottom: 32px;
}

.pricing-divider {
  height: 1px;
  background: var(--border-default);
  margin: 0 0 28px;
}

.pricing-list {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-check {
  width: 16px;
  height: 16px;
  color: var(--green-text);
  flex-shrink: 0;
}

/* Liquid glass — red tint (full-width pricing) */
.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background:
    linear-gradient(180deg, rgba(220,20,50,0.78) 0%, rgba(180,14,38,0.68) 100%);
  backdrop-filter: blur(12px) saturate(220%);
  -webkit-backdrop-filter: blur(12px) saturate(220%);
  color: #fff;
  padding: 14px 40px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.18);
  transition: all var(--transition-base);
  box-shadow:
    0 8px 32px rgba(200,16,46,0.2),
    0 2px 8px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -1px 0 rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

/* Specular top highlight */
.pricing-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.06) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.pricing-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: none;
  z-index: 2;
}

.pricing-cta:hover::after {
  animation: btn-shine 0.6s ease forwards;
}

.pricing-cta:hover {
  background:
    linear-gradient(180deg, rgba(230,22,55,0.85) 0%, rgba(190,16,42,0.75) 100%);
  border-color: rgba(255,255,255,0.25);
  box-shadow:
    0 8px 40px rgba(200,16,46,0.3),
    0 4px 16px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(255,255,255,0.08);
}

.pricing-cta:active {
  transform: scale(0.98);
}

.pricing-footnote {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ── FAQ ── */

.faq-list {
  max-width: 700px;
  margin-top: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--border-default);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-default);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition-base);
}

.faq-trigger:hover {
  color: var(--red-text);
}

.faq-chevron {
  width: 18px;
  height: 18px;
  color: var(--text-tertiary);
  flex-shrink: 0;
  transition: transform var(--transition-slow);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Bottom CTA ── */

.bottom-cta {
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  padding: 140px 40px;
}

.bottom-cta-inner {
  position: relative;
  padding: 80px 40px;
  background: rgba(17, 17, 19, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.bottom-cta-glow {
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(200,16,46,0.1) 0%, rgba(200,16,46,0.03) 50%, transparent 70%);
  pointer-events: none;
}

.bottom-cta h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
}

.bottom-cta p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  position: relative;
}

.bottom-cta .btn-hero {
  position: relative;
}

/* ── Footer ── */

.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 56px 40px 36px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.footer-brand span {
  color: var(--red);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-tertiary);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition-base);
}

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

.footer-bottom {
  max-width: 1120px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 12px;
  color: var(--text-tertiary);
}

/* Ambient radial color pools — positioned light bleed for depth */
#features::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(200,16,46,0.04) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

#pricing::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -60px;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(62,111,199,0.03) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

#how-it-works::after {
  content: '';
  position: absolute;
  top: -60px;
  left: 20%;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(62,199,106,0.025) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 48px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-flow {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps-flow-line {
    display: none;
  }

  .step-card-featured {
    transform: none;
  }

  .step-card-featured:hover {
    transform: translateY(-4px);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-columns {
    height: 400px;
  }

  .testimonials-col {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 80px 20px;
  }

  .hero {
    padding: 100px 20px 80px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .hero h1 br {
    display: none;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-hero,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-platforms {
    flex-wrap: wrap;
  }

  .section-heading {
    font-size: 30px;
  }

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

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

  .proof-number {
    font-size: 28px;
  }

  .pricing-card {
    padding: 36px 24px;
  }

  .pricing-amount {
    font-size: 48px;
  }

  .bottom-cta-inner {
    padding: 48px 24px;
  }

  .bottom-cta h2 {
    font-size: 28px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 30px;
  }

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