:root {
  background: #020813;
  color: #eaf2ff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  background:
    radial-gradient(circle at 18% 12%, rgba(10, 110, 255, 0.24), transparent 30rem),
    linear-gradient(180deg, #061429 0%, #020813 100%);
  margin: 0;
  min-height: 100vh;
}

.landing-shell {
  display: grid;
  gap: 24px;
  margin: 0 auto;
  max-width: 1180px;
  min-height: 100vh;
  padding: clamp(18px, 4vw, 42px);
}

.hero {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  min-height: 70vh;
}

.eyebrow {
  color: #69a9ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(54px, 9vw, 116px);
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0;
}

.lead {
  color: #b8ccee;
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.35;
  margin: 24px 0 0;
  max-width: 720px;
}

.market-visual {
  border-bottom: 1px solid #17477d;
  border-left: 1px solid #123969;
  min-height: 380px;
  overflow: hidden;
  position: relative;
}

.market-visual::before {
  background-image: linear-gradient(#0b315f 1px, transparent 1px), linear-gradient(90deg, #0b315f 1px, transparent 1px);
  background-size: 100% 25%, 14% 100%;
  content: "";
  inset: 0;
  opacity: 0.45;
  position: absolute;
}

.axis {
  background: #4f9cff;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 52%;
}

.market-visual span {
  background: var(--c);
  bottom: 48%;
  box-shadow: 0 0 16px color-mix(in srgb, var(--c), transparent 55%);
  left: var(--x);
  position: absolute;
  width: clamp(12px, 2.2vw, 24px);
}

.market-visual span:nth-of-type(-n + 5) {
  height: var(--h);
  transform: translateY(100%);
}

.market-visual span:nth-of-type(n + 6) {
  height: var(--h);
}

.project-band {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 28px;
}

.project-band article {
  border-top: 1px solid #17477d;
  padding-top: 16px;
}

h2 {
  font-size: 18px;
  margin: 0 0 8px;
}

.project-band p {
  color: #a9bad1;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 820px) {
  .hero,
  .project-band {
    grid-template-columns: 1fr;
  }

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

  .market-visual {
    min-height: 260px;
  }
}
