:root {
  --ink: #19191c;
  --navy: #12324c;
  --orange: #f28c18;
  --red: #dc2534;
  --paper: #fff;
  --mist: #f5f7f9;
  --line: #dfe4e8;
  --muted: #5e6670;
  --gold: #f6c86d;
  --shadow: 0 18px 60px rgba(11, 28, 43, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  width: min(1160px, calc(100% - 38px));
  margin: auto;
}

.eyebrow {
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
}

.topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  color: #fff;
  background: rgba(18, 50, 76, .96);
  backdrop-filter: blur(14px);
  border-bottom: 3px solid var(--orange);
}

.topbar .wrap {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 900;
  letter-spacing: .03em;
}

.nav {
  display: flex;
  gap: 20px;
  font-size: .88rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  opacity: .82;
}

.nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, #102d45 0%, #173e5e 58%, #9f2031 100%);
  color: #fff;
  padding: 86px 0 76px;
}

.hero:after {
  content: "";
  position: absolute;
  inset: auto -15% -55% 25%;
  height: 520px;
  background: radial-gradient(circle, rgba(242, 140, 24, .44), transparent 66%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.07fr .93fr;
  gap: 58px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: .96;
  letter-spacing: -.055em;
  margin: .5rem 0 1.2rem;
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero .lead {
  max-width: 720px;
  font-size: clamp(1.06rem, 2vw, 1.3rem);
  color: #e7edf2;
}

.decision {
  margin-top: 30px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-left: 5px solid var(--orange);
  background: rgba(255, 255, 255, .09);
  border-radius: 0 16px 16px 0;
}

.decision b {
  color: var(--gold);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .3);
  border: 1px solid rgba(255, 255, 255, .2);
  transform: rotate(1deg);
}

.hero-card img {
  aspect-ratio: 16/9;
  object-fit: cover;
}

.hero-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 32px 22px 18px;
  background: linear-gradient(transparent, rgba(5, 20, 31, .92));
  font-weight: 800;
}

section {
  padding: 82px 0;
}

.section-head {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 46px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: -.04em;
  margin: .35rem 0;
}

.section-head p {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0;
}

.quote {
  background: #fff6e8;
  border: 1px solid #f3d5a9;
  border-left: 6px solid var(--orange);
  border-radius: 16px;
  padding: 24px 28px;
  font-size: 1.12rem;
  font-weight: 720;
  box-shadow: 0 12px 40px rgba(79, 52, 11, .07);
}

.history {
  background: var(--mist);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 28px 24px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(18, 50, 76, .06);
}

.step:before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: block;
  color: var(--orange);
  font-size: 1.8rem;
  font-weight: 950;
}

.step h3 {
  margin: .2rem 0 .5rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.role {
  padding: 32px;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.role.party {
  background: #1d1d20;
  color: #fff;
}

.role.public {
  background: linear-gradient(145deg, #fff7eb, #fff);
}

.role h3 {
  font-size: 1.55rem;
  margin: .25rem 0 1rem;
}

.role ul {
  padding-left: 1.2rem;
  margin: 0;
}

.role li {
  margin: .55rem 0;
}

.role.party li::marker {
  color: var(--orange);
}

.role.public li::marker {
  color: var(--red);
}

.bridge-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.flow {
  border-radius: 18px;
  padding: 25px;
  background: var(--mist);
  border-top: 5px solid var(--orange);
}

.flow.state {
  border-color: #2d7bb3;
}

.flow h3 {
  margin: 0 0 .5rem;
}

.flow p {
  margin: 0;
  color: var(--muted);
}

.route {
  background: #102d45;
  color: #fff;
}

.route .section-head p {
  color: #d9e3eb;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.route-card {
  padding: 26px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .14);
}

.route-card .n {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #111;
  font-weight: 950;
}

.route-card h3 {
  margin: .8rem 0 .45rem;
}

.route-card p {
  margin: 0;
  color: #dbe5ec;
  font-size: .93rem;
}

.statement {
  padding: 66px 0;
  background: linear-gradient(90deg, #f28c18, #ef5a24);
  color: #171717;
}

.statement blockquote {
  font-size: clamp(1.55rem, 3.6vw, 3rem);
  line-height: 1.16;
  letter-spacing: -.035em;
  font-weight: 900;
  margin: 0;
}

.statement p {
  font-size: 1.1rem;
  max-width: 900px;
}

.docs {
  background: var(--mist);
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin: 14px 0;
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 21px 24px;
  font-weight: 850;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary:after {
  content: "+";
  font-size: 1.6rem;
  color: var(--orange);
}

details[open] summary:after {
  content: "−";
}

.doc-pages {
  padding: 0 18px 20px;
  display: grid;
  gap: 18px;
}

.doc-pages img {
  width: 100%;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(17, 36, 53, .09);
}

footer {
  background: #18181b;
  color: #d7d7da;
  padding: 34px 0;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

footer b {
  color: #fff;
}

.reveal {
  animation: rise .7s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 880px) {
  .nav {
    display: none;
  }
  .hero {
    padding-top: 58px;
  }
  .hero-grid,
  .section-head,
  .roles,
  .bridge-copy {
    grid-template-columns: 1fr;
  }
  .hero-card {
    transform: none;
  }
  .timeline,
  .route-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-head {
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 26px, 1160px);
  }
  .hero h1 {
    font-size: 2.65rem;
  }
  .timeline,
  .route-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 58px 0;
  }
  .decision {
    padding: 18px;
  }
  .role {
    padding: 25px;
  }
  footer .wrap {
    display: block;
  }
}

@media print {
  .topbar {
    display: none;
  }
  .hero {
    padding: 45px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    max-width: 760px;
  }
  .reveal {
    animation: none;
  }
  section {
    break-inside: avoid;
  }
  .docs details {
    break-inside: auto;
  }
  .docs details:not([open]) .doc-pages {
    display: grid;
  }
  summary:after {
    display: none;
  }
}