.lamp-container {
  position: fixed;
  top: 0;
  right: 9rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}
/* Hero Background & Immersion */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(30%) brightness(0.4);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(3,3,3,0.6), rgba(3,3,3,0.95));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

/* Agent Styling */
#pro-ai-agent {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#pro-agent-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    
    border: 2px solid var(--purple);
    box-shadow: 0 0 20px rgba(168,85,247,0.4);
    transition: transform 0.3s ease;
}

#pro-agent-avatar:hover {
    transform: scale(1.1);
}

#pro-speech-bubble {
    background: var(--surface);
    border: 1px solid var(--border);
    width: 280px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}
.lamp-wire {
  width: 2px;
  height: 50px;
  background: #475569;
}
.lamp-socket {
  width: 18px;
  height: 13px;
  background: #334155;
  margin: 0 auto -4px;
  border-radius: 2px;
}
.lamp-bulb {
  width: 36px;
  height: 36px;
  background: var(--bulb-color);
  border-radius: 50%;
  border: 2px solid #475569;
  filter: var(--bulb-glow);
  transition: background 0.4s, filter 0.4s;
}
.lamp-string {
  width: 1px;
  height: 55px;
  background: #94a3b8;
  margin: 0 auto;
  position: relative;
  top: -2px;
  transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.lamp-knob {
  width: 8px;
  height: 8px;
  background: #64748b;
  border-radius: 4px;
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
}
.lamp-container.pulled .lamp-string {
  height: 75px;
}

.launch-countdown-section {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 10rem 4rem 6rem;
  position: relative; overflow: hidden;
}
.lc-orb {
  position: absolute; width: 1000px; height: 1000px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(168,85,247,0.07) 0%, rgba(236,72,153,0.03) 40%, transparent 70%);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
.lc-scan {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(168,85,247,0.4), transparent);
  animation: lcScan 4s ease-in-out infinite;
}
@keyframes lcScan {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; } 90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.lc-bracket {
  position: absolute; width: 40px; height: 40px;
  border-color: rgba(168,85,247,0.2); border-style: solid;
}
.lc-bracket.tl { top: 6rem; left: 4rem; border-width: 1px 0 0 1px; }
.lc-bracket.tr { top: 6rem; right: 4rem; border-width: 1px 1px 0 0; }
.lc-bracket.bl { bottom: 4rem; left: 4rem; border-width: 0 0 1px 1px; }
.lc-bracket.br { bottom: 4rem; right: 4rem; border-width: 0 1px 1px 0; }
.lc-eyebrow {
  font-size: 0.6rem; letter-spacing: 0.4em; color: var(--purple);
  text-transform: uppercase; margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; animation: fadeIn 0.8s ease forwards 0.2s;
}
.lc-eyebrow::before, .lc-eyebrow::after {
  content: ''; flex: 1; max-width: 60px; height: 1px;
  background: rgba(168,85,247,0.4);
}
.lc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 20vw, 20rem);
  line-height: 0.82; letter-spacing: 0.02em;
  opacity: 0; animation: fadeIn 1s cubic-bezier(0.16,1,0.3,1) forwards 0.4s;
}
.lc-title .outline {
  color: transparent; -webkit-text-stroke: 1px var(--dim2); display: block;
}
.lc-title .filled {
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; display: block;
}
.lc-sub {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1rem, 2vw, 1.35rem); font-style: italic;
  color: var(--dim); margin: 2rem 0 4rem;
  max-width: 580px; line-height: 1.7;
  opacity: 0; animation: fadeIn 0.8s ease forwards 0.7s;
}
.lc-sub strong {
  color: var(--white); font-style: normal;
  font-family: 'DM Mono', monospace; font-weight: 400;
}
.lc-countdown {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 4rem;
  opacity: 0; animation: fadeIn 0.8s ease forwards 0.9s;
}
.lc-block {
  display: flex; flex-direction: column; align-items: center;
  padding: 2rem 2.5rem; border: 1px solid var(--border);
  background: var(--surface); backdrop-filter: blur(10px);
  position: relative; overflow: hidden; min-width: 110px;
  transition: border-color 0.3s ease;
}
.lc-block:hover { border-color: rgba(168,85,247,0.3); }
.lc-block::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.lc-block:hover::before { transform: scaleX(1); }
.lc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem); line-height: 1;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
}
.lc-num.flip { animation: lcFlip 0.3s ease; }
@keyframes lcFlip {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-8px); opacity: 0; }
  51% { transform: translateY(8px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.lc-label {
  font-size: 0.5rem; letter-spacing: 0.3em;
  color: var(--dim2); text-transform: uppercase; margin-top: 0.5rem;
}
.lc-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; color: rgba(168,85,247,0.25);
  padding: 0 0.3rem; align-self: flex-start; margin-top: 1.2rem;
  animation: sepPulse 1s ease-in-out infinite;
}
@keyframes sepPulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.2; }
}
.lc-free-tier {
  display: flex; align-items: center; gap: 3rem;
  padding: 1.5rem 3rem; border: 1px solid rgba(168,85,247,0.2);
  background: rgba(168,85,247,0.04); position: relative; overflow: hidden;
  opacity: 0; animation: fadeIn 0.8s ease forwards 1.1s;
}
.lc-free-tier::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(168,85,247,0.05) 0%, transparent 60%);
}
.lc-badge {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.05em;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; white-space: nowrap;
}
.lc-divider { width: 1px; height: 40px; background: rgba(168,85,247,0.2); }
.lc-tier-headline {
  font-size: 0.7rem; letter-spacing: 0.2em;
  color: var(--white); text-transform: uppercase; margin-bottom: 0.3rem;
}
.lc-tier-sub {
  font-size: 0.6rem; letter-spacing: 0.1em;
  color: var(--dim); text-transform: uppercase;
}
.lc-arrow {
  font-size: 1.2rem; color: rgba(168,85,247,0.4);
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); opacity: 0.4; }
  50% { transform: translateX(4px); opacity: 1; }
}
.lc-target {
  margin-top: 3rem; display: flex; align-items: center; gap: 1.5rem;
  opacity: 0; animation: fadeIn 0.8s ease forwards 1.3s;
}
.lc-target-line { width: 40px; height: 1px; background: rgba(168,85,247,0.3); }
.lc-target-text {
  font-size: 0.6rem; letter-spacing: 0.3em;
  color: var(--dim); text-transform: uppercase;
}
.lc-target-text span { color: var(--purple); }


:root {
  /* LIGHT MODE — default */
  --black: #faf7f4;
  --surface: #f0ebe4;
  --surface2: #e8e0d6;
  --border: rgba(0,0,0,0.08);
  --purple: #6d28d9;
  --pink: #be185d;
  --grad: linear-gradient(135deg, #6d28d9, #be185d);
  --white: #1c1018;
  --dim: #6b5f6a;
  --dim2: #9c8fa0;
  --bulb-color: #ffaa00;
  --bulb-glow: drop-shadow(0 0 15px rgba(255,170,0,0.8));
}

body.dark-mode {
  
  --black: #030303;
  --surface: #0a0a0a;
  --surface2: #0f0f0f;
  --border: rgba(255,255,255,0.06);
  --purple: #a855f7;
  --pink: #ec4899;
  --grad: linear-gradient(135deg, #a855f7, #ec4899);
  --white: #f4f4f5;
  --dim: #71717a;
  --dim2: #3f3f46;
  --bulb-color: #cbd5e1;
  --bulb-glow: none;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Mono', monospace;
  overflow-x: hidden;
  
}

/* Ensure the bubble is hidden by default */
#pro-speech-bubble {
    display: none; 
    flex-direction: column;
    position: absolute;
    bottom: 100px;
    right: 0;
    background: #e8e2e2; /* Match Shoonya Dark Theme */
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1001;
}

#pro-chat-history {
    height: 200px;
    overflow-y: auto;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: #ccc;
}

.user-msg { color: #34075e; text-align: right; margin-bottom: 5px; }
.bot-msg { color: #000000; margin-bottom: 5px; }

#pro-input-area {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03); /* Subtle dark background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px; /* Smooth corners */
    transition: border-color 0.3s ease;
}

#pro-input-area:focus-within {
    border-color: var(--purple); /* Purple glow on focus */
}

#pro-user-input {
    background: transparent;
    border: none;
    color: rgb(6, 6, 6);
    padding: 0.5rem;
    flex: 1;
    outline: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
}

#pro-send-btn {
    background: var(--purple);
    border: none;
    color: rgb(17, 16, 16);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

#pro-send-btn:hover {
    transform: scale(1.05);
}
/* NOISE */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 998;
  opacity: 0.5;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.8rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  mix-blend-mode: normal;
}
nav::after {
  content: '';
  position: absolute; bottom: 0; left: 4rem; right: 4rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem; letter-spacing: 0.1em;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.nav-links { display: flex; gap: 3rem; list-style: none; }
.nav-links a {
  font-size: 0.95rem; letter-spacing: 0.2em; color: var(--dim);color: rgb(246, 246, 175);
  text-decoration: none; text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }

.nav-exit {
  font-size: 0.65rem; letter-spacing: 0.2em; color: var(--dim2);
  text-decoration: none; text-transform: uppercase;
  transition: color 0.3s; border: 1px solid var(--dim2);
  padding: 0.4rem 1rem;
}
.nav-exit:hover { color: var(--purple); border-color: var(--purple); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 10rem 4rem 6rem;
  position: relative; overflow: hidden;
  isolation: isolate; /* contains all descendants (incl. animated/
                          -webkit-text-stroke text) in one stacking
                          context so nothing inside can ever paint
                          above elements outside .hero, like modals */
  display: grid;
  grid-template-rows: 1fr auto;
}

.hero-orb {
  position: absolute;
  width: 900px; height: 900px;
  top: -200px; right: -300px;
  background: radial-gradient(circle, rgba(168,85,247,0.08) 0%, rgba(236,72,153,0.04) 40%, transparent 70%);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
}

.hero-eyebrow {
  font-size: 0.6rem; letter-spacing: 0.35em; color: var(--purple);
  text-transform: uppercase; margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; animation: fadeIn 1s ease forwards 0.2s;
}
.hero-eyebrow::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--purple);
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(7rem, 18vw, 18rem);
  line-height: 0.82;
  letter-spacing: 0.02em;
  position: relative;
}

.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .line span {
  display: block;
  transform: translateY(110%);
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-headline .line:nth-child(1) span { animation-delay: 0.3s; }
.hero-headline .line:nth-child(2) span { animation-delay: 0.45s; color: transparent; -webkit-text-stroke: 1px var(--dim2); }
.hero-headline .line:nth-child(3) span { animation-delay: 0.6s; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

@keyframes slideUp {
  to { transform: translateY(0); }
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-top: 5rem;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.1s;
}

.hero-descriptor {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.7;
  color: var(--dim);
  font-style: italic;
  max-width: 500px;
}

.hero-descriptor strong { color: var(--white); font-style: normal; font-family: 'DM Mono', monospace; font-weight: 400; }

.hero-tag-list {
  display: flex; flex-direction: column; gap: 0.8rem;
  justify-content: flex-end;
}

.hero-tag-item {
  display: flex; align-items: center; justify-content: flex-end; gap: 1rem;
  font-size: 0.6rem; letter-spacing: 0.2em; color: var(--dim2); text-transform: uppercase;
}
.hero-tag-item::after { content: ''; width: 20px; height: 1px; background: var(--dim2); }

/* TICKER */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 1rem 0;
  position: relative; z-index: 2;
}
.ticker-track {
  display: flex; gap: 0;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex; align-items: center; gap: 0;
  flex-shrink: 0;
}
.ticker-word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: 0.15em;
  color: var(--dim2); padding: 0 2rem;
  transition: color 0.3s;
}
.ticker-word.accent { color: var(--purple); }
.ticker-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--dim2); flex-shrink: 0;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTION BASE */
.s { padding: 8rem 4rem; position: relative; z-index: 2; }
.s-dark { background: var(--surface); }
.s-darker { background: var(--surface2); }

.label {
  font-size: 0.58rem; letter-spacing: 0.35em; color: var(--purple);
  text-transform: uppercase; margin-bottom: 1.2rem;
}

.big-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: 0.88; letter-spacing: 0.02em;
}
.big-title em {
  font-style: normal;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.prose {
  font-family: 'Instrument Serif', serif;
  font-size: 1.15rem; line-height: 1.75;
  color: var(--dim);
  font-style: italic; max-width: 560px;
}

/* ── INTRO STATEMENT ── */
.statement-section {
  padding: 8rem 4rem;
  position: relative; z-index: 2;
  overflow: hidden;
}

.statement-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start;
}

.statement-left { padding-top: 0.5rem; }

.statement-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem; line-height: 1;
  color: rgba(168,85,247,0.08);
  letter-spacing: 0.05em;
}

.statement-text {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.3; color: var(--white);
  font-style: italic;
}

.statement-text span {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  font-style: normal;
}

/* ── LOOP SECTION ── */
.loop-section {
  padding: 8rem 4rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.loop-inner { max-width: 1200px; margin: 0 auto; }

.loop-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: end; margin-bottom: 6rem;
}

.loop-steps { display: flex; flex-direction: column; }

.loop-step {
  display: grid; grid-template-columns: 5rem 1fr auto;
  gap: 2rem; align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
  cursor: default;
  position: relative;
}

.loop-step::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--grad);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s ease;
}

.loop-step:hover::before { transform: scaleY(1); }
.loop-step:hover { padding-left: 1.5rem; background: rgba(168,85,247,0.03); }
.loop-step:last-child { border-bottom: none; }

.loop-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem; color: rgba(168,85,247,0.15);
  line-height: 1; transition: color 0.4s ease;
}
.loop-step:hover .loop-num { color: rgba(168,85,247,0.4); }

.loop-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 0.04em;
  color: var(--white); margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.loop-step:hover .loop-content h3 { color: var(--white); }

.loop-content p {
  font-size: 0.8rem; line-height: 1.8;
  color: var(--dim); font-weight: 300; max-width: 480px;
}

.loop-phase {
  font-size: 0.55rem; letter-spacing: 0.2em;
  color: var(--purple); text-transform: uppercase;
  border: 1px solid rgba(168,85,247,0.25);
  padding: 0.25rem 0.7rem; white-space: nowrap;
  align-self: flex-start; margin-top: 0.3rem;
}

/* ── BRAIN SECTION ── */
.brain-section {
  padding: 8rem 4rem;
  position: relative; overflow: hidden;
}

.brain-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center;
}

@media (max-width: 900px) { .brain-inner { grid-template-columns: 1fr; gap: 4rem; } }

.brain-text {}

.brain-statement {
  font-family: 'Instrument Serif', serif;
  font-size: 1.05rem; line-height: 1.9;
  color: var(--dim); font-style: italic;
  margin-top: 2rem; max-width: 500px;
}

.brain-callout {
  margin-top: 2.5rem; padding: 1.5rem 2rem;
  border-left: 2px solid var(--purple);
  background: rgba(168,85,247,0.04);
}

.brain-callout p {
  font-family: 'Instrument Serif', serif;
  font-size: 1rem; line-height: 1.7;
  color: var(--purple); font-style: italic;
}

.orbit-container {
  position: relative; width: 380px; height: 380px;
  margin: 0 auto;
}

.orbit {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid;
  transform: translate(-50%, -50%);
  animation: spin linear infinite;
}

.orbit-1 { width: 340px; height: 340px; border-color: rgba(168,85,247,0.08); animation-duration: 30s; }
.orbit-2 { width: 250px; height: 250px; border-color: rgba(168,85,247,0.12); animation-duration: 20s; animation-direction: reverse; }
.orbit-3 { width: 160px; height: 160px; border-color: rgba(168,85,247,0.2); animation-duration: 14s; }
.orbit-4 { width: 80px; height: 80px; border-color: rgba(168,85,247,0.4); animation-duration: 8s; animation-direction: reverse; }

.orbit-dot {
  position: absolute; top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 12px var(--purple);
}

.orbit-3 .orbit-dot { background: var(--pink); box-shadow: 0 0 12px var(--pink); }

@keyframes spin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }

.orbit-core {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 40px rgba(168,85,247,0.6), 0 0 80px rgba(168,85,247,0.2);
  animation: corePulse 3s ease-in-out infinite;
}

@keyframes corePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 40px rgba(168,85,247,0.6), 0 0 80px rgba(168,85,247,0.2); }
  50% { transform: translate(-50%, -50%) scale(1.3); box-shadow: 0 0 60px rgba(168,85,247,0.8), 0 0 120px rgba(168,85,247,0.3); }
}

.orbit-labels { position: absolute; inset: 0; }
.orbit-label {
  position: absolute; font-size: 0.55rem; letter-spacing: 0.15em;
  color: var(--dim2); text-transform: uppercase;
}
.orbit-label.t { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-label.b { bottom: 0; left: 50%; transform: translateX(-50%); }
.orbit-label.l { left: 0; top: 50%; transform: translateY(-50%); }
.orbit-label.r { right: 0; top: 50%; transform: translateY(-50%); }

/* ── CAPABILITIES ── */
.cap-section {
  padding: 8rem 4rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.cap-inner { max-width: 1200px; margin: 0 auto; }

.cap-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 5rem;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

@media (max-width: 900px) { .cap-grid { grid-template-columns: 1fr; } }

.cap-item {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background 0.4s ease;
}

.cap-item:nth-child(3n) { border-right: none; }
.cap-item:nth-last-child(-n+3) { border-bottom: none; }
.cap-item:hover { background: rgba(168,85,247,0.04); }

.cap-item::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.cap-item:hover::after { transform: scaleX(1); }

.cap-index {
  font-size: 0.55rem; letter-spacing: 0.2em;
  color: rgba(168,85,247,0.5); margin-bottom: 1.5rem; text-transform: uppercase;
}

.cap-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: 0.05em;
  color: var(--white); margin-bottom: 0.8rem;
}

.cap-item p {
  font-size: 0.78rem; line-height: 1.8;
  color: var(--dim); font-weight: 300;
}

/* ── COMPOUND ── */
.compound-section { padding: 8rem 4rem; }

.compound-inner { max-width: 1000px; margin: 0 auto; }

.timeline { margin-top: 5rem; position: relative; }

.timeline::before {
  content: '';
  position: absolute; left: 80px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--purple), transparent);
}

.tl-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 3rem; padding-bottom: 4rem;
  position: relative;
}

.tl-item::before {
  content: '';
  position: absolute; left: 76px; top: 7px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(168,85,247,0.5);
}

.tl-period {
  font-size: 0.58rem; letter-spacing: 0.2em;
  color: var(--purple); text-transform: uppercase;
  padding-top: 0.4rem; text-align: right;
  padding-right: 1.5rem;
}

.tl-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 0.04em;
  color: var(--white); margin-bottom: 0.4rem;
}

.tl-content p {
  font-size: 0.8rem; line-height: 1.7;
  color: var(--dim); max-width: 500px;
}

/* ── WHO ── */
.who-section {
  padding: 8rem 4rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.who-inner { max-width: 1200px; margin: 0 auto; }

.who-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 5rem;
}

@media (max-width: 900px) { .who-grid { grid-template-columns: 1fr; } }

.who-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: var(--black);
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
}

.who-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}

.who-card:hover { border-color: rgba(109,40,217,0.25); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.12), 0 0 40px rgba(109,40,217,0.06); }
.who-card:hover::before { transform: scaleX(1); }

.who-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 0.05em;
  color: var(--white); margin-bottom: 0.8rem;
}

.who-card p { font-size: 0.78rem; line-height: 1.7; color: var(--dim); }

/* ── CTA ── */
.cta-section {
  padding: 10rem 4rem;
  position: relative; overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute; width: 800px; height: 800px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(168,85,247,0.08) 0%, rgba(236,72,153,0.04) 40%, transparent 70%);
  pointer-events: none;
  animation: orbFloat 6s ease-in-out infinite;
}

.cta-overline {
  font-size: 0.6rem; letter-spacing: 0.3em;
  color: var(--dim2); text-transform: uppercase; margin-bottom: 2rem;
}

.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.85; letter-spacing: 0.02em;
  margin-bottom: 1rem; position: relative;
}

.cta-title .grad {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.cta-title .outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--dim2);
}

.cta-sub {
  font-family: 'Instrument Serif', serif;
  font-size: 1.2rem; font-style: italic;
  color: var(--dim);
  max-width: 500px; margin: 0 auto 4rem; line-height: 1.7;
  position: relative;
}

.cta-buttons { display: flex; gap: 1.2rem; justify-content: center; position: relative; }

.btn-main {
  padding: 1.1rem 3rem;
  background: var(--grad);
  color: white; font-family: 'DM Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; border: none;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.btn-main::before {
  content: '';
  position: absolute; inset: 0;
  background: white; opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-main:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(168,85,247,0.4); }

.btn-ghost {
  padding: 1.1rem 3rem;
  background: transparent;
  color: var(--dim); font-family: 'DM Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--dim2);
  transition: all 0.3s ease;
}
.btn-ghost:hover { border-color: rgba(168,85,247,0.5); color: var(--white); }
.main-footer {
    border-top: 1px solid var(--border);
    padding: 4rem 4rem 2rem;
    background: var(--black);
    color: var(--dim2);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: var(--white);
}

.footer-brand span {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-meta {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-footer { padding: 3rem 1.5rem; }
    .footer-meta { flex-direction: column; gap: 1rem; text-align: center; }
}
/* REVEAL */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

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

@keyframes greenPulse {
  0%, 100% { opacity: 1; text-shadow: 0 0 5px rgba(34, 197, 94, 0.5); }
  50% { opacity: 0.7; text-shadow: 0 0 15px rgba(34, 197, 94, 0.8); }
}

.lc-target-text span {
  animation: greenPulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  nav { padding: 1.5rem 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 8rem 1.5rem 4rem; }
  .hero-bottom { grid-template-columns: 1fr; }
  .s, .loop-section, .brain-section, .cap-section, .compound-section, .who-section, .cta-section { padding: 5rem 1.5rem; }
  .statement-inner { grid-template-columns: 1fr; gap: 2rem; }
  .loop-step { grid-template-columns: 3rem 1fr; gap: 1.5rem; }
  .loop-step .loop-phase { display: none; }
  .cap-grid { grid-template-columns: 1fr; }
  .cap-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .cap-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .cap-item:last-child { border-bottom: none; }
  .who-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
}
/* ═══════════════════════════════════════════════════
   AUTH: Nav trigger + Modal (hidden in DOM, toggled via JS)
   ═══════════════════════════════════════════════════ */

.nav-auth {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-login-btn {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--dim2);
  padding: 0.55rem 1.4rem;
  font-family: 'DM Mono', monospace;
  transition: all 0.3s ease;
}
.nav-login-btn:hover {
  border-color: var(--purple);
  color: var(--purple);
}

/* ── Overlay: hidden in DOM by default ── */
.auth-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(3,3,3,0.75);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.auth-overlay.active {
  display: flex;
  animation: fadeIn 0.25s ease forwards;
}

/* Belt-and-suspenders: while the modal is open, make sure no other
   fixed-position UI (lamp toggle, AI agent bubble, etc.) can sit on
   top of it or intercept clicks meant for the form. */
body:has(.auth-overlay.active) .lamp-container,
body:has(.auth-overlay.active) #pro-ai-agent {
  display: none;
}

.auth-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3rem 2.5rem 2.5rem;
  max-height: 90vh;
  overflow-y: auto;
}
.auth-modal::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad);
}

.auth-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--dim2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.auth-close:hover { border-color: var(--purple); color: var(--purple); }

/* Each "screen" inside the modal — hidden in DOM, one shown at a time */
.auth-view { display: none; }
.auth-view.active { display: block; animation: fadeIn 0.3s ease forwards; }

.auth-eyebrow {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.auth-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.auth-sub {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--dim);
  margin-bottom: 2rem;
  line-height: 1.5;
}
.auth-sub strong {
  color: var(--white);
  font-style: normal;
  font-family: 'DM Mono', monospace;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.auth-label {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim2);
}

.auth-input {
  background: var(--black);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
}
.auth-input:focus { border-color: var(--purple); }
.auth-input::placeholder { color: var(--dim2); }

/* OTP input: spaced-out character boxes */
.otp-row {
  display: flex;
  gap: 0.6rem;
  justify-content: space-between;
}
.otp-box {
  width: 100%;
  aspect-ratio: 1;
  text-align: center;
  font-size: 1.2rem;
  background: var(--black);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'DM Mono', monospace;
  outline: none;
  transition: border-color 0.3s ease;
}
.otp-box:focus { border-color: var(--purple); }

.auth-row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
}

.auth-link {
  color: var(--dim);
  text-decoration: none;
  background: none;
  border: none;
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0;
  transition: color 0.3s ease;
}
.auth-link:hover { color: var(--purple); }
.auth-link.accent { color: var(--purple); }

.auth-submit {
  margin-top: 0.5rem;
  padding: 0.95rem 1.5rem;
  background: var(--grad);
  color: white;
  border: none;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.auth-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(168,85,247,0.35); }
.auth-submit:disabled { opacity: 0.5;  transform: none; box-shadow: none; }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.6rem 0;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--dim2);
  text-transform: uppercase;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.85rem 1.5rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
 
  transition: all 0.3s ease;
  width: 100%;
}
.auth-google-btn:hover { border-color: rgba(168,85,247,0.4); background: rgba(168,85,247,0.04); }
.auth-google-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.auth-switch {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  color: var(--dim);
  text-transform: uppercase;
}

.auth-error {
  display: none;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--pink);
  border: 1px solid rgba(236,72,153,0.25);
  background: rgba(236,72,153,0.05);
  padding: 0.7rem 1rem;
}
.auth-error.show { display: block; }

.auth-success-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.06);
  color: #22c55e;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1.5rem;
}

.auth-back-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  
}
.auth-back-row span {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim2);
  transition: color 0.3s ease;
}
.auth-back-row:hover span { color: var(--purple); }

@media (max-width: 480px) {
  .auth-modal { padding: 2.5rem 1.5rem 2rem; }
  .auth-title { font-size: 1.9rem; }
}
/* ═══════════════════════════════════════════════════
   ADDITIONS: Social Proof, FAQ, Trust Bar, CTA enhancements
   ═══════════════════════════════════════════════════ */

/* TRUST BAR */
.trust-bar {
  padding: 0.9rem 4rem;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 99;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--dim2);
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,0.6);
  animation: trustPulse 2s ease-in-out infinite;
}
@keyframes trustPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(34,197,94,0.6); }
  50% { opacity: 0.5; box-shadow: 0 0 12px rgba(34,197,94,0.9); }
}

/* SOCIAL PROOF SECTION */
.proof-section {
  padding: 7rem 4rem;
  border-top: 1px solid var(--border);
  position: relative; z-index: 2;
}
.proof-inner {
  max-width: 1200px; margin: 0 auto;
}
.proof-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 4rem;
}
.proof-stat {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.4s ease;
}
.proof-stat:last-child { border-right: none; }
.proof-stat:hover { background: rgba(168,85,247,0.04); }
.proof-stat::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.proof-stat:hover::before { transform: scaleX(1); }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--dim);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* TESTIMONIAL CARDS */
.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .proof-cards { grid-template-columns: 1fr; } .proof-stats { grid-template-columns: 1fr; } .proof-header { grid-template-columns: 1fr; gap: 2rem; } }
.proof-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.proof-card:hover {
  border-color: rgba(168,85,247,0.2);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 0 40px rgba(168,85,247,0.05);
}
.proof-quote {
  font-family: 'Instrument Serif', serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dim);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}
.proof-quote::before {
  content: '"';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 0.5rem;
}
.proof-author {
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
}
.proof-name {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.proof-role {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--dim2);
  text-transform: uppercase;
}

/* FAQ SECTION */
.faq-section {
  padding: 8rem 4rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}
.faq-header {
  margin-bottom: 4rem;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  user-select: none;
  gap: 2rem;
  transition: all 0.3s ease;
}
.faq-question:hover .faq-q-text { color: var(--white); }
.faq-q-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  letter-spacing: 0.04em;
  color: var(--dim);
  transition: color 0.3s ease;
}
.faq-item.open .faq-q-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.faq-toggle {
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  color: var(--dim2);
}
.faq-item.open .faq-toggle {
  border-color: rgba(168,85,247,0.4);
  color: var(--purple);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-answer {
  max-height: 400px;
}
.faq-answer-inner {
  padding: 0 0 2rem 0;
  font-family: 'Instrument Serif', serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dim);
  font-style: italic;
  max-width: 700px;
}

/* ENHANCED CTA: urgency + secondary signal */
.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: #22c55e;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(34,197,94,0.2);
  padding: 0.4rem 1rem;
}
.cta-urgency-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #22c55e;
  animation: trustPulse 1.5s ease-in-out infinite;
}
.cta-micro {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: var(--dim2);
  text-transform: uppercase;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.cta-micro-item::before { content: '✓  '; color: #22c55e; }

/* COMPARISON STRIP */
.compare-section {
  padding: 6rem 4rem;
  border-top: 1px solid var(--border);
  position: relative; z-index: 2;
}
.compare-inner { max-width: 1000px; margin: 0 auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
}
.compare-table th, .compare-table td {
  padding: 1.2rem 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  text-align: center;
  color: var(--dim2);
  font-weight: 400;
}
.compare-table th.raptor-col {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.compare-table td:first-child { color: var(--dim); font-size: 0.62rem; }
.compare-table td { text-align: center; color: var(--dim2); }
.compare-table td.check { color: #22c55e; font-size: 1rem; }
.compare-table td.cross { color: rgba(168,85,247,0.25); font-size: 1rem; }
.compare-table tr:hover { background: rgba(168,85,247,0.02); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .raptor-col { border-left: 1px solid rgba(168,85,247,0.15); border-right: 1px solid rgba(168,85,247,0.15); }

@media (max-width: 768px) {
  .trust-bar { gap: 1.2rem; padding: 0.9rem 1.5rem; }
  .proof-section, .faq-section, .compare-section { padding: 5rem 1.5rem; }
  .faq-q-text { font-size: 1rem; }
  .compare-table { display: none; }
}

