:root {
  --bg: #07111f;
  --bg-soft: #10243d;
  --panel: rgba(10, 22, 39, 0.72);
  --panel-strong: rgba(12, 26, 46, 0.9);
  --border: rgba(161, 214, 255, 0.14);
  --text: #edf5ff;
  --muted: #a8bfd8;
  --accent: #5bf08f;
  --accent-2: #5ad2ff;
  --accent-3: #f7d07a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(90, 210, 255, 0.12), transparent 32%),
    radial-gradient(circle at 80% 18%, rgba(91, 240, 143, 0.14), transparent 28%),
    linear-gradient(180deg, #091524 0%, #060c16 100%);
  color: var(--text);
  font-family: "Instrument Sans", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    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: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
  pointer-events: none;
}

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

.page-shell {
  position: relative;
  width: min(1220px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 22px 0 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(8, 19, 33, 0.56);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo,
.closing-logo {
  display: block;
  width: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}

.brand-logo {
  height: 36px;
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-kicker {
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-title {
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.maker-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.topbar-link {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(90, 210, 255, 0.24);
  color: var(--accent-2);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.topbar-link:hover {
  transform: translateY(-1px);
  background: rgba(90, 210, 255, 0.08);
  border-color: rgba(90, 210, 255, 0.45);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 34px;
  padding: 34px 34px 26px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 16% 18%, rgba(247, 208, 122, 0.12), transparent 22%),
    radial-gradient(circle at 76% 22%, rgba(90, 210, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(10, 24, 40, 0.94), rgba(7, 16, 28, 0.8));
  border: 1px solid rgba(161, 214, 255, 0.09);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.feature-card,
.closing-cta {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(11, 24, 41, 0.92), rgba(8, 18, 32, 0.82));
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 10px 0 8px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.eyebrow,
.closing-kicker,
.stage-label {
  margin: 0 0 12px;
  color: var(--accent-3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1,
.closing-cta h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(4rem, 8vw, 7rem);
  max-width: 7ch;
}

.lede {
  max-width: 56ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.lede strong {
  color: var(--text);
}

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

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cta-primary {
  color: #06111e;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 16px 34px rgba(90, 210, 255, 0.26);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(90, 210, 255, 0.35);
}

.cta-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.cta-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.meta-chip {
  padding: 16px 16px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.meta-chip strong {
  display: block;
  font-size: 15px;
}

.meta-chip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.hero-visual {
  min-width: 0;
  position: relative;
  z-index: 1;
  display: flex;
}

.truck-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 620px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.truck-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 30%, rgba(90, 210, 255, 0.16), transparent 38%),
    radial-gradient(circle at 60% 80%, rgba(91, 240, 143, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(10, 20, 33, 0.88), rgba(7, 15, 26, 0.96));
  pointer-events: none;
}

#heroScene {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 470px;
  display: block;
}

.stage-orbit {
  position: absolute;
  left: 50%;
  bottom: 52px;
  width: 68%;
  height: 68%;
  border-radius: 50%;
  transform: translateX(-50%) rotateX(74deg);
  border: 1px solid rgba(90, 210, 255, 0.18);
  box-shadow: 0 0 48px rgba(90, 210, 255, 0.08);
  pointer-events: none;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 12px;
}

.feature-card {
  padding: 24px 24px 22px;
  border-radius: 26px;
}

.feature-index {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.feature-card h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 30px;
  line-height: 1.08;
}

.feature-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.closing-cta {
  margin-top: 18px;
  padding: 28px 28px 32px;
  border-radius: 28px;
  text-align: center;
}

.closing-logo {
  height: 48px;
  margin: 0 auto 16px;
}

.closing-cta h2 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  max-width: 14ch;
  margin: 0 auto;
}

.closing-text {
  max-width: 50ch;
  margin: 16px auto 0;
  color: var(--muted);
  line-height: 1.75;
}

.closing-cta .cta-primary {
  margin-top: 22px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 26px 24px 22px;
  }

  .truck-stage {
    min-height: 540px;
  }

  .hero-copy h1 {
    max-width: 13ch;
  }

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

@media (max-width: 760px) {
  .page-shell {
    width: min(100vw - 24px, 1220px);
    padding-top: 12px;
  }

  .topbar {
    padding: 10px 14px;
    border-radius: 16px;
  }

  .brand-logo {
    height: 28px;
  }

  .topbar-actions {
    gap: 8px;
  }

  .maker-badge {
    display: none;
  }

  .hero {
    gap: 18px;
    padding-top: 20px;
  }

  .hero-copy,
  .truck-stage,
  .feature-card,
  .closing-cta {
    border-radius: 24px;
  }

  .hero {
    margin-top: 20px;
    padding: 22px 18px 18px;
    border-radius: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
    max-width: none;
  }

  .lede {
    font-size: 15px;
  }

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

  .truck-stage {
    min-height: 420px;
    padding: 16px;
  }

  #heroScene {
    min-height: 320px;
  }

  .closing-cta {
    padding: 24px 18px 28px;
  }
}
