/* Cybercab gold on void. IBM Plex Sans (SIL OFL) self-hosted; geometric fallbacks. */


@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/ibm-plex-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/ibm-plex-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0B0B0C;
  --elev: #161412;
  --ink: #1A1610;
  --warm: #F6F1E8;
  --ivory: #EFE8DC;
  --muted: #D9C7A0;
  --sea: #F6F1E8;
  --line: #C9A24A;
  --card: #161412;
  --accent: #C9A24A;
  --accent-bright: #E4C36A;
  --accent-deep: #8A6A2A;
  --on-accent: #1A1610;
  --focus: #E4C36A;
  --stone: #D9C7A0;
  --kelp: #8A6A2A;
  --font: "IBM Plex Sans", Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --wrap: 76rem;
  --prose: 38ch;
  --gutter: clamp(1.15rem, 3.2vw, 2.25rem);
  --band: clamp(3.25rem, 7vw, 5.75rem);
}

* { box-sizing: border-box; }
html { font-size: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--warm);
  background: var(--bg);
  line-height: 1.55;
  font-size: 1.125rem;
}
::selection {
  background: var(--accent);
  color: var(--on-accent);
}
.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: var(--gutter);
  top: 0.75rem;
  background: var(--accent);
  color: var(--on-accent);
  padding: 0.6rem 1rem;
  z-index: 40;
  outline: 3px solid var(--ink);
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(11, 11, 12, 0.72);
  border-bottom: 1px solid var(--accent);
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  min-height: 4.25rem;
  padding-block: 0.55rem;
}
.brand { margin: 0; font-weight: 500; letter-spacing: 0.22em; font-size: 0.78rem; text-transform: uppercase; }
.brand a {
  color: var(--warm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.brand a:hover { color: var(--accent); }
.brand img {
  display: block;
  width: 2rem;
  height: 2rem;
  flex: none;
}
.nav-box { margin-left: auto; }
.nav-box[open] { flex: 1 0 100%; }
.nav-toggle {
  list-style: none;
  cursor: pointer;
  color: var(--warm);
  border: 1px solid var(--line);
  min-height: 2.75rem;
  padding: 0.45rem 0.9rem;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 500;
}
.nav-toggle::-webkit-details-marker { display: none; }
.site-header nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
  min-width: 12rem;
}
.site-header nav a {
  color: var(--muted);
  text-decoration: none;
  display: block;
  min-height: 2.75rem;
  padding: 0.7rem 0.2rem;
  line-height: 1.2;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-header nav a[aria-current="page"],
.site-header nav a:hover { color: var(--accent); text-decoration: none; }
.site-header nav a[aria-current="page"] { color: var(--accent); }
.header-cta { flex: none; }

@media (min-width: 70rem) {
  .nav-toggle { display: none; }
  .nav-box { margin-left: auto; }
  .site-header nav {
    display: block !important;
  }
  .site-header nav ul {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.15rem;
    margin: 0;
    min-width: 0;
  }
  .site-header nav a {
    padding: 0.55rem 0.7rem;
    display: inline-flex;
    align-items: center;
  }
}

h1, h2, h3 {
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--sea);
}
h1 { font-size: clamp(2.05rem, 4.6vw, 3.4rem); margin: 0 0 0.85rem; }
h2 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); margin: 0 0 0.75rem; }
h3 { font-size: 1.05rem; margin: 0 0 0.5rem; }
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  margin: 0 0 0.7rem;
}
.lede {
  font-size: 1.125rem;
  max-width: 38rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 1.4rem;
}
.prose { max-width: var(--prose); }
.prose p, section p { max-width: var(--prose); }
.prose p { margin: 0 0 1.15em; }
.prose h2 { margin-top: 1.85em; }
article a:not(.button), .hero-copy a:not(.button), section a:not(.button), footer a {
  color: var(--accent);
}
article a:hover, section > p a:hover, .page-links a:hover {
  color: var(--ink);
}

.band { padding-block: var(--band); }
.band-alt { background: var(--elev); }
.band .cta { margin-top: 1.5rem; }
.band > .wrap > a,
.band > .wrap > p > a { font-weight: 500; }

.hero {
  position: relative;
  min-height: min(82vh, 46rem);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  margin: 0;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
  z-index: -2;
}
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media video {
  position: absolute;
  inset: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 11, 12, 0.35) 0%, rgba(11, 11, 12, 0.2) 40%, rgba(11, 11, 12, 0.88) 100%),
    linear-gradient(0deg, rgba(201, 162, 74, 0.08), transparent 42%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  padding-block: clamp(3rem, 8vw, 5.5rem);
  max-width: var(--wrap);
}
.hero-copy h1,
.hero-copy .lede { max-width: 36rem; }
.hero-copy .lede { color: #d5d5cf; }

.page-mast { background: #000; }
.page-media {
  position: relative;
  overflow: hidden;
  background: #000;
  margin: 0;
  max-height: 22rem;
}
.page-media video,
.page-media img { width: 100%; height: 22rem; object-fit: cover; display: block; }
.page-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.page-body { padding-block: 2.75rem 4.5rem; }
.page-links { margin-top: 2rem; }

@media (prefers-reduced-motion: reduce) {
  .hero-media video,
  .page-media video { display: none; }
}

.cta { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  background: var(--accent);
  color: var(--on-accent);
  padding: 0.55rem 1.15rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.78rem;
  font-weight: 500;
  border: 1px solid var(--accent);
  border-radius: 4px;
}
.button:hover { background: var(--ink); color: var(--on-accent); border-color: var(--ink); }
.button.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.button.ghost:hover {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}

.cards, .tiers { display: grid; gap: 1rem; padding: 0; list-style: none; margin: 1.5rem 0 0; }
@media (min-width: 48rem) {
  .cards { grid-template-columns: 1fr 1fr; }
  .tiers { grid-template-columns: 1fr 1fr 1fr; }
  .split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; align-items: center; }
}
.cards li, .tiers li {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1.35rem 1.4rem 1.45rem;
}
.cards li p, .tiers li p { color: var(--muted); margin: 0 0 0.7em; max-width: none; }
.cards li p:last-child, .tiers li p:last-child { margin-bottom: 0; }
.tiers .popular { border-color: var(--accent); box-shadow: inset 0 3px 0 var(--accent); }
.tiers span { font-size: 0.72rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.tiers li ul { margin: 0.75rem 0; padding-left: 1.1rem; color: var(--muted); }
.limits ul { max-width: var(--prose); color: var(--muted); }
figure { margin: 0; }
figure img, article img { width: 100%; height: auto; display: block; }
.split figure { overflow: hidden; }

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  padding-block: 2.75rem 2rem;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  gap: 1.75rem 2rem;
}
@media (min-width: 48rem) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-name {
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 0.5rem;
}
.site-footer nav { display: flex; flex-direction: column; align-items: flex-start; gap: 0.35rem; }
.site-footer nav .kicker { margin-bottom: 0.35rem; }
.site-footer a { color: var(--muted); text-decoration: none; min-height: 2rem; display: inline-flex; align-items: center; }
.site-footer a:hover { color: var(--accent); }
.site-footer .footer-grid a[itemprop="email"] { color: var(--accent); }
.footer-note {
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.insight-list { list-style: none; padding: 0; margin: 0.5rem 0 1.5rem; max-width: 44rem; }
.insight-list li { border-top: 1px solid var(--line); padding: 1.15rem 0; }
.insight-list h2, .insight-list h3 { margin: 0.2rem 0 0.4rem; }
.insight-list a { color: var(--ink); text-decoration: none; }
.insight-list a:hover { color: var(--accent); }
.insight figure { margin: 0 0 1.5rem; }
.prose ul { padding-left: 1.2rem; }
.prose table {
  width: 100%;
  max-width: 44rem;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 1.25em 0;
}
.prose th, .prose td {
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0.6rem 0.7rem 0;
  text-align: left;
  vertical-align: top;
}
.prose th { color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.75rem; }

@media print {
  .hero-media video, .site-header nav, .cta, .nav-toggle { display: none !important; }
  body { background: #fff; color: #1A1610; }
  a { color: inherit; text-decoration: underline; }
  .brand a, h1, h2, h3, .site-header nav a { color: #1A1610; }
  .site-header { position: static; background: #fff; }
  .hero::after { display: none; }
}

.kicker { color: var(--muted); letter-spacing: 0.2em; font-size: 0.72rem; }
.hero { min-height: 100vh; }
.hero-copy h1 { font-size: clamp(2.75rem, 7vw, 4.5rem); line-height: 1.02; letter-spacing: -0.04em; max-width: 12ch; }
.hero-copy .lede { max-width: 38ch; }
.micro { color: var(--muted); font-size: 0.9rem; margin-top: 0.85rem; }
.screen { padding-block: var(--band); }
@media (min-width: 70rem) {
  .screen { min-height: 100vh; display: flex; align-items: center; }
  .screen .wrap { width: 100%; }
}
.gold-stats { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; list-style: none; padding: 0; margin: 2rem 0 0; }
.gold-stats li { max-width: 12rem; }
.gold-stats strong { display: block; color: var(--accent-bright); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 500; letter-spacing: -0.03em; }
.gold-stats span { color: var(--warm); font-size: 0.95rem; }
.timeline { display: flex; flex-wrap: wrap; gap: 0.5rem 0; list-style: none; padding: 0; margin: 1.5rem 0; color: var(--muted); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }
.timeline li:not(:last-child)::after { content: " → "; color: var(--accent); }
.slot { color: var(--warm); font-weight: 500; margin-top: 1.25rem; }
.ivory { background: var(--ivory); color: var(--ink); }
.ivory h2, .ivory .kicker, .ivory p, .ivory strong { color: inherit; }
.ivory .kicker { color: var(--accent-deep); }
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2rem; list-style: none; padding: 0; margin: 1.5rem 0; }
.specs dt { color: var(--accent-deep); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; }
.specs dd { margin: 0.2rem 0 0; font-size: 1.35rem; font-weight: 500; }
.line { color: var(--accent); letter-spacing: 0.12em; font-size: 0.9rem; margin-top: 1.5rem; }
.product-story {
  display: flex;
  flex-direction: column;
  gap: 2.35rem;
  margin: 2.25rem 0 0;
  max-width: 42rem;
}
.product-story article {
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.product-story h3 {
  color: var(--accent);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
}
.product-story p {
  margin: 0 0 0.95em;
  max-width: 42rem;
  color: var(--warm);
}
.product-story p:last-child { margin-bottom: 0; }
.facts { padding-left: 1.1rem; color: var(--warm); max-width: 38rem; }
.disclaimer { font-size: 0.82rem; color: var(--muted); max-width: 44rem; }
.disclaimer p { margin: 0 0 0.5rem; }
@media (prefers-reduced-motion: reduce) {
  .hero-media video { display: none; }
}
.button { min-height: 2.75rem; }
.button.ghost { border-color: var(--accent); color: var(--warm); }
.button.ghost:hover { background: var(--accent); color: var(--on-accent); }
