:root {
  --bg: #080808;
  --panel: rgba(24, 24, 24, 0.72);
  --panel-strong: rgba(31, 31, 31, 0.92);
  --text: #ffffff;
  --muted: #b8b8b8;
  --soft: #737373;
  --line: rgba(255, 255, 255, 0.12);
  --orange: #ff8a1f;
  --orange-soft: rgba(255, 138, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 138, 31, 0.13), transparent 28rem),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 22rem),
    linear-gradient(145deg, #050505, #111111 45%, #070707);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

#trail-network {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.58;
  pointer-events: none;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 100vh;
  padding: 20px 0 24px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, #1e1e1e, #0f0f0f);
  color: var(--orange);
  box-shadow: 0 0 38px rgba(255, 138, 31, 0.14);
}

.status-pill {
  border: 1px solid rgba(255, 138, 31, 0.35);
  background: var(--orange-soft);
  color: #ffd8b2;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 13px;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 18px;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(40px, 6.2vw, 78px);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.subtitle {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
  margin: 22px 0 0;
}

.actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.primary {
  color: #141414;
  background: var(--orange);
  text-decoration: none;
  font-weight: 800;
  padding: 15px 22px;
  border-radius: 15px;
  box-shadow: 0 18px 50px rgba(255, 138, 31, 0.24);
}

.launch-note {
  color: var(--muted);
}

.proof-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.proof-row span {
  color: #d8d8d8;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.evidence-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    var(--panel);
  backdrop-filter: blur(18px);
  box-shadow:
    0 30px 120px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 24px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f2f2f2;
  font-weight: 800;
  margin-bottom: 22px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.orange {
  background: var(--orange);
  box-shadow: 0 0 24px rgba(255, 138, 31, 0.75);
}

.timeline {
  display: grid;
  gap: 14px;
}

.event {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.event > span {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 50%;
  background: #757575;
}

.event.active {
  border-color: rgba(255, 138, 31, 0.38);
  background: rgba(255, 138, 31, 0.08);
}

.event.active > span,
.event.complete > span {
  background: var(--orange);
}

.event strong {
  display: block;
  font-size: 14px;
}

.event p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}

.connectors {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  margin-top: -18px;
}

.connectors p {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.connectors div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.connectors span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 13px;
}

.connectors .ready {
  color: #ffd8b2;
  border-color: rgba(255, 138, 31, 0.4);
  background: var(--orange-soft);
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 28px, 720px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 46px 0;
  }

  .evidence-card {
    order: 0;
  }

  .nav {
    align-items: flex-start;
  }

  .status-pill {
    font-size: 12px;
  }

  .connectors {
    flex-direction: column;
  }

  .connectors div {
    justify-content: flex-start;
  }
}

@media (min-width: 861px) {
  html,
  body {
    height: 100%;
    overflow: hidden;
  }

  .page-shell {
    height: 100vh;
    min-height: 0;
    padding: 18px 0 18px;
  }

  .hero {
    min-height: 0;
    height: calc(100vh - 150px);
  }

  .connectors {
    padding-top: 12px;
  }
}
.brand-logo img {
  height: 82px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav {
  min-height: 82px;
  padding: 4px 0 0;
  align-items: flex-start;
}

@media (min-width: 861px) {
  .page-shell {
    height: 100vh;
    padding: 10px 0 14px;
  }

  .hero {
    height: calc(100vh - 128px);
    align-items: center;
  }

  .connectors {
    margin-top: -26px;
  }
}
