/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Figtree:wght@400;500;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
  --bg: #0b0d14;
  --bg-2: #111420;
  --bg-3: #161b28;
  --fg: #f0ede8;
  --fg-2: #9e9a92;
  --fg-3: #6b6760;
  --accent: #FFB84D;
  --accent-dim: rgba(255, 184, 77, 0.12);
  --accent-glow: rgba(255, 184, 77, 0.25);
  --green: #4ade80;
  --amber: #FFB84D;
  --red: #f87171;
  --blue: #60a5fa;
  --purple: #a78bfa;
  --teal: #2dd4bf;
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(255, 184, 77, 0.2);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}

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

.logo-text {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-3);
  letter-spacing: 0.03em;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 60px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 184, 77, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-lede {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-status-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 13px;
  color: var(--fg-2);
  font-family: 'Figtree', monospace;
}

.status-dot--live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ===== RADAR VISUAL ===== */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.radar-field {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 320px;
  margin: 0 auto;
}

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 184, 77, 0.15) 30deg,
    transparent 60deg
  );
  animation: radar-spin 4s linear infinite;
}

@keyframes radar-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.radar-rings {
  position: absolute;
  inset: 0;
}

.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 184, 77, 0.15);
}

.radar-ring--1 { inset: 15%; }
.radar-ring--2 { inset: 35%; }
.radar-ring--3 { inset: 55%; }

.radar-blips {
  position: absolute;
  inset: 0;
}

.blip {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.blip--1 { top: 22%; left: 65%; animation: blip-float 6s ease-in-out infinite; }
.blip--2 { top: 58%; left: 28%; animation: blip-float 6s ease-in-out infinite 1.5s; }
.blip--3 { top: 42%; left: 72%; animation: blip-float 6s ease-in-out infinite 3s; }
.blip--4 { top: 72%; left: 58%; animation: blip-float 6s ease-in-out infinite 0.8s; }

@keyframes blip-float {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.3); opacity: 1; }
}

.radar-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--accent-glow);
}

/* ===== SIGNAL FEED ===== */
.signal-feed {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  font-family: 'Figtree', monospace;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.signal-line {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: signal-fade-in 0.5s ease-out forwards;
  opacity: 0;
}

.signal-line--1 { animation-delay: 0.3s; }
.signal-line--2 { animation-delay: 0.8s; }
.signal-line--3 { animation-delay: 1.3s; }
.signal-line--4 { animation-delay: 1.8s; }
.signal-line--5 { animation-delay: 2.3s; }

@keyframes signal-fade-in {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

.signal-time {
  color: var(--fg-3);
  min-width: 70px;
}

.signal-text {
  color: var(--fg-2);
}

/* ===== SECTION SHARED ===== */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.15;
}

/* ===== HOW IT WORKS ===== */
.howitworks {
  padding: 100px 60px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.step-card {
  padding: 40px 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.3s;
}

.step-card:hover {
  border-color: var(--border-accent);
}

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

.step-icon {
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 60px;
}

.manifesto-content {
  max-width: 760px;
}

.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 500;
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.manifesto-body {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.75;
  margin-bottom: 16px;
}

.manifesto-body em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 60px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 32px 28px;
  background: var(--bg);
  transition: background 0.3s;
}

.feature-item:hover {
  background: var(--bg-3);
}

.feature-indicator {
  flex-shrink: 0;
  margin-top: 4px;
}

.indicator-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.indicator-dot--green { background: var(--green); box-shadow: 0 0 6px rgba(74, 222, 128, 0.5); }
.indicator-dot--amber { background: var(--amber); box-shadow: 0 0 6px rgba(255, 184, 77, 0.5); }
.indicator-dot--red { background: var(--red); box-shadow: 0 0 6px rgba(248, 113, 113, 0.5); }
.indicator-dot--blue { background: var(--blue); box-shadow: 0 0 6px rgba(96, 165, 250, 0.5); }
.indicator-dot--purple { background: var(--purple); box-shadow: 0 0 6px rgba(167, 139, 250, 0.5); }
.indicator-dot--teal { background: var(--teal); box-shadow: 0 0 6px rgba(45, 212, 191, 0.5); }

.feature-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.6;
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 60px 120px;
}

.closing-inner {
  max-width: 860px;
}

.closing-statement {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 560px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

.cta-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

.cta-note {
  font-size: 15px;
  color: var(--fg-3);
}

/* ===== FOOTER ===== */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 60px;
  border-top: 1px solid var(--border);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-2);
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 4px;
}

.footer-meta {
  font-size: 12px;
  color: var(--fg-3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav { padding: 24px 28px; }
  .hero { padding: 60px 28px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .howitworks { padding: 80px 28px; }
  .steps-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 80px 28px; }
  .features { padding: 80px 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 28px 100px; }
  .footer { padding: 28px; flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (max-width: 600px) {
  .nav-tagline { display: none; }
  .hero-headline { font-size: 36px; }
}
