/* ============================================
   PREDICTIONAIRES — Coming Soon
   Locked brand system, flat execution matching
   the real Bible/deck materials: solid navy,
   solid orange accent, no gradients, no glow.
   Single-viewport teaser — no scroll.
   ============================================ */

:root,
[data-theme='light'] {
  /* ---- Locked brand colors (verified against Bible v3.5 assets + investor deck) ---- */
  --pred-navy: #002083;       /* primary ground */
  --pred-navy-deep: #001862;  /* footer / header hairline ground, one step darker */
  --pred-blue: #0133d4;       /* accent blue */
  --pred-orange: #f64502;     /* accent orange / CTA */
  --pred-white: #ffffff;
  --pred-cream: #f7f6f3;      /* light-slide background from real materials, unused on dark hero but kept for reference */

  --color-bg: var(--pred-navy);
  --color-surface: var(--pred-navy-deep);
  --color-border: oklch(from #ffffff l c h / 0.22);
  --color-divider: oklch(from #ffffff l c h / 0.14);

  --color-text: #ffffff;
  --color-text-muted: #b9c3ea;
  --color-text-faint: #8a95c4;

  --color-accent: var(--pred-orange);
  --color-accent-hover: #ff5b1f;
  --color-accent-active: #d63c00;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-full: 9999px;

  --transition-interactive: 160ms ease;

  --content-wide: 1200px;

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
}

/* ============================================
   GLOBAL — flat navy ground, no gradients
   ============================================ */

html, body {
  height: 100%;
}

body {
  background: var(--pred-navy);
  overflow: hidden;
}

.screen {
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
}

.wrap {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  flex: 0 0 auto;
  border-bottom: 1px solid var(--color-divider);
  padding-block: clamp(0.75rem, 2vh, 1.25rem);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.mark-mini {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.mark-mini svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.mark-mini-word {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--color-text);
}


/* ============================================
   HERO — single viewport, no scroll
   ============================================ */

main {
  flex: 1 1 auto;
  display: flex;
  min-height: 0;
}

.hero {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1rem, 2.2vh, 1.75rem);
  padding-block: clamp(1rem, 3vh, 2rem);
}

.hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.4rem, 1vh, 0.75rem);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  font-size: clamp(2.75rem, 5.5vw + 1rem, 6.5rem);
  line-height: 0.96;
  color: var(--pred-white);
  position: relative;
  display: inline-block;
  padding-bottom: clamp(0.5rem, 1.4vh, 0.9rem);
}

.wordmark::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(360px, 60%);
  height: 4px;
  background: linear-gradient(90deg, var(--pred-blue) 0 50%, var(--pred-orange) 50% 100%);
  border-radius: var(--radius-full);
}

.tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem, 1vw + 0.6rem, 1.35rem);
  letter-spacing: 0.01em;
  color: var(--pred-orange);
}

.hero-descriptor {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 0.6vw + 0.75rem, 1.15rem);
  font-weight: 500;
  color: var(--color-text-muted);
  max-width: 34ch;
  line-height: 1.5;
}

.hero-descriptor strong {
  color: var(--color-text);
  font-weight: 700;
}

.hero-teaser {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 0.4vw + 0.7rem, 1rem);
  font-weight: 600;
  color: var(--pred-orange);
  letter-spacing: 0.01em;
}

.hero-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(0.25rem, 0.8vh, 0.5rem);
}

/* Status pill — flat, no shadow/tilt, matches the deck's flat accent blocks */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--pred-orange);
  color: var(--pred-white);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  flex: 0 0 auto;
}

.status-pill .pill-dot {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background: var(--pred-white);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

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

/* ============================================
   NOTIFY FORM — inline, compact, no card chrome
   ============================================ */

.notify-form {
  display: flex;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.notify-input {
  background: var(--pred-navy-deep);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  min-height: 44px;
  width: 220px;
}

.notify-input::placeholder {
  color: var(--color-text-faint);
}

.notify-input:focus-visible {
  outline: none;
  border-color: var(--pred-orange);
}

.notify-submit {
  flex: 0 0 auto;
  background: var(--pred-orange);
  color: var(--pred-white);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
  padding: 0 1.25rem;
  min-height: 44px;
  transition: background var(--transition-interactive), transform var(--transition-interactive);
}

.notify-submit:hover {
  background: var(--color-accent-hover);
}

.notify-submit:active {
  background: var(--color-accent-active);
}

.notify-fine {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-text-faint);
}

.notify-success {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-md);
  background: var(--pred-navy-deep);
  border: 1.5px solid var(--pred-orange);
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.85rem;
}

.notify-success.is-visible {
  display: flex;
}

.notify-success svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--pred-orange);
}

.notify-form.is-hidden {
  display: none;
}

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

.site-footer {
  flex: 0 0 auto;
  border-top: 1px solid var(--color-divider);
  padding-block: clamp(0.75rem, 2vh, 1rem);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-row--centered {
  justify-content: center;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  order: 2;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-faint);
  transition: color var(--transition-interactive);
}

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

.footer-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-text-faint);
  order: 1;
}

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

@media (max-width: 640px) {
  .footer-row {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .hero-row {
    flex-direction: column;
    width: 100%;
  }
  .notify-form {
    width: 100%;
    max-width: 360px;
  }
  .notify-input {
    width: auto;
    flex: 1 1 auto;
  }
}

@media (max-height: 700px) {
  .wordmark {
    font-size: clamp(2.25rem, 6vw, 4.5rem);
  }
  .hero-descriptor {
    display: none;
  }
}

/* skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--pred-orange);
  color: var(--pred-white);
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}
