:root {
  color-scheme: dark;
  --bg: #08090c;
  --panel: #11151b;
  --text: #f3f6f8;
  --muted: #a8b3bd;
  --line: rgba(255, 255, 255, 0.14);
  --lime: #93ff3f;
  --cyan: #30d7ff;
  --red: #ff3158;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(147, 255, 63, 0.08), transparent 34rem),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 76vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 48px;
  align-items: center;
  padding: 56px 0 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.7;
}

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

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  color: #071008;
}

.button.inline {
  margin-top: 8px;
}

.showcase {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0d12;
}

.showcase img {
  position: absolute;
  z-index: 2;
  width: min(58%, 250px);
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 34px rgba(147, 255, 63, 0.46));
}

.road {
  position: absolute;
  inset: 0;
  transform: perspective(520px) rotateX(58deg) translateY(78px);
  transform-origin: bottom;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.16) 18% 19%, transparent 19% 81%, rgba(255, 255, 255, 0.16) 81% 82%, transparent 82%),
    linear-gradient(180deg, #151a22, #050609);
}

.road span {
  position: absolute;
  left: calc(50% - 3px);
  width: 6px;
  height: 96px;
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime);
}

.road span:nth-child(1) {
  top: 48px;
}

.road span:nth-child(2) {
  top: 200px;
}

.road span:nth-child(3) {
  top: 352px;
}

.info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 0 56px;
}

.info article {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.info h2,
.document h2 {
  margin: 0 0 10px;
  font-size: 1rem;
  letter-spacing: 0;
}

.info p,
.document p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.document {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.document h1 {
  margin: 18px 0 24px;
  font-size: clamp(2.2rem, 8vw, 4.6rem);
}

.back-link {
  color: var(--lime);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .showcase {
    min-height: 420px;
  }

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