:root {
  /* 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);
  --display: "Fraunces", "Georgia", serif;
  --body: "Geist", "Inter", system-ui, sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Background atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(236, 72, 153, 0.09) 0%, transparent 48%),
    radial-gradient(ellipse at 85% 30%, rgba(168, 85, 247, 0.07) 0%, transparent 52%),
    radial-gradient(ellipse at 50% 100%, rgba(168, 85, 247, 0.04) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, header, footer { position: relative; z-index: 2; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--white);
  font-variation-settings: "SOFT" 50, "opsz" 144;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--pink);
  display: inline-block;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
section {
  padding: 168px 0;
  position: relative;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  background: rgba(10, 6, 8, 0.65);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease;
}
.nav.scrolled { padding: 14px 0; }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.04em;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  display: flex;
  align-items: center;
  gap: 2px;
}
.logo-flame {
  display: inline-block;
  width: 16px;
  height: 20px;
  margin: 0 1px;
  transform: translateY(2px);
  filter: drop-shadow(0 0 8px var(--pink-glow));
  animation: flicker 3s ease-in-out infinite;
}
@keyframes flicker {
  0%, 100% { transform: translateY(2px) scale(1); filter: drop-shadow(0 0 8px var(--pink-glow)); }
  50% { transform: translateY(1px) scale(1.05); filter: drop-shadow(0 0 14px var(--pink)); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--pink); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
}
.lang-toggle button {
  background: transparent;
  border: none;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 100px;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: all 0.2s;
}
.lang-toggle button.active {
  background: var(--pink);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 100px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  /* Luxury CTA: soft purple→pink gradient, restrained shadow (no neon explosion) */
  background: linear-gradient(135deg, var(--magenta), var(--pink));
  color: #fff;
  box-shadow: 0 4px 18px -8px var(--pink-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -10px var(--pink-glow);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-strong);
}
.btn svg { width: 16px; height: 16px; }

/* ===== HERO ===== */
.hero {
  padding: 220px 0 180px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  max-width: 900px;
}
.hero-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  font-variation-settings: "SOFT" 70, "opsz" 144;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 19px;
  color: var(--muted);
  max-width: 540px;
  margin: 32px 0 40px;
  opacity: 0;
  animation: rise 0.9s 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 0.9s 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero-meta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 0.9s 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* Hero visual — floating chat preview */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: rise 1.1s 0.4s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.chat-preview {
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  position: relative;
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--border),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.chat-preview::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--pink-glow), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
  position: relative;
}
.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
  position: relative;
}
.chat-avatar::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  border: 2px solid var(--surface);
}
.chat-name {
  font-weight: 500;
  color: var(--white);
  font-size: 14px;
}
.chat-status {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.chat-status .live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse-pink 1.5s infinite;
}
@keyframes pulse-pink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.chat-badge {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10px;
  padding: 4px 10px;
  background: rgba(236, 72, 153, 0.12);
  color: var(--pink);
  border-radius: 100px;
  letter-spacing: 0.1em;
}
.chat-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 240px;
}
.msg {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px);
  animation: msg-in 0.4s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
@keyframes msg-in {
  to { opacity: 1; transform: translateY(0); }
}
.msg-them {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.msg-us {
  background: linear-gradient(135deg, var(--pink), #E0226B);
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  box-shadow: 0 8px 20px -6px var(--pink-glow);
}
.typing {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  display: inline-flex;
  gap: 4px;
  width: fit-content;
}
.typing span {
  width: 6px;
  height: 6px;
  background: var(--muted);
  border-radius: 50%;
  animation: bounce 1.2s infinite;
}
.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.chat-float-tag {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  color: var(--pink);
  padding: 6px 10px;
  border-radius: 8px;
  letter-spacing: 0.1em;
  z-index: 3;
  transition: opacity 0.4s ease;
}
.tag-1 {
  top: 30%;
  right: -20px;
  animation: float 4s ease-in-out infinite;
}
.tag-2 {
  bottom: 18%;
  left: -30px;
  animation: float 5s ease-in-out infinite 1s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== TICKER ===== */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 60px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
}
.ticker-item strong {
  font-family: var(--display);
  font-style: italic;
  color: var(--white);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.ticker-item .symbol { color: var(--pink); }

/* ===== SECTION HEAD ===== */
.section-head {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-title {
  font-size: clamp(36px, 5vw, 60px);
  margin: 20px 0 24px;
  font-weight: 400;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
}
.section-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== ARCHITECTURE ===== */
.arch-section { padding: 168px 0; }
.arch-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.arch-visual {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 20px 30px;
  overflow: hidden;
}
.arch-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 15%, var(--pink-glow), transparent 30%),
    radial-gradient(circle at 80% 85%, rgba(168, 85, 247, 0.25), transparent 30%);
  pointer-events: none;
  opacity: 0.3;
  filter: blur(40px);
}
.arch-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(236, 72, 153, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 72, 153, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}
.pipeline-frame-label {
  position: absolute;
  top: 14px;
  left: 20px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted-2);
  letter-spacing: 0.25em;
  z-index: 2;
}
.pipeline-svg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0 auto;
}

.arch-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.arch-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 16px;
  align-items: start;
  cursor: pointer;
  transition: padding 0.3s;
}
.arch-item:hover { padding-left: 8px; }
.arch-item-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--pink);
  padding-top: 2px;
}
.arch-item-title {
  font-family: var(--display);
  font-weight: 500;
  color: var(--white);
  font-size: 18px;
}
.arch-item-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}
.arch-item-arrow {
  color: var(--muted-2);
  font-family: var(--mono);
  transition: transform 0.3s, color 0.3s;
}
.arch-item:hover .arch-item-arrow {
  color: var(--pink);
  transform: translateX(4px);
}

/* ===== FEATURES ===== */
.features-section {
  padding: 168px 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3), transparent);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.feature-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.feature-card::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--pink-glow), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  filter: blur(40px);
}
.feature-card:hover::after { opacity: 0.4; }

.card-tall { grid-column: span 5; min-height: 420px; }
.card-wide { grid-column: span 7; }
.card-med { grid-column: span 4; }
.card-third { grid-column: span 4; }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(168, 85, 247, 0.1));
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}
.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--pink);
}
.feature-tag {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--pink);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.feature-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.feature-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* humanization showcase */
.human-demo {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 12px;
  position: relative;
}
.human-demo-row {
  display: flex;
  gap: 10px;
  margin: 8px 0;
}
.human-demo-row .label {
  color: var(--muted-2);
  min-width: 40px;
}
.human-demo-row .from { color: var(--muted); }
.human-demo-row .to { color: var(--pink); }

/* ===== LIVE DEMO ===== */
.live-section { padding: 168px 0; }
.live-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.live-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.live-info h2 { margin: 20px 0 24px; font-size: clamp(36px, 5vw, 54px); font-weight: 400; }
.live-info h2 em { font-style: italic; color: var(--pink); font-weight: 300; }
.live-info p { color: var(--muted); font-size: 17px; line-height: 1.6; }
.live-stages {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stage-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  transition: color 0.3s;
}
.stage-pill .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--muted-2);
  width: 40px;
  transition: color 0.3s;
}
.stage-pill.current {
  color: var(--white);
}
.stage-pill.current .num { color: var(--pink); }
.stage-pill .phase-name { letter-spacing: 0.05em; }

.live-chat {
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.live-chat::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--pink-glow), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.live-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 10px 0;
}
.live-body .msg { max-width: 75%; }

.replay-btn {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid var(--border-strong);
  color: var(--pink);
  font-family: var(--mono);
  font-size: 11px;
  padding: 8px 14px;
  border-radius: 100px;
  cursor: pointer;
  letter-spacing: 0.15em;
  transition: all 0.2s;
  z-index: 2;
}
.replay-btn:hover { background: var(--pink); color: var(--white); }

/* ===== USE CASES ===== */
.use-section { padding: 168px 0; }
.use-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}
.use-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.4s;
}
.use-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}
.use-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 100px;
  color: rgba(236, 72, 153, 0.12);
  position: absolute;
  top: 20px;
  right: 30px;
  font-weight: 300;
  line-height: 1;
}
.use-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--pink);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.use-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 36px;
  color: var(--white);
  margin: 16px 0 20px;
  letter-spacing: -0.02em;
}
.use-title em { font-style: italic; color: var(--pink); font-weight: 300; }
.use-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.use-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.use-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}
.use-list li::before {
  content: "→";
  color: var(--pink);
  font-family: var(--mono);
  flex-shrink: 0;
}

/* ===== PRICING / CTA ===== */
.cta-section {
  padding: 168px 0;
  position: relative;
}
.cta-box {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 32px;
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--pink), transparent 60deg, transparent);
  animation: spin 20s linear infinite;
  opacity: 0.15;
}
.cta-box::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-radius: 31px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  margin: 24px 0 24px;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.cta-title em { font-style: italic; color: var(--pink); font-weight: 300; }
.cta-sub {
  color: var(--muted);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto 40px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-contact {
  margin-top: 40px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}
.cta-contact a {
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.cta-contact a:hover { color: var(--pink); }

/* ===== FAQ ===== */
.faq-section { padding: 168px 0; }
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-q-text {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background 0.3s;
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--pink);
  transition: transform 0.3s;
}
.faq-toggle::before { width: 12px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-toggle { background: var(--pink); }
.faq-item.open .faq-toggle::before, .faq-item.open .faq-toggle::after { background: var(--white); }
.faq-item.open .faq-toggle::after { transform: rotate(90deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.3s;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 300px;
  margin-top: 16px;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-tagline {
  color: var(--muted);
  margin-top: 16px;
  max-width: 280px;
  font-size: 14px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--mono);
}

/* ===== WEBGL CANVASES ===== */
.webgl-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
  z-index: 0;
}
.webgl-hero {
  z-index: 0;
  opacity: 0.45;
  mix-blend-mode: screen;
  mask-image: radial-gradient(ellipse at center, black 0%, black 35%, transparent 88%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, black 35%, transparent 88%);
}
.webgl-arch {
  z-index: 0;
  opacity: 0.28;
}
.webgl-cta {
  z-index: 0;
  opacity: 0.35;
  /* Soft radial fade so the flame stays atmospheric and never washes out the text. */
  mask-image: radial-gradient(ellipse at center, black 0%, black 25%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, black 25%, transparent 70%);
}
.hero > .container, .arch-section > .container, .cta-section > .container,
.apply-section > .container { position: relative; z-index: 2; }

/* ===== PRICING ===== */
.pricing-section { padding: 168px 0; position: relative; }

/* ===== INTERACTIVE SAVINGS CALCULATOR ===== */
.calc {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.calc::before {
  content: "";
  position: absolute;
  top: -140px; left: 50%;
  width: 460px; height: 320px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, var(--pink-glow), transparent 70%);
  filter: blur(70px);
  opacity: 0.6;
  pointer-events: none;
}
.calc > * { position: relative; z-index: 1; }

/* --- slider input --- */
.calc-input { text-align: center; }
.calc-input-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.calc-revenue {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(34px, 5vw, 48px);
  color: var(--white);
  letter-spacing: -0.03em;
  margin: 10px 0 22px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--magenta), var(--pink)) no-repeat,
              rgba(255, 255, 255, 0.07);
  background-size: var(--fill, 55%) 100%;
  cursor: pointer;
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--pink);
  box-shadow: 0 4px 14px -2px var(--pink-glow);
  cursor: grab;
  transition: transform 0.15s;
}
.calc-slider::-webkit-slider-thumb:active { transform: scale(1.12); cursor: grabbing; }
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--pink);
  box-shadow: 0 4px 14px -2px var(--pink-glow);
  cursor: grab;
}
.calc-slider:focus-visible { box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.18); }
.calc-slider-ends {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted-2);
}

/* --- team vs hornyt --- */
.calc-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0 28px;
}
.calc-cell {
  border-radius: 18px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
}
.calc-cell-team {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
}
.calc-cell-hornyt {
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.09), rgba(168, 85, 247, 0.04));
  border: 1px solid var(--border-strong);
}
.calc-cell-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.calc-cell-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.calc-cell-badge {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(236, 72, 153, 0.12);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  padding: 3px 9px;
}
.calc-cell-comp {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 14px 0 16px;
  line-height: 1.25;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  min-height: 2.5em;
}
.calc-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.calc-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 12px;
}
.calc-line span:first-child {
  font-family: var(--mono);
  letter-spacing: 0.05em;
  color: var(--muted);
}
.calc-line span:last-child {
  font-weight: 500;
  color: var(--text);
}
.calc-cell-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px;
}
.calc-total-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.calc-total-val {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 3.4vw, 30px);
  letter-spacing: -0.03em;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  transition: opacity 0.15s ease;
}
.calc-total-team { color: #f0788a; }
.calc-total-hornyt {
  background: linear-gradient(135deg, var(--magenta), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.calc.flash .calc-total-val,
.calc.flash .calc-cell-comp,
.calc.flash .calc-line span:last-child { opacity: 0.4; }

/* --- the hero savings number --- */
.calc-savings {
  text-align: center;
  padding: 32px 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.10), rgba(74, 222, 128, 0.02));
  border: 1px solid rgba(74, 222, 128, 0.25);
  transition: background 0.3s, border-color 0.3s;
}
.calc-savings-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: rgba(74, 222, 128, 0.9);
  transition: color 0.3s;
}
.calc-savings-amount {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(54px, 11vw, 92px);
  line-height: 1;
  color: #4ade80;
  letter-spacing: -0.04em;
  margin: 10px 0 12px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  transition: opacity 0.15s ease, color 0.3s, font-size 0.3s;
}
.calc.flash .calc-savings-amount { opacity: 0.4; }
.calc-savings-per {
  font-family: var(--mono);
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: rgba(74, 222, 128, 0.7);
  margin-left: 6px;
}
.calc-savings-year {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.calc-savings-year strong {
  font-family: var(--display);
  font-style: italic;
  color: #4ade80;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
/* parity mode — small/mid creators where the win is quality, not raw $ */
.calc-savings.is-parity {
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.09), rgba(168, 85, 247, 0.03));
  border-color: var(--border-strong);
}
.calc-savings.is-parity .calc-savings-label { color: var(--pink); }
.calc-savings.is-parity .calc-savings-amount {
  font-size: clamp(26px, 5vw, 36px);
  color: var(--white);
  margin: 12px 0 10px;
}
.calc-savings.is-parity .calc-savings-per { display: none; }

.calc-cta {
  display: flex;
  margin: 28px auto 0;
  width: fit-content;
  padding: 16px 36px;
  font-size: 15px;
}
.calc-disclaimer {
  margin-top: 22px;
  text-align: center;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--muted-2);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== WHAT'S INCLUDED ===== */
.includes-block { max-width: 760px; margin: 64px auto 0; }
.includes-head { text-align: center; margin-bottom: 32px; }
.includes-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 34px);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-top: 14px;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}

@media (max-width: 600px) {
  .calc { padding: 32px 22px; }
  .calc-compare { grid-template-columns: 1fr; }
  .calc-cta { width: 100%; justify-content: center; }
}

.pricing-card {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--pink-glow), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}
.pricing-card::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.4), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}
.pricing-card > * { position: relative; z-index: 1; }

.pricing-card-head {
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
  margin-bottom: 32px;
}
.pricing-card-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  color: var(--white);
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.pricing-card-sub {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.22em;
  margin-top: 10px;
}

.pricing-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.pricing-display-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.25em;
  margin-bottom: 6px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  font-family: var(--display);
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-currency {
  font-size: 28px;
  font-weight: 500;
  margin-right: 2px;
  color: var(--pink);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.pricing-fee {
  font-size: 64px;
  font-weight: 500;
  font-style: italic;
  font-family: var(--display);
  font-variation-settings: "SOFT" 100, "opsz" 144;
  background: linear-gradient(135deg, var(--coral), var(--pink), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.18s ease;
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-fee.flash { opacity: 0.35; }
.pricing-plus {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 40px;
  color: var(--muted);
  margin: 0 14px;
  line-height: 1;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.pricing-amount {
  font-size: 56px;
  font-weight: 500;
  font-style: italic;
  font-family: var(--display);
  font-variation-settings: "SOFT" 100, "opsz" 144;
  background: linear-gradient(135deg, var(--coral), var(--pink), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.18s ease;
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-amount.flash { opacity: 0.35; }
.pricing-percent {
  font-family: var(--display);
  font-style: italic;
  font-size: 48px;
  font-weight: 500;
  margin-left: 4px;
  background: linear-gradient(135deg, var(--coral), var(--pink), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.pricing-price-meta {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.pricing-meta-fee {
  display: inline-block;
  min-width: calc(28px + 2px + 64px);  /* matches $ + fee number above */
  text-align: left;
}
.pricing-meta-sep { margin: 0 12px; color: var(--muted-2); }
.pricing-meta-pct { color: var(--text); }
.pricing-period {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  margin-left: 10px;
  letter-spacing: 0.15em;
}
.pricing-display-detail {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

/* 3-col price table */
.pricing-table-3col th:nth-child(2),
.pricing-table-3col td:nth-child(2) {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--white);
  font-size: 18px;
  letter-spacing: -0.02em;
  text-align: right;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.pricing-table-3col th:nth-child(2) {
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.pricing-table-3col th:nth-child(3),
.pricing-table-3col td:nth-child(3) { text-align: right; }
.pricing-select-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.22em;
  margin-bottom: 10px;
}
.pricing-select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 16px 50px 16px 18px;
  color: var(--white);
  font-family: var(--body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23EC4899' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  cursor: pointer;
}
.pricing-select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}
.pricing-select option { background: var(--bg-alt); color: var(--white); }

.pricing-features {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text);
}
.pricing-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.14);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 50%;
  padding: 4px;
}

.pricing-cta { margin-top: 32px; text-align: center; }
.pricing-cta .btn { padding: 16px 32px; font-size: 15px; }
.pricing-cta-note {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted-2);
  letter-spacing: 0.22em;
}

/* Full price table (collapsible) */
.pricing-table-details {
  max-width: 880px;
  margin: 40px auto 0;
}
.pricing-table-summary {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 18px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  list-style: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  background: rgba(0, 0, 0, 0.2);
}
.pricing-table-summary::-webkit-details-marker { display: none; }
.pricing-table-summary::after {
  content: " ↓";
  color: var(--pink);
  margin-left: 10px;
  transition: transform 0.3s;
  display: inline-block;
}
.pricing-table-summary:hover {
  color: var(--pink);
  border-color: var(--border-strong);
}
.pricing-table-details[open] .pricing-table-summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
  color: var(--pink);
}
.pricing-table-details[open] .pricing-table-summary::after { transform: rotate(180deg); }
.pricing-table-wrap {
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--body);
}
.pricing-table th, .pricing-table td {
  padding: 16px 28px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.pricing-table th {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.25);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td {
  font-size: 14px;
  color: var(--text);
}
.pricing-table td:last-child {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--pink);
  font-size: 19px;
  letter-spacing: -0.02em;
  text-align: right;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.pricing-table tbody tr { transition: background 0.2s; }
.pricing-table tbody tr:hover { background: rgba(236, 72, 153, 0.04); }

/* ===== SAVINGS CALCULATOR ===== */
.savings-block { max-width: 1080px; margin: 80px auto 0; }
.savings-head { text-align: center; margin-bottom: 40px; }
.savings-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-top: 16px;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.savings-title em { font-style: italic; color: var(--pink); font-weight: 300; }
.savings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.savings-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 22px 20px;
  position: relative;
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.savings-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.savings-card-top { border-color: var(--border-strong); box-shadow: 0 12px 30px -10px var(--pink-glow); }
.savings-card-top::before {
  content: "TOP";
  position: absolute;
  top: -10px; right: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  padding: 4px 8px;
  background: var(--pink);
  color: var(--white);
  border-radius: 4px;
  font-weight: 600;
}
.savings-tier {
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  letter-spacing: -0.01em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.savings-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  font-size: 13px;
}
.savings-label { color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.savings-value { color: var(--text); font-weight: 500; }
.savings-value-team { color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(255, 100, 100, 0.5); }
.savings-value-hornyt { color: var(--pink); font-family: var(--display); font-style: italic; font-size: 18px; letter-spacing: -0.02em; font-variation-settings: "SOFT" 100, "opsz" 144; }
.savings-row-total {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
}
.savings-value-save {
  color: #4ade80;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.savings-year {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.22);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(74, 222, 128, 0.85);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.savings-year strong {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: #4ade80;
  letter-spacing: -0.02em;
  text-transform: none;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.savings-disclaimer {
  margin-top: 28px;
  text-align: center;
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.6;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== COMPARISON TABLE ===== */
.compare-block { max-width: 1080px; margin: 100px auto 0; }
.compare-head { text-align: center; margin-bottom: 40px; }
.compare-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-top: 16px;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.compare-title em { font-style: italic; color: var(--pink); font-weight: 300; }
.compare-wrap {
  overflow-x: auto;
  padding-bottom: 4px;
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: var(--body);
}

/* --- header row --- */
.compare-table th {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  padding: 14px 26px;
  vertical-align: bottom;
}

/* --- body cells --- */
.compare-table td {
  padding: 17px 26px;
  text-align: left;
  font-size: 14px;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
}
.compare-table tbody tr:last-child td { border-bottom: none; }

/* column 1 — dimension label (quiet metadata) */
.compare-table th:first-child,
.compare-table td:first-child { width: 24%; }
.compare-table td:first-child {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* column 2 — human team (the loser: muted text + soft red ✗) */
.compare-table th:nth-child(2),
.compare-table td:nth-child(2) { width: 38%; }
.compare-table td:nth-child(2) {
  color: var(--muted);
  padding-left: 56px;
  position: relative;
}
.compare-table td:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px; height: 19px;
  border-radius: 50%;
  background: rgba(240, 120, 138, 0.12)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23F0788A' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M4.5 4.5l7 7M11.5 4.5l-7 7'/%3E%3C/svg%3E")
    center / 11px no-repeat;
}

/* column 3 — Hornyt (the winner: highlighted lane + pink ✓) */
.compare-table th:nth-child(3),
.compare-table td.hornyt-cell {
  width: 38%;
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.07), rgba(168, 85, 247, 0.04));
  border-left: 1px solid var(--border-strong);
  border-right: 1px solid var(--border-strong);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.4s ease;
}
.compare-table th:nth-child(3) {
  color: var(--pink);
  font-weight: 700;
  border-top: 1px solid var(--border-strong);
  border-radius: 16px 16px 0 0;
}
.compare-table td.hornyt-cell {
  color: var(--white);
  font-weight: 500;
  padding-left: 56px;
  position: relative;
}
.compare-table td.hornyt-cell::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px; height: 19px;
  border-radius: 50%;
  background: rgba(236, 72, 153, 0.16)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23EC4899' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 8.4 3.4 3.4L13 4.5'/%3E%3C/svg%3E")
    center / 11px no-repeat;
}
.compare-table tbody tr:last-child td.hornyt-cell {
  border-bottom: 1px solid var(--border-strong);
  border-radius: 0 0 16px 16px;
}

/* per-row hover */
.compare-table tbody tr:hover td:first-child,
.compare-table tbody tr:hover td:nth-child(2) { background: rgba(255, 255, 255, 0.018); }
.compare-table tbody tr:hover td.hornyt-cell {
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.14), rgba(168, 85, 247, 0.08));
}
/* subtle glow over the whole Hornyt lane when the table is hovered */
.compare-table:hover th:nth-child(3),
.compare-table:hover td.hornyt-cell {
  border-color: rgba(236, 72, 153, 0.45);
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.10), rgba(168, 85, 247, 0.055));
}
.compare-table:hover th:nth-child(3) {
  box-shadow: 0 -6px 46px -10px rgba(236, 72, 153, 0.45);
}
.compare-table:hover tbody tr:last-child td.hornyt-cell {
  box-shadow: 0 6px 46px -10px rgba(236, 72, 153, 0.45);
}

@media (max-width: 720px) {
  .pricing-section { padding: 100px 0; }
  .pricing-card { padding: 32px 22px; }
  .pricing-card-name { font-size: 22px; }
  .pricing-display { grid-template-columns: 1fr; gap: 28px; }
  .pricing-features-grid { grid-template-columns: 1fr; }
  .pricing-fee { font-size: 48px; }
  .pricing-plus { font-size: 32px; margin: 0 10px; }
  .pricing-amount { font-size: 42px; }
  .pricing-percent { font-size: 36px; }
  .pricing-currency { font-size: 22px; }
  .pricing-price { flex-wrap: wrap; row-gap: 6px; }
  .pricing-meta-fee { min-width: 0; }
  .pricing-meta-sep { display: none; }
  .pricing-price-meta { flex-direction: column; gap: 4px; align-items: flex-start; }
  .pricing-table th, .pricing-table td { padding: 14px 16px; font-size: 13px; }
  .pricing-table td:last-child { font-size: 16px; }
  .savings-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .savings-card { padding: 20px 18px 16px; }
  .compare-table { min-width: 660px; }
  .compare-table th, .compare-table td { padding: 14px 18px; font-size: 13px; }
  .compare-table td:nth-child(2), .compare-table td.hornyt-cell { padding-left: 48px; }
  .compare-table td:nth-child(2)::before, .compare-table td.hornyt-cell::before { left: 18px; }
}

/* ===== APPLY / ACCESS PHASES ===== */
.apply-section { padding: 168px 0; position: relative; }
.apply-eyebrow-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(236, 72, 153, 0.08);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
}
.apply-eyebrow-status .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink);
  animation: pulse-pink 1.5s infinite;
}

/* Phase roadmap */
.phases {
  margin: 80px 0 60px;
  position: relative;
}
.phases-line {
  position: absolute;
  top: 36px;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong) 10%, var(--border-strong) 90%, transparent);
  z-index: 0;
}
.phases-line-fill {
  position: absolute;
  top: 36px;
  left: 12.5%;
  height: 1px;
  width: 0%;
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink);
  z-index: 0;
  transition: width 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) 0.3s;
}
.phases-line-fill.full { width: 25%; }
.phases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.phase {
  text-align: center;
  padding-top: 10px;
  position: relative;
}
.phase-orb {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--muted);
  position: relative;
  transition: all 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.phase-closed .phase-orb {
  background: var(--surface-2);
  border-color: rgba(74, 222, 128, 0.3);
  color: rgba(74, 222, 128, 0.7);
}
.phase-open .phase-orb {
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 0 40px var(--pink-glow), 0 0 0 6px rgba(236, 72, 153, 0.1);
  color: var(--white);
  transform: scale(1.1);
}
.phase-open .phase-orb::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid var(--pink);
  opacity: 1;
  animation: phaseRing 2s infinite;
}
@keyframes phaseRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}
.phase-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.phase-closed .phase-tag { color: rgba(74, 222, 128, 0.7); }
.phase-open .phase-tag { color: var(--pink); }
.phase-future .phase-tag { color: var(--muted-2); }
.phase-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.phase-closed .phase-name { color: var(--muted); }
.phase-open .phase-name { color: var(--white); }
.phase-future .phase-name { color: var(--muted); }
.phase-info {
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.5;
}
.phase-open .phase-info { color: var(--muted); }

/* Slots counter */
.slots-counter {
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}
.slots-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
}
.slots-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--pink), var(--magenta));
  border-radius: 100px;
  width: 0%;
  transition: width 2s cubic-bezier(0.2, 0.7, 0.2, 1) 0.5s;
  box-shadow: 0 0 12px var(--pink-glow);
  position: relative;
}
.slots-bar-fill::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 30px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6));
  animation: shimmer 2s infinite;
}
@keyframes shimmer {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.slots-text {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.slots-text strong {
  color: var(--white);
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  text-transform: none;
}
.slots-text .slots-remaining strong { color: var(--pink); }

/* Apply form */
.apply-form-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.apply-form {
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.apply-form::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--pink-glow), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  opacity: 0.5;
}

/* Step indicator */
.form-steps-indicator {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.form-step-dot {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  transition: background 0.4s;
}
.form-step-dot.active {
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink-glow);
}
.form-step-dot.done {
  background: rgba(236, 72, 153, 0.4);
}

/* Steps */
.form-step {
  display: none;
  position: relative;
  z-index: 1;
  animation: stepIn 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.form-step.active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.form-step-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--pink);
  letter-spacing: 0.25em;
  margin-bottom: 12px;
}
.form-step-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.form-step-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
}

/* Step 1 — choices */
.form-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-choice {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
  font-family: inherit;
  color: inherit;
  position: relative;
}
.form-choice:hover {
  border-color: var(--border-strong);
  background: var(--surface);
  transform: translateY(-2px);
}
.form-choice.selected {
  border-color: var(--pink);
  background: rgba(236, 72, 153, 0.08);
  box-shadow: 0 0 30px -10px var(--pink-glow);
}
.form-choice-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.18), rgba(168, 85, 247, 0.08));
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.form-choice-icon svg { width: 22px; height: 22px; color: var(--pink); }
.form-choice-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.form-choice-desc {
  font-size: 12px;
  color: var(--muted);
}

/* Step 2 — fields */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.form-field label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-field input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}
.form-field input::placeholder { color: var(--muted-2); }
.form-field input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}
.form-field-prefix {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field-prefix:focus-within {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}
.form-field-prefix .prefix {
  padding: 0 0 0 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 15px;
}
.form-field-prefix input {
  border: none;
  background: transparent;
  padding-left: 4px;
}
.form-field-prefix input:focus { box-shadow: none; }

/* Step 3 — revenue */
.form-revenue {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}
.form-revenue-opt {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
  position: relative;
}
.form-revenue-opt input { display: none; }
.form-revenue-opt:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.form-revenue-opt.selected {
  border-color: var(--pink);
  background: rgba(236, 72, 153, 0.08);
}
.form-revenue-opt.selected.eligible {
  box-shadow: 0 0 30px -10px var(--pink-glow);
}
.rev-range {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.rev-phase {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.form-revenue-opt.eligible .rev-phase { color: var(--pink); }
.rev-status {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--coral);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.rev-status.muted { color: var(--muted-2); }
.form-revenue-opt.eligible .rev-status { color: #4ade80; }

/* Form nav */
.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.form-nav .btn { padding: 12px 24px; }
.btn-back {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.btn-back:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.btn-next:disabled, .btn-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Confirmation */
.confirm-success { text-align: center; padding: 20px 0; }
.confirm-icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--pink), var(--magenta));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: var(--white);
  box-shadow: 0 0 40px var(--pink-glow), 0 0 0 8px rgba(236, 72, 153, 0.1);
  animation: confirmPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes confirmPop {
  0% { transform: scale(0.2); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.confirm-title {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(36px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 12px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.confirm-msg {
  color: var(--muted);
  font-size: 16px;
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.confirm-meta {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  flex-wrap: wrap;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.confirm-meta-item {
  flex: 1;
  padding: 18px 16px;
  border-right: 1px solid var(--border);
  min-width: 130px;
}
.confirm-meta-item:last-child { border-right: none; }
.confirm-meta-item .label {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}
.confirm-meta-item .value {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.1em;
  font-weight: 500;
}
.confirm-meta-item .value.eligible { color: #4ade80; }
.confirm-meta-item .value.waitlist { color: var(--coral); }
.confirm-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Apply alternative via Discord */
.apply-alt {
  margin: 40px auto 0;
  max-width: 560px;
  text-align: center;
}
.apply-alt-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.apply-alt-divider::before,
.apply-alt-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  background: rgba(88, 101, 242, 0.1);
  color: #B4BBFF;
  border: 1px solid rgba(88, 101, 242, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-discord:hover {
  background: #5865F2;
  color: var(--white);
  border-color: #5865F2;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -8px rgba(88, 101, 242, 0.55);
}
.btn-discord svg { width: 22px; height: 22px; flex-shrink: 0; }
.apply-alt-note {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted-2);
  text-transform: uppercase;
}

/* ===== APPLY DISCORD CTA (form replaced) ===== */
.apply-discord-cta {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid rgba(88, 101, 242, 0.22);
  border-radius: 28px;
  padding: 60px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.apply-discord-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 360px;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.35), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.apply-discord-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 28px;
  background: linear-gradient(135deg, #5865F2, #404EED);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px -10px rgba(88, 101, 242, 0.65), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
  z-index: 1;
}
.apply-discord-icon svg {
  width: 44px;
  height: 44px;
  color: var(--white);
}
.apply-discord-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 52px);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  font-variation-settings: "SOFT" 80, "opsz" 144;
  position: relative;
  z-index: 1;
}
.apply-discord-title em {
  font-style: italic;
  font-weight: 300;
  color: #B4BBFF;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.apply-discord-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.btn-discord-xl {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  background: #5865F2;
  color: var(--white);
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 30px -8px rgba(88, 101, 242, 0.6), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-discord-xl:hover {
  background: #4752C4;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(88, 101, 242, 0.75), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-discord-xl svg { width: 22px; height: 22px; }
.btn-discord-xl svg.arrow { width: 16px; height: 16px; }

.apply-discord-trust {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-pink 1.5s infinite;
}

.apply-process {
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: left;
  position: relative;
  z-index: 1;
}
.apply-process-step {
  padding: 0;
}
.apply-process-num {
  font-family: var(--mono);
  font-size: 11px;
  color: #B4BBFF;
  letter-spacing: 0.22em;
  margin-bottom: 10px;
}
.apply-process-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.apply-process-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 720px) {
  .apply-discord-cta { padding: 40px 24px; }
  .apply-process { grid-template-columns: 1fr 1fr; gap: 22px; }
  .apply-discord-icon { width: 64px; height: 64px; }
  .apply-discord-icon svg { width: 34px; height: 34px; }
}

/* ===== PRICING DEMO (inside feature card) ===== */
.pricing-demo {
  margin-top: 22px;
  position: relative;
  z-index: 1;
}
.pricing-config {
  background: var(--bg);
  border: 1px solid rgba(212, 165, 116, 0.22);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 11px;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}
.pricing-row + .pricing-row { border-top: 1px solid var(--border); margin-top: 4px; padding-top: 8px; }
.pricing-label {
  color: var(--muted);
  letter-spacing: 0.15em;
}
.pricing-value {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.pricing-flow {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-flow-msg {
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  line-height: 1.4;
}
.pricing-flow-msg.them {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  max-width: 85%;
}
.pricing-flow-msg.us {
  background: linear-gradient(135deg, var(--gold), var(--coral));
  color: var(--bg);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  max-width: 85%;
  font-weight: 500;
}
.pricing-flow-msg.us strong { font-family: var(--display); font-style: italic; font-size: 15px; }
.pricing-flow-arrow {
  text-align: center;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 2px 0;
  opacity: 0.7;
}

/* 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; }
  .features-grid { grid-template-columns: 1fr; }
  .card-tall, .card-wide, .card-med, .card-third { grid-column: span 1; min-height: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 140px 0 60px; }
  .hero-title { font-size: 48px; }
  .cta-box { padding: 50px 24px; }
  .use-card { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .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; }
}
