:root {
  --black: #050505;
  --black-soft: #0d0f12;
  --panel: rgba(13, 15, 18, 0.86);
  --panel-solid: #11151a;
  --orange: #ff7a18;
  --orange-bright: #ff9b3f;
  --amber-dim: rgba(255, 122, 24, 0.18);
  --line: rgba(255, 122, 24, 0.34);
  --text: #f4f0ea;
  --muted: #b9b1a7;
  --cyber-cool: #8ed4ff;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(255, 122, 24, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 122, 24, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 78% 12%, rgba(142, 212, 255, 0.12), transparent 30%),
    var(--black);
  background-size: 44px 44px, 44px 44px, auto, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - 32px, var(--max));
  min-height: 68px;
  margin: 0 auto;
}

.brand {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--black);
  background: var(--orange);
  border: 1px solid var(--orange-bright);
  border-radius: 6px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 0 22px var(--amber-dim);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2vw, 28px);
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--orange-bright);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-art,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.76) 38%, rgba(5, 5, 5, 0.26) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.26) 0%, rgba(5, 5, 5, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 104px 0 78px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--orange-bright);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3.6rem, 10vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 34px rgba(255, 122, 24, 0.32);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: #fff9f2;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--orange);
  border-radius: 6px;
  font-weight: 800;
}

.button.primary {
  color: var(--black);
  background: var(--orange);
}

.button.secondary {
  color: var(--orange-bright);
  background: rgba(5, 5, 5, 0.62);
}

.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 104px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.panel,
.timeline-item,
.stat-card,
.interest-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 48px rgba(0, 0, 0, 0.25);
}

.panel {
  padding: clamp(22px, 3vw, 34px);
}

.panel p:last-child,
.timeline-item p:last-child,
.stat-card p:last-child,
.interest-grid p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.timeline-item {
  position: relative;
  padding: 26px 28px 26px 62px;
}

.node {
  position: absolute;
  left: 24px;
  top: 30px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--orange-bright);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--amber-dim);
}

.stat-grid,
.interest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stat-card,
.interest-grid article {
  padding: 24px;
}

.stat-value {
  display: block;
  margin-bottom: 18px;
  color: var(--orange-bright);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

.interest-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.interest-grid article {
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.09), rgba(17, 21, 26, 0.92)),
    var(--panel-solid);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  padding: clamp(28px, 5vw, 46px);
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.16), rgba(17, 21, 26, 0.96));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-band h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

@media (max-width: 860px) {
  .top-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .split,
  .stat-grid,
  .interest-grid {
    grid-template-columns: 1fr;
  }

  .interest-grid article {
    min-height: auto;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .nav-links a {
    font-size: 0.78rem;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-content {
    padding-top: 84px;
  }

  .button {
    width: 100%;
  }
}
