/* ============================================
   CLUTCH LANDING PAGE — DESIGN SYSTEM & LAYOUT
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg:              #0f0f0f;
  --surface:         #1a1a2e;
  --surface-up:      #242442;
  --primary:         #7c5cfc;
  --teal:            #00d4aa;
  --red:             #ff6b6b;
  --text:            #f0f0f0;
  --text-muted:      #8b8ba3;
  --text-lavender:   #c4b5fd;
  --discord-bg:      #313338;
  --discord-text:    #dcddde;
  --discord-time:    #949ba4;
  --border-subtle:   rgba(124, 92, 252, 0.15);
  --glow:            rgba(124, 92, 252, 0.25);
  --radius:          12px;
  --radius-lg:       20px;
  --radius-sm:       8px;
  --font:            'Inter', system-ui, -apple-system, sans-serif;
  --mono:            'JetBrains Mono', 'Fira Code', monospace;
  --max-w:           680px;
  --max-w-full:      1080px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--text-lavender); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { font-weight: 600; }
em { font-style: italic; }
s { text-decoration: line-through; }
u { text-decoration: underline; text-underline-offset: 3px; }

/* --- Utility Classes --- */
.mono          { font-family: var(--mono); }
.accent-purple { color: var(--primary); }
.accent-teal   { color: var(--teal); }
.accent-red    { color: var(--red); }
.accent-lavender { color: var(--text-lavender); }
.text-muted    { color: var(--text-muted); }
.caps-spaced   { text-transform: uppercase; letter-spacing: 0.1em; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Reveal Animation Base --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Screen Base --- */
.screen {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  position: relative;
}

/* ============================================
   STICKY NAV
   ============================================ */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  height: 48px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.sticky-nav.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav-inner {
  max-width: var(--max-w-full);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-brand:hover {
  text-decoration: none;
}

.nav-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-wordmark {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: var(--primary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--glow);
}

/* ============================================
   SCREEN 1: THE GUT PUNCH
   ============================================ */
.screen-1 {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  background: radial-gradient(ellipse at center, rgba(124, 92, 252, 0.04) 0%, transparent 70%);
  position: relative;
}

/* Discord sidebar silhouette (decorative) */
.discord-sidebar-silhouette {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16px;
  gap: 8px;
  opacity: 0.04;
  pointer-events: none;
}

.sidebar-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--text);
  transition: border-radius 0.2s ease;
}

.sidebar-icon-active {
  border-radius: 12px;
  background: var(--primary);
  opacity: 1.5;
}

.sidebar-icon-sm {
  width: 32px;
  height: 32px;
}

.sidebar-sep {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .discord-sidebar-silhouette { display: none; }
  .fc-email-row { flex-direction: column; }
  .fc-email-submit { width: 100%; }
}

.s1-brand {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text-muted);
  opacity: 0.5;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.s1-brand-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.screen-1-content {
  max-width: 600px;
}

.s1-line {
  opacity: 0;
  transform: translateY(12px);
}

.s1-line.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.s1-line-1, .s1-line-2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.s1-line-2 { margin-bottom: 32px; }

.s1-line-3 {
  font-size: clamp(18px, 3vw, 22px);
  color: var(--text-muted);
  margin-bottom: 16px;
}

.s1-line-4 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 16px;
}

.s1-count {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}

.scroll-prompt {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.6s ease 3.5s forwards;
}

.scroll-prompt p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.scroll-line {
  width: 2px;
  height: 0;
  background: var(--primary);
  margin: 0 auto;
  animation: drawLine 2s ease 4s forwards, pulseGlow 2s ease-in-out 6s infinite;
}

@keyframes fadeInUp {
  to { opacity: 1; }
}

@keyframes drawLine {
  to { height: 40px; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 4px var(--primary); opacity: 0.7; }
  50% { box-shadow: 0 0 12px var(--primary); opacity: 1; }
}

/* ============================================
   SCREEN 2: THE EVIDENCE
   ============================================ */
.screen-2 {
  min-height: auto;
  padding: 100px 0 120px;
}

.section-headline {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  margin-bottom: 20px;
  overflow: hidden;
}

.stat-card-inner {
  padding: 28px 24px;
}

.stat-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.stat-headline {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.stat-detail {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
}

.stat-bar-wrap {
  margin-top: 16px;
}

.stat-bar {
  height: 8px;
  background: #2a2a3e;
  border-radius: 4px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  border-radius: 4px;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-bar-fill.animate {
  /* width set by JS based on data-width */
}

.stat-bar-labels {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 14px;
}

.stat-big-inline {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.stat-big-inline .mono {
  font-size: clamp(40px, 8vw, 48px);
  font-weight: 700;
  line-height: 1.1;
}

.stat-big-unit {
  font-size: 18px;
  color: var(--text-muted);
}

.stat-source {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
  opacity: 0.6;
}

.stat-big-number {
  font-size: clamp(40px, 8vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 8px;
}

.stat-big-suffix {
  font-size: clamp(18px, 3vw, 22px);
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
}

.section-closer {
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 40px;
  text-align: center;
}

/* Discord message bubble */
.discord-msg-bubble {
  display: flex;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--discord-bg);
}

.discord-msg-bubble:hover {
  background: rgba(49, 51, 56, 0.8);
}

.discord-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.discord-avatar-gray   { background: #5865f2; }
.discord-avatar-blue   { background: #3b82f6; }
.discord-avatar-green  { background: #22c55e; }
.discord-avatar-orange { background: #f59e0b; }

.discord-msg-body {
  flex: 1;
  min-width: 0;
}

.discord-username {
  font-size: 15px;
  font-weight: 600;
  color: var(--discord-text);
  margin-right: 8px;
}

.discord-timestamp {
  font-size: 14px;
  color: var(--discord-time);
}

.discord-text {
  font-family: 'gg sans', var(--font);
  font-size: 15px;
  color: var(--discord-text);
  line-height: 1.5;
  margin-top: 4px;
}

.discord-message-card .discord-msg-bubble {
  margin-top: 12px;
}

/* ============================================
   SCREEN 3: THE CALCULATOR
   ============================================ */
.screen-3 {
  min-height: auto;
  padding: 100px 0 80px;
}

.calculator {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 32px 24px;
}

.calc-field {
  margin-bottom: 32px;
}

.calc-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.calc-slider-wrap {
  position: relative;
  padding-top: 8px;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: #2a2a3e;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.calc-button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* No-JS fallback button */
.calc-button-fallback {
  display: block;
  width: 100%;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: var(--primary);
  color: #fff;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  margin-top: 8px;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(124, 92, 252, 0.4);
  cursor: pointer;
  transition: transform 0.15s ease;
  /* 48px touch target via visual overflow */
  border: 10px solid transparent;
  background-clip: padding-box;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-slider::-webkit-slider-thumb:active {
  transform: scale(1.15);
}

.calc-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(124, 92, 252, 0.4);
  border: 10px solid transparent;
  background-clip: padding-box;
  cursor: pointer;
}

.calc-slider::-moz-range-track {
  height: 4px;
  background: #2a2a3e;
  border-radius: 2px;
  border: none;
}

.calc-slider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 2px;
}

.calc-slider-value {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: var(--surface-up);
  padding: 2px 10px;
  border-radius: 6px;
  pointer-events: none;
  white-space: nowrap;
  transition: left 0.1s ease;
}

.calc-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.calc-hint {
  font-style: italic;
  color: var(--text-muted);
  font-size: 14px;
}

.calc-button {
  width: 100%;
  height: 56px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 8px;
}

.calc-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--glow);
}

.calc-button:active {
  transform: translateY(0);
}

.calc-button.loading .calc-btn-text {
  opacity: 0;
}

.calc-button.loading .calc-btn-loader {
  display: block;
}

.calc-btn-loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.calc-btn-loader::after {
  content: '';
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
  border-radius: 2px;
  animation: loadBar 1.2s ease forwards;
}

@keyframes loadBar {
  to { width: 100%; }
}

/* ============================================
   SCREEN 4: THE VERDICT
   ============================================ */
.screen-4 {
  min-height: auto;
  padding: 40px 0 120px;
  background: linear-gradient(180deg, var(--bg) 0%, #111118 100%);
}

.verdict-header {
  margin-bottom: 36px;
}

.verdict-label {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
}

.verdict-rule {
  height: 2px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  border-radius: 1px;
}

.verdict-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 20px;
}

.verdict-stat {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.verdict-detail {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.verdict-pain {
  font-size: 18px;
  margin-top: 16px;
  line-height: 1.5;
}

.verdict-time-stack {
  margin: 16px 0;
}

.verdict-time-stack p {
  font-size: 18px;
  margin-bottom: 6px;
}

.verdict-staccato {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 16px;
  font-style: italic;
}

.section-closer-hope {
  color: var(--text) !important;
  font-size: 24px !important;
  font-weight: 700;
}

.verdict-arrow {
  text-align: center;
  margin-top: 32px;
}

.verdict-arrow .scroll-line {
  width: 2px;
  height: 0;
  background: var(--primary);
  margin: 0 auto;
}

.verdict-arrow.visible .scroll-line {
  animation: drawLine 2s ease forwards, pulseGlow 2s ease-in-out 2s infinite;
}

/* ============================================
   SCREEN 5: THE MORNING AFTER
   ============================================ */
.screen-5 {
  padding: 100px 0 120px;
  min-height: auto;
  background: #111118;
}

.phone-frame {
  max-width: 480px;
  margin: 40px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  background: var(--discord-bg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Phone titlebar with notification badge */
.phone-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
}

.phone-titlebar-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--discord-text);
}

.notification-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 10px;
  line-height: 1;
}

/* Discord embed card */
.discord-embed {
  margin-top: 8px;
  border-left: 3px solid var(--primary);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.discord-embed-content {
  padding: 10px 12px;
}

.discord-embed-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--discord-time);
  display: block;
  margin-bottom: 4px;
}

.discord-embed-text {
  font-size: 14px;
  color: var(--discord-text);
  line-height: 1.5;
  opacity: 0.85;
}

.chat-window {
  padding: 20px 16px;
  min-height: 200px;
  max-height: 600px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--surface-up) transparent;
}

.chat-msg {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}

.clutch-avatar {
  background: url('/clutch-icon.png') center / cover no-repeat;
}
.you-avatar     { background: var(--teal); }

.chat-body { flex: 1; min-width: 0; }

.chat-meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.chat-name {
  font-size: 15px;
  font-weight: 600;
}

.clutch-name { color: var(--primary); }
.you-name     { color: var(--teal); }

.chat-time {
  font-size: 14px;
  color: var(--discord-time);
}

.chat-content {
  color: var(--discord-text);
  font-family: 'gg sans', var(--font);
  font-size: 15px;
  line-height: 1.5;
}

.chat-content p {
  margin-bottom: 10px;
}

.chat-line {
  padding-left: 4px;
}

.chat-emoji {
  margin-right: 4px;
}

.chat-link {
  color: var(--text-lavender);
  cursor: pointer;
}

.chat-question {
  color: var(--text-lavender);
  font-style: italic;
}

.chat-coffee {
  margin-top: 4px;
}

.coffee-emoji {
  display: inline-block;
  animation: steam 2s ease infinite;
}

@keyframes steam {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

/* Typing indicator */
.typing-indicator {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  padding-left: 0;
}

.typing-dots {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  background: var(--surface);
  border-radius: 16px;
}

.typing-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typingBounce 1.4s ease infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.s5-closing {
  text-align: center;
  margin-top: 48px;
}

.s5-time {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  margin-bottom: 8px;
}

.s5-handled {
  font-size: 20px;
}

/* ============================================
   SCREEN 6: THE LIVING PROOF (CAROUSEL)
   ============================================ */
.screen-6 {
  min-height: auto;
  padding: 100px 0 120px;
  background: #111118;
}

.section-subhead {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: -36px;
  margin-bottom: 40px;
}

.carousel-wrapper {
  margin-top: 8px;
}

.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}

.carousel::-webkit-scrollbar { display: none; }

.carousel-card {
  flex: 0 0 calc(100vw - 72px);
  max-width: 400px;
  scroll-snap-align: center;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
}

.cc-channel {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text-muted);
  padding: 16px 20px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cc-time-badge {
  font-size: 14px;
  background: var(--surface-up);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--text-muted);
}

.cc-chat {
  padding: 8px 12px;
}

.cc-chat .discord-msg-bubble {
  margin-bottom: 8px;
}

.cc-chat .discord-msg-bubble:last-child {
  margin-bottom: 0;
}

.clutch-bubble { border-left: 3px solid var(--primary); }

.clutch-avatar-small {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: url('/clutch-icon.png') center / cover no-repeat;
  flex-shrink: 0;
}

.discord-reactions {
  display: flex;
  gap: 6px;
  padding: 8px 12px 4px;
}

.discord-reaction {
  font-size: 14px;
  background: var(--surface-up);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2px 10px;
}

/* Mod compare */
.cc-mod-compare {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.cc-mod-bad, .cc-mod-good {
  padding: 12px;
  border-radius: var(--radius-sm);
}

.cc-mod-bad  { background: rgba(255, 107, 107, 0.08); border: 1px solid rgba(255, 107, 107, 0.2); }
.cc-mod-good { background: rgba(0, 212, 170, 0.08); border: 1px solid rgba(0, 212, 170, 0.2); }

.cc-mod-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.cc-mod-label-bad  { color: var(--red); }
.cc-mod-label-good { color: var(--teal); }

.cc-mod-text {
  font-size: 14px;
  color: var(--discord-text);
}

.cc-label {
  padding: 20px;
  border-top: 1px solid var(--border-subtle);
}

.cc-label strong {
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

.cc-label p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a2a3e;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.25);
}

/* ============================================
   SCREEN 7: THE WEEKLY INTEL
   ============================================ */
.screen-7 {
  min-height: auto;
  padding: 100px 0 120px;
}

.intel-report {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 32px 24px;
  margin-top: 40px;
}

.intel-header {
  margin-bottom: 28px;
}

.intel-title {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.intel-date {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.intel-rule {
  height: 1px;
  background: var(--border-subtle);
  margin-top: 16px;
}

.intel-section {
  padding: 20px 0;
  border-bottom: 1px solid rgba(124, 92, 252, 0.08);
}

.intel-section:last-of-type {
  border-bottom: none;
}

.intel-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.intel-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.intel-icon {
  font-size: 18px;
  margin-bottom: 4px;
}

.intel-label {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.intel-items p {
  font-size: 15px;
  margin-bottom: 4px;
  line-height: 1.5;
}

.intel-highlight {
  background: rgba(124, 92, 252, 0.06);
  margin: 0 -24px;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
}

.intel-sentiment-bar {
  /* width set by JS */
}

.s7-closing {
  text-align: center;
  margin-top: 48px;
}

.s7-closing p {
  font-size: 18px;
  margin-bottom: 8px;
}

.s7-punchline {
  color: var(--text) !important;
  font-size: 20px !important;
  font-weight: 600;
  margin-top: 16px !important;
}

/* ============================================
   SCREEN 8: THE 3-MINUTE PROMISE
   ============================================ */
.screen-8 {
  min-height: auto;
  padding: 100px 0 120px;
}

.steps {
  margin-top: 8px;
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
  align-items: flex-start;
}

.step-number {
  font-size: 48px;
  color: var(--primary);
  line-height: 1;
  flex-shrink: 0;
}

.step.reveal.visible .step-number {
  animation: stepPulse 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes stepPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.step-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.step-typing-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  max-width: 380px;
}

.step-bubble {
  margin-top: 16px;
  max-width: 380px;
}

.step-remember {
  color: var(--text);
  font-weight: 600;
  font-size: 18px !important;
  margin-top: 16px !important;
}

.s8-mantra {
  text-align: center;
  margin-top: 32px;
}

.s8-mantra p {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.s8-mantra.visible p:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.s8-mantra.visible p:nth-child(2) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.s8-mantra.visible p:nth-child(3) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* ============================================
   SCREEN 9: THE MATH
   ============================================ */
.screen-9 {
  min-height: auto;
  padding: 100px 0 120px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 8px;
}

.pricing-card-label {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-line {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}

.pricing-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 4px 0;
}

.pricing-total {
  font-weight: 700;
  font-size: 18px;
}

.pricing-footnote {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 16px;
}

.pricing-vs {
  text-align: center;
  font-size: 20px;
  color: var(--text-muted);
  font-weight: 600;
  padding: 16px 0;
}

.pricing-clutch {
  background: var(--surface-up);
  border-left: 3px solid var(--primary);
  box-shadow: 0 8px 32px rgba(124, 92, 252, 0.12);
  text-align: center;
}

.pricing-clutch .pricing-card-label {
  font-size: 22px;
  font-family: var(--mono);
  color: var(--primary);
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.pricing-hero-price {
  font-size: clamp(32px, 6vw, 44px);
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-clutch p {
  font-size: 17px;
  margin-bottom: 8px;
}

.pricing-features {
  font-size: 15px !important;
  color: var(--text-muted);
  margin-top: 12px !important;
}

.pricing-human {
  text-align: center;
  opacity: 0.7;
}

.pricing-human .pricing-hero-price {
  font-size: clamp(28px, 5vw, 36px);
}

/* ============================================
   SCREEN 10: THE FOUNDING CIRCLE
   ============================================ */
.screen-10 {
  min-height: auto;
  padding: 100px 0 120px;
  background: linear-gradient(180deg, var(--bg) 0%, #0d0d1a 100%);
}

.fc-card {
  background: var(--surface);
  border: 1px solid rgba(124, 92, 252, 0.25);
  border-radius: 20px;
  padding: 48px 28px;
  text-align: center;
  box-shadow: 0 0 60px rgba(124, 92, 252, 0.08);
}

.fc-title {
  font-family: var(--mono);
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 24px;
}

.fc-launch {
  font-size: 18px;
  margin-bottom: 4px;
}

.fc-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.fc-perks {
  text-align: left;
  max-width: 420px;
  margin: 0 auto 40px;
}

.fc-perk {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.fc-perk-icon {
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.fc-perk strong {
  font-size: 16px;
  display: block;
  margin-bottom: 2px;
}

.fc-perk p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CTA Button */
.cta-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 16px 24px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 30px var(--glow);
  text-decoration: none;
}

.cta-main {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.cta-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.fc-reassure {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 20px;
  line-height: 1.6;
}

.fc-progress-wrap {
  margin-top: 32px;
}

.fc-progress-bar {
  height: 6px;
  background: #2a2a3e;
  border-radius: 3px;
  overflow: hidden;
  max-width: 300px;
  margin: 0 auto;
}

.fc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  border-radius: 3px;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.fc-progress-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 10px;
}

.fc-secondary {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
}

.fc-waitlist-toggle {
  background: none;
  border: none;
  color: var(--text-lavender);
  font-family: var(--font);
  font-size: 15px;
  text-decoration: underline;
  cursor: pointer;
  padding: 8px;
  margin: 4px 0;
}

.fc-waitlist-note {
  font-size: 14px;
}

.fc-live-viewers {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.fc-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

.fc-signup-form {
  margin-top: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.fc-email-row {
  display: flex;
  gap: 8px;
}

.fc-waitlist-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fc-email-input {
  flex: 1;
  height: 52px;
  padding: 0 16px;
  background: var(--surface-up);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  outline: none;
  min-width: 0;
}

.fc-email-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(124, 92, 252, 0.2);
}

.fc-email-input::placeholder {
  color: var(--text-muted);
}

.fc-email-submit {
  height: 52px;
  padding: 0 24px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fc-email-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(124, 92, 252, 0.25);
}


.fc-waitlist-success {
  margin-top: 16px;
  animation: slideDown 0.3s ease;
}

.fc-waitlist-success p {
  margin-bottom: 8px;
  font-size: 15px;
}

.fc-upgrade-link {
  color: var(--primary);
  font-weight: 600;
}

/* ============================================
   SCREEN 11: THE FOOTER
   ============================================ */
.screen-11 {
  min-height: auto;
  padding: 100px 0 60px;
  background: #0d0d1a;
}

.faq {
  margin-top: 8px;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  margin-bottom: 8px;
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--text-lavender);
}

.faq-arrow {
  font-size: 14px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 20px 20px 44px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 60px 0 40px;
}

.footer-bio {
  text-align: center;
  margin-bottom: 32px;
}

.footer-bio p {
  font-size: 16px;
  margin-bottom: 4px;
}

.footer-link {
  color: var(--text-lavender);
}

.cta-footer {
  margin-bottom: 40px;
}

.cta-footer .cta-main {
  font-size: 16px;
}

.fc-footer-counter {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 32px;
}

.footer-legal {
  text-align: center;
}

.footer-legal p {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-legal a {
  color: var(--text-muted);
}

.footer-legal a:hover {
  color: var(--text-lavender);
}

/* ============================================
   RESPONSIVE — DESKTOP ENHANCEMENTS
   ============================================ */
@media (min-width: 768px) {
  .container {
    max-width: var(--max-w);
  }

  .carousel-card {
    flex: 0 0 380px;
  }

  .screen-1-content {
    max-width: 700px;
  }

  .s1-line-1, .s1-line-2, .s1-line-4 {
    font-size: 48px;
  }

  .stat-card-inner {
    padding: 32px 28px;
  }

  .step {
    gap: 28px;
  }

  .fc-card {
    padding: 56px 40px;
  }
}

@media (min-width: 1024px) {
  .carousel {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
  }

  .carousel-card {
    flex: 0 0 360px;
  }
}
