@font-face {
  font-family: "Rajdhani";
  src: url("/assets/Rajdhani-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("/assets/Rajdhani-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #101722;
  --ink-soft: #192331;
  --paper: #edf0ed;
  --white: #fff;
  --orange: #f5a623;
  --cyan: #54d7e8;
  --muted: #9ca8b4;
  --line: rgba(255, 255, 255, .16);
  color-scheme: dark;
  font-family: "Rajdhani", "Arial Narrow", system-ui, sans-serif;
  font-weight: 500;
  background: var(--ink);
  color: var(--white);
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-width: 300px; }
body { overflow-x: hidden; background: var(--ink); }
a { color: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--orange);
  color: #111;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.brand { width: clamp(170px, 19vw, 250px); }
.brand img, footer img { width: 100%; height: auto; }
.site-header nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.4rem); }
.site-header nav a {
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.site-header nav a:hover, .site-header nav a:focus-visible { color: var(--orange); }
.site-header .nav-play { padding: .72rem 1rem; border: 1px solid var(--orange); color: var(--orange); }

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  isolation: isolate;
}
.hero-photo, .hero-shade { position: absolute; inset: 0; }
.hero-photo {
  z-index: -3;
  background: url("/assets/hero.jpg") 64% 52% / cover no-repeat;
  filter: saturate(.88) contrast(1.06);
}
.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 13, 20, .95) 0%, rgba(8, 13, 20, .70) 42%, rgba(8, 13, 20, .08) 75%),
    linear-gradient(0deg, var(--ink) 0%, transparent 24%, rgba(5, 10, 16, .35) 100%);
}
.hero-content { width: min(720px, 85vw); margin-left: clamp(1.25rem, 10vw, 10rem); padding-top: 5rem; }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .24em;
}
h1, h2 { margin: 0; font-weight: 700; text-transform: uppercase; font-style: italic; line-height: .86; letter-spacing: -.035em; }
h1 { font-size: clamp(4.8rem, 10vw, 9.5rem); text-shadow: 0 4px 28px rgba(0, 0, 0, .35); }
h1 span { color: var(--orange); }
.hero-copy { max-width: 620px; margin: 2rem 0; font-size: clamp(1.15rem, 1.65vw, 1.45rem); line-height: 1.45; color: #dce3e7; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .9rem 1.35rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .92rem;
  font-weight: 700;
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-3px); }
.button.primary { background: var(--orange); color: #111820; }
.button.primary:hover, .button.primary:focus-visible { background: #ffc04c; }
.button.secondary { border: 1px solid rgba(255,255,255,.55); background: rgba(10,16,24,.28); }
.button.secondary:hover, .button.secondary:focus-visible { border-color: white; }
.platforms { color: #b9c3c9; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.25rem, 5vw, 5rem);
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .7rem;
  color: #c3cbd0;
}
.scroll-cue span { color: var(--orange); margin-top: .7rem; }
.speed-lines { position: absolute; z-index: -1; inset: 0; overflow: hidden; pointer-events: none; }
.speed-lines i { position: absolute; display: block; height: 2px; width: 17vw; background: linear-gradient(90deg, transparent, rgba(255,255,255,.5)); transform: rotate(-3deg); }
.speed-lines i:nth-child(1) { top: 23%; right: 5%; }
.speed-lines i:nth-child(2) { top: 30%; right: 20%; width: 9vw; background: var(--orange); opacity: .6; }
.speed-lines i:nth-child(3) { bottom: 25%; left: 3%; width: 13vw; opacity: .35; }
.speed-lines i:nth-child(4) { bottom: 14%; right: 11%; width: 24vw; opacity: .25; }

.manifesto {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(6rem, 10vw, 10rem) clamp(1.25rem, 10vw, 10rem);
  background: var(--paper);
  color: var(--ink);
}
.manifesto .section-number { position: absolute; top: 2rem; left: 3vw; color: rgba(16,23,34,.12); font-size: 8rem; font-weight: 700; line-height: 1; }
.manifesto-copy { grid-column: 1 / -1; max-width: 1050px; position: relative; }
.manifesto h2, .feature h2, .hazards h2, .final-cta h2 { font-size: clamp(3.2rem, 6.7vw, 7rem); }
.manifesto-copy > p:last-child { max-width: 740px; font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.5; color: #4f5c67; }
.stat-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(16,23,34,.2); }
.stat-grid div { padding: 2rem 1rem 0 0; display: flex; flex-direction: column; border-right: 1px solid rgba(16,23,34,.15); }
.stat-grid div:not(:first-child) { padding-left: 2rem; }
.stat-grid strong { color: var(--orange); font-size: clamp(3.5rem, 6vw, 6rem); line-height: 1; }
.stat-grid span { color: #56636e; text-transform: uppercase; letter-spacing: .12em; }

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  min-height: 720px;
  background: var(--ink);
}
.feature-world { grid-template-columns: minmax(320px, .65fr) minmax(0, 1.35fr); background: var(--ink-soft); }
.feature-image { position: relative; min-height: 500px; overflow: hidden; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.feature-image:hover img { transform: scale(1.025); }
.image-label { position: absolute; left: 1.25rem; bottom: 1.25rem; padding: .45rem .65rem; background: rgba(8,13,20,.76); text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; }
.feature-copy { align-self: center; padding: clamp(4rem, 7vw, 8rem) clamp(2rem, 6vw, 7rem); }
.feature h2 { font-size: clamp(3.2rem, 5vw, 5.8rem); }
.feature-copy > p:not(.eyebrow) { color: #b9c4cb; font-size: 1.2rem; line-height: 1.55; }
.feature-copy ul { list-style: none; padding: 1rem 0 0; margin: 0; border-top: 1px solid var(--line); }
.feature-copy li { position: relative; padding: .7rem 0 .7rem 1.4rem; border-bottom: 1px solid var(--line); color: #dce3e7; }
.feature-copy li::before { content: "↗"; position: absolute; left: 0; color: var(--orange); }

.hazards {
  padding: clamp(7rem, 13vw, 13rem) clamp(1.25rem, 10vw, 10rem);
  text-align: center;
  background:
    radial-gradient(circle at 50% 120%, rgba(245,166,35,.25), transparent 45%),
    #0a0f16;
}
.hazards h2 span { color: var(--orange); }
.hazard-list { max-width: 900px; margin: 4rem auto 0; display: flex; justify-content: center; flex-wrap: wrap; gap: .7rem; }
.hazard-list span { padding: .7rem 1.1rem; border: 1px solid #3c4853; color: #b7c1c8; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; }

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: clamp(5rem, 8vw, 8rem) clamp(1.25rem, 10vw, 10rem);
  color: var(--ink);
  background: var(--orange);
}
.final-cta .eyebrow { color: #654000; }
.final-cta p:last-child { max-width: 600px; font-size: 1.15rem; }
.final-cta .button.primary { flex: 0 0 auto; border: 2px solid var(--ink); }

footer { min-height: 180px; padding: 3rem clamp(1.25rem, 5vw, 5rem); display: flex; align-items: center; gap: 2rem; color: #8996a1; }
footer img { width: 180px; opacity: .8; }
footer p { margin-right: auto; }
footer div { display: flex; gap: 1.5rem; }
footer a { text-transform: uppercase; text-decoration: none; letter-spacing: .1em; font-size: .75rem; }
footer a:hover, footer a:focus-visible { color: var(--orange); }

@media (max-width: 900px) {
  .site-header { height: 82px; }
  .site-header nav > a:not(.nav-play) { display: none; }
  .hero { min-height: 700px; }
  .hero-content { margin-left: clamp(1.25rem, 6vw, 4rem); }
  .manifesto { grid-template-columns: 1fr; }
  .feature, .feature-world { grid-template-columns: 1fr; }
  .feature-world .feature-copy { order: 2; }
  .feature-world .feature-image { order: 1; }
  .feature-image { min-height: min(65vw, 560px); }
  .final-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 600px) {
  .brand { width: 160px; }
  .site-header nav { display: none; }
  .hero-photo { background-position: 69% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(8,13,20,.91), rgba(8,13,20,.28)), linear-gradient(0deg, var(--ink), transparent 35%); }
  .hero-content { width: auto; min-width: 0; margin-left: 1.85rem; margin-right: 1.85rem; }
  h1 { font-size: clamp(3.45rem, 17.5vw, 4.5rem); }
  .hero-copy { font-size: 1.05rem; }
  .actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .platforms { line-height: 1.5; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-grid div, .stat-grid div:not(:first-child) { padding: 1.3rem 0; border-right: 0; border-bottom: 1px solid rgba(16,23,34,.15); }
  .stat-grid div { flex-direction: row; align-items: baseline; gap: 1rem; }
  .stat-grid strong { min-width: 60px; font-size: 3.5rem; }
  .feature-image { min-height: 68vw; }
  footer { align-items: flex-start; flex-direction: column; }
  footer p { margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
