:root {
  --white: #f0f0fa;
  --muted: rgba(240, 240, 250, 0.7);
  --bg: #000;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: Barlow, system-ui, sans-serif;
}

h1,
h2,
.wordmark,
.when,
.tminus,
.ca-btn,
.footer a,
table th,
table td:first-child {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

a {
  color: inherit;
}

.top-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
}

.wordmark {
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.22em;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ca-btn,
.tminus {
  border: 1px solid rgba(240, 240, 250, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  border-radius: 2px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
}

.ca-btn {
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: #000;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 48px 80px;
}

.when {
  font-size: 13px;
  margin-bottom: 10px;
  opacity: 0.85;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.intro,
.copy-grid,
.table-section,
.traj {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
}

.intro,
.copy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  color: var(--muted);
  line-height: 1.55;
}

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

.table-section h2 {
  font-size: 32px;
  margin-bottom: 6px;
}

.approx {
  opacity: 0.55;
  font-size: 13px;
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

th,
td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(240, 240, 250, 0.12);
}

th {
  opacity: 0.55;
  font-size: 12px;
}

td:first-child {
  width: 140px;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.footer {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 28px 16px 40px;
  border-top: 1px solid rgba(240, 240, 250, 0.12);
}

.footer a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.footer a:hover {
  opacity: 0.7;
}

@media (max-width: 800px) {
  .top-bar {
    padding: 16px;
  }

  .hero-copy {
    padding: 0 16px 48px;
  }

  .intro,
  .copy-grid {
    grid-template-columns: 1fr;
  }

  td:first-child {
    width: 96px;
  }
}
