:root {
  --bg: #0d2018;
  --bg-soft: rgba(12, 34, 26, 0.74);
  --panel: rgba(14, 33, 25, 0.82);
  --panel-strong: rgba(20, 46, 35, 0.92);
  --line: rgba(219, 255, 128, 0.16);
  --text: #f3f1df;
  --muted: #bbd1c3;
  --lime: #dfff70;
  --orange: #ff9757;
  --red: #ff635a;
  --cyan: #87f0d9;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 151, 87, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(135, 240, 217, 0.18), transparent 26%),
    linear-gradient(180deg, #153629 0%, #0d2018 55%, #08140f 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 3px, 3px 100%;
  mix-blend-mode: soft-light;
}

.hero,
.section,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 48px 0 36px;
  align-items: center;
}

.hero-copy,
.day-card,
.roster-card,
.panel,
.footer {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-copy {
  border-radius: 36px;
  padding: 34px;
}

.eyebrow,
.day-label,
.stat-label,
.decision-title {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
}

.eyebrow,
.stat-label,
.day-label {
  color: var(--lime);
}

h1,
h2,
h3 {
  font-family: "Bungee", sans-serif;
  font-weight: 400;
  line-height: 1.04;
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.3rem);
  margin-top: 10px;
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  max-width: 15ch;
}

h3 {
  font-size: 1.28rem;
}

.hero-text,
.section-heading,
.timeline-list p,
.roster-card p,
.panel-copy p,
.footer p,
.gear-list,
.check-list {
  color: var(--muted);
}

.hero-text {
  font-size: 1.1rem;
  max-width: 55ch;
  margin: 18px 0 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.stat-card {
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(223, 255, 112, 0.12);
  min-height: 138px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-card strong {
  font-size: 1.32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button.primary {
  background: var(--lime);
  color: #132218;
}

.button.secondary {
  color: var(--text);
  border: 1px solid rgba(243, 241, 223, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.hero-visual {
  position: relative;
  padding: 16px;
  animation: float-in 900ms ease both;
}

.hero-visual img,
.panel img {
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.35));
}

.section {
  padding: 30px 0 0;
}

.section-heading {
  margin-bottom: 24px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.day-card {
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.day-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(223, 255, 112, 0.08), transparent 36%);
  pointer-events: none;
}

.day-header {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

.day-header span {
  display: inline-block;
  margin-top: 8px;
  color: var(--muted);
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.timeline-list li {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  align-items: start;
}

.timeline-list time {
  font-weight: 700;
  color: var(--orange);
  font-size: 0.98rem;
}

.timeline-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.timeline-list p {
  margin: 0;
  line-height: 1.5;
}

.roster-section {
  padding-top: 34px;
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.roster-card {
  border-radius: 22px;
  padding: 20px;
  min-height: 220px;
}

.roster-card p {
  margin: 14px 0 0;
  line-height: 1.55;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 34px 0 44px;
}

.panel {
  border-radius: 30px;
  padding: 26px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
}

.accent-panel {
  background:
    linear-gradient(135deg, rgba(255, 151, 87, 0.11), transparent 48%),
    var(--panel-strong);
}

.panel-copy h2 {
  margin-top: 8px;
  margin-bottom: 16px;
}

.check-list,
.gear-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.72;
}

.check-list strong,
.gear-list .priority {
  color: var(--text);
}

.decision-box {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.decision-title {
  color: var(--orange);
  margin: 0 0 8px;
}

.gear-list .priority::marker {
  color: var(--red);
}

.footer {
  border-radius: 24px 24px 0 0;
  padding: 18px 24px 26px;
  margin-top: 8px;
  margin-bottom: 0;
}

.footer p {
  margin: 0;
  text-align: center;
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(16px) rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

@media (max-width: 1080px) {
  .hero,
  .split-layout,
  .timeline-grid,
  .roster-grid,
  .hero-stats,
  .panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 720px;
    margin: 0 auto;
  }

  .roster-card,
  .panel {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 24px;
  }

  .hero-copy,
  .day-card,
  .panel,
  .footer {
    padding: 20px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 13vw, 4rem);
  }

  .timeline-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .button {
    width: 100%;
  }
}
