/* ══════════════════════════════════════════════════════
   MarketMood.tr — v1 Landing Page Styles
   Dark mode · Mobile-first · No external dependencies
   ══════════════════════════════════════════════════════ */

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

:root {
  --bg-primary:    #070c18;
  --bg-secondary:  #0c1426;
  --bg-card:       #111827;
  --bg-card-hover: #1a2540;
  --bg-alt:        #0a1020;

  --accent-cyan:   #06b6d4;
  --accent-green:  #10b981;
  --accent-amber:  #f59e0b;
  --accent-red:    #ef4444;
  --accent-blue:   #3b82f6;

  --text-primary:   #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted:     #64748b;

  --border:        #1e293b;
  --border-light:  #243044;
  --border-accent: rgba(6, 182, 212, 0.2);

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 80px rgba(6, 182, 212, 0.08);

  --font: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: #38d9f5; }

img { max-width: 100%; display: block; }

/* ── Container ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Typography helpers ───────────────────────────────── */
.text-muted { color: var(--text-muted); font-size: 0.9rem; }
.accent     { color: var(--accent-cyan); }

/* ── Buttons ──────────────────────────────────────────── */
.btn-primary,
.btn-secondary,
.btn-nav {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan), #0891b2);
  color: #fff;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #38d9f5, var(--accent-cyan));
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(6, 182, 212, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-cyan);
  border: 1.5px solid var(--border-accent);
}
.btn-secondary:hover {
  background: rgba(6, 182, 212, 0.08);
  color: #38d9f5;
  border-color: var(--accent-cyan);
}

.btn-nav {
  padding: 8px 20px;
  background: rgba(6, 182, 212, 0.12);
  color: var(--accent-cyan);
  border: 1px solid var(--border-accent);
  font-size: 0.88rem;
}
.btn-nav:hover {
  background: rgba(6, 182, 212, 0.2);
  color: #fff;
}

/* ── Section helpers ──────────────────────────────────── */
.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid var(--border-accent);
  border-radius: 30px;
  padding: 4px 14px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 48px;
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 12, 24, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--text-primary); }
.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  flex-shrink: 0;
}
.brand-tr { color: var(--accent-cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.nav-links a:not(.btn-nav) {
  color: var(--text-secondary);
  font-weight: 500;
}
.nav-links a:not(.btn-nav):hover { color: var(--text-primary); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 90px 0 80px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center,
    rgba(6, 182, 212, 0.12) 0%,
    transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  padding: 6px 18px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
  flex-shrink: 0;
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin: 0 auto 22px;
  color: var(--text-primary);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.hero-sub strong { color: var(--accent-cyan); font-weight: 600; }

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   SAFETY STRIP
═══════════════════════════════════════════ */
.safety-strip {
  background: rgba(239, 68, 68, 0.06);
  border-top: 1px solid rgba(239, 68, 68, 0.2);
  border-bottom: 1px solid rgba(239, 68, 68, 0.2);
  padding: 14px 0;
}
.safety-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: #fca5a5;
  line-height: 1.55;
}
.safety-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-amber);
}
.safety-inner strong { color: #fff; }

/* ═══════════════════════════════════════════
   6-CARD GRID
═══════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(6,182,212,0.04), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.card:hover::before { opacity: 1; }

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}
.card em { color: var(--accent-amber); font-style: normal; font-weight: 600; }

.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 20px;
  padding: 3px 10px;
}

/* ═══════════════════════════════════════════
   PAIR SAFETY EXAMPLE
═══════════════════════════════════════════ */
.pair-example {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.pair-request {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}
.pair-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}
.pair-symbol {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  font-family: 'Courier New', monospace;
}

.pair-arrow {
  font-size: 1.5rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.pair-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 240px;
}

.pair-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  flex-wrap: wrap;
}
.pair-accepted {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.pair-rejected {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.pair-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}
.badge-ok {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.badge-fail {
  background: rgba(239, 68, 68, 0.12);
  color: var(--accent-red);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.pair-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  font-family: 'Courier New', monospace;
}
.pair-note {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.pair-note-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 640px;
}
.pair-note-text em { color: var(--accent-amber); font-style: normal; font-weight: 600; }

/* ═══════════════════════════════════════════
   DASHBOARD CARD MOCKUP
═══════════════════════════════════════════ */
.mockup-wrapper {
  max-width: 460px;
  margin: 0 auto;
}

.mockup-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 28px 26px;
  box-shadow: var(--shadow-glow), var(--shadow-card);
  position: relative;
}
.mockup-card::before {
  content: '◈ ÖRNEK KART — GERÇEK VERİ DEĞİLDİR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
  background: var(--bg-secondary);
  color: var(--accent-amber);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 3px 12px;
  border-radius: 20px;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.mockup-symbol {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mockup-coin {
  font-size: 1.6rem;
  color: var(--accent-amber);
}
.mockup-pair {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.mockup-exchange {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.badge-fresh {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-green);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 20px;
  padding: 4px 10px;
}

.mockup-rows { display: flex; flex-direction: column; gap: 10px; }

.mockup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.mockup-row:last-child { border-bottom: none; }

.mockup-key { color: var(--text-secondary); }
.mockup-val { font-weight: 700; }
.val-positive { color: var(--accent-green); }
.val-building { color: var(--accent-cyan); }
.val-medium   { color: var(--accent-amber); }
.val-ok       { color: var(--accent-green); }
.val-neutral  { color: var(--text-secondary); }

.mockup-disclaimer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

.mockup-label {
  text-align: center;
  font-size: 0.78rem;
  color: var(--accent-amber);
  margin-top: 18px;
  padding: 10px 16px;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-sm);
}

/* ═══════════════════════════════════════════
   LEARNING PROOF PHASE
═══════════════════════════════════════════ */
.learning-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.learning-text p {
  color: var(--text-secondary);
  margin-bottom: 18px;
  font-size: 0.98rem;
}
.learning-text p strong { color: var(--text-primary); }
.learning-text p em { color: var(--accent-amber); font-style: normal; font-weight: 600; }

.learning-status {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-top: 8px;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.status-active {
  background: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulse 2s infinite;
}
.learning-status strong { color: var(--text-primary); font-size: 0.95rem; }

.learning-flow {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: border-color var(--transition);
}
.flow-step:hover { border-color: var(--border-accent); }

.flow-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 2px;
}
.flow-body { font-size: 0.88rem; }
.flow-body strong { display: block; color: var(--text-primary); margin-bottom: 3px; }

.flow-arrow {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 0 0 0 13px;
}

/* ═══════════════════════════════════════════
   VISION
═══════════════════════════════════════════ */
.vision-layout {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.vision-divider {
  background: var(--border);
  height: 100%;
  min-height: 160px;
}
.vision-block { text-align: center; }
.vision-flag, .vision-globe {
  font-size: 2.6rem;
  margin-bottom: 16px;
  line-height: 1;
}
.vision-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.vision-block p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.vision-tagline {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-cyan);
  padding: 20px;
  background: rgba(6, 182, 212, 0.05);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════
   WAITLIST
═══════════════════════════════════════════ */
.waitlist-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row { display: flex; flex-direction: column; gap: 8px; }

.form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.form-row input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition);
}
.form-row input[type="email"]:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.12);
}
.form-row input[type="email"]::placeholder { color: var(--text-muted); }

.type-options,
.interest-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.type-option,
.interest-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.type-option:hover,
.interest-option:hover {
  border-color: var(--border-accent);
  color: var(--text-primary);
}
.type-option input,
.interest-option input { accent-color: var(--accent-cyan); }

.btn-submit {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.55;
}

.form-success {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  padding: 48px 32px;
}
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-green);
  margin: 0 auto 20px;
}
.form-success h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.form-success p { color: var(--text-secondary); }
.success-sub { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }

/* ═══════════════════════════════════════════
   DISCLAIMER BLOCK
═══════════════════════════════════════════ */
.disclaimer-block {
  background: rgba(239, 68, 68, 0.04);
  border-top: 1px solid rgba(239, 68, 68, 0.15);
  border-bottom: 1px solid rgba(239, 68, 68, 0.15);
  padding: 40px 0;
  text-align: center;
}
.disclaimer-block h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-red);
  margin-bottom: 14px;
}
.disclaimer-block p {
  font-size: 0.88rem;
  color: #fca5a5;
  max-width: 720px;
  margin: 0 auto 10px;
  line-height: 1.7;
}
.disclaimer-en {
  font-size: 0.78rem !important;
  color: var(--text-muted) !important;
  font-style: italic;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 40px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}
.footer-tagline {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-links a { color: var(--text-secondary); }
.footer-links a:hover { color: var(--text-primary); }
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 56px 0; }

  .nav-links a:not(.btn-nav) { display: none; }

  .hero { padding: 60px 0 56px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary { text-align: center; }

  .cards-grid { grid-template-columns: 1fr; }

  .pair-example { flex-direction: column; gap: 18px; }
  .pair-arrow { transform: rotate(90deg); }

  .learning-layout { grid-template-columns: 1fr; gap: 32px; }

  .vision-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .vision-divider { display: none; }

  .section-sub { margin-bottom: 32px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-badge { font-size: 0.7rem; }
  .hero-headline { font-size: 1.85rem; }
  .hero-sub { font-size: 0.95rem; }

  .btn-primary, .btn-secondary {
    width: 100%;
    padding: 13px 20px;
  }

  .pair-row { flex-direction: column; align-items: flex-start; gap: 6px; }

  .mockup-card { padding: 22px 18px; }

  .type-options,
  .interest-options { flex-direction: column; }

  .type-option,
  .interest-option { width: 100%; }
}

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
::selection {
  background: rgba(6, 182, 212, 0.25);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════
   ANIMATIONS — v1 polish
═══════════════════════════════════════════ */

/* Hero background glow: slow radial breathe */
@keyframes heroOrbit {
  0%, 100% { opacity: 0.65; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;    transform: translateX(-50%) scale(1.12); }
}
.hero-glow {
  animation: heroOrbit 8s ease-in-out infinite;
}

/* Dashboard card: gentle cyan glow pulse */
@keyframes cardGlow {
  0%, 100% { box-shadow: 0 0 80px rgba(6,182,212,0.08), 0 4px 24px rgba(0,0,0,0.4); }
  50%       { box-shadow: 0 0 130px rgba(6,182,212,0.18), 0 8px 40px rgba(0,0,0,0.5); }
}
.mockup-card {
  animation: cardGlow 5s ease-in-out infinite;
}

/* Pair accepted row: soft green edge pulse */
@keyframes acceptPulse {
  0%, 100% { border-color: rgba(16,185,129,0.25); }
  50%       { border-color: rgba(16,185,129,0.55); box-shadow: 0 0 10px rgba(16,185,129,0.12); }
}
.pair-accepted {
  animation: acceptPulse 4s ease-in-out infinite;
}

/* Learning flow steps: staggered border highlight */
@keyframes stepHighlight {
  0%, 100% { border-color: var(--border); }
  50%       { border-color: var(--border-accent); }
}
.flow-step:nth-child(1) { animation: stepHighlight 5s ease-in-out infinite 0s; }
.flow-step:nth-child(3) { animation: stepHighlight 5s ease-in-out infinite 1.25s; }
.flow-step:nth-child(5) { animation: stepHighlight 5s ease-in-out infinite 2.5s; }
.flow-step:nth-child(7) { animation: stepHighlight 5s ease-in-out infinite 3.75s; }

/* Honeypot: visually hidden, not display:none (bots skip display:none) */
.hp-wrap {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}
.hp-field { width: 1px; height: 1px; }

/* Required star */
.req-star {
  color: var(--accent-red);
  font-size: 0.85em;
  margin-left: 2px;
}

/* Optional label */
.opt-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 400;
  margin-left: 4px;
}

/* Field hint text */
.field-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
  font-style: italic;
}

/* Inline field error */
.field-error {
  display: block;
  font-size: 0.82rem;
  color: var(--accent-red);
  margin-top: 5px;
  min-height: 1.2em;
}

/* Textarea */
.waitlist-form textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 11px 14px;
  font-size: 0.95rem;
  font-family: var(--font);
  line-height: 1.6;
  resize: vertical;
  min-height: 110px;
  transition: border-color var(--transition);
}
.waitlist-form textarea::placeholder { color: var(--text-muted); }
.waitlist-form textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
}

/* Character counter */
.char-count {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 4px;
}

/* Optional field rows: slightly subdued */
.form-row-optional label { color: var(--text-secondary); }

/* Consent row */
.consent-row { margin-top: 8px; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--accent-cyan);
  cursor: pointer;
}
.consent-label strong { color: var(--text-primary); }

/* Form select field */
.form-select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 11px 14px;
  font-size: 0.95rem;
  font-family: var(--font);
  appearance: none;
  cursor: pointer;
  transition: border-color var(--transition);
}
.form-select:focus {
  outline: none;
  border-color: var(--accent-cyan);
}
.form-select option {
  background: var(--bg-card);
  color: var(--text-primary);
}
