@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/geist-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/geist-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/geist-mono-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/geist-mono-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --font-geist-sans: "Geist", "Helvetica Neue", Arial, sans-serif;
  --font-geist-mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  --ink: #080808;
  --ink-soft: #151515;
  --graphite: #202020;
  --paper: #f4f3ef;
  --paper-dark: #e9e7e1;
  --white: #ffffff;
  --muted: #707070;
  --line: rgba(10, 10, 10, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --orange: #ef7627;
  --orange-dark: #ce5d16;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.14);
  color: var(--white);
}

.nav-wrap {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 11px;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.52);
  border-left: 3px solid var(--orange);
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -.06em;
  transform: skew(-6deg);
}

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: .92;
  letter-spacing: -.045em;
}

.brand-copy strong {
  font-size: 18px;
  font-weight: 900;
}

.brand-copy span {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.desktop-nav a {
  opacity: .68;
  transition: opacity .2s ease;
}

.desktop-nav a:hover {
  opacity: 1;
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 890px;
  display: flex;
  align-items: stretch;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 280px;
  background: linear-gradient(0deg, rgba(0,0,0,.7), transparent);
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(90deg, black, transparent 58%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 60px;
  padding-top: 175px;
  padding-bottom: 92px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow, .section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.eyebrow {
  color: rgba(255,255,255,.66);
  margin-bottom: 28px;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(56px, 6vw, 96px);
  line-height: .93;
  letter-spacing: -.072em;
  font-weight: 820;
}

.hero h1 em {
  color: var(--white);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin-top: 34px;
  color: rgba(255,255,255,.68);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 58px;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: .07em;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--paper);
  color: var(--ink);
  border-bottom: 3px solid var(--orange);
}

.button-primary:hover {
  background: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 680;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero-note {
  max-width: 570px;
  margin-top: 24px;
  padding-left: 16px;
  border-left: 2px solid var(--orange);
  color: rgba(255,255,255,.46);
  font-size: 12px;
  line-height: 1.55;
}

.hero-media {
  position: relative;
  aspect-ratio: 16 / 9;
  align-self: center;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  filter: saturate(.72) contrast(1.08);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 0 80px rgba(0,0,0,.42);
}

/* ── Video Controls ── */
.video-controls {
  position: absolute;
  z-index: 4;
  bottom: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
}

.vc-btn {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.85);
  transition: color .15s ease;
}

.vc-btn:hover {
  color: #fff;
}

.vc-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}

.vc-btn .icon-play polygon {
  fill: currentColor;
  stroke: none;
}

.vc-btn .icon-pause rect {
  fill: currentColor;
  stroke: none;
}

.vc-btn .icon-vol-on polygon,
.vc-btn .icon-vol-off polygon {
  fill: currentColor;
  stroke: none;
}

/* hide icon based on state */
#hero-video.playing ~ .video-controls #vc-play .icon-play { display: none; }
#hero-video:not(.playing) ~ .video-controls #vc-play .icon-pause { display: none; }
#hero-video.unmuted ~ .video-controls #vc-mute .icon-vol-off { display: none; }
#hero-video:not(.unmuted) ~ .video-controls #vc-mute .icon-vol-on { display: none; }

.vc-volume {
  -webkit-appearance: none;
  appearance: none;
  width: 72px;
  height: 3px;
  background: rgba(255,255,255,.3);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  accent-color: var(--orange);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, width .2s ease;
}

#hero-video.unmuted ~ .video-controls .vc-volume {
  opacity: 1;
  pointer-events: auto;
}

.vc-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  left: -34px;
  bottom: 48px;
  min-width: 230px;
  padding: 22px 25px;
  background: var(--paper);
  color: var(--ink);
  border-left: 5px solid var(--orange);
  transform: rotate(-3deg);
  text-transform: uppercase;
}

.hero-stamp span {
  display: block;
  font-size: 10px;
  letter-spacing: .22em;
}

.hero-stamp strong {
  display: block;
  margin-top: 4px;
  font-size: 23px;
  letter-spacing: -.05em;
}

.hero-index {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 18px;
  color: rgba(255,255,255,.6);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: .18em;
}

.decision-strip {
  position: relative;
  z-index: 4;
  background: var(--ink-soft);
  color: white;
}

.strip-content {
  min-height: 90px;
  display: grid;
  grid-template-columns: .7fr 1.1fr 2fr;
  align-items: center;
}

.strip-content p {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 30px;
  border-left: 1px solid rgba(255,255,255,.24);
  font-size: 13px;
  font-weight: 740;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.strip-content p:last-child {
  border-right: 1px solid rgba(255,255,255,.24);
}

.section {
  padding: 126px 0;
}

.section-kicker {
  color: var(--orange);
  margin-bottom: 20px;
}

.section-kicker.light {
  color: var(--orange);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 110px;
  align-items: start;
}

.split-heading h2,
.section-heading h2,
.investment-copy h2,
.territory-copy h2,
.profile-copy h2,
.partners-grid h2,
.final-layout h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 790;
}

.body-copy {
  display: grid;
  gap: 22px;
  color: #4e4e4e;
  font-size: 17px;
  line-height: 1.7;
}

.market-section {
  position: relative;
  background: var(--ink);
  color: white;
  overflow: hidden;
}

.market-section::before {
  content: "BR";
  position: absolute;
  right: -20px;
  top: 10px;
  color: rgba(255,255,255,.025);
  font-size: 360px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.12em;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 64px;
}

.section-heading.narrow {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.section-heading > p:last-child,
.investment-copy > p,
.territory-copy > p,
.profile-copy > p,
.final-action > p {
  margin-top: 28px;
  color: #606060;
  font-size: 17px;
  line-height: 1.7;
  max-width: 700px;
}

.market-section .section-heading > p:last-child,
.investment-section .investment-copy > p,
.profile-section .profile-copy > p,
.final-action > p {
  color: rgba(255,255,255,.6);
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.stats-grid article {
  min-height: 260px;
  padding: 40px;
  border-right: 1px solid var(--line-light);
}

.stats-grid article:first-child {
  border-left: 1px solid var(--line-light);
}

.stat-number {
  display: block;
  color: var(--paper);
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 820;
  line-height: .9;
  letter-spacing: -.09em;
}

.stats-grid p {
  max-width: 280px;
  margin-top: 35px;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.55;
}

.source-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255,255,255,.55);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.market-disclaimer {
  margin-top: 54px;
  max-width: 780px;
  padding-left: 20px;
  border-left: 2px solid var(--orange);
  color: rgba(255,255,255,.48);
  font-size: 13px;
  line-height: 1.65;
}

.models-section {
  background: var(--paper);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
}

.model-card {
  min-height: 660px;
  padding: 44px;
  display: flex;
  flex-direction: column;
}

.model-card + .model-card {
  border-left: 1px solid var(--line);
}

.model-ct {
  background: #111;
  color: white;
}

.model-premium {
  background: #e8e4db;
}

.model-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid currentColor;
  opacity: .45;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.model-card h3 {
  margin-top: 55px;
  font-size: clamp(54px, 6vw, 84px);
  line-height: .92;
  letter-spacing: -.08em;
}

.model-card h3 em {
  display: block;
  color: var(--orange);
  font-style: normal;
}

.model-card > p {
  max-width: 520px;
  margin-top: 26px;
  font-size: 16px;
  line-height: 1.65;
  opacity: .68;
}

.model-card ul {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}

.model-card li {
  padding: 13px 0;
  border-top: 1px solid currentColor;
  font-size: 13px;
  opacity: .7;
}

.model-card > a {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid currentColor;
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.model-guidance {
  display: grid;
  grid-template-columns: .75fr 1.6fr .9fr;
  align-items: center;
  gap: 30px;
  padding: 30px 36px;
  background: var(--ink-soft);
  color: white;
}

.model-guidance span,
.model-guidance a {
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.model-guidance p {
  font-size: 13px;
  line-height: 1.5;
  opacity: .8;
}

.model-guidance a {
  justify-self: end;
}

.support-section {
  background: var(--paper-dark);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.support-grid article {
  min-height: 300px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-grid article > span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.support-grid h3 {
  max-width: 250px;
  margin-top: 68px;
  font-size: 24px;
  line-height: 1.06;
  letter-spacing: -.04em;
}

.support-grid p {
  margin-top: 20px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.investment-section {
  background: var(--graphite);
  color: white;
}

.investment-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
  align-items: start;
}

.capital-callout {
  margin-top: 50px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.32);
}

.capital-callout span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.capital-callout strong {
  display: block;
  margin-top: 14px;
  font-size: 40px;
  letter-spacing: -.06em;
}

.investment-table {
  border-top: 1px solid rgba(255,255,255,.38);
}

.investment-table > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.38);
}

.investment-table span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.investment-table strong {
  font-size: 30px;
  letter-spacing: -.06em;
}

.investment-table .investment-total {
  margin-top: 24px;
  padding: 34px 24px;
  background: var(--paper);
  color: var(--ink);
  border: none;
}

.investment-table .investment-total strong {
  font-size: 48px;
  color: var(--orange);
}

.investment-table > p {
  margin-top: 22px;
  font-size: 11px;
  line-height: 1.55;
  opacity: .7;
}

.partners-section {
  background: var(--paper);
}

.partners-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}

.notice-box {
  margin-top: 24px;
  padding: 25px;
  background: white;
  border-left: 4px solid var(--orange);
}

.notice-box strong {
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.notice-box p {
  margin-top: 10px;
  font-size: 13px;
}

.territory-section {
  background: var(--paper-dark);
}

.territory-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.map-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--ink);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: .23;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 46px 46px;
}

.map-ring {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--orange) 80%, transparent);
  border-radius: 50%;
}

.ring-one { width: 330px; height: 330px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.ring-two { width: 190px; height: 190px; left: 50%; top: 50%; transform: translate(-50%,-50%); }

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 26px;
}

.map-card p {
  position: absolute;
  left: 28px;
  bottom: 25px;
  color: rgba(255,255,255,.55);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: .14em;
}

.warning-line {
  margin: 32px 0;
  padding: 18px 20px;
  border: 1px solid color-mix(in srgb, var(--orange) 35%, transparent);
  color: #3b3b3b;
  font-size: 13px;
  line-height: 1.5;
}

.profile-section {
  background: var(--ink);
  color: white;
}

.profile-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 110px;
}

.profile-list {
  border-top: 1px solid var(--line-light);
}

.profile-list > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 15px;
  min-height: 75px;
  border-bottom: 1px solid var(--line-light);
}

.profile-list span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.profile-list p {
  font-size: 15px;
  color: rgba(255,255,255,.74);
}

.profile-note {
  margin-top: 80px;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--orange) 50%, transparent);
  color: var(--orange);
  text-align: center;
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.process-section {
  background: var(--paper);
}

.process-list {
  border-top: 1px solid var(--line);
}

.process-list article {
  display: grid;
  grid-template-columns: 80px .75fr 1.25fr;
  gap: 30px;
  align-items: center;
  min-height: 115px;
  border-bottom: 1px solid var(--line);
}

.process-number {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.process-list h3 {
  font-size: 25px;
  letter-spacing: -.04em;
}

.process-list p {
  color: #686868;
  font-size: 14px;
}

.legal-note {
  max-width: 760px;
  margin-top: 30px;
  color: #777;
  font-size: 11px;
  line-height: 1.6;
}

.final-section {
  padding: 110px 0;
  background: var(--ink);
  color: white;
  border-bottom: 1px solid var(--line-light);
}

.final-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 100px;
  align-items: end;
}

.final-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.button-large {
  width: 100%;
  min-height: 76px;
  margin-top: 34px;
  padding: 0 28px;
}

.final-action small {
  margin-top: 16px;
  color: rgba(255,255,255,.38);
  font-size: 10px;
  line-height: 1.5;
}

footer {
  padding: 38px 0;
  background: var(--ink);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 30px;
}

.footer-grid > p {
  color: rgba(255,255,255,.36);
  text-align: center;
  font-size: 10px;
}

.footer-grid > div {
  justify-self: end;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .nav-wrap { grid-template-columns: 1fr auto; }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-media { min-height: 520px; }
  .split-heading,
  .investment-layout,
  .partners-grid,
  .territory-layout,
  .profile-layout,
  .final-layout { grid-template-columns: 1fr; gap: 60px; }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .model-guidance { grid-template-columns: 1fr; }
  .model-guidance a { justify-self: start; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 30px, 1240px); }
  .site-header { position: absolute; }
  .nav-wrap { min-height: 76px; }
  .nav-cta { font-size: 0; gap: 0; }
  .nav-cta .arrow { font-size: 18px; width: 36px; height: 36px; background: var(--orange); }
  .hero-layout { padding-top: 130px; padding-bottom: 70px; gap: 48px; }
  .hero h1 { font-size: clamp(49px, 15vw, 72px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-media { min-height: 430px; }
  .hero-stamp { left: 16px; bottom: 26px; min-width: 200px; }
  .strip-content { grid-template-columns: 1fr; padding: 20px 0; }
  .strip-content p { min-height: 48px; padding: 0 10px; border: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .strip-content p:last-child { border-right: 0; border-bottom: 0; }
  .section { padding: 84px 0; }
  .split-heading h2,
  .section-heading h2,
  .investment-copy h2,
  .territory-copy h2,
  .profile-copy h2,
  .partners-grid h2,
  .final-layout h2 { font-size: 45px; }
  .body-copy { font-size: 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid article { min-height: 215px; border-left: 1px solid var(--line-light); }
  .models-grid { grid-template-columns: 1fr; }
  .model-card { min-height: 630px; padding: 30px; }
  .model-card + .model-card { border-left: 0; border-top: 1px solid var(--line); }
  .support-grid { grid-template-columns: 1fr; }
  .support-grid article { min-height: 250px; }
  .investment-table strong { font-size: 25px; }
  .investment-table .investment-total { padding: 28px 18px; }
  .investment-table .investment-total strong { font-size: 35px; }
  .map-card { min-height: 420px; }
  .process-list article { grid-template-columns: 45px 1fr; padding: 24px 0; }
  .process-list article p { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr; justify-items: start; }
  .footer-grid > p { text-align: left; }
  .footer-grid > div { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* Versão compacta: mantém a informação decisiva sem alongar a jornada. */
.compact-hero {
  min-height: 760px;
}

.compact-hero .hero-layout {
  padding-top: 145px;
  padding-bottom: 70px;
}

.compact-hero .hero-media {
  aspect-ratio: 16 / 9;
}

.compact-hero h1 {
  font-size: clamp(54px, 5.5vw, 86px);
}

.compact-hero .hero-lead {
  max-width: 590px;
  margin-top: 26px;
}

.market-bar {
  background: var(--ink-soft);
  color: var(--white);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.market-bar-grid {
  min-height: 190px;
  display: grid;
  grid-template-columns: .7fr .7fr 1.6fr;
}

.market-bar-grid > div {
  padding: 30px 34px;
  border-left: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.market-bar-grid > div:last-child {
  border-right: 1px solid var(--line-light);
}

.market-number {
  font-size: 58px;
  line-height: .9;
  font-weight: 820;
  letter-spacing: -.08em;
}

.market-bar-grid p {
  margin-top: 12px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  line-height: 1.5;
}

.market-summary strong {
  max-width: 470px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.market-summary a {
  margin-top: 16px;
  color: rgba(255,255,255,.4);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.compact-section {
  padding: 88px 0;
}

.compact-heading {
  margin-bottom: 40px;
}

.compact-heading h2,
.readiness-grid h2 {
  font-size: clamp(38px, 4.3vw, 60px);
}

.compact-models .model-card {
  min-height: 490px;
  padding: 34px;
}

.compact-models .model-card h3 {
  margin-top: 32px;
  font-size: clamp(50px, 5vw, 72px);
}

.compact-models .model-card ul {
  margin-top: 24px;
}

.compact-models .model-card li {
  padding: 10px 0;
}

.compact-guidance {
  padding: 22px 30px;
}

.compact-section .capital-callout {
  margin-top: 30px;
}

.compact-section .investment-table > div {
  padding: 21px 0;
}

.compact-section .investment-table .investment-total {
  margin-top: 16px;
  padding: 25px 20px;
}

.support-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.support-row span {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-right: 1px solid var(--line-light);
  color: rgba(255,255,255,.68);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.support-row span:first-child {
  border-left: 1px solid var(--line-light);
}

.readiness-section {
  background: var(--paper-dark);
}

.readiness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}

.readiness-grid > article {
  padding: 46px;
}

.readiness-grid > article + article {
  border-left: 1px solid var(--line);
}

.territory-compact > p:not(.section-kicker) {
  margin-top: 24px;
  color: #606060;
  font-size: 15px;
  line-height: 1.65;
}

.compact-profile-list {
  margin-top: 26px;
  border-top-color: var(--line);
}

.compact-profile-list > div {
  min-height: 58px;
  border-bottom-color: var(--line);
}

.compact-profile-list p {
  color: #4e4e4e;
  font-size: 13px;
}

.profile-compact-note {
  margin-top: 20px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.compact-process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid var(--line);
}

.compact-process-list article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 25px;
  border-right: 1px solid var(--line);
}

.compact-process-list h3 {
  margin-top: 44px;
  font-size: 20px;
}

.compact-process-list p {
  margin-top: 14px;
  line-height: 1.5;
}

.compact-final {
  padding: 82px 0;
}

@media (max-width: 980px) {
  .market-bar-grid { grid-template-columns: 1fr 1fr; }
  .market-summary { grid-column: 1 / -1; border-top: 1px solid var(--line-light); }
  .support-row { grid-template-columns: repeat(2, 1fr); }
  .readiness-grid { grid-template-columns: 1fr; }
  .readiness-grid > article + article { border-left: 0; border-top: 1px solid var(--line); }
  .compact-process-list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .compact-hero .hero-layout { padding-top: 118px; padding-bottom: 54px; }
  .compact-hero .hero-media { min-height: 360px; }
  .market-bar-grid { grid-template-columns: 1fr; }
  .market-summary { grid-column: auto; }
  .market-bar-grid > div { padding: 24px 20px; border-right: 1px solid var(--line-light); }
  .compact-section { padding: 66px 0; }
  .compact-heading h2,
  .readiness-grid h2 { font-size: 40px; }
  .compact-models .model-card { min-height: 450px; }
  .support-row { grid-template-columns: 1fr; }
  .support-row span { min-height: 58px; border-left: 1px solid var(--line-light); }
  .readiness-grid > article { padding: 30px 24px; }
  .compact-process-list { grid-template-columns: 1fr; }
  .compact-process-list article { min-height: 0; padding: 24px; }
  .compact-process-list h3 { margin-top: 22px; }
  .compact-process-list article p { grid-column: auto; }
  .compact-final { padding: 66px 0; }
}
