:root {
  --red: #d52b1e;
  --blue: #0038a8;
  --green: #1f7a4d;
  --gold: #f3c64e;
  --ink: #172033;
  --muted: #5f6b7a;
  --paper: #f8f6f0;
  --white: #ffffff;
  --line: rgba(23, 32, 51, 0.14);
  --shadow: 0 24px 70px rgba(14, 25, 52, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(10, 18, 34, 0.72), rgba(10, 18, 34, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: linear-gradient(180deg, var(--red) 0 33%, var(--white) 33% 66%, var(--blue) 66%);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.nav-cta {
  background: rgba(255, 255, 255, 0.16);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.24);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

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

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1586801121213-19b73a545d29?auto=format&fit=crop&w=2200&q=82");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 15, 32, 0.9), rgba(6, 15, 32, 0.54) 45%, rgba(6, 15, 32, 0.22)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.76));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 70px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.88);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 6px;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 32px rgba(213, 43, 30, 0.35);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

section {
  padding: clamp(72px, 9vw, 118px) clamp(18px, 4vw, 58px);
}

.band {
  background: var(--white);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 6vw, 76px);
  width: min(1160px, 100%);
  margin: 0 auto;
  align-items: start;
}

.intro p:last-child,
.image-band p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.section-heading {
  width: min(920px, 100%);
  margin: 0 auto 36px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.benefit-grid article,
.step,
.life-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 16px 44px rgba(20, 35, 60, 0.08);
}

.benefit-grid p,
.step p,
.life-grid p,
.faq-panel,
.form-note {
  margin: 0;
  color: var(--muted);
}

.flag {
  display: block;
  width: 42px;
  height: 6px;
  margin-bottom: 22px;
  border-radius: 99px;
}

.flag.red {
  background: var(--red);
}

.flag.white {
  background: linear-gradient(90deg, var(--red), var(--white), var(--blue));
  border: 1px solid var(--line);
}

.flag.blue {
  background: var(--blue);
}

.flag.green {
  background: var(--green);
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(26px, 5vw, 64px);
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

.image-band img {
  width: 100%;
  height: min(560px, 58vw);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.step span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.checklist label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 58px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 700;
}

.checklist input {
  width: 19px;
  height: 19px;
  accent-color: var(--blue);
  flex: 0 0 auto;
  margin-top: 3px;
}

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

.life-grid article {
  padding: 0;
  overflow: hidden;
}

.life-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.life-grid h3,
.life-grid p {
  padding-left: 22px;
  padding-right: 22px;
}

.life-grid h3 {
  padding-top: 22px;
}

.life-grid p {
  padding-bottom: 24px;
}

.faq-list {
  width: min(880px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.faq-panel {
  display: none;
  padding: 0 0 22px;
}

.faq-panel.open {
  display: block;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 70px;
  padding: clamp(34px, 5vw, 58px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 56, 168, 0.95), rgba(31, 122, 77, 0.9)),
    url("https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?auto=format&fit=crop&w=1600&q=80") center/cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 6px;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  font: inherit;
}

.contact-form .button {
  width: 100%;
}

.form-note {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 58px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .benefit-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-grid,
  .image-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .image-band img {
    height: 420px;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    background: rgba(10, 18, 34, 0.88);
  }

  .brand {
    max-width: 230px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 8px;
    background: rgba(10, 18, 34, 0.96);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    padding-bottom: 46px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .benefit-grid,
  .timeline,
  .checklist,
  .life-grid {
    grid-template-columns: 1fr;
  }

  .image-band img {
    height: 320px;
  }

  footer {
    flex-direction: column;
  }
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.lang-btn {
  min-width: 34px;
  min-height: 30px;
  border: 0;
  border-radius: 4px;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.lang-btn.active,
.lang-btn:hover {
  color: var(--ink);
  background: var(--white);
}

@media (max-width: 760px) {
  .language-switcher {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .lang-btn {
    flex: 1;
  }
}

.regions {
  background: #111827;
  color: var(--white);
}

.regions .section-heading {
  margin-bottom: 28px;
}

.regions h2 {
  max-width: 980px;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.region-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  background: #0f172a;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
}

.region-card.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 676px;
}

.region-card.wide {
  grid-column: span 2;
}

.region-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
  transition: transform 450ms ease;
}

.region-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 20, 0.08), rgba(5, 10, 20, 0.82));
}

.region-card:hover img {
  transform: scale(1.04);
}

.region-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px;
}

.region-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 5px;
  color: var(--ink);
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.region-card h3 {
  margin-bottom: 8px;
  color: var(--white);
}

.region-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.lang-btn span {
  font-size: 15px;
  line-height: 1;
}

@media (max-width: 980px) {
  .region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .region-card.large,
  .region-card.wide {
    grid-column: span 2;
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  .region-grid {
    grid-template-columns: 1fr;
  }

  .region-card,
  .region-card.large,
  .region-card.wide {
    grid-column: auto;
    min-height: 310px;
  }
}

/* Region gallery v4: fixed image frames so Unsplash photos are always visible. */
.region-grid.expanded {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.region-grid.expanded .region-card {
  aspect-ratio: 1 / 1.08;
  min-height: 0;
}

.region-grid.expanded .region-card.large {
  grid-column: span 3;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 650px;
}

.region-grid.expanded .region-card.wide {
  grid-column: span 3;
}

.region-grid.expanded .region-card:not(.large):not(.wide) {
  grid-column: span 3;
}

.region-grid.expanded .region-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.region-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 16px;
  padding: 7px 11px;
  border-radius: 5px;
  color: var(--ink);
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.region-link:hover {
  background: var(--gold);
}

@media (min-width: 1120px) {
  .region-grid.expanded .region-card:not(.large):not(.wide) {
    grid-column: span 3;
  }
}

@media (max-width: 980px) {
  .region-grid.expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .region-grid.expanded .region-card,
  .region-grid.expanded .region-card.large,
  .region-grid.expanded .region-card.wide,
  .region-grid.expanded .region-card:not(.large):not(.wide) {
    grid-column: auto;
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .region-grid.expanded {
    grid-template-columns: 1fr;
  }

  .region-grid.expanded .region-card,
  .region-grid.expanded .region-card.large,
  .region-grid.expanded .region-card.wide {
    aspect-ratio: 3 / 3.35;
  }
}

.investor-pass {
  background: #f4efe5;
}

.section-lead {
  max-width: 860px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.pass-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
  gap: 18px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.pass-summary,
.pass-paths article,
.pass-insights article {
  border: 1px solid rgba(23, 32, 51, 0.13);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(20, 35, 60, 0.08);
}

.pass-summary {
  padding: 28px;
}

.pass-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 5px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pass-summary p,
.pass-paths p,
.pass-insights p,
.source-strip p {
  margin: 0;
  color: var(--muted);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.metric-row div {
  padding: 14px;
  border-radius: 6px;
  background: #f8f6f0;
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  color: var(--red);
  font-size: 30px;
  line-height: 1;
}

.metric-row span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.pass-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pass-paths article,
.pass-insights article {
  padding: 22px;
}

.pass-paths span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.pass-insights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1160px, 100%);
  margin: 16px auto 0;
}

.source-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  width: min(1160px, 100%);
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 1px solid rgba(23, 32, 51, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.source-strip p {
  flex: 1 1 360px;
  font-size: 14px;
}

.source-strip a {
  padding: 7px 10px;
  border-radius: 5px;
  color: var(--white);
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .pass-layout,
  .pass-insights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .pass-paths,
  .metric-row {
    grid-template-columns: 1fr;
  }
}

.region-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1220px, 100%);
  margin: 18px auto 0;
}

.region-details article {
  scroll-margin-top: 110px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.region-details h3 {
  color: var(--white);
}

.region-details p,
.region-details li {
  color: rgba(255, 255, 255, 0.82);
}

.region-details ul {
  display: grid;
  gap: 7px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.region-details article:target {
  outline: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.13);
}

@media (max-width: 980px) {
  .region-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .region-details {
    grid-template-columns: 1fr;
  }
}
