/* ===== SELF-HOSTED FONTS (served from /vendor/fonts/, variable, swap) ===== */
@font-face{font-family:'Fraunces';font-style:normal;font-weight:300 900;font-display:swap;src:url('/vendor/fonts/fraunces-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Fraunces';font-style:normal;font-weight:300 900;font-display:swap;src:url('/vendor/fonts/fraunces-latin-ext.woff2') format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}
@font-face{font-family:'Fraunces';font-style:italic;font-weight:300 900;font-display:swap;src:url('/vendor/fonts/fraunces-italic-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Fraunces';font-style:italic;font-weight:300 900;font-display:swap;src:url('/vendor/fonts/fraunces-italic-latin-ext.woff2') format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}
@font-face{font-family:'Geist';font-style:normal;font-weight:300 900;font-display:swap;src:url('/vendor/fonts/geist-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Geist';font-style:normal;font-weight:300 900;font-display:swap;src:url('/vendor/fonts/geist-latin-ext.woff2') format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}
@font-face{font-family:'Geist Mono';font-style:normal;font-weight:300 700;font-display:swap;src:url('/vendor/fonts/geist-mono-latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Geist Mono';font-style:normal;font-weight:300 700;font-display:swap;src:url('/vendor/fonts/geist-mono-latin-ext.woff2') format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}

/* ===== 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);
  /* Substy-style soft container gradient — used by .soft-surface wrapping
     hero-level mockup sections. Two subtle accent stops over the base surface. */
  --surface-gradient-soft: linear-gradient(
    180deg,
    rgba(236, 72, 153, 0.045),
    rgba(168, 85, 247, 0.018) 73%
  );
}

/* 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);
  /* Substy-exact soft blue wash for hero-level mockup containers */
  --surface-gradient-soft: linear-gradient(
    180deg,
    rgba(221, 234, 254, 0.4),
    rgba(218, 231, 251, 0.1) 73%
  );
}

* { 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 =====
   Pill-morph technique: the nav is ALWAYS centered with
   left:50% + transform:translateX(-50%), and we morph only
   width / top / border-radius / padding when scrolled. This
   avoids the jumpy bug caused by animating right:0 ↔ right:auto
   and adding/removing a transform mid-transition. */
.nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  z-index: 100;
  padding: 20px 0;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  background: rgba(9, 9, 11, 0.96);
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  will-change: width, max-width, top, padding, border-radius;
  transition:
    top 0.42s cubic-bezier(0.2, 0.7, 0.2, 1),
    width 0.42s cubic-bezier(0.2, 0.7, 0.2, 1),
    max-width 0.42s cubic-bezier(0.2, 0.7, 0.2, 1),
    padding 0.32s ease,
    border-radius 0.42s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.32s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}
/* Floating pill state — kicks in when JS adds .scrolled (>30 px scrolled).
   Constrains width, rounds corners, separates from top edge with shadow. */
.nav.scrolled {
  top: 12px;
  width: calc(100% - 32px);
  max-width: 1180px;
  padding: 8px 0;
  border-radius: 100px;
  border: 1px solid var(--border-strong);
  border-bottom-color: var(--border-strong);
  box-shadow:
    0 14px 38px -10px rgba(0, 0, 0, 0.55),
    0 2px 10px -2px rgba(0, 0, 0, 0.30);
  background: rgba(8, 5, 7, 0.92);
}
.nav.scrolled .nav-inner { padding: 0 22px 0 24px; }
[data-theme="light"] .nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(15, 23, 42, 0.10);
  box-shadow:
    0 14px 38px -10px rgba(15, 23, 42, 0.12),
    0 2px 10px -2px rgba(15, 23, 42, 0.08);
}
.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: 28px;
  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); }
/* "Cookie preferences" control injected into the footer legal column by app.js.
   Styled to read exactly like the sibling footer links. */
.ckprefs-btn {
  color: var(--text);
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: 14px;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.ckprefs-btn:hover { color: var(--pink); }
.ckprefs-btn:focus-visible { outline: 2px solid var(--pink); outline-offset: 2px; border-radius: 3px; }
/* Fallback placement inside the footer bottom bar (no legal column found). */
.footer-bottom .ckprefs-btn { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.footer-bottom .ckprefs-btn: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;
  flex-wrap: wrap;
}
.calc-total-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.calc-total-val {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 26px);
  letter-spacing: -0.03em;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  transition: opacity 0.15s ease;
  white-space: nowrap;
  text-align: right;
  flex: 1 1 auto;
  min-width: 0;
  /* room for the italic glyph + gradient text-clip so the bottom isn't cut */
  line-height: 1.3;
  padding-bottom: 4px;
}
@media (max-width: 540px) {
  .calc-cell-total { flex-direction: column; align-items: flex-start; gap: 4px; }
  .calc-total-val { text-align: left; font-size: 22px; }
}
.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;
}
/* "What you pay" emphasis: pink label + slightly larger value than the team side */
.calc-cell-hornyt .calc-total-label { color: var(--pink); font-weight: 600; }
.calc-cell-hornyt .calc-total-val { font-size: clamp(22px, 3vw, 30px); }
.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-x: auto;
}
.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); }

/* V6 4-col rate table: revenue | subscription | % on chat | per extra account */
.pricing-table-4col th:nth-child(2),
.pricing-table-4col td:nth-child(2),
.pricing-table-4col th:nth-child(3),
.pricing-table-4col td:nth-child(3),
.pricing-table-4col th:nth-child(4),
.pricing-table-4col td:nth-child(4) { text-align: right; }
.pricing-table-4col td:nth-child(2) {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--white);
  font-size: 18px;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.pricing-table-4col td:nth-child(3) {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--pink);
  font-size: 18px;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.pricing-table-4col td:nth-child(4) {
  font-family: var(--body);
  font-style: normal;
  font-weight: 500;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0;
}

/* V6 pricing rules — "how your price is calculated" */
.pricing-rules {
  max-width: 880px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.pricing-rule {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}
.pricing-rule svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--pink);
}
.pricing-rule strong { color: var(--white); font-weight: 600; }

/* ===== 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-rules { 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 { min-width: 480px; }
  .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; }
.btn-telegram {
  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(42, 171, 238, 0.1);
  color: #7fd0f5;
  border: 1px solid rgba(42, 171, 238, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-telegram:hover {
  background: #229ED9;
  color: var(--white);
  border-color: #229ED9;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -8px rgba(42, 171, 238, 0.55);
}
.btn-telegram svg { width: 22px; height: 22px; flex-shrink: 0; }
.apply-alt-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.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 FORM — required marker, validation, submit states, honeypot ===== */
.form-field label .req { color: #ef4444; margin-left: 4px; }
.field-err {
  margin: 8px 2px 0;
  font-size: 12px;
  color: #f87171;
  line-height: 1.4;
}
.field-hint {
  margin: 8px 2px 0;
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.5;
}
.field-hint strong { color: var(--muted); font-weight: 600; }
.form-field-prefix.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}
.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 28px;
  padding: 16px 28px;
  font-size: 16px;
  position: relative;
  z-index: 1;
}
.btn-submit.loading { pointer-events: none; opacity: 0.85; }
.btn-submit.loading .btn-label { visibility: hidden; }
.btn-spinner {
  display: none;
  position: absolute;
  top: 50%; left: 50%;
  width: 20px; height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnspin 0.7s linear infinite;
}
.btn-submit.loading .btn-spinner { display: block; }
@keyframes btnspin { to { transform: rotate(360deg); } }
.form-legal {
  margin-top: 16px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted-2);
}
.form-error-banner {
  margin-bottom: 24px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===== POST-SUBMIT TELEGRAM VERIFICATION MODAL ===== */
.verify-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(5, 5, 8, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: verifyFade 0.25s ease;
}
.verify-overlay[hidden] { display: none; }
@keyframes verifyFade { from { opacity: 0; } to { opacity: 1; } }
.verify-card {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
  animation: verifyIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.verify-card::before {
  content: "";
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 320px; height: 220px;
  background: radial-gradient(circle, var(--pink-glow), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}
@keyframes verifyIn {
  from { opacity: 0; transform: scale(0.92) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.verify-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 5vw, 32px);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  position: relative;
}
.verify-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
}
.verify-bullets {
  list-style: none;
  text-align: left;
  max-width: 340px;
  margin: 0 auto 28px;
  padding: 0;
  position: relative;
}
.verify-bullets li {
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  padding: 7px 0;
}
.verify-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 40px var(--pink-glow), 0 12px 30px -8px rgba(236, 72, 153, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.verify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px var(--pink-glow), 0 20px 44px -10px rgba(236, 72, 153, 0.65);
}
.verify-secondary {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.5;
  position: relative;
}
.verify-secondary .verify-email { color: var(--muted); font-weight: 600; word-break: break-all; }
.verify-close {
  margin-top: 18px;
  background: none;
  border: none;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
}
.verify-close:hover { color: var(--white); }
@media (max-width: 520px) {
  .verify-card { padding: 32px 22px; border-radius: 20px; }
}

/* ===== 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.
   Compact pill with two visible segments. Active segment uses the brand
   accent so the user clearly sees which language is on. */
.lang-toggle-top {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 2px;
  gap: 0;
}
.lang-toggle-top button {
  background: transparent;
  border: none;
  color: var(--muted);
  padding: 5px 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  font-weight: 600;
  cursor: pointer;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}
.lang-toggle-top button.active {
  background: var(--pink);
  color: #FFFFFF;
}
.lang-toggle-top button:not(.active):hover { color: var(--white); }
[data-theme="light"] .lang-toggle-top {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.08);
}
[data-theme="light"] .lang-toggle-top button.active {
  background: var(--pink);
  color: #FFFFFF;
}

/* ===== 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; }
  /* On mobile, the floating pill effect is overkill — keep the nav as a
     plain full-width sticky bar even when scrolled. We keep the same
     left:50% + translateX(-50%) positioning as the base so there's no
     transform jump on the scroll transition. */
  .nav.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    padding: 12px 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border);
    box-shadow: none;
    background: rgba(10, 6, 8, 0.88);
  }
  [data-theme="light"] .nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border);
    box-shadow: none;
  }
  .nav.scrolled .nav-inner { padding: 0 20px; }
  .nav-inner { padding: 0 16px; gap: 8px; }
  /* Hamburger blends with the other top-bar buttons (lang + theme).
     On mobile we strip the border and bg so all three feel consistent. */
  .nav-toggle {
    display: flex;
    background: transparent;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }
  .nav-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: transparent;
  }
  [data-theme="light"] .nav-toggle:hover {
    background: rgba(15, 23, 42, 0.05);
  }
  /* show top-bar lang toggle, hide the drawer copy so we don't have two */
  .lang-toggle-top { display: inline-flex; margin-left: auto; }
  .theme-toggle-top { display: inline-flex; }
  .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:first-child { padding: 10px 8px !important; }
  .compare-table td:nth-child(2), .compare-table td.hornyt-cell { padding: 10px 8px 10px 36px !important; }
  .compare-table td:nth-child(2)::before, .compare-table td.hornyt-cell::before { left: 8px; }

  /* 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: 28px;
  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
   ===================================================================== */

/* =====================================================================
   TRUST STRIP — answers safety/legitimacy questions before the visitor
   has to scroll to the FAQ. Four pills under the hero.
   ===================================================================== */
.trust-strip { padding: 40px 0 24px; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.trust-item:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.trust-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.10), rgba(168, 85, 247, 0.04));
  border: 1px solid var(--border-strong);
  color: var(--pink);
}
.trust-icon svg { width: 20px; height: 20px; }
.trust-meta { min-width: 0; }
.trust-title {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.trust-sub {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.4;
}
@media (max-width: 960px) {
  .trust-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .trust-row { grid-template-columns: 1fr; gap: 10px; }
  .trust-item { padding: 14px 16px; }
}
[data-theme="light"] .trust-item {
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}
[data-theme="light"] .trust-item:hover {
  box-shadow: 0 4px 12px -4px rgba(15, 23, 42, 0.08);
}
[data-theme="light"] .trust-icon {
  background: linear-gradient(135deg, rgba(0, 175, 240, 0.10), rgba(99, 102, 241, 0.04));
}

/* =====================================================================
   LIVE ACTIVITY TOAST — single fixed-position notification bottom-left.
   Substy-style: square gradient icon block (bell) + single-line message.
   Driven by liveToast() in app.js, cycles ~30 times max then stops.
   ===================================================================== */
.live-toast {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px 12px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 14px 34px -10px rgba(0, 0, 0, 0.50),
              0 2px 8px -2px rgba(0, 0, 0, 0.30);
  min-width: 280px;
  max-width: 380px;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.32s ease,
              transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.live-toast.live-toast-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.live-toast-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FFFFFF;
  box-shadow: 0 4px 12px -4px var(--pink-glow);
}
.live-toast-icon svg {
  width: 22px;
  height: 22px;
}
.live-toast-text {
  font-family: var(--body);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: -0.005em;
}
[data-theme="light"] .live-toast {
  background: #FFFFFF;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px -10px rgba(15, 23, 42, 0.16),
              0 2px 8px -2px rgba(15, 23, 42, 0.08);
}
[data-theme="light"] .live-toast-text {
  color: rgba(15, 23, 42, 0.86);
}
@media (max-width: 540px) {
  .live-toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-width: 0;
    max-width: none;
    padding: 10px 14px 10px 10px;
  }
  .live-toast-icon { width: 38px; height: 38px; }
  .live-toast-icon svg { width: 19px; height: 19px; }
  .live-toast-text { font-size: 12.5px; }
}
@media (prefers-reduced-motion: reduce) {
  .live-toast { transition: opacity 0.01ms ease; transform: none; }
  .live-toast.live-toast-in { transform: none; }
}

/* ===== APPLY-ACCESS POP-UP (time-on-site nudge, bottom-right) ===== */
.applypop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 340px;
  max-width: calc(100vw - 40px);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 20px 20px 18px;
  box-shadow: 0 18px 44px -12px rgba(0, 0, 0, 0.55),
              0 2px 10px -2px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(22px) scale(0.97);
  transition: opacity 0.34s ease,
              transform 0.46s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.applypop.applypop-in { opacity: 1; transform: translateY(0) scale(1); }
.applypop-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 26px; height: 26px;
  padding: 5px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.applypop-close:hover { color: var(--white); background: rgba(255, 255, 255, 0.06); }
.applypop-close svg { width: 16px; height: 16px; }
.applypop-head { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.applypop-flame { width: 16px; height: 20px; flex-shrink: 0; }
.applypop-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
}
.applypop-title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 8px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.applypop-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 16px;
}
.applypop-cta { display: flex; width: 100%; justify-content: center; }
[data-theme="light"] .applypop {
  background: #FFFFFF;
  border-color: rgba(15, 23, 42, 0.10);
  box-shadow: 0 18px 44px -12px rgba(15, 23, 42, 0.18),
              0 2px 10px -2px rgba(15, 23, 42, 0.08);
}
[data-theme="light"] .applypop-title { color: #0F172A; }
[data-theme="light"] .applypop-text { color: rgba(15, 23, 42, 0.62); }
[data-theme="light"] .applypop-close:hover { color: #0F172A; background: rgba(15, 23, 42, 0.05); }
@media (max-width: 540px) {
  .applypop {
    right: 12px; left: 12px; bottom: 12px;
    width: auto; max-width: none;
    padding: 16px 16px 14px;
  }
  .applypop-title { font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .applypop { transition: opacity 0.01ms ease; transform: none; }
  .applypop.applypop-in { transform: none; }
}

/* ===== COOKIE CONSENT BAR ===== */
.ckbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 14px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border-strong);
  box-shadow: 0 -10px 30px -12px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ckbar.ckbar-in { opacity: 1; transform: translateY(0); }
.ckbar-text { font-size: 13px; line-height: 1.5; color: var(--text); margin: 0; max-width: 720px; }
.ckbar-text a { color: var(--pink); text-decoration: underline; }
.ckbar-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ckbar-btn, .ckbar-accept {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: filter 0.2s, color 0.2s, background 0.2s, border-color 0.2s;
}
.ckbar-btn {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.ckbar-btn:hover { color: var(--white); border-color: var(--muted); background: rgba(255, 255, 255, 0.04); }
.ckbar-accept {
  border: none;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--magenta), var(--pink));
  box-shadow: 0 4px 14px -4px var(--pink-glow);
}
.ckbar-accept:hover { filter: brightness(1.08); }
[data-theme="light"] .ckbar {
  background: #FFFFFF;
  border-top-color: rgba(15, 23, 42, 0.10);
  box-shadow: 0 -10px 30px -12px rgba(15, 23, 42, 0.14);
}
[data-theme="light"] .ckbar-text { color: rgba(15, 23, 42, 0.82); }
[data-theme="light"] .ckbar-btn { color: rgba(15, 23, 42, 0.82); border-color: rgba(15, 23, 42, 0.18); }
[data-theme="light"] .ckbar-btn:hover { color: #0F172A; background: rgba(15, 23, 42, 0.04); }
@media (max-width: 600px) {
  .ckbar { flex-direction: column; align-items: stretch; text-align: center; gap: 10px; padding: 14px 16px; }
  .ckbar-actions { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .ckbar { transition: opacity 0.01ms ease; transform: none; }
  .ckbar.ckbar-in { transform: none; }
}

/* =====================================================================
   COHORT PILL — small urgency element near the final CTA
   ===================================================================== */
.cohort-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(236, 72, 153, 0.12);
  border: 1px solid rgba(236, 72, 153, 0.32);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--pink);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
[data-theme="light"] .cohort-pill {
  background: rgba(0, 175, 240, 0.10);
  border-color: rgba(0, 175, 240, 0.32);
  color: var(--pink);
}

/* =====================================================================
   HERO MOCKUP — substy-style composition card with text + visual + floaters
   ===================================================================== */
.hero-mockup-section { padding: 60px 0 80px; }
.hero-mockup-card {
  background: var(--surface-gradient-soft), linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* Subtle ambient glow inside the card, doesn't interfere with content */
.hero-mockup-card::before {
  content: "";
  position: absolute;
  top: -180px; right: -180px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--pink-glow), transparent 65%);
  filter: blur(70px);
  opacity: 0.6;
  pointer-events: none;
}
.hero-mockup-card > * { position: relative; z-index: 1; }

/* === Left column: text === */
.hero-mockup-text { max-width: 480px; }
.hero-mockup-title {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--white);
  margin: 18px 0 20px;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.hero-mockup-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
}
.hero-mockup-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}
.hero-mockup-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hms-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
}
.hms-stat-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  color: var(--pink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hms-stat-lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 8px;
}

/* === Right column: visual stage === */
.hero-mockup-visual { position: relative; }
.hms-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  margin: 0 auto;
}

/* Main dashboard mockup — pre-rendered PNG, slight tilt for "designed" feel */
.hms-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-1.5deg);
  width: 88%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.5),
              0 0 0 1px var(--border);
  z-index: 2;
  display: block;
}

/* Floating chips — substy pattern: position absolute around the main card,
   gentle float animation so they feel "live". */
.hms-floater {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 12px 32px -10px rgba(0, 0, 0, 0.5);
  z-index: 3;
  animation: hms-float 4s ease-in-out infinite;
}
.hms-floater-paid {
  top: 8%;
  right: -4%;
  animation-delay: -0.5s;
  border-color: rgba(212, 165, 116, 0.4);
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.10), var(--surface));
}
.hms-floater-paid .hms-floater-amount {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.hms-floater-phase {
  bottom: 10%;
  left: -6%;
  animation-delay: -1.5s;
  transform: rotate(-2deg);
  border-color: rgba(236, 72, 153, 0.32);
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.10), var(--surface));
}
.hms-floater-lift {
  top: 38%;
  right: -8%;
  animation-delay: -0.8s;
  transform: rotate(2.5deg);
  border-color: rgba(168, 85, 247, 0.32);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.10), var(--surface));
}
.hms-floater-lift .hms-floater-label { color: rgba(168, 85, 247, 1); }
.hms-floater-icon { font-size: 16px; }
.hms-floater-meta { display: flex; flex-direction: column; gap: 2px; }
.hms-floater-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
}
.hms-floater-sub {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  color: var(--muted-2);
}

@keyframes hms-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -6px; }
}

/* Hand-drawn arrows connecting floaters to the chat card */
.hms-arrow {
  position: absolute;
  width: 100px;
  height: 50px;
  color: var(--pink);
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}
.hms-arrow-1 { top: 18%; right: 22%; }
.hms-arrow-2 { bottom: 22%; left: 18%; transform: scaleX(-1); }

/* Mobile: stack + scale down */
@media (max-width: 960px) {
  .hero-mockup-card {
    grid-template-columns: 1fr;
    padding: 44px 32px;
    gap: 36px;
  }
  .hero-mockup-text { max-width: none; }
  .hms-stage { aspect-ratio: 4 / 3; max-width: 480px; }
  .hms-bg { width: 88%; }
  .hms-floater-paid { right: 0; }
  .hms-floater-phase { left: 0; }
  .hms-floater-lift { right: 0; top: 50%; }
}
@media (max-width: 540px) {
  .hero-mockup-section { padding: 40px 0 56px; }
  .hero-mockup-card { padding: 32px 22px; gap: 28px; border-radius: 24px; }
  .hero-mockup-title { font-size: clamp(26px, 8vw, 34px); }
  .hero-mockup-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hms-stat { padding: 14px 14px; }
  .hms-stat-num { font-size: 22px; }
  .hms-floater { padding: 8px 11px; gap: 8px; border-radius: 12px; }
  .hms-floater-paid .hms-floater-amount { font-size: 17px; }
  .hms-floater-label { font-size: 9.5px; }
  .hms-floater-sub { font-size: 8.5px; }
  .hms-arrow { width: 70px; height: 36px; }
}

/* Light theme — substy-exact blue wash on the card + softer floater shadows */
[data-theme="light"] .hero-mockup-card {
  background: var(--surface-gradient-soft), var(--surface);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03),
              0 12px 36px -12px rgba(15, 23, 42, 0.08);
}
[data-theme="light"] .hero-mockup-card::before {
  background: radial-gradient(circle, rgba(0, 175, 240, 0.18), transparent 65%);
  opacity: 0.5;
}
[data-theme="light"] .hms-bg {
  box-shadow: 0 24px 60px -20px rgba(15, 23, 42, 0.18),
              0 0 0 1px var(--border);
}
[data-theme="light"] .hms-floater {
  box-shadow: 0 12px 32px -10px rgba(15, 23, 42, 0.18);
}
[data-theme="light"] .hms-arrow { opacity: 0.45; color: var(--pink); }

/* ===== 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: flex;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  justify-content: 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-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  align-self: center;
}
.platform-logo-of { filter: drop-shadow(0 0 12px rgba(0, 175, 240, 0.25)); }
.platform-logo-fv { border-radius: 9px; filter: drop-shadow(0 0 12px rgba(73, 242, 100, 0.28)); }
[data-theme="light"] .platform-logo-of { filter: drop-shadow(0 0 8px rgba(0, 175, 240, 0.18)); }
[data-theme="light"] .platform-logo-fv { filter: drop-shadow(0 0 8px rgba(73, 242, 100, 0.2)); }
.platform-and {
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
  font-size: 0.7em;
  margin: 0 -2px;
}
.platform-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #00AFF0;
  box-shadow: 0 0 0 4px rgba(0, 175, 240, 0.18),
              0 0 16px rgba(0, 175, 240, 0.45);
  flex-shrink: 0;
  align-self: center;
}
[data-theme="light"] .platform-dot {
  box-shadow: 0 0 0 4px rgba(0, 175, 240, 0.14),
              0 0 12px rgba(0, 175, 240, 0.3);
}

/* Trust strip — image variant for brand logos (Cloudflare, etc).
   No background or border: the SVG sits naked on the card so the
   brand color reads cleanly. Drop-shadow gives subtle definition
   on both themes without painting a box around it. */
.trust-icon-img {
  background: transparent;
  border: none;
  padding: 0;
  filter: drop-shadow(0 0 10px rgba(243, 128, 32, 0.25));
}
[data-theme="light"] .trust-icon-img {
  background: transparent;
  border: none;
  filter: drop-shadow(0 0 8px rgba(243, 128, 32, 0.20));
}
.trust-logo {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.platform-tagline {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}
.platform-integration {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 22px auto 0;
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  /* Always a dark chip, in both themes: the OnlyMonster mark is a
     dark-background lockup (white wordmark) and disappears on light bg. */
  background: rgb(10, 10, 10);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
}
.platform-integration-logo {
  height: 15px;
  width: auto;
  object-fit: contain;
}

/* ===== 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: 24px;
  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: 24px;
  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: 44px;
  height: 44px;
  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: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  box-shadow: 0 4px 12px -4px rgba(236, 72, 153, 0.4);
}
/* Per-testimonial gradient to break the "all-three-look-identical" feel */
.testi-avatar-1 {
  background: linear-gradient(135deg, #EC4899, #A855F7);
  box-shadow: 0 4px 12px -4px rgba(236, 72, 153, 0.45);
}
.testi-avatar-2 {
  background: linear-gradient(135deg, #A855F7, #6366F1);
  box-shadow: 0 4px 12px -4px rgba(168, 85, 247, 0.45);
}
.testi-avatar-3 {
  background: linear-gradient(135deg, #D4A574, #FB923C);
  box-shadow: 0 4px 12px -4px rgba(212, 165, 116, 0.5);
}
.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: 28px;
  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: 32px;
  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-dot { width: 12px; height: 12px; }
}
@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%);
}

/* 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.97);
  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);
}

/* =====================================================================
   REAL CONVERSATIONS SLIDER
   7 unedited dashboard captures telling one full sale, each with a
   technique annotation. Horizontal scroll-snap track + arrow buttons
   + clickable dots driven by a tiny IIFE in app.js.
   ===================================================================== */
.convos-section { padding: 110px 0 130px; position: relative; }
[data-theme="light"] .convos-section { background: var(--bg-alt); }

.convos-wrap {
  position: relative;
  margin-top: 56px;
}

.convos-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 4px 24px;
  /* Add a soft fade on each side so partial slides look intentional */
  mask-image: linear-gradient(to right, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
}
.convos-track::-webkit-scrollbar { display: none; }
.convos-track:focus-visible { outline: 2px solid var(--pink); outline-offset: 6px; border-radius: 24px; }

.convo-slide {
  flex: 0 0 min(640px, 86%);
  scroll-snap-align: center;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.4s;
}
[data-theme="light"] .convo-slide {
  background: #FFFFFF;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 24px -10px rgba(15, 23, 42, 0.10);
}
.convo-slide:hover { border-color: var(--border-strong); }
.convo-slide-highlight {
  border-color: rgba(236, 72, 153, 0.45);
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.06), var(--bg-alt));
}
[data-theme="light"] .convo-slide-highlight {
  border-color: rgba(0, 175, 240, 0.35);
  background: linear-gradient(180deg, rgba(0, 175, 240, 0.04), #FFFFFF);
}

.convo-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.convo-step {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.convo-tag {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--pink);
  background: rgba(236, 72, 153, 0.10);
  border: 1px solid rgba(236, 72, 153, 0.30);
  border-radius: 999px;
  padding: 5px 12px;
  text-transform: uppercase;
}
[data-theme="light"] .convo-tag {
  color: #00AFF0;
  background: rgba(0, 175, 240, 0.08);
  border-color: rgba(0, 175, 240, 0.30);
}
.convo-slide-highlight .convo-tag {
  color: var(--white);
  background: linear-gradient(135deg, var(--magenta), var(--pink));
  border-color: transparent;
}
[data-theme="light"] .convo-slide-highlight .convo-tag {
  background: linear-gradient(135deg, #00AFF0, #4F46E5);
}
.convo-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 4px 0 0;
}
[data-theme="light"] .convo-title { color: #0F172A; }
.convo-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
[data-theme="light"] .convo-title em { color: #00AFF0; }
.convo-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.convo-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
  object-fit: contain;
}
[data-theme="light"] .convo-img {
  background: #0B1220;
  border-color: rgba(15, 23, 42, 0.08);
}

/* Arrow buttons (hidden on touch/small viewports) */
.convos-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid var(--border-strong);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
[data-theme="light"] .convos-nav {
  background: #FFFFFF;
  border-color: rgba(15, 23, 42, 0.10);
  color: #0F172A;
  box-shadow: 0 4px 14px -4px rgba(15, 23, 42, 0.20);
}
.convos-nav:hover { background: var(--pink); border-color: var(--pink); transform: translateY(-50%) scale(1.05); }
[data-theme="light"] .convos-nav:hover { background: #00AFF0; border-color: #00AFF0; color: #FFFFFF; }
.convos-nav:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; }
.convos-nav[disabled] { opacity: 0.30; cursor: not-allowed; }
.convos-nav svg { width: 22px; height: 22px; }
.convos-nav-prev { left: -8px; }
.convos-nav-next { right: -8px; }

/* Pagination dots */
.convos-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.convos-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, width 0.25s;
}
.convos-dot[aria-current="true"] {
  width: 24px;
  border-radius: 6px;
  background: var(--pink);
}
[data-theme="light"] .convos-dot[aria-current="true"] { background: #00AFF0; }

.convos-footnote {
  margin-top: 22px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--muted-2);
}

/* Mobile: stack the card with smaller padding; hide arrows (touch = swipe) */
@media (max-width: 720px) {
  .convos-section { padding: 64px 0 80px; }
  .convo-slide { padding: 22px 18px; gap: 16px; flex: 0 0 88%; border-radius: 20px; }
  .convo-title { font-size: 19px; }
  .convo-desc { font-size: 13.5px; }
  .convos-nav { display: none; }
  .convos-track { mask-image: linear-gradient(to right, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%); }
}

/* =========================================================
   RESPONSIVE FIXES — live audit 2026-06-02
   Bug numbers reference GitHub issues on alvaroroll0n/hornyt-web.
   Selectors target the actual live CSS, not the old `main` branch.
   ========================================================= */

/* ----- Issue #10 (🔴): toast tapa el último contenido -----
   `.live-toast` es fixed bottom: 12px y siempre cubre los últimos
   ~70 px del viewport. Sin padding-bottom en body, secciones cortas
   (CTAs finales, footer) quedan tapadas. */
body { padding-bottom: 88px; }
@media (min-width: 769px) {
  body { padding-bottom: 32px; }   /* desktop: el toast es más pequeño y va abajo-izda */
}

/* ----- Issue #14 (🟡): hero meta info en columna en mobile -----
   3 hijos con flex-wrap: el 3º caía suelto a su propia línea creando
   un layout asimétrico. Apilamos los 3 limpios en columna. */
@media (max-width: 540px) {
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 40px; }
  .hero-meta-item { width: 100%; }
}

/* ----- Issue #4 (🔴): hero desktop centrado -----
   `.hero { display: flex }` colapsaba `.container` a su contenido.
   En desktop el hero-grid quedaba pegado a un lado en lugar de
   centrado. Hacemos `.hero` block y centramos `.hero-grid`. */
.hero { display: block; padding-top: 220px; padding-bottom: 180px; }
.hero .container { width: 100%; }
.hero-grid { margin-left: auto; margin-right: auto; }

/* ----- Issue #5 (🟡): hamburguesa móvil sin borde duro ----- */
@media (max-width: 860px) {
  .nav-toggle {
    width: 40px;
    height: 40px;
    border-color: transparent;
    background: rgba(255, 255, 255, 0.03);
  }
  [data-theme="light"] .nav-toggle { background: rgba(15, 23, 42, 0.05); }
  .nav-toggle:hover { background: rgba(255, 255, 255, 0.06); border-color: transparent; }
  [data-theme="light"] .nav-toggle:hover { background: rgba(15, 23, 42, 0.08); border-color: transparent; }
  body.nav-open .nav-toggle { background: transparent; border-color: transparent; }
}

/* ----- Issue #7/#13 (🟡): tablet 721-860 con nav inline -----
   Bajamos el breakpoint del hamburguesa para que tablets de 768+
   muestren los 5 links + lang + theme + CTA en línea. */
@media (min-width: 721px) and (max-width: 860px) {
  .nav-toggle { display: none !important; }
  .lang-toggle-top { display: none !important; }
  .theme-toggle-top { display: none !important; }
  .nav-actions > .lang-toggle:not(.lang-toggle-top) { display: inline-flex !important; }
  .nav-actions > .theme-toggle:not(.theme-toggle-top) { display: inline-flex !important; }
  .nav-menu {
    display: contents !important;
    position: static !important;
    transform: none !important;
    pointer-events: auto !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 0 !important;
    padding: 0 !important;
    max-height: none !important;
    height: auto !important;
  }
  .nav-links { flex-direction: row !important; align-items: center !important; gap: 18px !important; margin: 0 !important; padding: 0 !important; }
  .nav-links li { border: 0 !important; list-style: none !important; }
  .nav-links a { display: inline-block !important; padding: 0 !important; font-size: 13px !important; border: 0 !important; }
  .nav-actions { flex-direction: row !important; align-items: center !important; gap: 10px !important; }
  .nav-actions .btn,
  .nav-actions .btn-primary { width: auto !important; padding: 9px 14px !important; font-size: 12.5px !important; justify-content: center !important; }
  .nav-inner { gap: 14px !important; }
  /* body.nav-open no aplica en tablet */
  body.nav-open { overflow: auto; }
  body.nav-open::before { display: none; }
}

/* ----- Issue #3 (🔴): drawer móvil full-viewport con backdrop -----
   El drawer original tenía max-height: calc(100vh - 64px) sin
   bottom: 0, así que sólo cubría su contenido (~453 px) y el hero
   se veía detrás (botón "Apply" duplicado, etc). */
@media (max-width: 720px) {
  .nav-menu {
    bottom: 0;
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
    max-height: none;
  }
  /* Reforzar opacidad — algunos navegadores aplican raro el backdrop-filter */
  [data-theme="dark"] .nav-menu,
  :root:not([data-theme="light"]) .nav-menu {
    background: rgba(8, 5, 7, 0.99);
  }
  [data-theme="light"] .nav-menu {
    background: rgba(255, 255, 255, 0.99);
  }
  /* Backdrop opaco bajo la nav (z-index < drawer) */
  body.nav-open::before {
    content: "";
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(8, 5, 7, 0.7);
    z-index: 98;
    pointer-events: none;
  }
  [data-theme="light"] body.nav-open::before {
    background: rgba(255, 255, 255, 0.85);
  }
}

/* ----- Issue #2/#12 (🔴): /aplicar cohort timeline vertical en mobile -----
   El grid de 4 columnas no cabe en 343px; el horizontal scroll
   se ve roto. Reestructuramos a timeline vertical: orbe a la
   izquierda, contenido a la derecha, línea conectora vertical. */
@media (max-width: 540px) {
  .phases { margin: 56px 0 40px; }

  /* Línea horizontal original → vertical en móvil */
  .phases-line {
    top: 36px; bottom: 36px; left: 28px; right: auto;
    width: 1px; height: auto;
    background: linear-gradient(180deg, transparent, var(--border-strong) 8%, var(--border-strong) 92%, transparent);
  }
  .phases-line-fill {
    top: 36px; left: 28px; right: auto;
    width: 1px; height: 25%;
    background: var(--pink);
    box-shadow: 0 0 12px var(--pink);
    transition: height 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) 0.3s;
  }
  .phases-line-fill.full { width: 1px; height: 25%; }

  /* Grid → columna única; cada fase es una fila con orbe izquierda */
  .phases-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .phase {
    text-align: left;
    padding-top: 0;
    padding-left: 80px;
    min-height: 56px;
    position: relative;
  }
  .phase-orb {
    position: absolute;
    left: 0; top: 0;
    margin: 0;
  }
  .phase-tag { margin-bottom: 4px; }
  .phase-name { margin-bottom: 4px; }
}

/* ----- Issue #9 (🟡): /para-quien número decorativo no pisa título -----
   `.use-num` (100px italic, top:20 right:30) solapaba el título
   en mobile. Lo reducimos y mandamos al fondo. */
.use-num { z-index: 0; pointer-events: none; }
.use-card > *:not(.use-num) { position: relative; z-index: 1; }
@media (max-width: 540px) {
  .use-num {
    font-size: 64px;
    top: 12px;
    right: 18px;
    color: rgba(236, 72, 153, 0.07);
  }
}




/* =========================================================
   ACCESSIBILITY FIXES — contrast
   ========================================================= */

/* Language toggle: active segment needs readable text on pink/blue bg */
.lang-toggle button.active,
.lang-toggle-top button.active,
[data-theme="light"] .lang-toggle button.active,
[data-theme="light"] .lang-toggle-top button.active {
  color: #09090B;
  font-weight: 700;
}

/* Very small helper texts need more contrast than muted-2 */
.convos-footnote,
.stats-disclaimer {
  color: var(--muted);
}

/* Footer column headings are tiny uppercase text, so avoid low-contrast accent color */
.footer-col h4 {
  color: var(--text);
  font-weight: 700;
}

/* Light theme: some secondary text was too faint on white */
[data-theme="light"] .convos-footnote,
[data-theme="light"] .stats-disclaimer {
  color: rgba(15, 23, 42, 0.72);
}

/* Light theme: footer headings need strong text, not cyan */
[data-theme="light"] .footer-col h4 {
  color: #0F172A;
}


/* =========================================================
   ACCESSIBILITY FIXES — carousel touch targets
   ========================================================= */

/* Keep the visual dots small, but make the real button target 48x48 */
.convos-dots {
  gap: 0;
  margin-top: 10px;
}

.convos-dot {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s;
}

.convos-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--border-strong);
  transition: background 0.2s, width 0.25s, height 0.25s;
}

.convos-dot[aria-current="true"] {
  width: 48px;
  min-width: 48px;
  border-radius: 999px;
  background: transparent;
}

.convos-dot[aria-current="true"]::before {
  width: 24px;
  height: 8px;
  border-radius: 6px;
  background: var(--pink);
}

[data-theme="light"] .convos-dot[aria-current="true"] {
  background: transparent;
}

[data-theme="light"] .convos-dot[aria-current="true"]::before {
  background: #00AFF0;
}

.convos-dot:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: -8px;
}


/* =========================================================
   ACCESSIBILITY FIXES — footer labels are not document headings
   ========================================================= */

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
  margin: 0 0 16px;
}

[data-theme="light"] .footer-heading {
  color: #0F172A;
}

/* ===== Apply-access block (/aplicar, /es/aplicar) =====
   Secondary "create account / sign in" strip for already-approved and existing users, shown
   above the form. Deliberately lighter than the primary "Apply" CTA. Fully scoped: every
   selector is prefixed .apply-access*; reuses existing tokens; responsive only for this block. */
.apply-access {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  max-width: 720px;
  margin: 0 auto 24px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-2);
}
.apply-access-copy { min-width: 0; }
.apply-access-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.apply-access-text {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.apply-access-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}
.apply-access-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1px solid var(--pink);
  border-radius: 10px;
  color: var(--pink);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease;
}
.apply-access-btn:hover { background: var(--pink-glow); }
.apply-access-signin {
  font-size: 13px;
  color: var(--muted);
}
.apply-access-link {
  color: var(--pink);
  font-weight: 600;
  text-decoration: none;
}
.apply-access-link:hover { text-decoration: underline; }
.apply-access-btn:focus-visible,
.apply-access-link:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}
@media (max-width: 560px) {
  .apply-access { flex-direction: column; align-items: stretch; }
  .apply-access-actions { justify-content: space-between; }
  .apply-access-btn { justify-content: center; }
}

/* ===== Create-account hero card (/aplicar, /es/aplicar) =====
   Primary CTA after the application form was retired: the "create your account"
   card is now the centerpiece. Theme-aware via tokens (pink -> OF-blue on light);
   every selector is scoped .account-card*. */
.account-card {
  max-width: 540px;
  margin: 0 auto;
  padding: 48px 44px 44px;
  text-align: center;
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  background:
    radial-gradient(130% 90% at 50% 0%, var(--pink-glow), transparent 62%),
    var(--surface);
  box-shadow: 0 40px 90px -50px var(--pink-glow);
  overflow: hidden;
}
.account-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--magenta), transparent);
}
.account-card-flame {
  width: 50px;
  height: 62px;
  margin: 0 auto 18px;
  display: block;
  filter: drop-shadow(0 8px 22px var(--pink-glow));
}
.account-card-title {
  font-family: var(--display);
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--white);
  margin: 0 0 12px;
}
.account-card-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 auto 26px;
  max-width: 40ch;
}
.account-card-bullets {
  list-style: none;
  margin: 0 auto 30px;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 13px;
  text-align: left;
}
.account-card-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text);
}
.account-card-bullets li svg {
  flex: none;
  width: 24px;
  height: 24px;
  padding: 5px;
  border-radius: 50%;
  color: var(--pink);
  background: var(--pink-glow);
}
.account-card-cta {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
}
.account-card-cta svg { width: 18px; height: 18px; }
.account-card-signin {
  margin: 18px 0 0;
  font-size: 14px;
  color: var(--muted);
}
.account-card-signin a {
  color: var(--pink);
  font-weight: 600;
  text-decoration: none;
}
.account-card-signin a:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .account-card { padding: 36px 22px 32px; border-radius: 20px; }
}