:root {
  color-scheme: dark;
  --bg: #050505;
  --ink: #f4f0e8;
  --muted: #b7b0a6;
  --dim: #7e776f;
  --line: rgba(244, 240, 232, 0.18);
  --line-soft: rgba(244, 240, 232, 0.1);
  --gold: #d8b15e;
  --gold-soft: #ebd49b;
  --display: "League Spartan", "Avenir Next Condensed", "Arial Narrow", ui-sans-serif, system-ui, sans-serif;
  --sans: "Inter Tight", "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, sans-serif;
  font-family: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
}

body::before {
  position: fixed;
  inset: -8%;
  z-index: -3;
  pointer-events: none;
  content: "";
  background: url("/assets/tesla-and-the-pyramid-cover.jpg") center / cover no-repeat;
  filter: blur(22px) saturate(0.82);
  opacity: 0.16;
  transform: scale(1.04);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.7) 38%, rgba(5, 5, 5, 0.96) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.4) 0%, #050505 84%);
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: 32px 0 22px;
}

.brand,
.nav,
.eyebrow,
.section-kicker,
.button,
.hero-meta dt,
h1,
h3 {
  font-family: var(--display);
  text-transform: uppercase;
}

.brand {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(56px, 8vw, 116px);
  width: min(1240px, calc(100% - 64px));
  min-height: calc(100svh - 94px);
  margin: 0 auto;
  padding: 36px 0 94px;
}

.cover-card {
  position: relative;
  width: min(420px, 100%);
  margin: 0 auto;
}

.cover-card img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(244, 240, 232, 0.22);
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.62);
}

.hero-copy {
  max-width: 660px;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

h1,
h2,
h3,
p,
dl {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(42px, 4.45vw, 64px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0.016em;
  white-space: nowrap;
}

.byline {
  margin-bottom: 32px;
  color: var(--gold-soft);
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tagline {
  max-width: 590px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(24px, 2.15vw, 30px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.lede {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.56;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 640px;
  margin: 36px 0 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-meta div {
  padding-right: 22px;
}

.hero-meta dt {
  margin-bottom: 8px;
  color: var(--dim);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.28;
}

.hero-meta a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(220, 189, 121, 0.42);
  transition: border-color 160ms ease, color 160ms ease;
}

.hero-meta a:hover,
.hero-meta a:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
}

.availability-meta {
  max-width: 620px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 23px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #080706;
}

.button.secondary:hover {
  border-color: var(--ink);
}

.section {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 84px 0;
  border-top: 1px solid var(--line-soft);
}

.intro-section {
  padding-top: 76px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1fr);
  gap: clamp(36px, 6vw, 80px);
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.055em;
}

.body-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 32px 0 46px;
  border-top: 1px solid var(--line-soft);
  color: var(--dim);
  font-size: 13px;
  font-weight: 550;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .site-header {
    display: block;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-top: 16px;
  }

  .hero,
  .two-column,
  .site-footer {
    display: block;
  }

  .hero {
    min-height: 0;
    padding-top: 28px;
  }

  .cover-card {
    width: min(350px, 78vw);
    margin: 0 0 48px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-meta div {
    padding-right: 0;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 12px;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(100%, 1180px);
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-header {
    padding-top: 22px;
  }

  .brand {
    font-size: 12px;
  }

  .nav {
    font-size: 11px;
  }

  .hero {
    padding-bottom: 70px;
  }

  h1 {
    font-size: 44px;
    line-height: 0.88;
    white-space: normal;
  }

  .byline {
    margin-bottom: 22px;
    font-size: 19px;
  }

  .tagline {
    font-size: 22px;
    line-height: 1.12;
  }

  .eyebrow,
  .section-kicker {
    max-width: 100%;
    font-size: 10px;
    letter-spacing: 0.15em;
  }

  .lede,
  .body-copy p {
    font-size: 16px;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .cover-card {
    width: min(292px, 78vw);
  }
}
