/* =====================================================
   ANTONOV CENTER — design system
   ===================================================== */

:root {
  /* base */
  --bg: #EEEAE2;
  --paper: #F5F2EB;
  --ink: #0E0E10;
  --ink-soft: #3A3A3D;
  --ink-mute: #6B6B6E;
  --line: rgba(14, 14, 16, 0.12);
  --line-strong: rgba(14, 14, 16, 0.28);

  /* accents from logo */
  --yellow: #FAB10F;
  --yellow-soft: #FFD66B;
  --blue: #2A8FD6;
  --blue-deep: #1A6FB0;

  /* dark surfaces */
  --carbon: #131316;
  --carbon-2: #1C1C20;
  --carbon-3: #26262B;

  /* fonts */
  --f-display: "Anton", "Archivo Black", Impact, sans-serif;
  --f-body: "Inter", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  /* sizing */
  --container: 1440px;
  --pad-x: clamp(20px, 4vw, 64px);
  --nav-h: 76px;

  /* breakpoints */
  --bp-sm: 40rem;   /* 640px */
  --bp-md: 55rem;   /* 880px */
  --bp-lg: 64rem;   /* 1024px */

  /* page transition */
  --mask-cover-duration: 380ms;
  --mask-reveal-duration: 520ms;
  --mask-ease: cubic-bezier(0.55, 0, 0.25, 1);
  --flight-hover-duration: 1250ms;
  --flight-takeoff-duration: 1150ms;
  --flight-hover-ease: cubic-bezier(0.35, 0, 0.2, 1);
  --flight-takeoff-ease: cubic-bezier(0.2, 0.8, 0.25, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
body.page-is-loading {
  overflow: hidden;
}
html.antonov-loading-pending .page-mask {
  transform: translateY(0);
  pointer-events: auto;
}
html.antonov-loading-pending body > :not(.page-mask) {
  visibility: hidden;
}

/* paper grain — subtle noise via SVG */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
img, svg, video { display: block; max-width: 100%; height: auto; }
iframe { display: block; max-width: 100%; border: 0; }

/* ---------- type scale ---------- */
.display, h1.display, h2.display {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}

.display--stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.14em;
  line-height: 1;
  letter-spacing: 0.02em;
  text-wrap: balance;
}
.display--stack > span {
  display: block;
}

/* Títulos multilinha com <br> — evita sobreposição da fonte Anton */
:where(.page-hero, .editorial, .manifesto, .pillars, .anatomia, .timeline, .zone, .disciplines, .space-teaser, .code, .footer, .compare, .plan) :is(h1, h2, h3):not(.pillar h3):not(.member__name) {
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.eyebrow.on-dark { color: rgba(255, 255, 255, 0.55); }
.eyebrow .dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--blue); border-radius: 50%;
  vertical-align: 2px; margin-right: 8px;
}

.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
  text-wrap: pretty;
}

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

section { position: relative; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 50;
  display: flex;
  align-items: center;
  padding-inline: var(--pad-x);
  padding-top: env(safe-area-inset-top, 0px);
  transition: background 300ms ease, border-color 300ms ease, color 300ms ease;
}
.nav__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav.scrolled {
  background: rgba(238, 234, 226, 0.85);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--line);
}
.nav.on-dark { color: #fff; }
.nav.on-dark.scrolled {
  background: rgba(19, 19, 22, 0.7);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.nav__logo-img--dark { max-width: min(220px, 46vw); }
.nav__logo-img--light { max-width: min(280px, 52vw); }
.nav.on-dark .nav__logo-img--dark,
.nav:not(.on-dark) .nav__logo-img--light {
  display: block;
}
.nav.on-dark .nav__logo-img--light,
.nav:not(.on-dark) .nav__logo-img--dark {
  display: none;
}

.nav__links {
  display: flex; gap: 8px; align-items: center;
  font-size: 14px;
}
.nav__links a {
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 200ms;
  position: relative;
}
.nav__links a:hover { background: rgba(14, 14, 16, 0.06); }
.nav.on-dark .nav__links a:hover { background: rgba(255, 255, 255, 0.08); }
.nav__links a.active { color: var(--ink); }
.nav.on-dark .nav__links a.active { color: #fff; }
.nav__links a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 1px; background: var(--blue);
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: var(--ink);
  color: var(--bg);
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
  cursor: pointer;
  border: 1px solid var(--ink);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); background: var(--carbon-3); }
.btn--yellow {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}
.btn--yellow:hover { background: var(--yellow-soft); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost-light:hover { background: #fff; color: var(--ink); }
.btn .arrow {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 2px;
  transition: transform 200ms;
}
.btn:hover .arrow { transform: rotate(45deg) translate(2px, -2px); }

/* mobile menu */
.nav__burger {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  border-radius: 8px;
  transition: background 200ms;
}
.nav__burger:hover { background: rgba(14, 14, 16, 0.06); }
.nav.on-dark .nav__burger:hover { background: rgba(255, 255, 255, 0.08); }
.nav__burger span {
  width: 22px;
  height: 1.5px;
  background: currentColor;
  display: block;
  transition: transform 220ms ease, opacity 220ms ease;
}
.nav.is-open .nav__burger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(12, 12, 14, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms ease, visibility 280ms;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.nav.is-open .nav__backdrop {
  opacity: 1;
  visibility: visible;
}

.nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 49;
  width: min(320px, 100vw);
  height: 100%;
  height: 100dvh;
  padding: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 24px) 28px calc(28px + env(safe-area-inset-bottom, 0px));
  background: var(--paper);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.33, 0, 0.18, 1);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
}
.nav.on-dark .nav__drawer {
  background: var(--carbon);
  color: #fff;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
}
.nav.is-open .nav__drawer { transform: translateX(0); }

.nav__drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 18px;
}
.nav__drawer-links a {
  display: block;
  padding: 14px 12px;
  border-radius: 10px;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav__drawer-links a:hover {
  background: rgba(14, 14, 16, 0.06);
}
.nav.on-dark .nav__drawer-links a:hover {
  background: rgba(255, 255, 255, 0.08);
}
.nav__drawer-links a.active {
  color: var(--blue-deep);
  font-weight: 600;
}
.nav.on-dark .nav__drawer-links a.active { color: var(--blue); }

.nav__drawer-cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

body.nav-open { overflow: hidden; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}

@media (min-width: 881px) {
  .nav__backdrop,
  .nav__drawer { display: none; }
}

/* ---------- footer ---------- */
.footer {
  background: var(--carbon);
  color: rgba(255, 255, 255, 0.7);
  padding: 100px var(--pad-x) 32px;
  position: relative;
  overflow: hidden;
}
.footer__inner { max-width: var(--container); margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: end;
}
.footer__cta-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 28px;
  text-wrap: balance;
}
.footer__cta-text {
  color: rgba(255, 255, 255, 0.65);
  max-width: 42ch;
  line-height: 1.55;
  margin-bottom: 28px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 64px 0;
}
.footer__col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 22px;
  font-weight: 400;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__col a { color: rgba(255, 255, 255, 0.78); }
.footer__col a:hover { color: #fff; }
.footer__address {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.7;
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background 200ms, border-color 200ms;
}
.footer__social a:hover { background: var(--blue); border-color: var(--blue); color: var(--ink); }
.footer__social svg { width: 14px; height: 14px; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono); font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 28px;
}
.footer__bottom-links { display: flex; gap: 24px; }

.footer__wordmark {
  position: absolute;
  bottom: -42px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-display);
  font-size: clamp(140px, 22vw, 320px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: -0.01em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 56px; }
  .footer__cols { grid-template-columns: 1fr 1fr; padding: 48px 0; }
  .footer__bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer__wordmark {
    font-size: clamp(72px, 18vw, 140px);
    bottom: -24px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: clip;
  }
}

@media (max-width: 640px) {
  .footer__cols { grid-template-columns: 1fr; }
  .footer { padding-top: 72px; }
}

/* ---------- placeholder images ---------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(
      45deg,
      var(--carbon-2) 0px, var(--carbon-2) 14px,
      var(--carbon) 14px, var(--carbon) 28px
    );
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  overflow: hidden;
  display: block;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 40%, transparent 0, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}
.ph__label {
  position: absolute;
  top: 16px; left: 16px;
  display: flex; align-items: center; gap: 8px;
  z-index: 2;
}
.ph__label::before {
  content: ""; width: 6px; height: 6px; background: var(--blue); border-radius: 50%;
}
.ph__caption {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  letter-spacing: 0.18em;
}
.ph__caption::before {
  content: "▸ "; color: var(--blue);
}
.ph__id {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.35);
  z-index: 2;
}

/* ---------- reveal animations (DISABLED) ---------- */
.reveal { opacity: 1; transform: none; }
.reveal-up-stagger > * { opacity: 1; transform: none; }
.clip-reveal { display: inline-block; vertical-align: top; }
.clip-reveal > span { display: inline-block; }

/* ---------- ticker ---------- */
.ticker {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.ticker__track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 50s linear infinite;
  gap: 48px;
  padding-left: 48px;
}
.ticker__item { display: inline-flex; align-items: center; gap: 16px; }
.ticker__item .sep { color: var(--blue); }
.ticker__item .v { color: rgba(255, 255, 255, 0.55); }
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ---------- page transition overlay ---------- */
.page-mask {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--carbon);
  transform: translateY(-100%);
  pointer-events: none;
  overflow: hidden;
}
.page-mask.is-visible {
  transform: translateY(0);
  transition: transform var(--mask-cover-duration) var(--mask-ease);
  pointer-events: auto;
}
.page-mask.is-exiting {
  transform: translateY(-100%);
  transition: transform var(--mask-reveal-duration) var(--mask-ease);
  pointer-events: none;
}
.page-mask__loader { display: none !important; }
.page-mask__flight {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(36vmin, 200px);
  transform: translate3d(-50%, 65vh, 0) scale(0.96);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}
.page-mask__flight img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: saturate(0.92) brightness(1.12);
}
.page-mask.is-hovering .page-mask__flight {
  opacity: 1;
  animation: page-mask-hover var(--flight-hover-duration) var(--flight-hover-ease) infinite alternate;
}
.page-mask.is-hovering .page-mask__flight img {
  animation: page-mask-hover-glow var(--flight-hover-duration) var(--flight-hover-ease) infinite alternate;
}
.page-mask.is-takeoff .page-mask__flight {
  opacity: 1;
  animation: page-mask-takeoff var(--flight-takeoff-duration) var(--flight-takeoff-ease) forwards;
}
.page-mask.is-takeoff .page-mask__flight img {
  animation: page-mask-takeoff-glow var(--flight-takeoff-duration) linear forwards;
}
@keyframes page-mask-hover {
  0% {
    transform: translate3d(-50%, 10vh, 0) scale(0.99);
    opacity: 0.93;
  }
  100% {
    transform: translate3d(-50%, -2vh, 0) scale(1);
    opacity: 1;
  }
}
@keyframes page-mask-takeoff {
  0% {
    transform: translate3d(-50%, 6vh, 0) scale(1);
    opacity: 0.98;
  }
  48% {
    transform: translate3d(-50%, -12vh, 0) scale(1.005);
    opacity: 1;
  }
  64% {
    transform: translate3d(-50%, -12vh, 0) scale(1.005);
    opacity: 1;
  }
  100% {
    transform: translate3d(-50%, -148vh, 0) scale(1.03);
    opacity: 1;
  }
}
@keyframes page-mask-hover-glow {
  0% {
    filter: saturate(0.94) brightness(1.13) drop-shadow(0 0 3px rgba(250, 177, 15, 0.1));
  }
  100% {
    filter: saturate(1) brightness(1.2) drop-shadow(0 0 8px rgba(250, 177, 15, 0.2));
  }
}
@keyframes page-mask-takeoff-glow {
  0% {
    filter: saturate(0.98) brightness(1.18) drop-shadow(0 0 7px rgba(250, 177, 15, 0.16));
  }
  52% {
    filter: saturate(1.03) brightness(1.24) drop-shadow(0 0 10px rgba(250, 177, 15, 0.24));
  }
  100% {
    filter: saturate(0.94) brightness(1.1) drop-shadow(0 0 0 rgba(250, 177, 15, 0));
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-mask.is-visible,
  .page-mask.is-exiting {
    transition-duration: 0.01ms !important;
  }
  .page-mask.is-hovering .page-mask__flight,
  .page-mask.is-takeoff .page-mask__flight {
    animation: none;
    opacity: 0;
  }
  .page-mask.is-hovering .page-mask__flight img,
  .page-mask.is-takeoff .page-mask__flight img {
    animation: none;
  }
}

/* ---------- modalidades modal ---------- */
.disc-modal {
  position: fixed;
  inset: 0;
  z-index: 290;
  display: grid;
  place-items: center;
  padding: 20px;
}
.disc-modal[hidden] { display: none !important; }
.disc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.74);
  backdrop-filter: blur(8px);
}
.disc-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-height: min(92vh, 860px);
  overflow: auto;
  background: var(--carbon);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}
.disc-modal__gallery {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.disc-modal__carousel {
  position: relative;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  height: clamp(240px, 40vw, 400px);
  background: var(--carbon-2);
}
.disc-modal__carousel.is-single .disc-modal__nav,
.disc-modal__carousel.is-single + .disc-modal__dots {
  display: none;
}
.disc-modal__track {
  display: flex;
  height: 100%;
  transition: transform 420ms cubic-bezier(0.33, 0, 0.18, 1);
  will-change: transform;
}
.disc-modal__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-width: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--carbon-2);
}
.disc-modal__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.disc-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(14, 14, 16, 0.55);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  transition: background 200ms, transform 200ms;
}
.disc-modal__nav:hover {
  background: rgba(14, 14, 16, 0.82);
  transform: translateY(-50%) scale(1.04);
}
.disc-modal__nav--prev { left: 12px; }
.disc-modal__nav--next { right: 12px; }
.disc-modal__nav::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 auto;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}
.disc-modal__nav--prev::after { transform: rotate(-135deg); margin-left: 14px; }
.disc-modal__nav--next::after { transform: rotate(45deg); margin-right: 14px; }
.disc-modal__nav:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.disc-modal__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px 14px;
}
.disc-modal__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 220ms, background 220ms;
}
.disc-modal__dot.is-active {
  width: 22px;
  background: var(--yellow);
}
.disc-modal__body {
  padding: 24px 26px 26px;
}
.disc-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 22px;
  line-height: 1;
}
.disc-modal__close:hover { background: rgba(255, 255, 255, 0.16); }
.disc-modal__eyebrow {
  margin: 0 0 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}
.disc-modal__title {
  margin: 0 0 12px;
  font-family: var(--f-display);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.disc-modal__summary {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}
.disc-modal__details {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
  max-width: 54ch;
}
.disc-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.disc-grid .disc[role="button"]:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
@media (max-width: 640px) {
  .disc-modal__dialog { border-radius: 12px; }
  .disc-modal__carousel {
    border-radius: 12px 12px 0 0;
    height: clamp(200px, 52vw, 280px);
  }
  .disc-modal__body { padding: 20px 18px 22px; }
  .disc-modal__nav { width: 36px; height: 36px; }
}

/* ---------- VIP modal (lista pré-inauguração) ---------- */
.vip-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
}
.vip-modal[hidden] { display: none !important; }
.vip-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 16, 0.72);
  backdrop-filter: blur(8px);
}
.vip-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: min(92vh, 720px);
  overflow: auto;
  background: var(--carbon);
  color: #fff;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 32px 28px 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  animation: vip-modal-in 320ms cubic-bezier(0.33, 0, 0.18, 1);
}
@keyframes vip-modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.vip-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.vip-modal__close:hover { background: rgba(255, 255, 255, 0.16); }
.vip-modal__badge {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.vip-modal__badge::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--blue);
}
.vip-modal__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 6vw, 52px);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.vip-modal__title .yel { color: var(--yellow); }
.vip-modal__sub {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
  max-width: 42ch;
}
.vip-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.vip-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vip-form__field--full { grid-column: 1 / -1; }
.vip-form__field label,
.vip-form__label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.vip-form__field .req { color: var(--yellow); }
.vip-form__field .opt {
  text-transform: none;
  letter-spacing: 0;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}
.vip-form__field input,
.vip-form__field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
}
.vip-form__field input:focus,
.vip-form__field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42, 143, 214, 0.25);
}
.vip-form__field input::placeholder { color: rgba(255, 255, 255, 0.35); }
.vip-form__field select { cursor: pointer; }
.vip-form__field select option { color: var(--ink); }
.vip-form__field textarea {
  width: 100%;
  min-height: 88px;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
}
.vip-form__field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42, 143, 214, 0.25);
}
.vip-form__field textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.vip-form__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.vip-form__chip {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: background 200ms, border-color 200ms, color 200ms;
}
.vip-form__chip:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.vip-form__chip.is-active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}
.vip-form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 16px 0 12px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}
.vip-form__consent input { margin-top: 3px; accent-color: var(--yellow); }
.vip-form__error {
  margin: 0 0 12px;
  font-size: 13px;
  color: #ff8f8f;
}
.vip-form__submit {
  width: 100%;
  margin-top: 8px;
  border: 0;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--ink);
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 200ms, background 200ms;
}
.vip-form__submit:hover:not(:disabled) {
  background: var(--yellow-soft);
  transform: translateY(-1px);
}
.vip-form__submit:disabled { opacity: 0.65; cursor: wait; }
.vip-form__submit-label {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.vip-form__submit-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vip-form__submit .arrow {
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.vip-modal__success {
  text-align: center;
  padding: 12px 0 4px;
}
.vip-modal__success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: #1f8a5b;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 700;
}
.vip-modal__success h3 {
  font-family: var(--f-display);
  font-size: 32px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.vip-modal__success p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
}
.vip-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px 12px 14px;
  background: var(--carbon);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  transition: transform 200ms, background 200ms;
}
.vip-fab:hover {
  transform: translateY(-2px);
  background: var(--carbon-2);
}
.vip-fab__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(250, 177, 15, 0.25);
}
@media (max-width: 640px) {
  .vip-form__row { grid-template-columns: 1fr; }
  .vip-modal__dialog { padding: 28px 20px 22px; }
  .vip-fab { right: 14px; bottom: 14px; }
}

/* ---------- utilities ---------- */
.h-fill { width: 100%; height: 100%; }
.no-scroll { overflow: hidden; }
.center { text-align: center; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- legal pages ---------- */
.page-hero--legal { padding-bottom: 48px; }
.legal-doc {
  padding: 0 var(--pad-x) 140px;
  background: var(--bg);
}
.legal-doc__inner {
  max-width: 720px;
  margin: 0 auto;
}
.legal-doc__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 20px 0 48px;
  border-top: 1px solid var(--line-strong);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.legal-doc__nav a { color: var(--ink-mute); }
.legal-doc__nav a:hover { color: var(--ink); }
.legal-doc__nav a.is-active { color: var(--blue); }
.legal-doc__updated {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 40px;
}
.legal-doc h2 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 48px 0 16px;
}
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc p,
.legal-doc li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.legal-doc ul,
.legal-doc ol {
  margin: 0 0 20px;
  padding-left: 1.25em;
}
.legal-doc li { margin-bottom: 8px; }
.legal-doc a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-doc a:hover { color: var(--ink); }

/* ---------- shared page layouts (responsive) ---------- */
.page-hero__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  align-items: start;
}
@media (max-width: 880px) {
  .page-hero__row { grid-template-columns: 1fr; gap: 24px; }
}

.footer__cols--compact {
  grid-template-columns: 1fr 1fr;
  padding: 0;
}
@media (max-width: 640px) {
  .footer__cols--compact { grid-template-columns: 1fr; }
}

.u-scroll-hint {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.u-scroll-hint::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 32px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--paper, var(--bg)));
}
@media (min-width: 881px) {
  .u-scroll-hint::after { display: none; }
}

.cside__map-embed {
  width: 100%;
  height: 100%;
  min-height: 200px;
}

@media (max-width: 640px) {
  .legal-doc { padding-bottom: 100px; }
  .legal-doc__nav { flex-direction: column; gap: 12px; }
}
