:root {
  --ink: #082b3c;
  --ink-strong: #051c28;
  --paper: #ffffff;
  --mist: #eef8fb;
  --line: #bcdce7;
  --muted: #55758a;
  --cyan: #24aec0;
  --cyan-dark: #08788e;
  --gold: #f0b43c;
  --radius: 8px;
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

.campaign-nav {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: var(--ink-strong);
  color: #fff;
}

.nav-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.12rem;
  font-weight: 800;
  text-decoration: none;
}

.brand img { width: 38px; height: 38px; border-radius: 8px; }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-actions a { font-weight: 750; text-decoration: none; }

.language-links { display: flex; gap: 6px; }
.language-links a {
  min-width: 36px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 6px;
  text-align: center;
  font-size: .78rem;
  text-decoration: none;
}
.language-links a[aria-current="page"] { border-color: var(--gold); color: var(--gold); }

.campaign-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--ink-strong);
  color: #fff;
}

.campaign-hero::after {
  position: absolute;
  inset: 0;
  background: rgba(5, 28, 40, .74);
  content: "";
}

.hero-visual {
  position: absolute;
  inset: 0 0 0 43%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--mist);
}

.hero-fan {
  position: relative;
  width: min(670px, 94%);
  height: 540px;
}

.hero-fan figure {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 225px;
  height: 460px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #c7dce4;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 54px rgba(5, 28, 40, .22);
}

.hero-fan figure:nth-child(1) { transform: translate(-116%, -48%) rotate(-8deg); }
.hero-fan figure:nth-child(2) { z-index: 2; transform: translate(-50%, -50%); }
.hero-fan figure:nth-child(3) { transform: translate(16%, -48%) rotate(8deg); }
.hero-fan img { width: 100%; height: 100%; object-fit: contain; object-position: center; background: #f7fcfd; }
.hero-fan .contain { object-fit: contain; padding: 18px; background: var(--ink); }

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 620px;
  align-items: center;
}

.hero-copy { width: min(620px, 62%); padding: 48px 0; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 13ch; margin-bottom: 20px; font-size: 4rem; line-height: 1.02; }
h2 { margin-bottom: 18px; font-size: 3rem; line-height: 1.1; }
h3 { margin-bottom: 10px; font-size: 1.15rem; line-height: 1.3; }

.hero-lead { max-width: 650px; margin-bottom: 22px; color: #cce1e9; font-size: 1.12rem; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 6px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}
.button.primary { border-color: var(--cyan); background: var(--cyan); color: var(--ink-strong); }
.button:focus-visible, .language-links a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.proof-line { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 18px 0 0; color: #dcebf0; font-size: .88rem; }
.proof-line span::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  vertical-align: 1px;
}

.band { padding: 86px 0; }
.band.mist { background: var(--mist); }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading p:last-child { color: var(--muted); font-size: 1.06rem; }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.feature {
  min-height: 220px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.feature:first-child { border-left: 1px solid var(--line); }
.feature p { margin-bottom: 0; color: var(--muted); }
.feature strong { display: block; margin-bottom: 14px; color: var(--cyan-dark); font-size: .8rem; text-transform: uppercase; }

.intent-layout { display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); gap: 56px; align-items: center; }
.intent-copy p { color: var(--muted); }
.intent-list { margin: 26px 0 0; padding: 0; list-style: none; }
.intent-list li { padding: 13px 0; border-top: 1px solid var(--line); }
.intent-list li:last-child { border-bottom: 1px solid var(--line); }

.product-frame {
  min-height: 470px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.product-frame img { width: 100%; height: 400px; object-fit: contain; }
.product-frame.fan { position: relative; min-height: 500px; overflow: hidden; background: var(--ink); }
.product-frame.fan img { position: absolute; top: 50%; left: 50%; width: 245px; height: 385px; object-fit: contain; }
.product-frame.fan img:nth-child(1) { transform: translate(-118%, -49%) rotate(-7deg); }
.product-frame.fan img:nth-child(2) { z-index: 2; transform: translate(-50%, -50%); }
.product-frame.fan img:nth-child(3) { transform: translate(18%, -49%) rotate(7deg); }

.eligibility-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.eligibility { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 34px; align-items: center; padding: 38px 0; }
.eligibility p { max-width: 760px; margin: 0; color: var(--muted); }
.eligibility strong { color: var(--ink); }

.market-list {
  display: grid;
  margin: 26px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
}

.market-list li {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--mist);
}

.market-list span { color: var(--muted); font-size: .86rem; text-align: right; }

.source-panel {
  width: min(390px, 100%);
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  background: var(--mist);
}

.source-panel ul { margin: 0 0 18px; padding-left: 20px; }
.source-panel li { margin: 6px 0; }
.source-panel a { color: var(--cyan-dark); font-weight: 750; }
.source-panel p { font-size: .82rem; }

.disclosure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.disclosure-grid article { min-height: 180px; padding: 26px; background: #fff; }
.disclosure-grid p { margin-bottom: 0; color: var(--muted); }

.route-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.route-links strong { margin-right: 8px; }
.route-links a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--cyan-dark);
  font-weight: 800;
  text-decoration: none;
}
.route-links a[aria-current="page"] { border-color: var(--gold); color: var(--ink); }

.final-cta { background: var(--ink); color: #fff; }
.final-layout { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 36px; align-items: center; }
.final-layout p { max-width: 720px; color: #cce1e9; }

.campaign-footer { padding: 28px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: var(--cyan-dark); font-weight: 750; text-decoration: none; }

@media (max-width: 900px) {
  .campaign-hero { min-height: 620px; }
  .campaign-hero::after { background: rgba(5, 28, 40, .84); }
  .hero-content { min-height: 620px; align-items: center; }
  .hero-copy { width: min(680px, 82%); padding: 48px 0; }
  .hero-visual { inset: 0; height: auto; opacity: .48; }
  .hero-fan { width: 520px; height: 380px; }
  .hero-fan figure { width: 170px; height: 340px; }
  h1 { font-size: 3.35rem; }
  h2 { font-size: 2.65rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { min-height: 0; border-left: 1px solid var(--line); }
  .intent-layout { grid-template-columns: 1fr; }
  .product-frame { order: -1; }
  .eligibility, .final-layout { grid-template-columns: 1fr; }
  .source-panel { width: 100%; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 28px, 1120px); }
  .nav-inner { min-height: 64px; }
  .nav-actions > a { display: none; }
  .campaign-hero, .hero-content { min-height: 0; }
  .hero-content { align-items: flex-start; }
  .hero-copy { width: 100%; padding: 38px 0 42px; }
  .hero-visual { display: none; }
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2.25rem; }
  .band { padding: 64px 0; }
  .actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-fan figure { width: 150px; height: 310px; }
  .product-frame { min-height: 360px; padding: 18px; }
  .product-frame img { height: 320px; }
  .product-frame.fan { min-height: 380px; }
  .product-frame.fan img { width: 175px; height: 300px; }
  .market-list, .disclosure-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
