:root {
  --bg: #0b1d3a;
  --accent: #1abc9c;
  --gold: #f5b731;
  --text: #fff8f0;
  --muted: #00cec9;
  --card: rgba(11, 29, 58, 0.72);
  --radius: 18px;
  --font: "Nunito", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-bottom: 5.5rem;
}

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

a { color: var(--accent); }

.skip {
  position: absolute;
  left: -9999px;
  top: 1rem;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--text);
  color: var(--bg);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 29, 58, 0.15) 0%, rgba(11, 29, 58, 0.55) 45%, rgba(11, 29, 58, 0.95) 100%);
}

.hero__copy {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem 4rem;
  max-width: 42rem;
}

.hero__kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 9vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  font-weight: 800;
}

.hero__tagline {
  font-size: 1.15rem;
  max-width: 34rem;
  margin: 0 0 1.75rem;
  color: rgba(255, 248, 240, 0.88);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn--gold {
  background: linear-gradient(135deg, var(--gold), #e5a020);
  color: var(--bg);
  box-shadow: 0 8px 24px rgba(245, 183, 49, 0.28);
}

.btn--ghost {
  border: 1px solid rgba(255, 248, 240, 0.35);
  color: var(--text);
}

.band { padding: 4.5rem 0; }

.band--deep { background: linear-gradient(180deg, var(--bg) 0%, #081528 100%); }

.band__inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.section-head { margin-bottom: 2.5rem; }

.section-head--left { text-align: left; }

.section-head--right { text-align: right; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
}

.timeline__list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.25rem;
  border-left: 2px solid rgba(26, 188, 156, 0.35);
}

.timeline__item {
  position: relative;
  padding: 0 0 2.5rem 1.75rem;
}

.timeline__item:last-child { padding-bottom: 0; }

.timeline__node {
  position: absolute;
  left: -1.55rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(245, 183, 49, 0.18);
}

.timeline__card {
  background: var(--card);
  border: 1px solid rgba(255, 248, 240, 0.08);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  backdrop-filter: blur(8px);
}

.timeline__card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: var(--gold);
}

.timeline__card p {
  margin: 0;
  color: rgba(255, 248, 240, 0.85);
}

.mosaic__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 160px;
  gap: 1rem;
}

.mosaic__cell {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 248, 240, 0.08);
}

.mosaic__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic__cell figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(transparent, rgba(11, 29, 58, 0.92));
  font-size: 0.85rem;
  font-weight: 700;
}

.mosaic__cell--hero {
  grid-column: span 4;
  grid-row: span 2;
}

.mosaic__cell--app {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  place-items: center;
  background: rgba(26, 188, 156, 0.08);
}

.mosaic__cell--app img {
  width: 72%;
  height: auto;
  object-fit: contain;
  border-radius: 22%;
}

.mosaic__cell:not(.mosaic__cell--hero):not(.mosaic__cell--app) {
  grid-column: span 2;
}

.legal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.legal__panel {
  background: rgba(255, 248, 240, 0.04);
  border: 1px solid rgba(255, 248, 240, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.legal__panel--accent {
  border-color: rgba(26, 188, 156, 0.35);
  background: rgba(26, 188, 156, 0.06);
}

.legal__panel h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.dock {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  gap: 0.35rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: rgba(11, 29, 58, 0.88);
  border: 1px solid rgba(255, 248, 240, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.dock a {
  text-decoration: none;
  color: rgba(255, 248, 240, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.dock a:hover,
.dock a:focus {
  background: rgba(26, 188, 156, 0.22);
  color: var(--text);
}

@media (max-width: 820px) {
  .mosaic__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }

  .mosaic__cell--hero,
  .mosaic__cell--app,
  .mosaic__cell:not(.mosaic__cell--hero):not(.mosaic__cell--app) {
    grid-column: span 2;
  }

  .mosaic__cell--hero { grid-row: span 1; }

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

  .section-head--right { text-align: left; }

  .dock {
    width: calc(100% - 1.5rem);
    justify-content: space-between;
  }

  .dock a {
    flex: 1;
    text-align: center;
    padding-inline: 0.35rem;
    font-size: 0.74rem;
  }
}
