:root {
  color-scheme: dark;
  --ink: #f8fbff;
  --muted: #bed0df;
  --navy: #061426;
  --blue: #0f4c81;
  --ice: #9ed8f2;
  --red: #c6293e;
  --gold: #f3ba4d;
  --green: #38d6a3;
  --panel: rgba(6, 20, 38, 0.82);
  --line: rgba(248, 251, 255, 0.18);
  --ticker-height: 2.15rem;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--ink);
}

button,
a {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  padding-bottom: var(--ticker-height);
  background:
    linear-gradient(180deg, rgba(6, 20, 38, 0) 0%, #061426 72%),
    radial-gradient(circle at 20% 100%, rgba(56, 214, 163, 0.2), transparent 32%),
    #061426;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 2rem);
}

.hero-art,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.04);
}

.hero-scrim {
  background:
    radial-gradient(ellipse at 22% 44%, rgba(6, 20, 38, 0.86) 0%, rgba(6, 20, 38, 0.64) 30%, rgba(6, 20, 38, 0) 62%),
    linear-gradient(90deg, rgba(6, 20, 38, 0.98) 0%, rgba(6, 20, 38, 0.9) 30%, rgba(6, 20, 38, 0.46) 56%, rgba(6, 20, 38, 0.08) 84%),
    linear-gradient(0deg, rgba(6, 20, 38, 0.96) 0%, rgba(6, 20, 38, 0.16) 34%, rgba(6, 20, 38, 0.04) 64%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  padding: 0 0 clamp(2.5rem, 8vh, 5rem);
  transform: translateY(-6vh);
}

.site-name,
.section-label {
  margin: 0 0 0.75rem;
  color: var(--ice);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3rem, 14vw, 10rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.answer-row {
  display: flex;
  align-items: end;
  gap: clamp(0.8rem, 2vw, 1.4rem);
  flex-wrap: wrap;
  margin-top: clamp(1rem, 4vw, 2.25rem);
}

.answer {
  margin: 0;
  padding: 0.08em 0.16em 0.14em;
  background: var(--green);
  color: #03130e;
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 1000;
  line-height: 0.82;
  border-radius: 8px;
  box-shadow: 0 20px 70px rgba(56, 214, 163, 0.32);
}

.answer.answer-no {
  background: var(--red);
  color: white;
  box-shadow: 0 20px 70px rgba(198, 41, 62, 0.34);
}

.answer-note {
  max-width: 18rem;
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 750;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: clamp(1.1rem, 4vw, 2rem);
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.status-strip div {
  min-width: 0;
  padding: 0.9rem;
  background: rgba(6, 20, 38, 0.76);
}

.status-strip span,
.status-strip strong {
  display: block;
}

.status-strip span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0;
}

.status-strip strong {
  margin-top: 0.24rem;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.primary-action,
.secondary-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0.78rem 1rem;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.primary-action {
  border: 0;
  background: var(--red);
  color: white;
}

.secondary-action {
  border: 1px solid var(--line);
  background: rgba(248, 251, 255, 0.08);
  color: var(--ink);
}

.ticker {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  display: flex;
  gap: 1rem;
  min-height: var(--ticker-height);
  height: var(--ticker-height);
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #f8fbff;
  color: #061426;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  flex: 0 0 max-content;
  gap: 1rem;
  min-width: max-content;
  animation: drift 32s linear infinite;
}

.ticker p {
  flex: 0 0 auto;
  margin: 0;
  padding: 0 1.2rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.dashboard {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) 0;
}

.dashboard article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1rem, 3vw, 1.35rem);
  background: var(--panel);
}

.dashboard h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
  letter-spacing: 0;
}

.dashboard p,
.dashboard li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.meter {
  height: 1rem;
  margin: 1.2rem 0;
  overflow: hidden;
  border: 1px solid rgba(248, 251, 255, 0.25);
  border-radius: 999px;
  background: rgba(248, 251, 255, 0.12);
}

.meter span {
  display: block;
  width: 82%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--red));
}

.big-quote {
  margin: 0;
  color: var(--ink) !important;
  font-size: clamp(1.5rem, 4vw, 2.55rem) !important;
  line-height: 1.05 !important;
  font-weight: 950;
}

.checklist-panel ul {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding-left: 1.2rem;
}

@keyframes drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 86vh;
    align-items: end;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(6, 20, 38, 0.98) 0%, rgba(6, 20, 38, 0.74) 68%, rgba(6, 20, 38, 0.18) 100%);
  }

  .hero-art {
    object-position: 78% center;
  }

  .status-strip,
  .dashboard {
    grid-template-columns: 1fr;
  }

  .answer {
    width: 100%;
    text-align: center;
  }

  .actions > * {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
