/* ============================================================
   ARTIFICIAL INTUITION — CIA-Aesthetic Dark Theme
   intuitiontrainer.io
   ============================================================ */

:root {
  --navy: #003F7F;
  --navy-deep: #001f4a;
  --navy-mid: #002d5c;
  --navy-light: #004fa0;
  --gold: #C8A951;
  --gold-bright: #e0c06a;
  --gold-muted: #9a7f3a;
  --bg: #080d18;
  --bg-card: #0c1525;
  --bg-card-hover: #111d33;
  --bg-terminal: #060b14;
  --text: #d8e4f0;
  --text-dim: #7a9bbf;
  --text-muted: #4a6880;
  --white: #ffffff;
  --success: #4caf7d;
  --error: #e05555;
  --border: rgba(200, 169, 81, 0.2);
  --border-dim: rgba(200, 169, 81, 0.08);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 24px rgba(200, 169, 81, 0.15);
  --font-mono: 'Share Tech Mono', 'Courier New', monospace;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-bright); }

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden { display: none !important; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 169, 81, 0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 13px 28px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-secondary:hover {
  background: rgba(200, 169, 81, 0.08);
  transform: translateY(-1px);
}

.btn-nav {
  background: transparent;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 8px 18px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}
.btn-nav:hover { background: rgba(200, 169, 81, 0.1); }

.btn-icon { font-size: 1rem; }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 13, 24, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dim);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mono {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--gold);
  background: var(--border-dim);
  border: 1px solid var(--border);
  padding: 2px 8px;
  letter-spacing: 0.1em;
}

.brand-name {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  display: none;
}

@media (min-width: 600px) { .brand-name { display: block; } }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text-dim);
  font-size: 0.85rem;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dim);
  transition: background 0.2s;
}
.nav-hamburger:hover span { background: var(--gold); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Scanline effect */
.hero-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 63, 127, 0.025) 3px,
    rgba(0, 63, 127, 0.025) 4px
  );
  pointer-events: none;
  z-index: 0;
}

/* Grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-dim) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-dim) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0, 63, 127, 0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.declassified-stamp {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 4px 16px;
  margin-bottom: 16px;
  transform: rotate(-1.5deg);
  opacity: 0.9;
}

.hero-doc-ref {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-headline {
  color: var(--white);
  margin-bottom: 0;
}

.hero-sub {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 24px;
}
.hero-sub em { font-style: italic; color: var(--gold-bright); }

.hero-body {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-disclaimer {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero-scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   WHAT IS THIS
   ============================================================ */

.what-is-this {
  padding: 100px 0;
  border-top: 1px solid var(--border-dim);
}

.what-is-this h2 {
  margin-bottom: 48px;
}

.briefing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.briefing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-left: 3px solid var(--gold);
  padding: 28px 28px 32px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.briefing-card:hover {
  border-left-color: var(--gold-bright);
  box-shadow: var(--shadow-gold);
}

.briefing-card-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold-muted);
  margin-bottom: 12px;
}

.briefing-card h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.briefing-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   TWO TRACKS
   ============================================================ */

.two-tracks {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--bg), var(--navy-deep), var(--bg));
}

.two-tracks h2 { margin-bottom: 48px; }

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.track-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px 40px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.track-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.track-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.track-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.track-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 2px;
}
.reading-badge {
  background: rgba(200, 169, 81, 0.12);
  color: var(--gold);
  border: 1px solid rgba(200, 169, 81, 0.3);
}
.train-badge {
  background: rgba(0, 63, 127, 0.3);
  color: #6aabdf;
  border: 1px solid rgba(106, 171, 223, 0.3);
}

.track-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.track-desc {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.track-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.step-text {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.55;
  padding-top: 3px;
}

.track-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.feature-check {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.btn-track {
  width: 100%;
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-track:hover { transform: translateY(-1px); }

.btn-track-reading {
  background: var(--gold);
  color: #000;
  border: none;
  font-weight: 700;
}
.btn-track-reading:hover { background: var(--gold-bright); }

.btn-track-train {
  background: transparent;
  color: #6aabdf;
  border: 1px solid rgba(106, 171, 223, 0.4);
}
.btn-track-train:hover { background: rgba(106, 171, 223, 0.08); }

/* ============================================================
   DEMO TERMINAL
   ============================================================ */

.demo-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-dim);
}

.demo-section h2 { margin-bottom: 12px; }

.demo-intro {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 40px;
  max-width: 500px;
}

.demo-terminal {
  background: var(--bg-terminal);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 680px;
  box-shadow: var(--shadow), var(--shadow-gold);
}

.terminal-header {
  background: rgba(0, 63, 127, 0.25);
  border-bottom: 1px solid var(--border-dim);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}
.terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.5;
}

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.terminal-body {
  padding: 24px 20px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.terminal-line {
  display: flex;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  align-items: flex-start;
}

.t-label {
  color: var(--gold);
  letter-spacing: 0.12em;
  min-width: 56px;
  flex-shrink: 0;
  font-size: 0.7rem;
}

.t-value {
  color: var(--text);
  line-height: 1.5;
}

.terminal-line.ready .t-value { color: var(--success); }

.reading-output {
  margin-top: 12px;
  padding: 16px;
  background: rgba(200, 169, 81, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.reading-output .reading-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}

.reading-output .reading-text {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
}

.reading-output .reading-redacted {
  display: inline-block;
  background: var(--text-dim);
  color: transparent;
  border-radius: 2px;
  user-select: none;
  margin-left: 4px;
}

.reading-output .reading-unlock {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border-dim);
}

.reading-output .reading-unlock p {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.terminal-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-dim);
}

.btn-initiate {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-radius: var(--radius);
  width: 100%;
}
.btn-initiate:hover {
  background: var(--gold);
  color: #000;
}
.btn-initiate:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 12px;
  background: var(--gold);
  margin-left: 2px;
  animation: blink 0.8s step-end infinite;
  vertical-align: middle;
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--bg), #0a1120);
  border-top: 1px solid var(--border-dim);
}

.pricing-section h2 { margin-bottom: 8px; }

.pricing-sub {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 28px 24px 32px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.pricing-card-featured {
  border-color: var(--gold);
  background: var(--bg-card-hover);
}
.pricing-card-featured:hover { border-color: var(--gold-bright); }

.pricing-badge-featured {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: 2px;
  white-space: nowrap;
}

.pricing-tier-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price .pricing-period { font-size: 1rem; color: var(--text-dim); }
.pricing-price .pricing-alt { font-size: 1.2rem; color: var(--text-dim); }

.pricing-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 60px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--text-dim);
  padding-left: 18px;
  position: relative;
}
.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-muted);
  font-family: var(--font-mono);
}

.btn-pricing {
  width: 100%;
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-pricing:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--text-dim);
}
.btn-pricing-free { border-color: var(--text-muted); color: var(--text-dim); }
.btn-pricing-featured {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  font-weight: 700;
}
.btn-pricing-featured:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: #000;
}

/* ============================================================
   STARGATE FACTS
   ============================================================ */

.stargate-facts {
  padding: 80px 0;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
  margin-bottom: 24px;
}

.fact-num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.fact-label {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.facts-source {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ============================================================
   EARLY ACCESS
   ============================================================ */

.early-access {
  padding: 100px 0;
}

.ea-content {
  max-width: 620px;
}

.early-access h2 { margin-bottom: 16px; }

.early-access p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.ea-form-wrapper {
  margin-bottom: 16px;
}

.ea-form .ea-fields {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ea-input {
  flex: 1;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.ea-input:focus { border-color: var(--gold); }
.ea-input::placeholder { color: var(--text-muted); }

.ea-submit {
  flex-shrink: 0;
  white-space: nowrap;
}

.ea-success, .modal-success {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(76, 175, 125, 0.08);
  border: 1px solid rgba(76, 175, 125, 0.3);
  border-radius: var(--radius);
}

.success-icon {
  width: 32px;
  height: 32px;
  background: var(--success);
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.success-text { font-size: 0.9rem; color: var(--text); line-height: 1.5; }

.ea-error, .modal-error {
  padding: 12px 16px;
  background: rgba(224, 85, 85, 0.08);
  border: 1px solid rgba(224, 85, 85, 0.3);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--error);
}

.ea-fine-print {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0 !important;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start;
}

@media (max-width: 640px) { .footer-top { grid-template-columns: 1fr; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border-dim);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-disclaimer strong { color: var(--text-dim); }

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ============================================================
   MODAL
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  animation: modal-in 0.2s ease-out;
}

@keyframes modal-in {
  from { opacity: 0; transform: scale(0.97) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}
.modal-close:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.modal-stamp {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  border: 1px solid var(--gold);
  display: inline-block;
  padding: 3px 10px;
  margin-bottom: 12px;
  transform: rotate(-1deg);
}

.modal-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.modal-desc {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-input {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.modal-input:focus { border-color: var(--gold); }
.modal-input::placeholder { color: var(--text-muted); }

.modal-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  display: block;
  margin-bottom: 10px;
}

.track-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.track-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.2s;
}
.track-option:hover { color: var(--text); }
.track-option input { accent-color: var(--gold); }

.modal-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.modal-fine-print {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes type-in {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fade-up 0.5s ease-out forwards;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .hero { padding: 100px 0 60px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary { width: 100%; justify-content: center; }
  .tracks-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .modal { padding: 28px 20px; }
  .footer-links { flex-direction: column; gap: 28px; }
}

@media (max-width: 540px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .ea-form .ea-fields { flex-direction: column; }
  .ea-submit { width: 100%; justify-content: center; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   UTILITY
   ============================================================ */

.text-gold { color: var(--gold); }
.text-dim { color: var(--text-dim); }
.text-mono { font-family: var(--font-mono); }
.mt-0 { margin-top: 0; }
