﻿/* ===== THEME SYSTEM =====
   Two themes — dark (default, Hornyt premium-luxury identity) and light (OF-style SaaS, clean).
   :root holds fonts + dark fallback so the site renders correctly even before JS sets data-theme.
   --pink is semantic ("primary accent"), it shifts to OF-blue on light theme.
   On light theme, --white is repurposed as the primary dark text color (the "strongest fg"). */
:root {
  --display: "Fraunces", "Georgia", serif;
  --body: "Geist", "Inter", system-ui, sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", monospace;

  /* ===== DARK THEME (default) ===== */
  /* Backgrounds — deeper, neutral near-black (neon pops harder, content floats) */
  --bg: #09090B;
  --bg-alt: #0E0E12;
  --surface: #111115;
  --surface-2: #17171D;
  /* Accents — softer rose + less-saturated purple (premium SaaS, not crypto-2021) */
  --pink: #EC4899;
  --pink-soft: #F472B6;
  --pink-glow: rgba(236, 72, 153, 0.30);   /* glow alpha cut ~45% */
  --magenta: #A855F7;
  --coral: #FB923C;
  --gold: #D4A574;
  --gold-soft: #E5C098;
  --gold-glow: rgba(212, 165, 116, 0.24);  /* glow alpha cut ~45% */
  /* Text — neutral whites with a clear secondary/tertiary hierarchy */
  --white: #F5F5F5;
  --text: rgba(245, 245, 245, 0.92);
  --muted: rgba(245, 245, 245, 0.62);
  --muted-2: rgba(245, 245, 245, 0.40);
  /* Borders — much subtler, neutral (no more pink outlines everywhere) */
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);
  --grid: rgba(255, 255, 255, 0.018);
}

/* Smooth theme transition — only on properties that need it. Avoiding `*`
   transitions to prevent perf hits during scroll. */
html { transition: background-color 220ms ease, color 220ms ease; }
body, .nav, .feature-card, .more-chip, .sc-card, .psy-card, .pricing-tier,
.compare-table, .compare-table th, .compare-table td, .faq-item,
.apply-step, .live-chat, .chat-head, .arch-visual {
  transition: background-color 220ms ease, border-color 220ms ease,
              color 180ms ease, box-shadow 220ms ease;
}

[data-theme="light"] {
  /* ===== LIGHT THEME (OF-blue SaaS, substy-flavored) ===== */
  /* Typography — swap Fraunces serif for Geist sans-serif to match the
     cleaner SaaS feel. Italic emphasis comes from Geist's italic + lighter
     weight, not from a serif. */
  --display: "Geist", "Inter", system-ui, sans-serif;
  /* Backgrounds — white-first SaaS, off-white for surfaces to create gentle depth */
  --bg: #FFFFFF;
  --bg-alt: #FAFBFC;
  --surface: #FFFFFF;
  --surface-2: #F4F6F9;
  /* Accents — primary shifts from pink to OF blue (#00AFF0 is OF's brand cyan).
     Magenta becomes indigo (closer to corporate-SaaS palette). Gold goes a touch darker
     to keep contrast on white. Coral stays warm for emphasis. */
  --pink: #00AFF0;                            /* OF iconic blue (semantic: primary accent) */
  --pink-soft: #38BDF8;                       /* lighter sky-blue */
  --pink-glow: rgba(0, 175, 240, 0.22);
  --magenta: #6366F1;                         /* indigo for SaaS-pro variety */
  --coral: #F97316;
  --gold: #B8935A;                            /* darker gold for white-bg contrast */
  --gold-soft: #D4A574;
  --gold-glow: rgba(184, 147, 90, 0.18);
  /* Text — slate-900 hierarchy. --white is repurposed as the strongest fg on light. */
  --white: #0F172A;
  --text: rgba(15, 23, 42, 0.86);
  --muted: rgba(15, 23, 42, 0.62);
  --muted-2: rgba(15, 23, 42, 0.40);
  /* Borders — much darker alpha overlays on white */
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.18);
  --grid: rgba(15, 23, 42, 0.025);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Background atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(236, 72, 153, 0.09) 0%, transparent 48%),
    radial-gradient(ellipse at 85% 30%, rgba(168, 85, 247, 0.07) 0%, transparent 52%),
    radial-gradient(ellipse at 50% 100%, rgba(168, 85, 247, 0.04) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, header, footer { position: relative; z-index: 2; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--white);
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--pink);
  display: inline-block;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
section {
  padding: 168px 0;
  position: relative;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  background: rgba(10, 6, 8, 0.65);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease;
}
.nav.scrolled { padding: 14px 0; }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.04em;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  display: flex;
  align-items: center;
  gap: 2px;
}
.logo-flame {
  display: inline-block;
  width: 16px;
  height: 20px;
  margin: 0 1px;
  transform: translateY(2px);
  filter: drop-shadow(0 0 8px var(--pink-glow));
  animation: flicker 3s ease-in-out infinite;
}
@keyframes flicker {
  0%, 100% { transform: translateY(2px) scale(1); filter: drop-shadow(0 0 8px var(--pink-glow)); }
  50% { transform: translateY(1px) scale(1.05); filter: drop-shadow(0 0 14px var(--pink)); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--pink); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
}
.lang-toggle button {
  background: transparent;
  border: none;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 100px;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: all 0.2s;
}
.lang-toggle button.active {
  background: var(--pink);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 100px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  /* Luxury CTA: soft purple→pink gradient, restrained shadow (no neon explosion) */
  background: linear-gradient(135deg, var(--magenta), var(--pink));
  color: #fff;
  box-shadow: 0 4px 18px -8px var(--pink-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -10px var(--pink-glow);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-strong);
}
.btn svg { width: 16px; height: 16px; }

/* ===== HERO ===== */
.hero {
  padding: 220px 0 180px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  max-width: 900px;
}
.hero-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  font-variation-settings: "SOFT" 70, "opsz" 144;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 19px;
  color: var(--muted);
  max-width: 540px;
  margin: 32px 0 40px;
  opacity: 0;
  animation: rise 0.9s 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 0.9s 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero-meta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 0.9s 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* Hero visual — floating chat preview */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: rise 1.1s 0.4s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.chat-preview {
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  position: relative;
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--border),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.chat-preview::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--pink-glow), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
  position: relative;
}
.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
  position: relative;
}
.chat-avatar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  border: 2px solid var(--surface);
}
.chat-name {
  font-weight: 500;
  color: var(--white);
  font-size: 14px;
}
.chat-status {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.chat-status .live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse-pink 1.5s infinite;
}
@keyframes pulse-pink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.chat-badge {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10px;
  padding: 4px 10px;
  background: rgba(236, 72, 153, 0.12);
  color: var(--pink);
  border-radius: 100px;
  letter-spacing: 0.1em;
}
.chat-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 240px;
}
.msg {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px);
  animation: msg-in 0.4s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
@keyframes msg-in {
  to { opacity: 1; transform: translateY(0); }
}
.msg-them {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.msg-us {
  background: linear-gradient(135deg, var(--pink), #E0226B);
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  box-shadow: 0 8px 20px -6px var(--pink-glow);
}
.typing {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  display: inline-flex;
  gap: 4px;
  width: fit-content;
}
.typing span {
  width: 6px;
  height: 6px;
  background: var(--muted);
  border-radius: 50%;
  animation: bounce 1.2s infinite;
}
.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.chat-float-tag {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  color: var(--pink);
  padding: 6px 10px;
  border-radius: 8px;
  letter-spacing: 0.1em;
  z-index: 3;
  transition: opacity 0.4s ease;
}
.tag-1 {
  top: 30%;
  right: -20px;
  animation: float 4s ease-in-out infinite;
}
.tag-2 {
  bottom: 18%;
  left: -30px;
  animation: float 5s ease-in-out infinite 1s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== TICKER ===== */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 60px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
}
.ticker-item strong {
  font-family: var(--display);
  font-style: italic;
  color: var(--white);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.ticker-item .symbol { color: var(--pink); }

/* ===== SECTION HEAD ===== */
.section-head {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-title {
  font-size: clamp(36px, 5vw, 60px);
  margin: 20px 0 24px;
  font-weight: 400;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
}
.section-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== ARCHITECTURE ===== */
.arch-section { padding: 168px 0; }
.arch-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.arch-visual {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 20px 30px;
  overflow: hidden;
}
.arch-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 15%, var(--pink-glow), transparent 30%),
    radial-gradient(circle at 80% 85%, rgba(168, 85, 247, 0.25), transparent 30%);
  pointer-events: none;
  opacity: 0.3;
  filter: blur(40px);
}
.arch-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(236, 72, 153, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 72, 153, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}
.pipeline-frame-label {
  position: absolute;
  top: 14px;
  left: 20px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted-2);
  letter-spacing: 0.25em;
  z-index: 2;
}
.pipeline-svg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0 auto;
}

.arch-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.arch-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 16px;
  align-items: start;
  cursor: pointer;
  transition: padding 0.3s;
}
.arch-item:hover { padding-left: 8px; }
.arch-item-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--pink);
  padding-top: 2px;
}
.arch-item-title {
  font-family: var(--display);
  font-weight: 500;
  color: var(--white);
  font-size: 18px;
}
.arch-item-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}
.arch-item-arrow {
  color: var(--muted-2);
  font-family: var(--mono);
  transition: transform 0.3s, color 0.3s;
}
.arch-item:hover .arch-item-arrow {
  color: var(--pink);
  transform: translateX(4px);
}

/* ===== FEATURES ===== */
.features-section {
  padding: 168px 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3), transparent);
}

/* ===== SHOWCASES (3 hero blocks + chip strip) =====
   Editorial layout: alternating columns, breathing room, premium card visuals. */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  padding: 56px 0;
  position: relative;
}
.showcase + .showcase { border-top: 1px solid var(--border); }
.showcase-flipped { direction: rtl; }
.showcase-flipped > * { direction: ltr; }

.showcase-text { max-width: 480px; }
.showcase-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  display: inline-block;
  margin-bottom: 22px;
}
.showcase-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  font-variation-settings: "SOFT" 80, "opsz" 144;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}
.showcase-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
}
.showcase-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 26px;
}
.showcase-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.showcase-bullets li {
  font-size: 14px;
  color: var(--text);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.showcase-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1px;
  background: var(--pink);
}

/* Showcase visual card — generic frame shared by all 3 */
.sc-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.3s;
}
.sc-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--pink-glow), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  opacity: 0.55;
}
.sc-card > * { position: relative; z-index: 1; }
.showcase:hover .sc-card { border-color: var(--border-strong); transform: translateY(-3px); }

/* --- SC1: chat preview --- */
.sc-chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.sc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.sc-info { flex: 1; min-width: 0; }
.sc-name {
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
  letter-spacing: -0.01em;
}
.sc-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--pink);
  margin-top: 3px;
  letter-spacing: 0.05em;
}
.sc-badge {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--pink);
  letter-spacing: 0.18em;
  padding: 4px 8px;
  background: rgba(236, 72, 153, 0.10);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
}
.sc-chat-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 120px;
}
.sc-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  text-align: center;
}

/* --- SC2: stats + ladder --- */
.sc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 0;
}
.sc-row-divider {
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  margin-bottom: 14px;
}
.sc-row-divider + .sc-row-divider { margin-top: 18px; }
.sc-row-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.sc-row-value {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.sc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 6px;
}
.sc-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}
.sc-stat-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.sc-stat-lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  text-transform: uppercase;
  margin-top: 6px;
}
.sc-ladder {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sc-ladder-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 12px;
}
.sc-ladder-step span { color: var(--muted); letter-spacing: 0.08em; }
.sc-ladder-step strong {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  color: var(--muted);
  letter-spacing: -0.02em;
}
.sc-ladder-current {
  background: linear-gradient(180deg, rgba(212, 165, 116, 0.10), rgba(212, 165, 116, 0.03));
  border-color: rgba(212, 165, 116, 0.45);
  box-shadow: 0 0 0 1px rgba(212, 165, 116, 0.15), 0 8px 24px -8px var(--gold-glow);
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
}
.sc-ladder-current .sc-ladder-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sc-ladder-current span:not(.sc-ladder-here) { color: var(--gold-soft); }
.sc-ladder-current strong { color: var(--gold); }
.sc-ladder-here {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: right;
  opacity: 0.85;
}

/* Concrete price example below the ladder */
.sc-price-demo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  margin-top: 14px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.08), rgba(236, 72, 153, 0.04));
  border: 1px solid rgba(212, 165, 116, 0.32);
  border-radius: 12px;
  font-family: var(--mono);
}
.sc-price-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted-2);
  text-transform: uppercase;
  margin-right: auto;
}
.sc-price-base {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  color: var(--muted);
  letter-spacing: -0.02em;
  text-decoration: line-through;
  text-decoration-color: rgba(245, 245, 245, 0.28);
}
.sc-price-arrow {
  color: var(--pink);
  font-size: 14px;
  opacity: 0.7;
}
.sc-price-final {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.sc-price-tag {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--gold);
  padding: 3px 7px;
  background: rgba(212, 165, 116, 0.14);
  border: 1px solid rgba(212, 165, 116, 0.28);
  border-radius: 5px;
  text-transform: uppercase;
}

/* --- SC3: fan profile --- */
.sc-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.sc-avatar-lg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1F2937, #0F172A);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  border: 1px solid var(--border-strong);
  flex-shrink: 0;
}
.sc-profile-name {
  font-family: var(--display);
  font-weight: 500;
  color: var(--white);
  font-size: 17px;
  letter-spacing: -0.01em;
}
.sc-profile-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
  letter-spacing: 0.04em;
}
.sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.sc-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.sc-tag-warn {
  color: var(--coral);
  background: rgba(251, 146, 60, 0.08);
  border-color: rgba(251, 146, 60, 0.28);
}
.sc-context {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  font-style: italic;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 2px solid var(--pink);
  border-radius: 0 10px 10px 0;
  margin-bottom: 14px;
}
.sc-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.10), rgba(168, 85, 247, 0.04));
  border: 1px solid rgba(236, 72, 153, 0.32);
  border-radius: 12px;
}
.sc-trigger-arrow {
  font-family: var(--mono);
  color: var(--pink);
  font-size: 16px;
}
.sc-trigger-text {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--white);
  line-height: 1.4;
}

/* --- SC4: link router (personalities per traffic link) --- */
.sc-router-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border);
  margin-bottom: 12px;
}
.sc-router-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.sc-router-pulse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--pink);
}
.sc-router {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sc-link-row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s, transform 0.3s;
}
.sc-link-row:hover {
  border-color: rgba(236, 72, 153, 0.32);
  transform: translateX(4px);
}
.sc-link-slug {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.sc-link-arrow {
  font-family: var(--mono);
  color: var(--pink);
  font-size: 14px;
  opacity: 0.7;
}
.sc-link-persona {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.sc-link-name {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--pink);
  text-transform: uppercase;
}
.sc-link-sample {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

/* ===== "Y MÁS" — chip strip ===== */
.more-strip {
  margin-top: 96px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}
.more-strip-head {
  text-align: center;
  margin-bottom: 32px;
}
.more-strip-sub {
  font-size: 15px;
  color: var(--muted);
  margin-top: 14px;
}
.more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.more-chip {
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.3s;
}
.more-chip:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
}
.more-chip svg {
  width: 20px;
  height: 20px;
  color: var(--pink);
  margin-bottom: 12px;
  display: block;
}
.more-chip-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.more-chip-sub {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* Showcase responsive */
@media (max-width: 960px) {
  .showcase {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 0;
  }
  .showcase-flipped { direction: ltr; }
  .more-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .showcase { padding: 32px 0; gap: 28px; }
  .showcase-text { max-width: 100%; }
  .more-grid { grid-template-columns: 1fr; }
  .more-strip { margin-top: 64px; padding-top: 40px; }
  .sc-stats { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .sc-stat { padding: 10px 6px; }
}

/* ===== LIVE DEMO ===== */
.live-section { padding: 168px 0; }
.live-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.live-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.live-info h2 { margin: 20px 0 24px; font-size: clamp(36px, 5vw, 54px); font-weight: 400; }
.live-info h2 em { font-style: italic; color: var(--pink); font-weight: 300; }
.live-info p { color: var(--muted); font-size: 17px; line-height: 1.6; }
.live-stages {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stage-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  transition: color 0.3s;
}
.stage-pill .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--muted-2);
  width: 40px;
  transition: color 0.3s;
}
.stage-pill.current {
  color: var(--white);
}
.stage-pill.current .num { color: var(--pink); }
.stage-pill .phase-name { letter-spacing: 0.05em; }

.live-chat {
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.live-chat::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--pink-glow), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.live-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 10px 0;
}
.live-body .msg { max-width: 75%; }

.replay-btn {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid var(--border-strong);
  color: var(--pink);
  font-family: var(--mono);
  font-size: 11px;
  padding: 8px 14px;
  border-radius: 100px;
  cursor: pointer;
  letter-spacing: 0.15em;
  transition: all 0.2s;
  z-index: 2;
}
.replay-btn:hover { background: var(--pink); color: var(--white); }

/* ===== USE CASES ===== */
.use-section { padding: 168px 0; }
.use-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}
.use-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.4s;
}
.use-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}
.use-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 100px;
  color: rgba(236, 72, 153, 0.12);
  position: absolute;
  top: 20px;
  right: 30px;
  font-weight: 300;
  line-height: 1;
}
.use-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--pink);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.use-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 36px;
  color: var(--white);
  margin: 16px 0 20px;
  letter-spacing: -0.02em;
}
.use-title em { font-style: italic; color: var(--pink); font-weight: 300; }
.use-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.use-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.use-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}
.use-list li::before {
  content: "→";
  color: var(--pink);
  font-family: var(--mono);
  flex-shrink: 0;
}

/* ===== PRICING / CTA ===== */
.cta-section {
  padding: 168px 0;
  position: relative;
}
.cta-box {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 32px;
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--pink), transparent 60deg, transparent);
  animation: spin 20s linear infinite;
  opacity: 0.15;
}
.cta-box::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-radius: 31px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  margin: 24px 0 24px;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.cta-title em { font-style: italic; color: var(--pink); font-weight: 300; }
.cta-sub {
  color: var(--muted);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto 40px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-contact {
  margin-top: 40px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}
.cta-contact a {
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.cta-contact a:hover { color: var(--pink); }

/* ===== FAQ ===== */
.faq-section { padding: 168px 0; }
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-q-text {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background 0.3s;
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--pink);
  transition: transform 0.3s;
}
.faq-toggle::before { width: 12px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-toggle { background: var(--pink); }
.faq-item.open .faq-toggle::before, .faq-item.open .faq-toggle::after { background: var(--white); }
.faq-item.open .faq-toggle::after { transform: rotate(90deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.3s;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 300px;
  margin-top: 16px;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-tagline {
  color: var(--muted);
  margin-top: 16px;
  max-width: 280px;
  font-size: 14px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--mono);
}

/* ===== WEBGL CANVASES ===== */
.webgl-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
  z-index: 0;
}
.webgl-hero {
  z-index: 0;
  opacity: 0.45;
  mix-blend-mode: screen;
  mask-image: radial-gradient(ellipse at center, black 0%, black 35%, transparent 88%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, black 35%, transparent 88%);
}
.webgl-arch {
  z-index: 0;
  opacity: 0.28;
}
.webgl-cta {
  z-index: 0;
  opacity: 0.35;
  /* Soft radial fade so the flame stays atmospheric and never washes out the text. */
  mask-image: radial-gradient(ellipse at center, black 0%, black 25%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, black 25%, transparent 70%);
}
.hero > .container, .arch-section > .container, .cta-section > .container,
.apply-section > .container { position: relative; z-index: 2; }

/* ===== PRICING ===== */
.pricing-section { padding: 168px 0; position: relative; }

/* ===== INTERACTIVE SAVINGS CALCULATOR ===== */
.calc {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.calc::before {
  content: "";
  position: absolute;
  top: -140px; left: 50%;
  width: 460px; height: 320px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, var(--pink-glow), transparent 70%);
  filter: blur(70px);
  opacity: 0.6;
  pointer-events: none;
}
.calc > * { position: relative; z-index: 1; }

/* --- slider input --- */
.calc-input { text-align: center; }
.calc-input-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.calc-revenue {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(34px, 5vw, 48px);
  color: var(--white);
  letter-spacing: -0.03em;
  margin: 10px 0 22px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--magenta), var(--pink)) no-repeat,
              rgba(255, 255, 255, 0.07);
  background-size: var(--fill, 55%) 100%;
  cursor: pointer;
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--pink);
  box-shadow: 0 4px 14px -2px var(--pink-glow);
  cursor: grab;
  transition: transform 0.15s;
}
.calc-slider::-webkit-slider-thumb:active { transform: scale(1.12); cursor: grabbing; }
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--pink);
  box-shadow: 0 4px 14px -2px var(--pink-glow);
  cursor: grab;
}
.calc-slider:focus-visible { box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.18); }
.calc-slider-ends {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted-2);
}

/* --- team vs hornyt --- */
.calc-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0 28px;
}
.calc-cell {
  border-radius: 18px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
}
.calc-cell-team {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
}
.calc-cell-hornyt {
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.09), rgba(168, 85, 247, 0.04));
  border: 1px solid var(--border-strong);
}
.calc-cell-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.calc-cell-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.calc-cell-badge {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(236, 72, 153, 0.12);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  padding: 3px 9px;
}
.calc-cell-comp {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 14px 0 16px;
  line-height: 1.25;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  min-height: 2.5em;
}
.calc-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.calc-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 12px;
}
.calc-line span:first-child {
  font-family: var(--mono);
  letter-spacing: 0.05em;
  color: var(--muted);
}
.calc-line span:last-child {
  font-weight: 500;
  color: var(--text);
}
.calc-cell-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px;
}
.calc-total-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.calc-total-val {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 3.4vw, 30px);
  letter-spacing: -0.03em;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  transition: opacity 0.15s ease;
}
.calc-total-team { color: #f0788a; }
.calc-total-hornyt {
  background: linear-gradient(135deg, var(--magenta), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.calc.flash .calc-total-val,
.calc.flash .calc-cell-comp,
.calc.flash .calc-line span:last-child { opacity: 0.4; }

/* --- the hero savings number --- */
.calc-savings {
  text-align: center;
  padding: 32px 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.10), rgba(74, 222, 128, 0.02));
  border: 1px solid rgba(74, 222, 128, 0.25);
  transition: background 0.3s, border-color 0.3s;
}
.calc-savings-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: rgba(74, 222, 128, 0.9);
  transition: color 0.3s;
}
.calc-savings-amount {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(54px, 11vw, 92px);
  line-height: 1;
  color: #4ade80;
  letter-spacing: -0.04em;
  margin: 10px 0 12px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  transition: opacity 0.15s ease, color 0.3s, font-size 0.3s;
}
.calc.flash .calc-savings-amount { opacity: 0.4; }
.calc-savings-per {
  font-family: var(--mono);
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: rgba(74, 222, 128, 0.7);
  margin-left: 6px;
}
.calc-savings-year {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.calc-savings-year strong {
  font-family: var(--display);
  font-style: italic;
  color: #4ade80;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
/* parity mode — small/mid creators where the win is quality, not raw $ */
.calc-savings.is-parity {
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.09), rgba(168, 85, 247, 0.03));
  border-color: var(--border-strong);
}
.calc-savings.is-parity .calc-savings-label { color: var(--pink); }
.calc-savings.is-parity .calc-savings-amount {
  font-size: clamp(26px, 5vw, 36px);
  color: var(--white);
  margin: 12px 0 10px;
}
.calc-savings.is-parity .calc-savings-per { display: none; }

.calc-cta {
  display: flex;
  margin: 28px auto 0;
  width: fit-content;
  padding: 16px 36px;
  font-size: 15px;
}
.calc-disclaimer {
  margin-top: 22px;
  text-align: center;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--muted-2);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== WHAT'S INCLUDED ===== */
.includes-block { max-width: 760px; margin: 64px auto 0; }
.includes-head { text-align: center; margin-bottom: 32px; }
.includes-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 34px);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-top: 14px;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}

@media (max-width: 600px) {
  .calc { padding: 32px 22px; }
  .calc-compare { grid-template-columns: 1fr; }
  .calc-cta { width: 100%; justify-content: center; }
}

.pricing-card {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--pink-glow), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}
.pricing-card::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.4), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}
.pricing-card > * { position: relative; z-index: 1; }

.pricing-card-head {
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
  margin-bottom: 32px;
}
.pricing-card-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  color: var(--white);
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.pricing-card-sub {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.22em;
  margin-top: 10px;
}

.pricing-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.pricing-display-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.25em;
  margin-bottom: 6px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  font-family: var(--display);
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-currency {
  font-size: 28px;
  font-weight: 500;
  margin-right: 2px;
  color: var(--pink);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.pricing-fee {
  font-size: 64px;
  font-weight: 500;
  font-style: italic;
  font-family: var(--display);
  font-variation-settings: "SOFT" 100, "opsz" 144;
  background: linear-gradient(135deg, var(--coral), var(--pink), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.18s ease;
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-fee.flash { opacity: 0.35; }
.pricing-plus {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 40px;
  color: var(--muted);
  margin: 0 14px;
  line-height: 1;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.pricing-amount {
  font-size: 56px;
  font-weight: 500;
  font-style: italic;
  font-family: var(--display);
  font-variation-settings: "SOFT" 100, "opsz" 144;
  background: linear-gradient(135deg, var(--coral), var(--pink), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.18s ease;
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-amount.flash { opacity: 0.35; }
.pricing-percent {
  font-family: var(--display);
  font-style: italic;
  font-size: 48px;
  font-weight: 500;
  margin-left: 4px;
  background: linear-gradient(135deg, var(--coral), var(--pink), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.pricing-price-meta {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.pricing-meta-fee {
  display: inline-block;
  min-width: calc(28px + 2px + 64px);  /* matches $ + fee number above */
  text-align: left;
}
.pricing-meta-sep { margin: 0 12px; color: var(--muted-2); }
.pricing-meta-pct { color: var(--text); }
.pricing-period {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  margin-left: 10px;
  letter-spacing: 0.15em;
}
.pricing-display-detail {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

/* 3-col price table */
.pricing-table-3col th:nth-child(2),
.pricing-table-3col td:nth-child(2) {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--white);
  font-size: 18px;
  letter-spacing: -0.02em;
  text-align: right;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.pricing-table-3col th:nth-child(2) {
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.pricing-table-3col th:nth-child(3),
.pricing-table-3col td:nth-child(3) { text-align: right; }
.pricing-select-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.22em;
  margin-bottom: 10px;
}
.pricing-select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 16px 50px 16px 18px;
  color: var(--white);
  font-family: var(--body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23EC4899' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  cursor: pointer;
}
.pricing-select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}
.pricing-select option { background: var(--bg-alt); color: var(--white); }

.pricing-features {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text);
}
.pricing-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.14);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 50%;
  padding: 4px;
}

.pricing-cta { margin-top: 32px; text-align: center; }
.pricing-cta .btn { padding: 16px 32px; font-size: 15px; }
.pricing-cta-note {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted-2);
  letter-spacing: 0.22em;
}

/* Full price table (collapsible) */
.pricing-table-details {
  max-width: 880px;
  margin: 40px auto 0;
}
.pricing-table-summary {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 18px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  list-style: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  background: rgba(0, 0, 0, 0.2);
}
.pricing-table-summary::-webkit-details-marker { display: none; }
.pricing-table-summary::after {
  content: " ↓";
  color: var(--pink);
  margin-left: 10px;
  transition: transform 0.3s;
  display: inline-block;
}
.pricing-table-summary:hover {
  color: var(--pink);
  border-color: var(--border-strong);
}
.pricing-table-details[open] .pricing-table-summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
  color: var(--pink);
}
.pricing-table-details[open] .pricing-table-summary::after { transform: rotate(180deg); }
.pricing-table-wrap {
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--body);
}
.pricing-table th, .pricing-table td {
  padding: 16px 28px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.pricing-table th {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.25);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td {
  font-size: 14px;
  color: var(--text);
}
.pricing-table td:last-child {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--pink);
  font-size: 19px;
  letter-spacing: -0.02em;
  text-align: right;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.pricing-table tbody tr { transition: background 0.2s; }
.pricing-table tbody tr:hover { background: rgba(236, 72, 153, 0.04); }

/* ===== SAVINGS CALCULATOR ===== */
.savings-block { max-width: 1080px; margin: 80px auto 0; }
.savings-head { text-align: center; margin-bottom: 40px; }
.savings-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-top: 16px;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.savings-title em { font-style: italic; color: var(--pink); font-weight: 300; }
.savings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.savings-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 22px 20px;
  position: relative;
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.savings-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.savings-card-top { border-color: var(--border-strong); box-shadow: 0 12px 30px -10px var(--pink-glow); }
.savings-card-top::before {
  content: "TOP";
  position: absolute;
  top: -10px; right: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  padding: 4px 8px;
  background: var(--pink);
  color: var(--white);
  border-radius: 4px;
  font-weight: 600;
}
.savings-tier {
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  letter-spacing: -0.01em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.savings-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  font-size: 13px;
}
.savings-label { color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.savings-value { color: var(--text); font-weight: 500; }
.savings-value-team { color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(255, 100, 100, 0.5); }
.savings-value-hornyt { color: var(--pink); font-family: var(--display); font-style: italic; font-size: 18px; letter-spacing: -0.02em; font-variation-settings: "SOFT" 100, "opsz" 144; }
.savings-row-total {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
}
.savings-value-save {
  color: #4ade80;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.savings-year {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.22);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(74, 222, 128, 0.85);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.savings-year strong {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: #4ade80;
  letter-spacing: -0.02em;
  text-transform: none;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.savings-disclaimer {
  margin-top: 28px;
  text-align: center;
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.6;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== COMPARISON TABLE ===== */
.compare-block { max-width: 1080px; margin: 100px auto 0; }
.compare-head { text-align: center; margin-bottom: 40px; }
.compare-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-top: 16px;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.compare-title em { font-style: italic; color: var(--pink); font-weight: 300; }
.compare-wrap {
  overflow-x: auto;
  padding-bottom: 4px;
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: var(--body);
}

/* --- header row --- */
.compare-table th {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  padding: 14px 26px;
  vertical-align: bottom;
}

/* --- body cells --- */
.compare-table td {
  padding: 17px 26px;
  text-align: left;
  font-size: 14px;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
}
.compare-table tbody tr:last-child td { border-bottom: none; }

/* column 1 — dimension label (quiet metadata) */
.compare-table th:first-child,
.compare-table td:first-child { width: 24%; }
.compare-table td:first-child {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* column 2 — human team (the loser: muted text + soft red ✗) */
.compare-table th:nth-child(2),
.compare-table td:nth-child(2) { width: 38%; }
.compare-table td:nth-child(2) {
  color: var(--muted);
  padding-left: 56px;
  position: relative;
}
.compare-table td:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px; height: 19px;
  border-radius: 50%;
  background: rgba(240, 120, 138, 0.12)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23F0788A' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M4.5 4.5l7 7M11.5 4.5l-7 7'/%3E%3C/svg%3E")
    center / 11px no-repeat;
}

/* column 3 — Hornyt (the winner: highlighted lane + pink ✓) */
.compare-table th:nth-child(3),
.compare-table td.hornyt-cell {
  width: 38%;
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.07), rgba(168, 85, 247, 0.04));
  border-left: 1px solid var(--border-strong);
  border-right: 1px solid var(--border-strong);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.4s ease;
}
.compare-table th:nth-child(3) {
  color: var(--pink);
  font-weight: 700;
  border-top: 1px solid var(--border-strong);
  border-radius: 16px 16px 0 0;
}
.compare-table td.hornyt-cell {
  color: var(--white);
  font-weight: 500;
  padding-left: 56px;
  position: relative;
}
.compare-table td.hornyt-cell::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px; height: 19px;
  border-radius: 50%;
  background: rgba(236, 72, 153, 0.16)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23EC4899' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 8.4 3.4 3.4L13 4.5'/%3E%3C/svg%3E")
    center / 11px no-repeat;
}
.compare-table tbody tr:last-child td.hornyt-cell {
  border-bottom: 1px solid var(--border-strong);
  border-radius: 0 0 16px 16px;
}

/* per-row hover */
.compare-table tbody tr:hover td:first-child,
.compare-table tbody tr:hover td:nth-child(2) { background: rgba(255, 255, 255, 0.018); }
.compare-table tbody tr:hover td.hornyt-cell {
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.14), rgba(168, 85, 247, 0.08));
}
/* subtle glow over the whole Hornyt lane when the table is hovered */
.compare-table:hover th:nth-child(3),
.compare-table:hover td.hornyt-cell {
  border-color: rgba(236, 72, 153, 0.45);
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.10), rgba(168, 85, 247, 0.055));
}
.compare-table:hover th:nth-child(3) {
  box-shadow: 0 -6px 46px -10px rgba(236, 72, 153, 0.45);
}
.compare-table:hover tbody tr:last-child td.hornyt-cell {
  box-shadow: 0 6px 46px -10px rgba(236, 72, 153, 0.45);
}

@media (max-width: 720px) {
  .pricing-section { padding: 100px 0; }
  .pricing-card { padding: 32px 22px; }
  .pricing-card-name { font-size: 22px; }
  .pricing-display { grid-template-columns: 1fr; gap: 28px; }
  .pricing-features-grid { grid-template-columns: 1fr; }
  .pricing-fee { font-size: 48px; }
  .pricing-plus { font-size: 32px; margin: 0 10px; }
  .pricing-amount { font-size: 42px; }
  .pricing-percent { font-size: 36px; }
  .pricing-currency { font-size: 22px; }
  .pricing-price { flex-wrap: wrap; row-gap: 6px; }
  .pricing-meta-fee { min-width: 0; }
  .pricing-meta-sep { display: none; }
  .pricing-price-meta { flex-direction: column; gap: 4px; align-items: flex-start; }
  .pricing-table th, .pricing-table td { padding: 14px 16px; font-size: 13px; }
  .pricing-table td:last-child { font-size: 16px; }
  .savings-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .savings-card { padding: 20px 18px 16px; }
  .compare-table { min-width: 660px; }
  .compare-table th, .compare-table td { padding: 14px 18px; font-size: 13px; }
  .compare-table td:nth-child(2), .compare-table td.hornyt-cell { padding-left: 48px; }
  .compare-table td:nth-child(2)::before, .compare-table td.hornyt-cell::before { left: 18px; }
}

/* ===== APPLY / ACCESS PHASES ===== */
.apply-section { padding: 168px 0; position: relative; }
.apply-eyebrow-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(236, 72, 153, 0.08);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
}
.apply-eyebrow-status .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink);
  animation: pulse-pink 1.5s infinite;
}

/* Phase roadmap */
.phases {
  margin: 80px 0 60px;
  position: relative;
}
.phases-line {
  position: absolute;
  top: 36px;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong) 10%, var(--border-strong) 90%, transparent);
  z-index: 0;
}
.phases-line-fill {
  position: absolute;
  top: 36px;
  left: 12.5%;
  height: 1px;
  width: 0%;
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink);
  z-index: 0;
  transition: width 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) 0.3s;
}
.phases-line-fill.full { width: 25%; }
.phases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.phase {
  text-align: center;
  padding-top: 10px;
  position: relative;
}
.phase-orb {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--muted);
  position: relative;
  transition: all 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.phase-closed .phase-orb {
  background: var(--surface-2);
  border-color: rgba(74, 222, 128, 0.3);
  color: rgba(74, 222, 128, 0.7);
}
.phase-open .phase-orb {
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 0 40px var(--pink-glow), 0 0 0 6px rgba(236, 72, 153, 0.1);
  color: var(--white);
  transform: scale(1.1);
}
.phase-open .phase-orb::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid var(--pink);
  opacity: 1;
  animation: phaseRing 2s infinite;
}
@keyframes phaseRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}
.phase-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.phase-closed .phase-tag { color: rgba(74, 222, 128, 0.7); }
.phase-open .phase-tag { color: var(--pink); }
.phase-future .phase-tag { color: var(--muted-2); }
.phase-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.phase-closed .phase-name { color: var(--muted); }
.phase-open .phase-name { color: var(--white); }
.phase-future .phase-name { color: var(--muted); }
.phase-info {
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.5;
}
.phase-open .phase-info { color: var(--muted); }

/* Slots counter */
.slots-counter {
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}
.slots-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
}
.slots-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--pink), var(--magenta));
  border-radius: 100px;
  width: 0%;
  transition: width 2s cubic-bezier(0.2, 0.7, 0.2, 1) 0.5s;
  box-shadow: 0 0 12px var(--pink-glow);
  position: relative;
}
.slots-bar-fill::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 30px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6));
  animation: shimmer 2s infinite;
}
@keyframes shimmer {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.slots-text {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.slots-text strong {
  color: var(--white);
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  text-transform: none;
}
.slots-text .slots-remaining strong { color: var(--pink); }

/* Apply form */
.apply-form-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.apply-form {
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.apply-form::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--pink-glow), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  opacity: 0.5;
}

/* Step indicator */
.form-steps-indicator {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.form-step-dot {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  transition: background 0.4s;
}
.form-step-dot.active {
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink-glow);
}
.form-step-dot.done {
  background: rgba(236, 72, 153, 0.4);
}

/* Steps */
.form-step {
  display: none;
  position: relative;
  z-index: 1;
  animation: stepIn 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.form-step.active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.form-step-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--pink);
  letter-spacing: 0.25em;
  margin-bottom: 12px;
}
.form-step-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.form-step-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
}

/* Step 1 — choices */
.form-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-choice {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
  font-family: inherit;
  color: inherit;
  position: relative;
}
.form-choice:hover {
  border-color: var(--border-strong);
  background: var(--surface);
  transform: translateY(-2px);
}
.form-choice.selected {
  border-color: var(--pink);
  background: rgba(236, 72, 153, 0.08);
  box-shadow: 0 0 30px -10px var(--pink-glow);
}
.form-choice-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.18), rgba(168, 85, 247, 0.08));
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.form-choice-icon svg { width: 22px; height: 22px; color: var(--pink); }
.form-choice-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.form-choice-desc {
  font-size: 12px;
  color: var(--muted);
}

/* Step 2 — fields */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.form-field label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-field input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}
.form-field input::placeholder { color: var(--muted-2); }
.form-field input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}
.form-field-prefix {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field-prefix:focus-within {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}
.form-field-prefix .prefix {
  padding: 0 0 0 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 15px;
}
.form-field-prefix input {
  border: none;
  background: transparent;
  padding-left: 4px;
}
.form-field-prefix input:focus { box-shadow: none; }

/* Step 3 — revenue */
.form-revenue {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}
.form-revenue-opt {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
  position: relative;
}
.form-revenue-opt input { display: none; }
.form-revenue-opt:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.form-revenue-opt.selected {
  border-color: var(--pink);
  background: rgba(236, 72, 153, 0.08);
}
.form-revenue-opt.selected.eligible {
  box-shadow: 0 0 30px -10px var(--pink-glow);
}
.rev-range {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.rev-phase {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.form-revenue-opt.eligible .rev-phase { color: var(--pink); }
.rev-status {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--coral);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.rev-status.muted { color: var(--muted-2); }
.form-revenue-opt.eligible .rev-status { color: #4ade80; }

/* Form nav */
.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.form-nav .btn { padding: 12px 24px; }
.btn-back {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.btn-back:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.btn-next:disabled, .btn-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Confirmation */
.confirm-success { text-align: center; padding: 20px 0; }
.confirm-icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: var(--white);
  box-shadow: 0 0 40px var(--pink-glow), 0 0 0 8px rgba(236, 72, 153, 0.1);
  animation: confirmPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes confirmPop {
  0% { transform: scale(0.2); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.confirm-title {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(36px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 12px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.confirm-msg {
  color: var(--muted);
  font-size: 16px;
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.confirm-meta {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  flex-wrap: wrap;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.confirm-meta-item {
  flex: 1;
  padding: 18px 16px;
  border-right: 1px solid var(--border);
  min-width: 130px;
}
.confirm-meta-item:last-child { border-right: none; }
.confirm-meta-item .label {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}
.confirm-meta-item .value {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.1em;
  font-weight: 500;
}
.confirm-meta-item .value.eligible { color: #4ade80; }
.confirm-meta-item .value.waitlist { color: var(--coral); }
.confirm-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Apply alternative via Discord */
.apply-alt {
  margin: 40px auto 0;
  max-width: 560px;
  text-align: center;
}
.apply-alt-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.apply-alt-divider::before,
.apply-alt-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  background: rgba(88, 101, 242, 0.1);
  color: #B4BBFF;
  border: 1px solid rgba(88, 101, 242, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-discord:hover {
  background: #5865F2;
  color: var(--white);
  border-color: #5865F2;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -8px rgba(88, 101, 242, 0.55);
}
.btn-discord svg { width: 22px; height: 22px; flex-shrink: 0; }
.apply-alt-note {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted-2);
  text-transform: uppercase;
}

/* ===== APPLY DISCORD CTA (form replaced) ===== */
.apply-discord-cta {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid rgba(88, 101, 242, 0.22);
  border-radius: 28px;
  padding: 60px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.apply-discord-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 360px;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.35), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.apply-discord-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 28px;
  background: linear-gradient(135deg, #5865F2, #404EED);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px -10px rgba(88, 101, 242, 0.65), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
  z-index: 1;
}
.apply-discord-icon svg {
  width: 44px;
  height: 44px;
  color: var(--white);
}
.apply-discord-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 52px);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  font-variation-settings: "SOFT" 80, "opsz" 144;
  position: relative;
  z-index: 1;
}
.apply-discord-title em {
  font-style: italic;
  font-weight: 300;
  color: #B4BBFF;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.apply-discord-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.btn-discord-xl {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  background: #5865F2;
  color: var(--white);
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 30px -8px rgba(88, 101, 242, 0.6), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-discord-xl:hover {
  background: #4752C4;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(88, 101, 242, 0.75), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-discord-xl svg { width: 22px; height: 22px; }
.btn-discord-xl svg.arrow { width: 16px; height: 16px; }

.apply-discord-trust {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-pink 1.5s infinite;
}

.apply-process {
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: left;
  position: relative;
  z-index: 1;
}
.apply-process-step {
  padding: 0;
}
.apply-process-num {
  font-family: var(--mono);
  font-size: 11px;
  color: #B4BBFF;
  letter-spacing: 0.22em;
  margin-bottom: 10px;
}
.apply-process-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.apply-process-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 720px) {
  .apply-discord-cta { padding: 40px 24px; }
  .apply-process { grid-template-columns: 1fr 1fr; gap: 22px; }
  .apply-discord-icon { width: 64px; height: 64px; }
  .apply-discord-icon svg { width: 34px; height: 34px; }
}

/* Apply contact strip */
.apply-contact {
  margin-top: 40px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.apply-contact a {
  color: var(--text);
  text-decoration: none;
  margin: 0 12px;
  transition: color 0.2s;
}
.apply-contact a:hover { color: var(--pink); }

/* ===== SELECTIVE GOLD ACCENTS (less pink monotony) ===== */
.use-section .section-title em,
.compare-section .section-title em,
.use-title em {
  color: var(--gold);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.use-tag, .compare-head-cell.hornyt {
  color: var(--gold);
}
.compare-value.best { color: var(--gold-soft); }
.compare-col-hornyt { background: rgba(212, 165, 116, 0.04) !important; }
.compare-head-cell.hornyt { background: rgba(212, 165, 116, 0.06) !important; }

/* phase OPEN NOW tag goes gold for premium feel */
.phase-open .phase-tag { color: var(--gold); }
.apply-eyebrow-status {
  background: rgba(212, 165, 116, 0.08);
  border-color: rgba(212, 165, 116, 0.32);
  color: var(--gold);
}
.apply-eyebrow-status .dot {
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}
.rev-status { color: var(--gold) !important; }
.form-revenue-opt.eligible .rev-status { color: #4ade80 !important; }
.form-revenue-opt.eligible .rev-phase { color: var(--gold); }

/* ===== SALES PSYCHOLOGY SECTION ===== */
.psy-section {
  padding: 168px 0;
  background: linear-gradient(180deg, transparent, rgba(212, 165, 116, 0.025), transparent);
}
.psy-eyebrow {
  color: var(--gold);
}
.psy-eyebrow::before {
  background: var(--gold);
}
.psy-section .section-title em {
  color: var(--gold);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.psy-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.psy-conv-frame {
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.psy-conv-frame::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--gold-glow), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  opacity: 0.4;
}
.psy-conv-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.psy-conv-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
}
.psy-conv-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted-2);
}

.psy-conv-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.psy-line {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.psy-line.us { align-items: flex-end; }
.psy-msg-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.45;
}
.psy-msg-bubble.them {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.psy-msg-bubble.us {
  background: linear-gradient(135deg, var(--pink), #E0226B);
  color: var(--white);
  border-bottom-right-radius: 4px;
  box-shadow: 0 6px 16px -6px var(--pink-glow);
}
.psy-msg-bubble.ppv {
  background: linear-gradient(135deg, var(--gold), var(--coral));
  color: var(--bg);
  font-weight: 600;
  border-bottom-right-radius: 4px;
  box-shadow: 0 6px 16px -6px var(--gold-glow);
  font-family: var(--display);
  font-style: italic;
}
.psy-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
  background: rgba(212, 165, 116, 0.06);
  border: 1px solid rgba(212, 165, 116, 0.28);
  border-radius: 8px;
  text-transform: uppercase;
  white-space: nowrap;
}
.psy-tag .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-glow);
  flex-shrink: 0;
  animation: pulse-pink 1.5s infinite;
}

/* Technique grid */
.psy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.psy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 18px 20px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.psy-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.psy-card:hover {
  border-color: rgba(212, 165, 116, 0.32);
  background: var(--surface-2);
  transform: translateY(-2px);
}
.psy-card:hover::before { opacity: 0.8; }
.psy-card-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.22em;
  margin-bottom: 10px;
}
.psy-card-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.psy-card-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.psy-footer {
  margin-top: 60px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.06), rgba(168, 85, 247, 0.04));
  border: 1px solid rgba(212, 165, 116, 0.18);
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.psy-footer-text {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  color: var(--text);
  letter-spacing: -0.01em;
  max-width: 640px;
  line-height: 1.45;
}
.psy-footer-text em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.psy-footer-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-align: right;
}
.psy-footer-meta strong {
  display: block;
  color: var(--gold);
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid, .arch-wrapper, .live-wrap, .use-grid, .psy-wrap { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .hero { padding: 140px 0 60px; }
  .hero-title { font-size: 44px; }
  .cta-box { padding: 50px 24px; }
  .use-card { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .arch-visual { padding: 30px 12px 20px; }
}

/* Selection */
::selection { background: var(--pink); color: var(--white); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink); }

/* ===== ACTIVE NAV LINK ===== */
.nav-links a.active { color: var(--pink); position: relative; }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--pink); box-shadow: 0 0 8px var(--pink-glow); }
.footer-col a.active { color: var(--pink); }

/* ===== EXPLORE GRID (homepage) ===== */
.explore-section { padding: 100px 0 140px; position: relative; }
.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.explore-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  padding: 28px 26px;
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.3s, background 0.3s;
}
.explore-card::after {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--pink-glow), transparent 65%);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.explore-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.explore-card:hover::after { opacity: 0.4; }
.explore-card > * { position: relative; z-index: 1; }
.explore-card-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--pink);
}
.explore-card-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-top: 18px;
  line-height: 1.35;
}
.explore-card-arrow {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--muted);
  margin-top: 18px;
  transition: transform 0.3s, color 0.3s;
}
.explore-card:hover .explore-card-arrow {
  color: var(--pink);
  transform: translateX(4px);
}
.explore-card-cta {
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.08), var(--bg-alt));
  border-color: var(--border-strong);
}
.explore-card-cta .explore-card-tag { color: var(--coral); }

@media (max-width: 960px) {
  .explore-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .explore-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   MOBILE NAV DRAWER + COMPREHENSIVE RESPONSIVE PASS
   ========================================================= */

/* Global safety: stop horizontal overflow ever appearing */
html, body { max-width: 100%; overflow-x: clip; }

/* Top-bar language toggle — only shown on mobile, lives next to the hamburger.
   The drawer keeps its own copy for desktop; we hide that copy on mobile so the
   top-bar one becomes the single source of truth. setLang() syncs both.
   Minimal text-style design (no pill, no fill) to balance against the square
   hamburger sitting right next to it. */
.lang-toggle-top {
  display: none;
  background: transparent;
  border: none;
  padding: 0;
  gap: 2px;
}
.lang-toggle-top button {
  background: transparent;
  border: none;
  color: var(--muted-2);
  padding: 6px 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.lang-toggle-top button.active {
  color: var(--pink);
  background: transparent;
}
.lang-toggle-top button:hover { color: var(--white); }

/* ===== THEME TOGGLE (☀️/🌙) ===== */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
}
.theme-toggle:hover {
  color: var(--pink);
  border-color: var(--border-strong);
  transform: rotate(15deg);
}
.theme-toggle:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}
.theme-toggle svg {
  width: 16px;
  height: 16px;
  display: block;
}
.theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle { background: rgba(15, 23, 42, 0.04); }
[data-theme="light"] .theme-toggle:hover { background: rgba(15, 23, 42, 0.08); }

/* Top-bar variant — minimal styling, matches lang-toggle-top */
.theme-toggle-top {
  display: none;
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
}
.theme-toggle-top:hover { background: rgba(255, 255, 255, 0.06); transform: none; }
[data-theme="light"] .theme-toggle-top { background: transparent; }
[data-theme="light"] .theme-toggle-top:hover { background: rgba(15, 23, 42, 0.05); }

/* Hamburger button — hidden on desktop, shows on mobile */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 101;
  transition: background 0.2s, border-color 0.2s;
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.04); border-color: var(--border-strong); }
.nav-toggle:focus-visible { outline: 2px solid var(--pink); outline-offset: 2px; }
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.25s;
  transform-origin: center;
}

/* Desktop: nav-menu is invisible wrapper — children flow into nav-inner flex */
.nav-menu { display: contents; }

/* Lock body scroll when mobile menu is open */
body.nav-open { overflow: hidden; }

/* ===== MOBILE BREAKPOINT (≤ 860px): drawer + nav stack ===== */
@media (max-width: 860px) {
  .nav { padding: 14px 0; }
  .nav-inner { padding: 0 20px; gap: 10px; }
  .nav-toggle { display: flex; }
  /* show top-bar lang toggle, hide the drawer copy so we don't have two */
  .lang-toggle-top { display: inline-flex; margin-left: auto; margin-right: 4px; }
  .theme-toggle-top { display: inline-flex; margin-right: 6px; }
  .nav-actions > .lang-toggle:not(.lang-toggle-top) { display: none; }
  .nav-actions > .theme-toggle:not(.theme-toggle-top) { display: none; }

  /* The drawer panel */
  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    padding: 28px 22px 32px;
    background: rgba(8, 5, 7, 0.97);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.42s cubic-bezier(0.2, 0.7, 0.2, 1);
    pointer-events: none;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    z-index: 99;
  }
  body.nav-open .nav-menu { transform: translateY(0); pointer-events: auto; }

  /* Hamburger animates into an X */
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0;
  }
  .nav-links li { list-style: none; }
  .nav-links a {
    display: block;
    padding: 16px 4px;
    font-family: var(--display);
    font-weight: 500;
    font-size: 19px;
    letter-spacing: -0.01em;
    color: var(--white);
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links a.active { color: var(--pink); }
  .nav-links a.active::after { display: none; }

  .nav-actions {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 14px;
  }
  .nav-actions .btn,
  .nav-actions .btn-primary {
    justify-content: center;
    width: 100%;
    padding: 15px 22px;
    font-size: 15px;
  }
  .lang-toggle { align-self: flex-start; }
}

/* ===== TABLET / SMALL DESKTOP (≤ 960px) ===== */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .section-head { margin-bottom: 56px; }
  .section-title { font-size: clamp(30px, 7vw, 42px); }
  .arch-section, .features-section, .psy-section, .live-section { padding: 110px 0; }
  .arch-wrapper { gap: 40px; }
  .arch-list .section-sub { margin-bottom: 20px !important; }
  .psy-wrap { gap: 40px; }
  .live-wrap { gap: 36px; }

  /* Architecture pipeline scales naturally because it's an SVG inside arch-visual */
  .pipeline-svg { max-width: 100%; }

  /* Psychology grid: 2 cols on mid-screens */
  .psy-grid { grid-template-columns: 1fr 1fr !important; gap: 14px !important; }
}

/* ≤ 860px: hide the heavy SVG pipeline — the arch-list below already
   conveys the same content in cleaner mobile typography. Saves ~900px of
   scroll without losing any information. */
@media (max-width: 860px) {
  .arch-visual { display: none; }
  .arch-wrapper { gap: 0; }
}

/* ===== PHONE (≤ 720px) ===== */
@media (max-width: 720px) {
  .container { padding: 0 18px; }
  .section-head { margin-bottom: 44px; }
  .section-title { font-size: clamp(28px, 8vw, 38px); }
  .section-sub { font-size: 15.5px; }

  .arch-section, .features-section, .psy-section, .live-section { padding: 88px 0; }
  .arch-visual { padding: 24px 8px 16px; }
  .arch-item { grid-template-columns: 28px 1fr 18px; gap: 12px; padding: 14px 0; }
  .arch-item-title { font-size: 16px; }
  .arch-item-desc { font-size: 12.5px; }

  /* Showcases: tighter, no negative space waste */
  .showcase { padding: 36px 0; gap: 28px; }
  .showcase-text { max-width: 100%; }
  .showcase-title { font-size: clamp(24px, 7vw, 32px); }
  .showcase-desc { font-size: 14.5px; margin-bottom: 22px; }
  .showcase-bullets li { font-size: 13.5px; }
  .sc-card { padding: 18px; border-radius: 16px; }
  .sc-card::before { width: 180px; height: 180px; top: -90px; right: -90px; }

  /* SC2 ladder + stats keep readable */
  .sc-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .sc-stat { padding: 10px 4px; }
  .sc-stat-num { font-size: 19px; }
  .sc-stat-lbl { font-size: 8px; letter-spacing: 0.14em; }
  .sc-ladder-step { padding: 9px 12px; font-size: 11.5px; }
  .sc-ladder-step strong { font-size: 14px; }
  .sc-ladder-here { font-size: 8.5px; letter-spacing: 0.18em; }
  .sc-price-demo { padding: 11px 12px; gap: 8px; flex-wrap: wrap; }
  .sc-price-label { font-size: 9px; }
  .sc-price-base { font-size: 15px; }
  .sc-price-final { font-size: 17px; }
  .sc-price-tag { font-size: 8.5px; padding: 2px 5px; }

  /* SC3 fan profile */
  .sc-profile { gap: 12px; }
  .sc-avatar-lg { width: 42px; height: 42px; font-size: 16px; }
  .sc-profile-name { font-size: 15px; }
  .sc-profile-meta { font-size: 10.5px; }
  .sc-tag { font-size: 9.5px; padding: 4px 8px; }
  .sc-context { font-size: 12.5px; padding: 10px 12px; }
  .sc-trigger-text { font-size: 13px; }

  /* SC4 link router */
  .sc-link-row { grid-template-columns: auto 1fr; gap: 8px 12px; padding: 10px 12px; }
  .sc-link-row .sc-link-arrow { display: none; }
  .sc-link-slug { font-size: 10.5px; padding: 4px 8px; }
  .sc-link-name { font-size: 9.5px; letter-spacing: 0.16em; }
  .sc-link-sample { font-size: 13px; }

  /* "Y más" chip strip */
  .more-strip { margin-top: 60px; padding-top: 36px; }
  .more-chip { padding: 16px; border-radius: 12px; }
  .more-chip-title { font-size: 14px; }
  .more-chip-sub { font-size: 12px; }

  /* Psychology grid: 1 col on phones */
  .psy-grid { grid-template-columns: 1fr !important; }
  .psy-card { padding: 18px; }
  .psy-conv-frame { padding: 16px; }
  .psy-msg-bubble { font-size: 13px; padding: 9px 13px; }
  .psy-footer { margin-top: 60px; padding-top: 36px; flex-direction: column; gap: 20px; text-align: center; }
  .psy-footer-text { font-size: 14.5px; }

  /* Live demo: stack chat under copy, controlled height */
  .live-chat { min-height: 0; }
  .live-body { min-height: 280px; max-height: 70vh; }
  .live-stages { gap: 8px; margin-top: 22px; }
  .stage-pill { padding: 10px 12px; font-size: 12px; }
  .stage-pill .num { font-size: 10px; }
  .chat-head { padding: 12px 14px; }
  .chat-avatar { width: 34px; height: 34px; font-size: 13px; }
  .chat-name { font-size: 13px; }
  .live-info h2 { font-size: clamp(28px, 7vw, 36px); }
  .live-info p { font-size: 15px; }

  /* Hero */
  .hero-title { font-size: clamp(36px, 10vw, 56px); line-height: 1.05; }
  .hero-sub { font-size: 15.5px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta-row .btn { justify-content: center; width: 100%; }
  .hero-stats { flex-wrap: wrap; gap: 14px 22px; }

  /* Pricing page tweaks */
  .pricing-hero h1 { font-size: clamp(34px, 9vw, 48px); }
  .pricing-calc-wrap { padding: 22px 18px; }
  .pricing-calc-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pricing-calc-stat { padding: 14px 12px; }
  .pricing-calc-stat-num { font-size: 22px; }
  .pricing-calc-savings { padding: 18px; }
  .pricing-calc-savings-num { font-size: clamp(32px, 9vw, 44px); }
  .pricing-features-list { gap: 10px; }
  .pricing-features-list li { font-size: 13.5px; padding-left: 26px; }

  /* Comparison table — switch to stacked card layout on phones */
  .compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -18px; padding: 0 18px; }
  .compare-table { min-width: 520px; font-size: 12.5px; }
  .compare-table th, .compare-table td { padding: 10px 8px !important; }

  /* Apply page form */
  .apply-form { padding: 24px 20px !important; }
  .apply-row { grid-template-columns: 1fr !important; gap: 14px !important; }
  .apply-form input, .apply-form textarea, .apply-form select { font-size: 16px !important; /* prevent iOS zoom */ }
  .apply-process { grid-template-columns: 1fr !important; gap: 18px !important; }
  .apply-step { padding: 18px !important; }
  .apply-discord-cta { padding: 36px 22px !important; }
  .apply-discord-icon { width: 60px; height: 60px; }

  /* FAQ */
  .faq-item { padding: 18px 18px; }
  .faq-q { font-size: 15px; }
  .faq-a { font-size: 14px; }

  /* For-whom (use-grid) */
  .use-card { padding: 28px 22px; }
  .use-card h3 { font-size: 22px; }
  .use-card p { font-size: 14.5px; }

  /* Footer */
  .footer-grid { gap: 32px; }
  .footer-col h4 { font-size: 13px; }
  .footer-col ul { gap: 8px; }
}

/* ===== SMALL PHONE (≤ 480px) ===== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .logo { font-size: 22px; }
  .hero { padding: 130px 0 50px; }
  .hero-title { font-size: clamp(32px, 11vw, 44px); }
  .section-title { font-size: clamp(26px, 9vw, 34px); }
  .showcase-title { font-size: clamp(22px, 8vw, 28px); }
  .sc-card { padding: 16px; }
  .sc-stats { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
  .sc-stat-num { font-size: 17px; }
  .arch-list .section-sub { font-size: 14px; }
  .pricing-calc-stats { grid-template-columns: 1fr; }
  .stage-pill { font-size: 11px; }
  .live-body { min-height: 240px; }
  .compare-table { min-width: 460px; }
  .lang-toggle button { padding: 5px 10px; font-size: 10px; }
}

/* ===== "SEE THE DEMO" CTA ON PRODUCTO ===== */
.demo-cta-section {
  padding: 100px 0 140px;
}
.demo-cta-card {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.10), rgba(168, 85, 247, 0.05));
  border: 1px solid rgba(236, 72, 153, 0.32);
  border-radius: 24px;
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.demo-cta-card::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--pink-glow), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.demo-cta-card > * { position: relative; z-index: 1; }
.demo-cta-text { max-width: 560px; }
.demo-cta-text h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 400;
  margin: 16px 0 14px;
  letter-spacing: -0.02em;
  color: var(--white);
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.demo-cta-text h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
}
.demo-cta-text p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.demo-cta-btn { padding: 16px 28px; font-size: 15px; flex-shrink: 0; }

@media (max-width: 860px) {
  .demo-cta-card {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 22px;
  }
  .demo-cta-btn { justify-content: center; }
  .demo-cta-section { padding: 72px 0 96px; }
}

/* =====================================================================
   HOME SUBSTY-STYLE SECTIONS — platform / stats / how-it-works /
   testimonials / price-teaser / faq-teaser / final-cta
   ===================================================================== */

/* ===== PLATFORM BADGE ===== */
.platform-section { padding: 80px 0 40px; }
.platform-row {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.platform-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: block;
  margin-bottom: 18px;
}
.platform-name {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 44px);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.platform-icon {
  width: 44px;
  height: 44px;
  color: #00AFF0;
  filter: drop-shadow(0 0 12px rgba(0, 175, 240, 0.35));
}
.platform-tagline {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}

/* ===== STATS GRID ===== */
.stats-section { padding: 110px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.3s;
}
.stat-card::after {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--pink-glow), transparent 65%);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.stat-card:hover::after { opacity: 0.4; }
.stat-card > * { position: relative; z-index: 1; }
.stat-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1;
  color: var(--pink);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.stat-label {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.stat-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.stats-disclaimer {
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted-2);
  text-align: center;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 110px 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.15), transparent);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.how-step {
  position: relative;
  padding: 36px 28px;
}
.how-step-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1;
  color: var(--pink);
  letter-spacing: -0.04em;
  opacity: 0.5;
  margin-bottom: 18px;
}
.how-step-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.how-step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testi-section { padding: 110px 0; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.3s;
}
.testi-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}
.testi-text {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
}
.testi-role {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.04em;
}

/* ===== PRICE TEASER ===== */
.price-teaser-section { padding: 110px 0; }
.price-teaser-card {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.10), rgba(236, 72, 153, 0.05));
  border: 1px solid rgba(212, 165, 116, 0.32);
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.price-teaser-card::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--gold-glow), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.price-teaser-card > * { position: relative; z-index: 1; }
.price-teaser-text { max-width: 600px; }
.price-teaser-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 400;
  margin: 16px 0 14px;
  letter-spacing: -0.02em;
  color: var(--white);
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.price-teaser-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.price-teaser-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.price-teaser-btn { padding: 16px 28px; font-size: 15px; flex-shrink: 0; }

/* ===== FAQ TEASER ===== */
.faq-teaser-section { padding: 110px 0; }
.faq-teaser-link {
  text-align: center;
  margin-top: 36px;
}

/* ===== FINAL CTA ===== */
.final-cta-section { padding: 110px 0 160px; }
.final-cta-card {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(168, 85, 247, 0.05));
  border: 1px solid rgba(236, 72, 153, 0.32);
  border-radius: 28px;
  padding: 80px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-card::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, var(--pink-glow), transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}
.final-cta-card > * { position: relative; z-index: 1; }
.final-cta-title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  color: var(--white);
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.final-cta-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
}
.final-cta-sub {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-actions {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Mobile stacking for the new sections */
@media (max-width: 860px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .how-grid { grid-template-columns: 1fr; gap: 24px; }
  .testi-grid { grid-template-columns: 1fr; gap: 14px; }
  .price-teaser-card { grid-template-columns: 1fr; padding: 36px 24px; gap: 24px; }
  .price-teaser-btn { justify-content: center; }
  .stat-card { padding: 28px 22px; }
  .stat-num { font-size: clamp(32px, 8vw, 44px); }
  .how-step { padding: 24px 20px; }
  .testi-card { padding: 24px; }
  .testi-text { font-size: 15.5px; }
  .final-cta-card { padding: 56px 28px; }
  .final-cta-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .final-cta-actions .btn { justify-content: center; width: 100%; }
  .platform-section { padding: 64px 0 24px; }
  .platform-name { gap: 10px; }
  .platform-icon { width: 36px; height: 36px; }
}
@media (max-width: 540px) {
  .stats-section, .how-section, .testi-section, .price-teaser-section, .faq-teaser-section, .final-cta-section { padding: 64px 0; }
  .final-cta-section { padding: 64px 0 96px; }
  .final-cta-card { padding: 44px 22px; }
}

/* Light theme overrides for these new sections */
[data-theme="light"] .how-section {
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.025), transparent);
}
[data-theme="light"] .stat-card,
[data-theme="light"] .testi-card {
  background: var(--surface);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04),
              0 4px 18px -4px rgba(15, 23, 42, 0.06);
}
[data-theme="light"] .stat-card:hover,
[data-theme="light"] .testi-card:hover {
  box-shadow: 0 4px 8px rgba(15, 23, 42, 0.06),
              0 16px 32px -8px rgba(15, 23, 42, 0.10);
}
[data-theme="light"] .price-teaser-card {
  background: linear-gradient(135deg, rgba(184, 147, 90, 0.08), rgba(0, 175, 240, 0.04));
  border-color: rgba(184, 147, 90, 0.32);
}
[data-theme="light"] .final-cta-card {
  background: linear-gradient(135deg, rgba(0, 175, 240, 0.08), rgba(99, 102, 241, 0.04));
  border-color: rgba(0, 175, 240, 0.28);
}
[data-theme="light"] .final-cta-card::before {
  background: radial-gradient(ellipse at center, rgba(0, 175, 240, 0.18), transparent 65%);
}
[data-theme="light"] .price-teaser-card::before {
  background: radial-gradient(circle, rgba(184, 147, 90, 0.18), transparent 65%);
}
[data-theme="light"] .platform-icon {
  filter: drop-shadow(0 0 12px rgba(0, 175, 240, 0.22));
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =====================================================================
   LIGHT THEME — DECORATIVE OVERRIDES
   Anything that hardcodes dark-bg-friendly rgba() values needs an explicit
   light alternative here. Components that already use CSS vars (--bg,
   --pink, --text, etc.) flip automatically.
   ===================================================================== */

/* Body atmosphere — replace pink/purple aurora with subtle blue-tinted wash */
[data-theme="light"] body::before {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(0, 175, 240, 0.06) 0%, transparent 48%),
    radial-gradient(ellipse at 85% 30%, rgba(99, 102, 241, 0.04) 0%, transparent 52%),
    radial-gradient(ellipse at 50% 100%, rgba(184, 147, 90, 0.03) 0%, transparent 55%);
}

/* Grid pattern — slate-tinted instead of white */
[data-theme="light"] body::after {
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 65%);
}

/* Grain texture creates ugly artifacts under mix-blend-mode on white — kill it */
[data-theme="light"] .grain { display: none; }

/* WebGL canvases (Three.js animated gradients) clash with white SaaS aesthetic.
   The shaders bake in pink/purple so we tone them way down. */
[data-theme="light"] .webgl-canvas {
  opacity: 0.18;
  mix-blend-mode: multiply;
}

/* The pipeline SVG on producto uses hardcoded dark fills for nodes. On light
   theme those nodes turn invisible. Boost their contrast. */
[data-theme="light"] .pipeline-svg rect[fill*="nodeBg"] {
  fill: #FFFFFF;
  stroke: rgba(15, 23, 42, 0.18) !important;
}
[data-theme="light"] .pipeline-svg text[fill="#FCFAFB"] {
  fill: var(--white);  /* on light = slate-900 */
}
[data-theme="light"] .pipeline-svg text[fill="#897181"] {
  fill: var(--muted);
}

/* Hero-title word reveal works in both themes (uses currentColor) */

/* Nav — frosted-white panel instead of frosted-black */
[data-theme="light"] .nav {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--border);
}

/* Hamburger lines */
[data-theme="light"] .nav-toggle span {
  background: var(--white); /* on light theme this is slate-900 = dark line */
}

/* Mobile drawer */
[data-theme="light"] .nav-menu {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
}

/* Section background washes — many sections have hardcoded dark gradient backgrounds */
[data-theme="light"] .features-section {
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.025), transparent);
}
[data-theme="light"] .psy-section {
  background: linear-gradient(180deg, transparent, rgba(184, 147, 90, 0.04), transparent);
}

/* Cards — replace dark gradient surfaces with crisp white + shadow */
[data-theme="light"] .feature-card,
[data-theme="light"] .more-chip,
[data-theme="light"] .sc-card,
[data-theme="light"] .psy-card,
[data-theme="light"] .pricing-tier,
[data-theme="light"] .apply-step,
[data-theme="light"] .faq-item,
[data-theme="light"] .live-chat,
[data-theme="light"] .arch-visual,
[data-theme="light"] .explore-card {
  background: var(--surface);
  border-color: var(--border);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04),
              0 4px 18px -4px rgba(15, 23, 42, 0.06);
}
[data-theme="light"] .feature-card:hover,
[data-theme="light"] .more-chip:hover,
[data-theme="light"] .sc-card:hover,
[data-theme="light"] .psy-card:hover,
[data-theme="light"] .explore-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 4px 8px rgba(15, 23, 42, 0.06),
              0 16px 32px -8px rgba(15, 23, 42, 0.10);
}

/* Inner panels inside cards (chat-body bg, sc-stat, sc-ladder-step, etc) */
[data-theme="light"] .sc-stat,
[data-theme="light"] .sc-ladder-step,
[data-theme="light"] .sc-link-row,
[data-theme="light"] .sc-tag,
[data-theme="light"] .stage-pill,
[data-theme="light"] .live-body,
[data-theme="light"] .pricing-config,
[data-theme="light"] .chat-head,
[data-theme="light"] .typing-showcase {
  background: var(--surface-2);
  border-color: var(--border);
}

/* Buttons — outlined CTAs need fixing on white */
[data-theme="light"] .btn-ghost {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
[data-theme="light"] .btn-ghost:hover {
  background: var(--surface);
  border-color: var(--pink);
  color: var(--pink);
}

/* Selection color follows accent */
[data-theme="light"] ::selection {
  background: var(--pink);
  color: #FFFFFF;
}

/* Scrollbar — light-friendly */
[data-theme="light"] ::-webkit-scrollbar-track { background: var(--bg-alt); }
[data-theme="light"] ::-webkit-scrollbar-thumb { background: #CBD5E1; }
[data-theme="light"] ::-webkit-scrollbar-thumb:hover { background: var(--pink); }

/* Code/mono text — make slightly bolder on light bg */
[data-theme="light"] .eyebrow { color: var(--pink); }

/* Live chat messages on light theme */
[data-theme="light"] .msg-them {
  background: var(--surface-2);
  color: var(--text);
}

/* Compare table on /precios */
[data-theme="light"] .compare-table,
[data-theme="light"] .compare-table th,
[data-theme="light"] .compare-table td {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

/* Footer */
[data-theme="light"] footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
