:root {
  --brand-blue: #00234f;
  --brand-blue-deep: #00142e;
  --brand-cyan: #3aa9ff;
  --brand-yellow: #fbd913;
  --paper: #f5f8fc;
  --ink: #081223;
  --muted: #62718a;
  --card-shadow: 0 24px 80px rgba(1, 20, 46, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Barlow", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(58, 169, 255, 0.28), transparent 32%),
    radial-gradient(circle at bottom right, rgba(251, 217, 19, 0.14), transparent 28%),
    linear-gradient(140deg, #031326 0%, #0a315f 45%, #021120 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 85%);
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.9fr);
  gap: 24px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(236, 242, 249, 0.92));
  box-shadow: var(--card-shadow);
}

.hero-accent {
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background: linear-gradient(180deg, var(--brand-yellow), #ff9d00);
}

.hero-copy,
.signal-panel,
.info-card {
  position: relative;
  z-index: 1;
}

.eyebrow,
.card-kicker,
.signal-title {
  margin: 0 0 12px;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow,
.card-kicker {
  color: var(--brand-blue);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 35, 79, 0.08);
  color: var(--brand-blue);
  font-size: 0.98rem;
  font-weight: 700;
}

.status-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-yellow);
  box-shadow: 0 0 0 6px rgba(251, 217, 19, 0.22);
}

h1,
h2 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  max-width: 14ch;
  margin-top: 18px;
  font-size: clamp(3rem, 7vw, 5.25rem);
  color: var(--brand-blue-deep);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brand-blue-deep);
}

.lead,
.info-card p,
.signal-list li,
.bullet-list li,
.helper-text {
  font-size: 1.08rem;
  line-height: 1.6;
}

.lead {
  max-width: 62ch;
  margin: 20px 0 0;
  color: #2a3d59;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button {
  color: var(--brand-blue-deep);
  background: linear-gradient(135deg, var(--brand-yellow), #ffd447);
  box-shadow: 0 18px 35px rgba(251, 217, 19, 0.32);
}

.secondary-button {
  color: var(--brand-blue);
  background: rgba(0, 35, 79, 0.06);
  border: 1px solid rgba(0, 35, 79, 0.12);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.helper-text {
  margin: 16px 0 0;
  color: var(--muted);
}

.signal-panel {
  align-self: start;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(0, 35, 79, 0.98), rgba(1, 20, 46, 0.98));
  color: #eef5ff;
}

.signal-title {
  color: var(--brand-yellow);
}

.signal-list,
.bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-list {
  display: grid;
  gap: 16px;
}

.signal-list strong {
  color: var(--brand-yellow);
  margin-right: 8px;
}

.grid-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.info-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 20px 52px rgba(2, 17, 32, 0.18);
}

.info-card.dark {
  color: #eef5ff;
  background:
    linear-gradient(135deg, rgba(0, 35, 79, 0.98), rgba(6, 70, 130, 0.96));
}

.info-card.dark .card-kicker,
.info-card.dark h2,
.info-card.dark p {
  color: inherit;
}

.bullet-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.bullet-list li {
  padding-left: 18px;
  position: relative;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-yellow);
}

@media (max-width: 880px) {
  .hero-card,
  .grid-section {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 18px, 100%);
    padding: 18px 0 32px;
  }

  .hero-card,
  .info-card {
    padding: 24px 20px;
  }

  .lead,
  .info-card p,
  .signal-list li,
  .bullet-list li,
  .helper-text {
    font-size: 1rem;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }
}
