:root {
  --black: #070707;
  --ink: #151515;
  --white: #f8f8f5;
  --soft-white: #f3f3ef;
  --light-gray: #ededeb;
  --mid-gray: #8c8c88;
  --bronze: #8a6752;
  --bronze-soft: #c8b1a1;
  --bronze-pale: #eee4dc;
  --graphite-stage: #0d0c0d;
  --line-dark: rgba(7, 7, 7, .16);
  --line-light: rgba(255, 255, 255, .18);
  --header-height: 86px;
  --gutter: clamp(22px, 4.8vw, 82px);
  --content-max: 1480px;
  --ease-out: cubic-bezier(.2, .75, .2, 1);
  --ease-lux: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Manrope, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { color: inherit; font: inherit; }
button { cursor: pointer; }

::selection {
  color: var(--white);
  background: var(--black);
}

:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 6px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--black);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-content {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding-left: max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
}

main,
section,
.section-content,
.launch-copy,
.launch-visual-frame,
.about-heading,
.about-copy,
.sales-content > div,
.portal-content > div {
  min-width: 0;
}

h1, h2, h3, p, strong, small, span {
  overflow-wrap: break-word;
}

/* Header */
.site-header {
  --header-surface: rgba(248, 248, 245, .9);
  --header-line: rgba(7, 7, 7, .12);
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(42px, 1fr) auto minmax(42px, 1fr);
  align-items: center;
  padding-left: max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
  color: var(--black);
  border-bottom: 1px solid transparent;
  transition: color .35s ease, height .4s var(--ease-out), border-color .35s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background .35s ease, backdrop-filter .35s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: var(--scroll-progress, 0%);
  height: 1px;
  background: currentColor;
  opacity: .75;
}

.site-header[data-theme="dark"] {
  --header-surface: rgba(7, 7, 7, .88);
  --header-line: rgba(255, 255, 255, .16);
  color: var(--white);
}

.site-header.is-scrolled {
  height: 70px;
  border-bottom-color: var(--header-line);
}

.site-header.is-scrolled::before {
  background: var(--header-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-brand {
  justify-self: start;
  width: 34px;
  opacity: .86;
  transition: opacity .25s ease, transform .35s var(--ease-out);
}

.header-brand:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.header-brand img {
  width: 100%;
  height: auto;
  filter: brightness(0);
  transition: filter .35s ease;
}

.site-header[data-theme="dark"] .header-brand img {
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.5vw, 46px);
}

.main-nav a {
  position: relative;
  padding-block: 8px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  opacity: .58;
  transition: opacity .25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right .35s var(--ease-lux);
}

.main-nav a:hover,
.main-nav a.is-active {
  opacity: 1;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  right: 0;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 40px;
  height: 40px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px 0 7px auto;
  background: currentColor;
  transition: transform .3s ease;
}

/* Hero — monumento de marca */
.hero {
  position: relative;
  min-height: max(720px, 100svh);
  min-height: max(720px, 100dvh);
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  display: none;
  background-image:
    linear-gradient(rgba(7,7,7,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,7,7,.045) 1px, transparent 1px);
  background-size: 12.5vw 12.5vw;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: -18%;
  width: min(72vw, 1050px);
  height: 136%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.96) 42%, #fff 50%, rgba(255,255,255,.96) 58%, transparent);
  filter: blur(32px);
  display: none;
  pointer-events: none;
}

.hero-light-field {
  display: none;
}

.hero-light-field::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18%;
  width: min(76vw, 1180px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(7,7,7,.16), transparent);
}

.hero-light-field i {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(transparent 6%, rgba(255,255,255,.98) 28%, rgba(255,255,255,.35) 70%, transparent);
  box-shadow: 0 0 28px 4px rgba(255,255,255,.92);
  animation: lightDrift 7s ease-in-out infinite alternate;
}

.hero-light-field i:nth-child(1) { left: 24%; opacity: .55; }
.hero-light-field i:nth-child(2) { left: 50%; opacity: 1; animation-delay: -2s; }
.hero-light-field i:nth-child(3) { right: 24%; opacity: .55; animation-delay: -4s; }

.hero-edition {
  position: absolute;
  z-index: 6;
  top: calc(var(--header-height) + 26px);
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  color: rgba(7,7,7,.48);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-logo-wrap {
  position: relative;
  z-index: 5;
  width: min(78vw, 1300px);
  text-align: center;
  opacity: 0;
  transform: translateY(28px) scale(.985);
  transition: opacity 1.15s .12s var(--ease-out), transform 1.35s .12s var(--ease-lux);
  will-change: transform, opacity;
}

body.is-loaded .hero-logo-wrap {
  opacity: 1;
  transform: none;
}

.hero-brand-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-signature {
  position: absolute;
  left: 50%;
  bottom: clamp(-38px, -2.2vw, -20px);
  width: max-content;
  max-width: 92%;
  margin: 0;
  color: rgba(7,7,7,.62);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: .015em;
  line-height: 1;
  text-transform: none;
  transform: translateX(-50%);
  white-space: nowrap;
}

.scroll-cue {
  position: absolute;
  z-index: 8;
  right: var(--gutter);
  bottom: clamp(28px, 5vh, 54px);
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(7,7,7,.55);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: block;
  width: 58px;
  height: 1px;
  background: rgba(7,7,7,.28);
  transition: width .35s var(--ease-out), background .35s ease;
}

.scroll-cue:hover i {
  width: 78px;
  background: var(--black);
}

/* Shared editorial system */
.section-divider {
  display: grid;
  grid-template-columns: 42px max-content 1fr;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  color: inherit;
  border-top: 1px solid currentColor;
}

.section-divider-number,
.section-divider-title {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-divider-number { opacity: .4; }
.section-divider-title { opacity: .68; }
.section-divider-rule { height: 1px; background: currentColor; opacity: .13; }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease-out), transform .95s var(--ease-lux);
}

.section-observed.is-visible .reveal {
  opacity: 1;
  transform: none;
}

.section-observed.is-visible .reveal[data-delay="1"] { transition-delay: .08s; }
.section-observed.is-visible .reveal[data-delay="2"] { transition-delay: .16s; }
.section-observed.is-visible .reveal[data-delay="3"] { transition-delay: .24s; }

/* Lançamento */
.launch-feature {
  position: relative;
  color: var(--black);
  background: var(--white);
  overflow: hidden;
}

.launch-feature::before {
  display: none;
}

.launch-carousel { position: relative; }

.launch-slide {
  width: 100%;
  transition: opacity .65s ease, transform .75s var(--ease-lux), visibility .65s;
}

.launch-slide-project {
  position: relative;
  opacity: 1;
}

.launch-slide-plans {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(5%);
}

.launch-feature.is-showing-plans .launch-slide-project {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-5%);
}

.launch-feature.is-showing-plans .launch-slide-plans {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.launch-shell {
  width: 100%;
  max-width: none;
  min-height: max(860px, 100svh);
  display: grid;
  grid-template-columns: minmax(330px, .82fr) minmax(460px, 1.35fr);
  align-items: center;
  gap: clamp(54px, 7vw, 120px);
  padding-left: max(var(--gutter), calc((100vw - var(--content-max)) / 2 + var(--gutter)));
  padding-right: 0;
  padding-top: 126px;
  padding-bottom: 0;
}

.launch-copy { padding-bottom: 108px; }

.launch-kicker,
.launch-plans-kicker {
  margin: 0 0 34px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.launch-year {
  display: block;
  margin: 0 0 -8px;
  color: rgba(138,103,82,.2);
  font-size: clamp(86px, 10vw, 156px);
  font-weight: 200;
  letter-spacing: -.08em;
  line-height: .78;
}

.launch-title {
  max-width: 650px;
  margin: 0;
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 200;
  letter-spacing: -.07em;
  line-height: .86;
  text-wrap: balance;
}

.launch-title-logo {
  width: min(100%, 430px);
  margin-top: clamp(46px, 5vw, 72px);
  line-height: 0;
}

.launch-title-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.launch-title-logo + .launch-intro {
  margin-top: clamp(38px, 4vw, 54px);
}

.launch-intro {
  max-width: 590px;
  margin: 40px 0;
  color: rgba(7,7,7,.62);
  font-size: 17px;
  line-height: 1.8;
}

.launch-specs {
  max-width: 590px;
  margin: 0 0 38px;
}

.launch-specs-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(7,7,7,.4);
}

.launch-specs-heading span,
.launch-specs-heading small {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.launch-specs-heading span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bronze);
}

.launch-specs-heading span::before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
}

.launch-specs-heading small {
  color: rgba(7,7,7,.34);
}

.launch-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.launch-facts li {
  min-height: 112px;
  padding: 23px 20px 20px;
  border-right: 1px solid rgba(7,7,7,.14);
  border-bottom: 1px solid rgba(7,7,7,.14);
}

.launch-facts li:nth-child(3n) { border-right: 0; }
.launch-facts li:nth-child(3n + 1) { padding-left: 0; }

.launch-facts strong,
.launch-facts span { display: block; }

.launch-facts strong {
  color: rgba(7,7,7,.9);
  font-size: clamp(25px, 2.15vw, 34px);
  font-weight: 250;
  letter-spacing: -.055em;
  line-height: 1;
}

.launch-facts span {
  margin-top: 10px;
  color: rgba(7,7,7,.52);
  font-size: 13px;
  line-height: 1.4;
}

.launch-link,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-width: min(100%, 320px);
  padding: 18px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.launch-link i,
.primary-button i {
  font-style: normal;
  font-size: 18px;
  transition: transform .3s var(--ease-out);
}

.launch-link:hover i,
.primary-button:hover i {
  transform: translate(4px, -4px);
}

.launch-link:hover,
.launch-link:focus-visible {
  color: var(--bronze);
}

.launch-visual-frame {
  position: relative;
  align-self: center;
  min-height: 0;
}

.launch-visual {
  position: relative;
  display: block;
  aspect-ratio: 2048 / 1332;
  overflow: hidden;
  background: #ddd4ce;
  box-shadow: 0 28px 80px rgba(7,7,7,.14);
}

.launch-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(0deg, rgba(27,20,17,.5), transparent 46%);
}

.launch-visual::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 16%;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,.82);
  box-shadow: 0 0 26px rgba(255,255,255,.72);
  opacity: .65;
}

.launch-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) contrast(1.02) brightness(.97);
  transition: transform 1.2s var(--ease-lux), filter .7s ease;
}

.launch-visual:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.01) brightness(1);
}

.launch-visual--detail { background: #141517; }

.launch-visual--detail img {
  object-position: center;
  filter: saturate(.9) contrast(1.03) brightness(.92);
}

.launch-image-caption {
  position: absolute;
  z-index: 4;
  left: 26px;
  right: 26px;
  bottom: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: var(--white);
}

.launch-image-caption small {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.launch-image-caption strong {
  font-size: 40px;
  font-weight: 200;
  letter-spacing: -.06em;
}

.launch-visual-actions {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 58px;
}

.launch-gallery-trigger,
.launch-plans-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  color: var(--white);
  background: #282321;
  border: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.launch-gallery-trigger {
  border-right: 1px solid rgba(255,255,255,.18);
}

.launch-gallery-trigger:disabled {
  color: rgba(255,255,255,.76);
  cursor: default;
  opacity: 1;
}

.launch-gallery-trigger i,
.launch-plans-trigger i {
  font-style: normal;
  font-size: 18px;
  transition: transform .3s var(--ease-out);
}

.launch-plans-trigger:hover i { transform: translateX(5px); }

.launch-panorama-wrap {
  width: 100%;
  max-width: none;
  margin-top: clamp(96px, 7vw, 138px);
  padding: 0;
}

.launch-panorama {
  position: relative;
  display: block;
  aspect-ratio: 2048 / 682;
  overflow: hidden;
  background: #161a1f;
}

.launch-panorama::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,10,12,.52), transparent 38%, transparent 74%, rgba(8,10,12,.16));
  pointer-events: none;
}

.launch-panorama img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.02);
  transition: transform 1.2s var(--ease-lux), filter .7s ease;
}

.launch-panorama:hover img {
  transform: scale(1.015);
  filter: saturate(1) contrast(1.01);
}

.launch-panorama span {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 4vw, 62px);
  bottom: clamp(22px, 3.5vw, 48px);
  display: grid;
  gap: 7px;
  color: var(--white);
}

.launch-panorama small {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.launch-panorama strong {
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: clamp(30px, 4vw, 60px);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}

.launch-plans-shell {
  min-height: max(860px, 100svh);
  padding-top: 128px;
  padding-bottom: 92px;
}

.launch-plans-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 50px;
}

.launch-plans-heading h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 200;
  letter-spacing: -.06em;
  line-height: .94;
}

.launch-plans-back {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  color: rgba(7,7,7,.62);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 12px;
}

.launch-plans-back i { font-style: normal; font-size: 18px; }

.launch-plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 48px);
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.launch-plan-card {
  margin: 0;
  border-top: 1px solid var(--black);
}

.launch-plan-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  padding: 0;
  overflow: hidden;
  background: var(--soft-white);
  border: 0;
}

.launch-plan-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(.96) contrast(1.01);
  transition: transform .8s var(--ease-lux), filter .5s ease;
}

.launch-plan-image:hover img {
  transform: scale(1.025);
  filter: saturate(1.05) contrast(1.01);
}

.launch-plan-zoom {
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  color: var(--white);
  background: var(--black);
  font-size: 12px;
}

.launch-plan-zoom i { font-style: normal; }

.launch-plan-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 2px;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.launch-plan-card figcaption span { opacity: .42; }
.launch-plan-card figcaption strong { font-weight: 400; }

.launch-plan-dialog {
  width: min(94vw, 1420px);
  max-width: none;
  height: min(91vh, 980px);
  max-height: none;
  padding: 0;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 30px 100px rgba(0,0,0,.5);
}

.launch-plan-dialog::backdrop {
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(8px);
}

.launch-plan-dialog figure {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  margin: 0;
  padding: 28px;
}

.launch-plan-dialog figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: var(--white);
  filter: saturate(1) contrast(1.01);
}

.launch-plan-dialog figcaption {
  padding-top: 15px;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.launch-plan-dialog-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  color: var(--black);
  background: var(--white);
  border: 0;
  font-size: 25px;
}

/* Próximos projetos */
.ventures-section {
  color: var(--ink);
  background: var(--white);
}

.ventures-next {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 clamp(20px, 2vw, 34px);
  padding-top: clamp(96px, 7vw, 138px);
  padding-bottom: 104px;
}

.ventures-next > .section-divider { grid-column: 1 / -1; }

.ventures-next-copy {
  grid-column: 7 / -1;
  max-width: 520px;
  margin: 72px 0 74px;
  color: rgba(21,21,21,.64);
  font-size: 17px;
  line-height: 1.8;
}

.ventures-portfolio {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(250px, .55fr);
  gap: clamp(26px, 3.4vw, 58px);
}

.ventures-project {
  position: relative;
  display: block;
  min-height: 720px;
  overflow: hidden;
  background: var(--soft-white);
}

.ventures-project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,7,7,.58), transparent 42%);
  pointer-events: none;
}

.ventures-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transition: transform 1.2s var(--ease-lux), filter .7s ease;
}

.ventures-project:hover img {
  transform: scale(1.018);
  filter: saturate(1.04);
}

.ventures-project-meta {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 3vw, 48px);
  right: clamp(22px, 3vw, 48px);
  bottom: clamp(22px, 3vw, 42px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 24px;
  color: var(--white);
}

.ventures-project-meta small {
  grid-column: 1;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ventures-project-meta strong {
  grid-column: 1;
  font-size: clamp(30px, 3.5vw, 54px);
  font-weight: 250;
  letter-spacing: -.05em;
  line-height: 1;
}

.ventures-project-meta i {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
}

.ventures-reserved {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: clamp(20px, 2.3vw, 36px);
}

.ventures-reserved-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 0;
  padding: clamp(22px, 2.5vw, 36px);
  border: 1px solid rgba(7,7,7,.2);
  overflow: hidden;
}

.ventures-reserved-card::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 1px;
  left: -20%;
  top: 50%;
  background: rgba(7,7,7,.16);
  transform: rotate(-12deg);
}

.ventures-reserved-card span,
.ventures-reserved-card small {
  color: rgba(21,21,21,.46);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ventures-reserved-card strong {
  margin: 10px 0 5px;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 300;
  letter-spacing: -.04em;
}

.about-manifesto,
.display-title {
  margin: 0;
  font-size: clamp(62px, 8vw, 126px);
  font-weight: 200;
  letter-spacing: -.07em;
  line-height: .86;
  text-wrap: balance;
}

.about-manifesto em {
  font-style: normal;
  color: var(--bronze);
}

/* Sobre — o único grande ambiente preto */
.about-section {
  position: relative;
  color: var(--white);
  background: var(--graphite-stage);
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -12%;
  right: -16%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.1), transparent 66%);
  pointer-events: none;
}

.about-shell {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 clamp(20px, 2vw, 34px);
  padding-top: 112px;
  padding-bottom: 130px;
}

.about-shell > .section-divider {
  grid-column: 1 / -1;
  margin-bottom: 96px;
}

.about-heading {
  grid-column: 1 / 8;
  position: relative;
  z-index: 2;
}

.about-manifesto {
  font-size: clamp(64px, 8.3vw, 132px);
}

.about-manifesto em { color: var(--bronze-soft); }

.about-copy {
  grid-column: 8 / -1;
  padding-top: 10px;
}

.about-intro {
  color: rgba(255,255,255,.68);
  font-size: 17px;
  line-height: 1.85;
}

.about-intro p { margin: 0 0 24px; }

.about-pillars {
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.about-pillars li {
  display: grid;
  grid-template-columns: minmax(130px, .8fr) 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}

.about-pillars strong {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-pillars span {
  color: rgba(255,255,255,.48);
  font-size: 14px;
}

.manifesto-details {
  margin-top: 46px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.manifesto-details summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.manifesto-details summary::-webkit-details-marker { display: none; }

.manifesto-details summary i {
  position: relative;
  width: 18px;
  height: 18px;
}

.manifesto-details summary i::before,
.manifesto-details summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform .3s ease;
}

.manifesto-details summary i::after { transform: rotate(90deg); }
.manifesto-details[open] summary i::after { transform: none; }

.manifesto-full {
  padding: 12px 0 28px;
  color: rgba(255,255,255,.62);
  font-size: 16px;
  line-height: 1.8;
}

.manifesto-full p { margin: 0 0 18px; }

.about-convergence {
  grid-column: 1 / -1;
  margin-top: 126px;
  border-top: 1px solid var(--line-light);
}

.convergence-caption {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.convergence-field {
  position: relative;
  min-height: 520px;
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(255,255,255,.08) 50%, transparent 50.05%),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 72px;
}

.convergence-origins {
  position: absolute;
  z-index: 3;
  top: 26px;
  left: 28px;
  right: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.convergence-origins > span {
  display: flex;
  gap: 13px;
  align-items: start;
}

.convergence-origins > span:nth-child(2) { justify-self: center; }
.convergence-origins > span:nth-child(3) { justify-self: end; }

.convergence-origins i {
  font-style: normal;
  color: rgba(255,255,255,.32);
  font-size: 12px;
}

.convergence-origins b,
.convergence-origins small { display: block; }

.convergence-origins b {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.convergence-origins small {
  margin-top: 4px;
  color: rgba(255,255,255,.4);
  font-size: 12px;
}

.convergence-lines {
  position: absolute;
  z-index: 1;
  inset: 94px 7% 0;
}

.convergence-line {
  position: absolute;
  top: 0;
  bottom: -18%;
  left: 50%;
  width: 1px;
  background: linear-gradient(var(--white), rgba(255,255,255,.08));
  transform-origin: bottom;
  box-shadow: 0 0 24px rgba(255,255,255,.7);
}

.convergence-line-one { transform: translateX(-50%) rotate(-27deg); }
.convergence-line-two { transform: translateX(-50%); }
.convergence-line-three { transform: translateX(-50%) rotate(27deg); }

.convergence-signature {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  display: grid;
  justify-items: center;
  transform: translateX(-50%);
  text-align: center;
}

.convergence-signature img {
  width: 54px;
  margin-bottom: 11px;
  filter: brightness(0) invert(1);
}

.convergence-signature span,
.convergence-signature small { text-transform: uppercase; }

.convergence-signature span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
}

.convergence-signature small {
  margin-top: 3px;
  color: rgba(255,255,255,.45);
  font-size: 12px;
}

.convergence-note {
  max-width: 600px;
  margin: 24px auto 0;
  color: rgba(255,255,255,.52);
  font-size: 14px;
  text-align: center;
}

/* Vendas */
.sales-section {
  color: var(--black);
  background: var(--white);
}

.sales-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .7fr);
  gap: clamp(60px, 9vw, 150px);
  padding-top: 112px;
  padding-bottom: 128px;
}

.sales-content > .section-divider {
  grid-column: 1 / -1;
  margin-bottom: 22px;
}

.display-title {
  font-size: clamp(58px, 7.3vw, 112px);
}

.display-title em {
  color: var(--bronze);
  font-style: normal;
}

.sales-intro {
  max-width: 640px;
  margin: 40px 0 0;
  color: rgba(7,7,7,.58);
  font-size: 17px;
  line-height: 1.8;
}

.sales-actions {
  align-self: end;
  border-top: 1px solid var(--black);
}

.action-card {
  display: grid;
  grid-template-columns: 38px 1fr 24px;
  align-items: center;
  gap: 15px;
  min-height: 118px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line-dark);
  transition: padding .35s var(--ease-out), color .3s ease, background .3s ease;
}

.action-card:hover {
  padding-inline: 16px;
  color: var(--white);
  background: var(--black);
}

.action-number {
  color: rgba(7,7,7,.38);
  font-size: 12px;
}

.action-card:hover .action-number { color: rgba(255,255,255,.5); }

.action-card strong,
.action-card small { display: block; }

.action-card strong {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.action-card small {
  max-width: 360px;
  margin-top: 7px;
  color: rgba(7,7,7,.48);
  font-size: 13px;
}

.action-card:hover small { color: rgba(255,255,255,.56); }

.action-card i {
  font-style: normal;
  font-size: 18px;
  transition: transform .3s var(--ease-out);
}

.action-card:hover i { transform: translate(4px, -4px); }

/* Portal */
.portal-section {
  position: relative;
  color: var(--black);
  background: var(--soft-white);
  overflow: hidden;
}

.portal-section::before {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -38%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,1), rgba(255,255,255,.35) 38%, transparent 68%);
}

.portal-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(400px, .8fr);
  gap: clamp(60px, 8vw, 140px);
  padding-top: 112px;
  padding-bottom: 128px;
}

.portal-content > .section-divider {
  grid-column: 1 / -1;
  margin-bottom: 38px;
}

.portal-copy .body-copy {
  max-width: 620px;
  margin: 40px 0 36px;
  color: rgba(7,7,7,.6);
  font-size: 17px;
  line-height: 1.8;
}

.portal-copy .primary-button {
  min-width: 330px;
}

.portal-preview { align-self: center; }

.portal-window {
  position: relative;
  min-height: 500px;
  padding: 24px;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(7,7,7,.2);
  box-shadow: 0 28px 80px rgba(7,7,7,.2);
}

.portal-window::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 12%;
  width: 28%;
  height: 1px;
  background: var(--white);
  box-shadow: 0 0 22px var(--white);
}

.portal-topbar {
  display: grid;
  grid-template-columns: 34px 1fr 8px;
  align-items: center;
  gap: 15px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-light);
}

.portal-topbar img { filter: brightness(0) invert(1); }

.portal-topbar span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.portal-topbar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 12px var(--white);
}

.portal-welcome { padding: 52px 0 44px; }

.portal-welcome small,
.portal-welcome strong { display: block; }

.portal-welcome small {
  margin-bottom: 10px;
  color: rgba(255,255,255,.4);
  font-size: 12px;
}

.portal-welcome strong {
  max-width: 430px;
  font-size: clamp(28px, 2.7vw, 42px);
  font-weight: 200;
  letter-spacing: -.045em;
  line-height: 1.15;
}

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

.portal-grid span {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 14px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: rgba(255,255,255,.66);
  font-size: 12px;
}

.portal-grid b {
  margin-bottom: 16px;
  color: rgba(255,255,255,.3);
  font-size: 12px;
  font-weight: 400;
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  padding: 94px max(var(--gutter), env(safe-area-inset-right)) max(36px, env(safe-area-inset-bottom)) max(var(--gutter), env(safe-area-inset-left));
  color: var(--black);
  background: var(--white);
  border-top: 1px solid var(--line-dark);
}

.footer-brand {
  align-self: center;
  position: relative;
  width: min(430px, 76vw);
  aspect-ratio: 2.25 / 1;
  overflow: hidden;
}

.footer-brand img {
  position: absolute;
  top: -14%;
  left: 0;
  width: 100%;
  max-width: none;
  filter: grayscale(1) contrast(1.08);
  mix-blend-mode: multiply;
}

.footer-meta {
  align-self: end;
  display: grid;
  gap: 7px;
  padding-bottom: 20px;
  color: rgba(7,7,7,.52);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.footer-meta p,
.legal-note { margin: 0; }

.legal-note {
  grid-column: 1 / -1;
  padding-top: 25px;
  color: rgba(7,7,7,.35);
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
}

.site-toast {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: 24px;
  padding: 15px 20px;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--white);
  box-shadow: 0 16px 50px rgba(0,0,0,.25);
  font-size: 13px;
  transform: translate(-50%, 24px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .35s var(--ease-out), visibility .25s;
}

.site-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.external-arrow {
  position: relative;
  display: block;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  font-size: 0 !important;
  font-style: normal;
  color: currentColor;
}

.external-arrow::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.external-arrow::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 2px;
  width: 14px;
  height: 1px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
}

@keyframes lightDrift {
  from { opacity: .35; transform: translateX(-9px); }
  to { opacity: 1; transform: translateX(9px); }
}

@media (max-width: 1060px) {
  .launch-shell {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 142px;
  }

  .launch-visual-frame {
    width: 100%;
    min-height: 0;
  }

  .about-heading,
  .about-copy {
    grid-column: 1 / -1;
  }

  .about-copy {
    max-width: 760px;
    padding-top: 68px;
    margin-left: auto;
  }

  .sales-content,
  .portal-content {
    grid-template-columns: 1fr;
  }

  .sales-actions,
  .portal-preview {
    width: min(100%, 760px);
    margin-left: auto;
  }
}

@media (min-width: 821px) and (max-width: 1180px) {
  .main-nav { gap: clamp(18px, 2vw, 30px); }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
    --gutter: 21px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header::after { display: none; }

  .header-brand { width: 30px; }

  .main-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    padding: 96px var(--gutter) 50px;
    color: var(--black);
    background: rgba(248,248,245,.985);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .3s ease, visibility .3s, transform .4s var(--ease-lux);
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav a {
    width: 100%;
    padding: 15px 0;
    color: var(--black);
    border-bottom: 1px solid var(--line-dark);
    font-size: clamp(24px, 7vw, 34px);
    font-weight: 200;
    letter-spacing: -.03em;
    opacity: 1;
  }

  .main-nav a::after { display: none; }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .menu-open .site-header { color: var(--black); }
  .menu-open .header-brand img { filter: brightness(0); }

  .hero {
    min-height: max(650px, 100svh);
    min-height: max(650px, 100dvh);
  }

  .hero::before {
    background-size: 25vw 25vw;
  }

  .hero::after {
    width: 120vw;
  }

  .hero-light-field i:nth-child(1) { left: 12%; }
  .hero-light-field i:nth-child(3) { right: 12%; }

  .hero-edition { display: none; }

  .hero-logo-wrap {
    width: min(104vw, 650px);
    margin-top: -7vh;
  }

  .hero-signature {
    bottom: clamp(-38px, -8vw, -24px);
    margin: 0;
    font-size: clamp(22px, 6.4vw, 29px);
    letter-spacing: .01em;
    width: min(92vw, 620px);
    white-space: normal;
  }

  .scroll-cue {
    right: auto;
    left: var(--gutter);
    bottom: 24px;
  }

  .section-divider {
    grid-template-columns: 32px max-content 1fr;
    gap: 10px;
    padding-top: 18px;
  }

  .launch-shell {
    min-height: 0;
    gap: 0;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    padding-top: 92px;
    padding-bottom: 68px;
  }

  .launch-copy { display: contents; }

  .launch-kicker {
    order: 1;
    margin-bottom: 22px;
  }

  .launch-year {
    margin-bottom: 0;
    font-size: 78px;
  }

  .launch-title {
    order: 2;
    font-size: clamp(50px, 14vw, 76px);
    line-height: .88;
  }

  .launch-title-logo { margin-top: 0; }

  .launch-intro {
    order: 3;
    margin: 28px 0 34px;
    font-size: 16px;
  }

  .launch-specs {
    order: 5;
    margin: 0 0 26px;
  }

  .launch-specs-heading { padding-bottom: 13px; }

  .launch-facts { grid-template-columns: repeat(2, 1fr); }

  .launch-facts li {
    min-height: 104px;
    padding: 19px 14px 20px;
    border-right: 0;
  }

  .launch-facts li:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid rgba(7,7,7,.14);
  }

  .launch-facts li:nth-child(even) { padding-right: 0; }

  .launch-link {
    order: 6;
    width: 100%;
    min-width: 0;
  }

  .launch-visual-frame {
    order: 4;
    min-height: 0;
    margin-right: calc(var(--gutter) * -1);
    margin-bottom: 34px;
  }
  .launch-visual { bottom: auto; }
  .launch-visual::after { display: none; }

  .launch-plans-shell {
    min-height: 0;
    padding-top: 108px;
    padding-bottom: 78px;
  }

  .launch-plans-heading {
    display: block;
    margin-bottom: 36px;
  }

  .launch-plans-heading h2 { font-size: 50px; }
  .launch-plans-back { margin-top: 28px; }
  .launch-plans-grid { grid-template-columns: 1fr; }

  .launch-plan-dialog {
    width: 96vw;
    height: 88vh;
  }

  .launch-plan-dialog figure { padding: 18px; }

  .launch-panorama-wrap { display: block; }

  .launch-panorama-wrap { margin-top: 72px; }

  .launch-panorama { aspect-ratio: 4 / 5; }

  .launch-panorama img { object-position: center; }

  .launch-panorama span {
    left: var(--gutter);
    right: var(--gutter);
    bottom: 32px;
  }

  .ventures-next {
    grid-template-columns: 1fr;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .ventures-next > .section-divider,
  .ventures-next-copy,
  .ventures-portfolio {
    grid-column: 1;
  }

  .ventures-next-copy {
    max-width: 340px;
    margin: 48px 0 0 auto;
    font-size: 15px;
    line-height: 1.7;
    text-align: right;
  }

  .ventures-portfolio {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ventures-project { min-height: min(132vw, 660px); }

  .ventures-reserved {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
    gap: 14px;
  }

  .ventures-reserved-card {
    min-height: 188px;
    padding: 18px;
  }

  .ventures-reserved-card strong {
    font-size: 20px;
    line-height: 1.1;
  }

  .ventures-band {
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .ventures-heading {
    padding: 48px 0 34px;
  }

  .about-manifesto,
  .display-title {
    font-size: clamp(48px, 13.5vw, 76px);
  }

  .ventures-heading p {
    width: min(88%, 340px);
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
    text-align: right;
  }
  .ventures-rail { grid-template-columns: 1fr; }
  .venture-visual { aspect-ratio: 2048 / 1816; }

  .venture-meta {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 16px;
    padding: 20px 0 24px;
  }

  .venture-index {
    grid-column: 1;
    grid-row: 1;
  }

  .venture-meta time {
    grid-column: 2;
    grid-row: 1;
  }

  .venture-meta h3 {
    grid-column: 1;
    grid-row: 2;
  }

  .venture-meta .external-arrow {
    grid-column: 2;
    grid-row: 2;
  }

  .ventures-space { min-height: 88px; }
  .ventures-space span { transform: none; }

  .about-shell {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .about-shell > .section-divider { margin-bottom: 66px; }
  .about-manifesto { line-height: .89; }

  .about-copy {
    padding-top: 52px;
    margin: 0;
  }

  .about-pillars li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .about-convergence { margin-top: 80px; }
  .convergence-caption { gap: 28px; }

  .convergence-field {
    min-height: 450px;
    margin-top: 28px;
  }

  .convergence-origins {
    top: 17px;
    left: 15px;
    right: 15px;
    gap: 10px;
  }

  .convergence-origins > span { display: block; }
  .convergence-origins > span:nth-child(2) { justify-self: start; }
  .convergence-origins small { display: none; }
  .convergence-origins i { display: block; margin-bottom: 4px; }
  .convergence-lines { inset: 76px 2% 0; }

  .sales-content,
  .portal-content {
    gap: 52px;
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .sales-content > .section-divider,
  .portal-content > .section-divider {
    margin-bottom: 0;
  }

  .sales-intro,
  .portal-copy .body-copy {
    font-size: 16px;
  }

  .portal-copy .primary-button { min-width: 100%; }

  .portal-window {
    min-height: clamp(400px, 110vw, 500px);
    padding: 17px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 74px;
  }

  .footer-brand { width: min(390px, 88vw); }

  .footer-meta {
    padding-bottom: 0;
    text-align: left;
  }

  .site-toast {
    left: var(--gutter);
    right: var(--gutter);
    bottom: 18px;
    text-align: center;
    transform: translateY(24px);
  }

  .site-toast.is-visible { transform: none; }
}

@media (max-width: 520px) {
  :root { --gutter: clamp(18px, 5.5vw, 24px); }

  .hero-logo-wrap { width: 104vw; }
  .hero-signature { font-size: clamp(21px, 6vw, 25px); }

  .section-divider-title,
  .section-divider-number { font-size: 12px; }

  .launch-title-logo {
    width: min(92%, 380px);
    margin-top: 0;
  }

  .launch-facts li {
    min-height: 96px;
    padding-top: 17px;
    padding-bottom: 18px;
  }

  .launch-facts strong { font-size: clamp(24px, 7vw, 30px); }

  .launch-image-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .launch-image-caption strong { font-size: 32px; }
  .launch-plans-trigger { width: min(270px, 86%); }

  .launch-plans-heading h2 { font-size: clamp(42px, 12vw, 52px); }

  .launch-plan-card figcaption {
    gap: 14px;
    line-height: 1.4;
  }

  .venture-meta h3 { font-size: clamp(25px, 7.5vw, 32px); }

  .convergence-caption {
    align-items: flex-end;
    font-size: 12px;
  }

  .convergence-origins b,
  .convergence-origins i { font-size: 11px; }

  .sales-intro,
  .portal-copy .body-copy,
  .about-intro,
  .manifesto-full { line-height: 1.72; }

  .action-card {
    grid-template-columns: 30px minmax(0, 1fr) 20px;
    gap: 10px;
    min-height: 108px;
  }

  .portal-window { padding: 15px; }
  .portal-welcome { padding: 40px 0 34px; }
  .portal-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-brand { width: min(340px, 92vw); }
  .footer-meta { letter-spacing: .05em; }
}

@media (max-width: 360px) {
  .hero-logo-wrap { width: 106vw; }
  .launch-facts { grid-template-columns: 1fr 1fr; }
  .convergence-origins { gap: 4px; }
  .convergence-origins b { letter-spacing: .03em; }
}

@media (max-width: 900px) and (max-height: 620px) and (orientation: landscape) {
  :root { --header-height: 64px; }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero-edition { top: calc(var(--header-height) + 8px); }
  .hero-logo-wrap {
    width: min(58vw, 600px);
    margin-top: 0;
  }

  .hero-signature {
    bottom: -18px;
    width: auto;
    font-size: clamp(19px, 3vw, 25px);
    white-space: nowrap;
  }

  .scroll-cue { bottom: 14px; }
}

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

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
