/* ═══════════════════════════════════════════════════════════════════
   AURASPECTER — Design System & Main Stylesheet
   Style: Dark Premium SaaS (Linear / Stripe / Vercel aesthetic)
═══════════════════════════════════════════════════════════════════ */

/* ─── 1. RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; border: none; outline: none; background: none; color: inherit; }

/* ─── 2. DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-base:     #080808;
  --bg-surface:  #0d0d0d;
  --bg-elevated: #141414;
  --bg-muted:    #1a1a1a;

  /* Purple System */
  --purple-950:  #2d0456;
  --purple-900:  #3d0578;
  --purple-core: #5908AB;
  --purple-700:  #7B2FD4;
  --purple-500:  #9B4FF0;
  --purple-400:  #b572ff;
  --purple-glow: rgba(89, 8, 171, 0.5);
  --purple-soft: rgba(89, 8, 171, 0.12);
  --purple-dim:  rgba(89, 8, 171, 0.06);

  /* Text */
  --text-100: #FAFAFA;
  --text-200: #D1D1D1;
  --text-300: #888888;
  --text-400: #555555;
  --text-500: #2e2e2e;

  /* Borders */
  --border-100: rgba(255, 255, 255, 0.08);
  --border-200: rgba(255, 255, 255, 0.04);
  --border-purple: rgba(89, 8, 171, 0.35);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radius */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-full: 9999px;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --d-fast: 120ms;
  --d-base: 220ms;
  --d-slow: 380ms;
}

/* ─── 3. BASE ─────────────────────────────────────────────────── */
body {
  font-family: var(--font);
  background: var(--bg-base);
  color: var(--text-100);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 1.4s ease;
}

/* ─── 4. TYPOGRAPHY SCALE ─────────────────────────────────────── */
.t-display {
  font-size: clamp(3.25rem, 9vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.93;
}
.t-h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
}
.t-h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.t-h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.t-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-300);
}
.t-sm {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-300);
}
.t-xs {
  font-size: 0.8125rem;
  line-height: 1.5;
}
.t-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Gradient text */
.text-gradient {
  background: linear-gradient(125deg, #ffffff 0%, #d4a8ff 40%, var(--purple-500) 80%, var(--purple-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-purple { color: var(--purple-400); }
.text-muted  { color: var(--text-300); }
.text-dim    { color: var(--text-400); }

/* ─── 5. LAYOUT ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-sm {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-lg {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 7rem 0;
  position: relative;
}
.section-sm { padding: 5rem 0; }
.section-center { text-align: center; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  color: var(--purple-400);
}
.section-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--purple-400);
}

/* ─── 6. VISUAL EFFECTS ───────────────────────────────────────── */

/* Noise texture via SVG filter */
.noise-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Aurora orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.orb--core   { background: radial-gradient(ellipse, rgba(89,8,171,.55)   0%, rgba(89,8,171,.08)  60%, transparent 100%); }
.orb--violet { background: radial-gradient(ellipse, rgba(130,40,230,.35) 0%, rgba(100,20,200,.05) 65%, transparent 100%); }
.orb--deep   { background: radial-gradient(ellipse, rgba(50,0,120,.45)  0%, transparent 70%); }
.orb--pink   { background: radial-gradient(ellipse, rgba(180,60,255,.2) 0%, transparent 60%); }

/* Glass morphism */
.glass {
  background: rgba(255,255,255,.025);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-100);
}
.glass-strong {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255,255,255,.07);
}

/* Gradient border via pseudo-element */
.border-gradient {
  position: relative;
}
.border-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(89,8,171,.7) 0%, transparent 40%, rgba(89,8,171,.35) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Ambient glow */
.glow-purple {
  box-shadow: 0 0 60px rgba(89,8,171,.28), 0 0 120px rgba(89,8,171,.1);
}
.glow-btn {
  box-shadow: 0 0 0 rgba(89,8,171,0);
  transition: box-shadow var(--d-base) var(--ease-out);
}
.glow-btn:hover {
  box-shadow: 0 0 40px rgba(89,8,171,.55), 0 0 80px rgba(89,8,171,.2);
}

/* Floating gradient mesh */
.mesh-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 10% 40%, rgba(89,8,171,.13) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(130,40,230,.09) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(50,0,140,.1) 0%, transparent 60%);
}

/* Horizontal rule */
.hr { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--border-100), transparent); }

/* ─── 7. COMPONENTS ───────────────────────────────────────────── */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.625rem;
  border-radius: var(--r-full);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all var(--d-base) var(--ease-out);
  white-space: nowrap;
  position: relative;
  text-decoration: none;
}
.btn-primary {
  background: var(--purple-core);
  color: #fff;
}
.btn-primary:hover {
  background: var(--purple-700);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,.05);
  color: var(--text-200);
  border: 1px solid var(--border-100);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  transform: translateY(-1px);
}

.btn-lg { padding: 1.0625rem 2.125rem; font-size: 1rem; }
.btn-sm { padding: 0.5625rem 1.125rem; font-size: 0.8125rem; }
.btn-full { width: 100%; }

/* Badge / Pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3125rem 0.875rem;
  border-radius: var(--r-full);
  background: rgba(89,8,171,.14);
  border: 1px solid rgba(89,8,171,.28);
  color: var(--purple-400);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple-400);
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .35; }
}

/* Card base */
.card {
  border-radius: var(--r-xl);
  border: 1px solid var(--border-100);
  background: rgba(255,255,255,.018);
  transition: border-color var(--d-base), background var(--d-base), transform var(--d-base) var(--ease-out), box-shadow var(--d-base);
}
.card:hover {
  border-color: var(--border-purple);
  background: var(--purple-dim);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(89,8,171,.1);
}

/* Stat chip */
.stat { text-align: center; }
.stat-number {
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-100);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-400);
  margin-top: 0.25rem;
  letter-spacing: 0.04em;
}

/* Icon box */
.icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--purple-soft);
  border: 1px solid var(--border-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* ─── 8. NAVIGATION ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.125rem 0;
  transition: background var(--d-base), border-color var(--d-base), backdrop-filter var(--d-base);
}
.nav.is-scrolled {
  background: rgba(8,8,8,.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-200);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-100);
  flex-shrink: 0;
}
.logo span { color: var(--purple-400); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9375rem;
  color: var(--text-300);
  transition: color var(--d-fast);
}
.nav-links a:hover { color: var(--text-100); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.375rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-100);
  border-radius: 2px;
  transition: all var(--d-base) var(--ease-out);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--bg-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--d-base) var(--ease-out), transform var(--d-base) var(--ease-out);
}
.nav-drawer.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-drawer a {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-300);
  transition: color var(--d-fast);
}
.nav-drawer a:hover { color: var(--text-100); }

/* ─── 9. HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 9rem 0 5rem;
  text-align: center;
}

/* Aurora background */
.hero-aurora { position: absolute; inset: 0; pointer-events: none; }

.hero-orb-1 {
  width: 900px; height: 700px;
  top: -260px; left: 50%; transform: translateX(-50%);
  filter: blur(100px);
  animation: drift1 22s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  top: 5%; left: -120px;
  filter: blur(80px);
  animation: drift2 17s ease-in-out infinite alternate;
}
.hero-orb-3 {
  width: 360px; height: 360px;
  bottom: 5%; right: -80px;
  filter: blur(70px);
  animation: drift3 20s ease-in-out infinite alternate;
}
@keyframes drift1 {
  from { transform: translateX(-50%) translateY(0) scale(1); }
  to   { transform: translateX(-48%) translateY(40px) scale(1.08); }
}
@keyframes drift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(50px, 30px) scale(1.12); }
}
@keyframes drift3 {
  from { transform: translate(0, 0); }
  to   { transform: translate(-30px, -40px); }
}

/* Dot grid */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero-pill { margin-bottom: 2.25rem; }

.hero-title {
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: clamp(1.0625rem, 2.2vw, 1.3125rem);
  color: var(--text-300);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-200);
  flex-wrap: wrap;
}
.hero-stats-divider {
  width: 1px; height: 28px;
  background: var(--border-100);
}

/* ─── 10. PROBLEM ─────────────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
  margin: 3.5rem 0;
}
.problem-card {
  padding: 1.5rem 1.75rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-200);
  background: rgba(255,255,255,.018);
  transition: border-color var(--d-base), background var(--d-base), transform var(--d-base) var(--ease-out);
}
.problem-card:hover {
  border-color: var(--border-purple);
  background: var(--purple-dim);
  transform: translateY(-2px);
}
.problem-card p {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-300);
}
.problem-reveal {
  text-align: center;
  margin-top: 1rem;
}
.problem-reveal .t-h2 { color: var(--text-300); margin-bottom: 0.5rem; }
.problem-reveal .t-h2 strong { color: var(--text-100); }

/* ─── 11. HOW IT WORKS ────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
}
.step-card {
  padding: 2.25rem 2rem;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-100);
  background: rgba(255,255,255,.018);
  position: relative;
  overflow: hidden;
  transition: all var(--d-base) var(--ease-out);
}
.step-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(89,8,171,.5), transparent);
  opacity: 0;
  transition: opacity var(--d-base);
}
.step-card:hover { border-color: var(--border-purple); background: var(--purple-dim); transform: translateY(-5px); box-shadow: 0 24px 64px rgba(89,8,171,.12); }
.step-card:hover::after { opacity: 1; }

.step-num {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: rgba(89,8,171,.12);
  margin-bottom: 1rem;
  font-variant-numeric: tabular-nums;
}
.step-card .icon-box { margin-bottom: 1.5rem; }
.step-card h3 { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.step-card p  { font-size: 0.9375rem; color: var(--text-300); line-height: 1.7; }

/* ─── 12. BENEFITS ────────────────────────────────────────────── */
.benefits-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}
.bento-card {
  padding: 2rem;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-100);
  background: rgba(255,255,255,.018);
  position: relative;
  overflow: hidden;
  transition: all var(--d-base) var(--ease-out);
}
.bento-card:hover { border-color: var(--border-purple); background: var(--purple-dim); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(89,8,171,.09); }
.bento-card.span-2 { grid-column: span 2; }
.bento-card.span-3 { grid-column: span 3; }
.bento-card .emoji { font-size: 2rem; margin-bottom: 1.25rem; }
.bento-card h3 { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.018em; margin-bottom: 0.625rem; }
.bento-card p  { font-size: 0.9375rem; color: var(--text-300); line-height: 1.7; }

/* Featured bento accent */
.bento-featured {
  border-color: var(--border-purple);
  background: linear-gradient(135deg, rgba(89,8,171,.1) 0%, rgba(89,8,171,.04) 100%);
}
.bento-featured::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(89,8,171,.3) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── 13. SECTORS ─────────────────────────────────────────────── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}
.sector-card {
  display: block;
  padding: 2.25rem 2rem;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-100);
  background: rgba(255,255,255,.018);
  text-decoration: none;
  transition: all var(--d-base) var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.sector-card:hover {
  border-color: var(--border-purple);
  background: var(--purple-dim);
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(89,8,171,.12);
}
.sector-card::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(89,8,171,.1) 0%, transparent 70%);
  transition: opacity var(--d-base);
  opacity: 0;
}
.sector-card:hover::before { opacity: 1; }
.sector-emoji { font-size: 2.75rem; margin-bottom: 1.25rem; }
.sector-name  { font-size: 1.375rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.625rem; }
.sector-desc  { font-size: 0.9375rem; color: var(--text-300); line-height: 1.65; margin-bottom: 1.25rem; }
.sector-cta   { font-size: 0.9375rem; font-weight: 600; color: var(--purple-400); display: flex; align-items: center; gap: 0.375rem; }
.sector-cta svg { transition: transform var(--d-fast); }
.sector-card:hover .sector-cta svg { transform: translateX(4px); }

/* ─── 14. PRICING ─────────────────────────────────────────────── */
.pricing-section {
  position: relative;
  overflow: hidden;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-card {
  padding: 2.5rem 2.25rem;
  border-radius: var(--r-2xl);
  border: 1px solid var(--border-100);
  background: rgba(255,255,255,.02);
  position: relative;
  overflow: hidden;
}
.pricing-card.is-featured {
  border-color: var(--border-purple);
  background: linear-gradient(145deg, rgba(89,8,171,.1) 0%, rgba(89,8,171,.03) 100%);
}
.pricing-card.is-featured .border-gradient::before { opacity: 1; }
.pricing-plan-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-400);
  margin-bottom: 1.5rem;
}
.pricing-plan-name.is-featured { color: var(--purple-400); }
.pricing-price-wrap { margin-bottom: 2rem; }
.pricing-amount {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-100);
}
.pricing-currency { font-size: 1.25rem; font-weight: 600; vertical-align: super; margin-right: 1px; color: var(--text-300); }
.pricing-per { font-size: 0.875rem; color: var(--text-400); margin-top: 0.375rem; }
.pricing-divider { height: 1px; background: var(--border-200); margin: 2rem 0; }
.pricing-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-300);
}
.feature-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--purple-soft);
  border: 1px solid var(--border-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  color: var(--purple-400);
  flex-shrink: 0;
}
.pricing-coming-soon-body { padding: 4rem 2rem; text-align: center; }
.pricing-coming-soon-body .t-h3 { color: var(--text-400); margin-bottom: 0.75rem; }
.pricing-coming-soon-body p { font-size: 0.9375rem; color: var(--text-400); }

/* ─── 15. ABOUT ───────────────────────────────────────────────── */
.about-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* ─── 16. CONTACT ─────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-form {
  padding: 2.5rem;
  border-radius: var(--r-2xl);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-300);
}
.form-control {
  padding: 0.875rem 1.125rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-100);
  border-radius: var(--r-md);
  color: var(--text-100);
  font-size: 0.9375rem;
  transition: border-color var(--d-fast), background var(--d-fast), box-shadow var(--d-fast);
  width: 100%;
}
.form-control:focus {
  border-color: var(--border-purple);
  background: rgba(89,8,171,.04);
  box-shadow: 0 0 0 3px rgba(89,8,171,.1);
}
.form-control::placeholder { color: var(--text-400); }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control option { background: var(--bg-surface); color: var(--text-100); }

.contact-points { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.contact-point {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--text-300);
}
.contact-point-check { color: var(--purple-400); font-size: 0.875rem; }

/* ─── 17. FAQ ─────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 4rem;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  border: 1px solid var(--border-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--d-fast);
}
.faq-item.is-open { border-color: var(--border-purple); }
.faq-toggle {
  width: 100%;
  text-align: left;
  padding: 1.375rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-100);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.02);
  transition: background var(--d-fast);
}
.faq-toggle:hover { background: rgba(255,255,255,.03); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--text-300);
  transition: all var(--d-base) var(--ease-out);
}
.faq-item.is-open .faq-icon { border-color: var(--purple-500); color: var(--purple-400); transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--d-slow) var(--ease-out);
}
.faq-item.is-open .faq-body { max-height: 320px; }
.faq-body p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-300);
  line-height: 1.8;
}

/* ─── 18. FOOTER ──────────────────────────────────────────────── */
.footer {
  padding: 5rem 0 3rem;
  border-top: 1px solid var(--border-200);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.9375rem;
  color: var(--text-400);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 220px;
}
.footer-col-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-400);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  font-size: 0.9375rem;
  color: var(--text-300);
  transition: color var(--d-fast);
}
.footer-links a:hover { color: var(--text-100); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-200);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.875rem; color: var(--text-400); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.875rem; color: var(--text-400); transition: color var(--d-fast); }
.footer-legal a:hover { color: var(--text-300); }

/* ─── 19. SCROLL ANIMATIONS ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

.fade-up[data-delay="1"] { transition-delay: 0.1s; }
.fade-up[data-delay="2"] { transition-delay: 0.2s; }
.fade-up[data-delay="3"] { transition-delay: 0.3s; }
.fade-up[data-delay="4"] { transition-delay: 0.4s; }
.fade-up[data-delay="5"] { transition-delay: 0.5s; }

/* Clip-path sweep — used on body copy instead of fade-up.
   Rides on the same .is-visible trigger as its fade-up ancestor. */
.clip-reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.85s var(--ease-out) 0.12s;
}
.fade-up.is-visible .clip-reveal,
.clip-reveal.is-visible {
  clip-path: inset(0 0 0% 0);
}

/* ─── 20. RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .steps-grid     { grid-template-columns: 1fr; }
  .benefits-bento { grid-template-columns: 1fr 1fr; }
  .bento-card.span-3 { grid-column: span 2; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right > .btn { display: none; }
  .hamburger { display: flex; }
  .section { padding: 5rem 0; }
  .hero { padding: 7rem 0 4rem; }
  .steps-grid    { grid-template-columns: 1fr; }
  .problem-grid  { grid-template-columns: 1fr; }
  .benefits-bento { grid-template-columns: 1fr; }
  .bento-card.span-2, .bento-card.span-3 { grid-column: span 1; }
  .sectors-grid  { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-stats    { gap: 1rem; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .btn-lg { padding: 1rem 1.5rem; }
}

/* ─── 20b. SUBPAGE STYLES ────────────────────────────────────── */
.subpage-hero {
  position: relative;
  padding: 10rem 0 6rem;
  overflow: hidden;
}
.subpage-hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 800px;
  height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(89,8,171,.22) 0%, transparent 68%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.subpage-hero-content { position: relative; z-index: 1; max-width: 780px; }
.subpage-h1 {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #fff;
  margin: 1.25rem 0 1.5rem;
}
.subpage-lead {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--text-300);
  line-height: 1.65;
  max-width: 58ch;
  margin-bottom: 2.5rem;
}
.subpage-cta  { display: flex; gap: 1rem; flex-wrap: wrap; }
.subpage-section-lead {
  font-size: 1.0625rem;
  color: var(--text-300);
  line-height: 1.75;
  max-width: 62ch;
  margin-top: 1.5rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: var(--text-400);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--text-400); transition: color var(--d-fast); }
.breadcrumb a:hover { color: var(--text-200); }

/* Problems 3-up grid */
.problem-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.problem-card {
  padding: 2rem;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.problem-card-icon { font-size: 2rem; }
.problem-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-100);
  letter-spacing: -0.01em;
}
.problem-card-body {
  font-size: .9375rem;
  color: var(--text-300);
  line-height: 1.65;
}

/* Benefits list (restaurants) */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-100);
  margin-top: 3rem;
}
.benefit-item {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-100);
}
.benefit-num { font-size: 1.25rem; color: var(--purple-400); font-weight: 700; padding-top: .15rem; }
.benefit-title { font-size: 1.0625rem; font-weight: 600; color: var(--text-100); margin-bottom: .5rem; }
.benefit-body { font-size: .9375rem; color: var(--text-300); line-height: 1.65; }

/* CTA final section */
.cta-final { border-top: 1px solid var(--border-100); }

@media (max-width: 768px) {
  .subpage-hero { padding: 8rem 0 4rem; }
  .problem-grid-3 { grid-template-columns: 1fr; }
  .subpage-cta { flex-direction: column; }
  .benefit-item { grid-template-columns: 1.5rem 1fr; gap: 1rem; }
}

/* ─── 20c. BLOG & ARTICLE STYLES ─────────────────────────────── */
.container-article { max-width: 780px; }

/* Blog index cards */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 2rem;
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: transform var(--d-fast), box-shadow var(--d-fast);
}
.blog-card--featured:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(89,8,171,.18); }
.blog-card--coming { opacity: .6; cursor: default; }
.blog-card-meta { display: flex; align-items: center; gap: .75rem; }
.blog-tag {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--purple-400);
  background: rgba(89,8,171,.15);
  border: 1px solid rgba(89,8,171,.25);
  padding: .2rem .65rem;
  border-radius: 2rem;
}
.blog-read-time { font-size: .8125rem; color: var(--text-400); }
.blog-coming { font-size: .8125rem; color: var(--text-400); font-style: italic; }
.blog-card-title { font-size: 1.125rem; font-weight: 700; color: var(--text-100); letter-spacing: -.02em; line-height: 1.3; }
.blog-card-excerpt { font-size: .9375rem; color: var(--text-300); line-height: 1.6; flex: 1; }
.blog-card-cta { font-size: .875rem; color: var(--purple-400); font-weight: 600; margin-top: auto; }
.blog-section-title { font-size: 1.25rem; font-weight: 700; color: var(--text-200); margin-bottom: 1.5rem; letter-spacing: -.02em; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.blog-related {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Article layout */
.article-hero { padding: 9rem 0 4rem; }
.article-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.article-date, .article-read { font-size: .8125rem; color: var(--text-400); }
.article-h1 {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .95;
  color: #fff;
  margin-bottom: 1.5rem;
}
.article-lead {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--text-300);
  line-height: 1.7;
  max-width: 64ch;
}

/* Article body prose */
.article-body { padding-bottom: 5rem; }
.article-body h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text-100);
  margin: 3rem 0 1.25rem;
  padding-top: 1rem;
}
.article-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-100);
  margin: 2rem 0 .75rem;
}
.article-body p {
  font-size: 1rem;
  color: var(--text-300);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 70ch;
}
.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.article-body li {
  font-size: 1rem;
  color: var(--text-300);
  line-height: 1.7;
  margin-bottom: .5rem;
}
.article-body a { color: var(--purple-400); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--text-100); }
.article-body strong { color: var(--text-100); font-weight: 600; }
.article-body em { color: var(--text-200); }

/* TOC */
.article-toc { padding: 1.5rem 2rem; margin: 2rem 0 3rem; border-radius: var(--r-lg); }
.article-toc-title { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--purple-400); margin-bottom: 1rem; }
.article-toc-list { padding-left: 1.25rem; }
.article-toc-list li { font-size: .9375rem; color: var(--text-300); margin-bottom: .5rem; }
.article-toc-list a { color: var(--text-300); text-decoration: none; transition: color var(--d-fast); }
.article-toc-list a:hover { color: var(--text-100); }

/* Callout */
.article-callout {
  padding: 1.5rem 2rem;
  border-radius: var(--r-lg);
  border-left: 3px solid var(--purple-500);
  margin: 2.5rem 0;
  font-size: .9375rem;
  color: var(--text-200);
  line-height: 1.65;
}
.article-callout strong { display: block; color: var(--text-100); margin-bottom: .5rem; }

/* Comparison table */
.comparison-table-wrap { overflow-x: auto; margin: 2rem 0; border-radius: var(--r-lg); }
.comparison-table { width: 100%; border-collapse: collapse; font-size: .9375rem; }
.comparison-table th {
  text-align: left;
  padding: .875rem 1.25rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-400);
  border-bottom: 1px solid var(--border-100);
}
.comparison-table td {
  padding: .875rem 1.25rem;
  border-bottom: 1px solid var(--border-50, rgba(255,255,255,.04));
  vertical-align: top;
  line-height: 1.5;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(odd) td { background: rgba(255,255,255,.02); }
.col-aura { background: rgba(89,8,171,.06) !important; }
.col-comp { background: rgba(255,255,255,.02) !important; }
.comparison-table th.col-aura { color: var(--purple-400); }
.good { color: var(--text-100); }
.neutral { color: var(--text-300); }
.bad { color: var(--text-400); }

/* Metrics grid (article) */
.article-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}
.article-metric { padding: 1.5rem; border-radius: var(--r-lg); }
.metric-num { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--purple-400); margin-bottom: .75rem; }
.metric-title { font-size: 1rem; font-weight: 700; color: var(--text-100); margin-bottom: .5rem; }
.article-metric p { font-size: .9375rem; color: var(--text-300); line-height: 1.6; margin: 0; }

/* Cases */
.article-cases { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 2rem 0; }
.article-case { padding: 1.5rem; border-radius: var(--r-lg); }
.case-title { font-size: 1rem; font-weight: 700; color: var(--text-100); margin-bottom: .75rem; }
.article-case p { font-size: .9375rem; color: var(--text-300); line-height: 1.65; margin: 0; }

/* Article CTA */
.article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--r-lg);
  margin: 3rem 0;
  flex-wrap: wrap;
}
.article-cta-title { display: block; font-size: 1.0625rem; font-weight: 700; color: var(--text-100); margin-bottom: .35rem; }
.article-cta p { font-size: .9375rem; color: var(--text-300); margin: 0; }

@media (max-width: 768px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-related { grid-template-columns: 1fr; }
  .article-metrics { grid-template-columns: 1fr; }
  .article-cases { grid-template-columns: 1fr; }
  .article-cta { flex-direction: column; align-items: flex-start; }
  .comparison-table th, .comparison-table td { padding: .625rem .875rem; font-size: .875rem; }
}

/* ─── 20d. UTILITY ────────────────────────────────────────────── */
.t-link { color: var(--purple-400); text-decoration: none; transition: color .2s; }
.t-link:hover { color: var(--purple-300); text-decoration: underline; }
.subpage-section-lead { font-size: clamp(.9375rem, 1.6vw, 1.125rem); color: var(--text-300); line-height: 1.7; max-width: 66ch; margin-top: 1.25rem; }

/* ─── 21. CUSTOM CURSOR ───────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .25s cubic-bezier(.16,1,.3,1), height .25s cubic-bezier(.16,1,.3,1), opacity .2s ease;
}
.cursor-dot.is-active { width: 44px; height: 44px; }
.cursor-dot.is-hidden  { opacity: 0; }

.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(89,8,171,.30) 0%, rgba(89,8,171,.10) 40%, transparent 72%);
  filter: blur(8px);
  opacity: .65;
  mix-blend-mode: screen;
  transition: opacity .3s ease, width .4s ease, height .4s ease;
}
.cursor-glow.is-active { width: 480px; height: 480px; opacity: .9; }
.cursor-glow.is-hidden  { opacity: 0; }

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button {
  cursor: none;
}
body.has-custom-cursor input,
body.has-custom-cursor textarea,
body.has-custom-cursor select {
  cursor: auto;
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-glow { display: none; }
}

/* ─── 22. MARQUEE ─────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border-100);
  border-bottom: 1px solid var(--border-100);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-size: clamp(.95rem, 1.6vw, 1.25rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-300);
  white-space: nowrap;
  padding: 0 .5rem;
}
.marquee-sep {
  color: var(--purple-core);
  opacity: .6;
  font-size: 1.1rem;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── 22. LOGIN PAGE ─────────────────────────────────────────── */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
  background: #000;
}
/* Override scene-stage sticky — login has no scroll space */
.login-page .scene-stage {
  position: absolute !important;
  inset: 0 !important;
  height: 100% !important;
  z-index: 0;
}
/* Orbs stay full-size always (no scroll triggers) */
.login-page #scene-0 {
  position: absolute;
  inset: 0;
  opacity: 1;
  transform: none;
  pointer-events: none;
}
.login-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 700px;
  height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(89,8,171,.3) 0%, transparent 65%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.login-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  padding: 2.75rem 2.5rem 2.5rem;
  border-radius: var(--r-2xl);
}
.login-logo-wrap { margin-bottom: 2.25rem; }
.login-logo {
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: -.03em;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}
.login-logo span { color: var(--purple-400); }
.login-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--purple-400);
  background: rgba(89,8,171,.12);
  border: 1px solid rgba(89,8,171,.22);
  border-radius: 2rem;
  padding: .2rem .7rem;
  margin-bottom: 1.25rem;
}
.login-badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--purple-400);
  box-shadow: 0 0 6px var(--purple-400);
  animation: blink 2s ease-in-out infinite;
}
.login-title {
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .95;
  color: var(--text-100);
  margin-bottom: .625rem;
}
.login-subtitle {
  font-size: .9375rem;
  color: var(--text-300);
  line-height: 1.55;
  margin-bottom: 2.25rem;
}
.login-submit { margin-top: 1.75rem; }
.login-forgot {
  display: block;
  text-align: right;
  font-size: .8125rem;
  color: var(--text-400);
  text-decoration: none;
  margin-top: .5rem;
  transition: color var(--d-fast);
}
.login-forgot:hover { color: var(--purple-400); }
.login-or {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.75rem 0;
}
.login-or::before,
.login-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-100);
}
.login-or-text {
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-400);
  white-space: nowrap;
}
.login-footer {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-100);
  text-align: center;
  font-size: .8125rem;
  color: var(--text-400);
}
.login-footer a {
  color: var(--purple-400);
  text-decoration: none;
  font-weight: 500;
}
.login-footer a:hover { text-decoration: underline; }

/* Tabs: Iniciar sesión / Crear cuenta */
.login-tabs {
  display: flex;
  gap: .25rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-100);
  border-radius: var(--r-lg);
  padding: .25rem;
  margin-bottom: 1.75rem;
}
.login-tab {
  flex: 1;
  text-align: center;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-400);
  background: transparent;
  border: none;
  border-radius: calc(var(--r-lg) - .25rem);
  padding: .55rem .75rem;
  cursor: pointer;
  transition: color var(--d-fast), background var(--d-fast);
}
.login-tab:hover { color: var(--text-200); }
.login-tab.is-active {
  color: #fff;
  background: rgba(89,8,171,.55);
}

/* Botón "Continuar con Google" */
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  width: 100%;
  background: #fff;
  color: #1f1f1f;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: .9375rem;
  border-radius: var(--r-md);
  padding: .8rem 1rem;
  cursor: pointer;
  transition: background var(--d-fast), transform var(--d-fast);
}
.btn-google:hover { background: #f1f1f1; }
.btn-google:active { transform: scale(.98); }
.btn-google svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── 22b. DESCARGAR EDGE ─────────────────────────────────────── */
.download-layout {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 380px);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.download-steps { margin-top: 0; }

.download-card {
  padding: 2.25rem 2rem;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-purple);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.download-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% 0%, var(--purple-soft), transparent 60%);
  pointer-events: none;
}
.download-card-badge {
  width: 58px; height: 58px;
  margin: 0 auto 1.1rem;
  display: grid; place-items: center;
  border-radius: var(--r-lg);
  background: var(--purple-soft);
  border: 1px solid var(--border-purple);
  color: var(--purple-400);
}
.download-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-100);
  letter-spacing: -0.02em;
}
.download-card-sub {
  font-size: .875rem;
  color: var(--text-300);
  margin: .35rem 0 1.5rem;
}
.download-card .btn { position: relative; z-index: 1; }
.download-reqs {
  margin: 1.5rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border-100);
  display: grid;
  gap: .6rem;
  text-align: left;
}
.download-reqs li {
  font-size: .875rem;
  color: var(--text-200);
  padding-left: 1.6rem;
  position: relative;
}
.download-reqs li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--purple-400);
  font-weight: 700;
}
.download-note {
  margin-top: 1.4rem;
  font-size: .8125rem;
  color: var(--text-300);
}
.download-note a { color: var(--purple-400); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 860px) {
  .download-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .download-card { order: -1; }
}

/* ─── 23. ACCESSIBILITY ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
:focus-visible {
  outline: 2px solid var(--purple-500);
  outline-offset: 3px;
  border-radius: 3px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
