:root {
  --bg: #07130f;
  --bg-soft: #102019;
  --panel: rgba(11, 24, 19, 0.82);
  --line: rgba(255, 255, 255, 0.08);
  --text: #effaf5;
  --muted: #bccdc5;
  --green: #89ff67;
  --cyan: #48f2d2;
  --orange: #ff9460;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(72, 242, 210, 0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 148, 96, 0.12), transparent 22%),
    linear-gradient(145deg, #06100c 0%, #0d1b15 48%, #07130f 100%);
}

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 98%);
}

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

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

.site-shell {
  position: relative;
  width: min(calc(100% - 28px), var(--max));
  margin: 0 auto;
  padding: 18px 0 34px;
}

.topbar,
.hero,
.wide-photo,
.panel,
.content-band,
.cards-band,
.timeline-band,
.footer {
  backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(11, 24, 19, 0.8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.brand,
h1,
h2,
h3,
.timeline-step {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.02em;
}

.brand {
  font-size: 1.8rem;
  color: var(--green);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: 0.25s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #07130f;
  background: linear-gradient(135deg, var(--green), #e7ffb6);
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: center;
  padding: 38px;
  margin-bottom: 24px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(10, 20, 16, 0.95), rgba(18, 34, 27, 0.86)),
    linear-gradient(90deg, rgba(72, 242, 210, 0.08), transparent 40%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero.alt {
  background:
    linear-gradient(135deg, rgba(10, 20, 16, 0.95), rgba(34, 29, 24, 0.86)),
    linear-gradient(90deg, rgba(255, 148, 96, 0.08), transparent 40%);
}

.hero.focus {
  background:
    linear-gradient(135deg, rgba(10, 20, 16, 0.95), rgba(17, 35, 30, 0.86)),
    linear-gradient(90deg, rgba(137, 255, 103, 0.08), transparent 40%);
}

.hero-media img,
.photo-card img {
  border-radius: 26px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cyan);
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.94;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.7rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  font-size: 1.04rem;
  max-width: 66ch;
}

.cta-row,
.panel-grid,
.photo-grid,
.cards,
.timeline,
.mosaic,
.footer-links {
  display: grid;
  gap: 18px;
}

.cta-row {
  grid-template-columns: repeat(2, max-content);
  gap: 14px;
  margin: 24px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
}

.button-primary {
  color: #07130f;
  background: linear-gradient(135deg, var(--green), #ecffc6);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.wide-photo,
.content-band,
.cards-band,
.timeline-band {
  padding: 32px;
  margin-bottom: 24px;
  border-radius: var(--radius-xl);
  background: rgba(11, 24, 19, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.panel-grid,
.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.panel,
.info-card,
.timeline-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.panel {
  padding: 28px;
}

.accent {
  background:
    linear-gradient(145deg, rgba(72, 242, 210, 0.1), rgba(11, 24, 19, 0.92)),
    var(--panel);
}

.span-two {
  grid-column: span 2;
}

.photo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.photo-card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.banner img {
  aspect-ratio: 21 / 9;
}

.photo-card figcaption {
  padding: 18px;
  font-size: 0.96rem;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.info-card {
  padding: 24px;
}

.timeline {
  grid-template-columns: 1fr;
}

.timeline-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 24px;
  color: #07130f;
  background: linear-gradient(135deg, var(--cyan), #d7fff6);
  font-size: 2rem;
}

.mosaic {
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 24px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(11, 24, 19, 0.8);
  border: 1px solid var(--line);
}

.footer-links {
  grid-auto-flow: column;
  gap: 16px;
}

@media (max-width: 1080px) {
  .hero,
  .panel-grid,
  .photo-grid,
  .cards,
  .mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .span-two,
  .cards article:last-child,
  .mosaic article:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max));
    padding-top: 12px;
  }

  .topbar,
  .hero,
  .panel-grid,
  .photo-grid,
  .cards,
  .mosaic,
  .footer {
    grid-template-columns: 1fr;
  }

  .topbar,
  .footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  .wide-photo,
  .content-band,
  .cards-band,
  .timeline-band,
  .hero {
    padding: 24px;
  }

  .cta-row,
  .footer-links {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .span-two,
  .cards article:last-child,
  .mosaic article:first-child {
    grid-column: auto;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }
}
