/* ═══════════════════════════════════════════════════════════
   EXP World — Landing Page (public site)
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #080706;
  --bg-elevated: #12100e;
  --bg-soft: #1a1714;
  --ink: #f3eee6;
  --muted: #9a9082;
  --muted-2: #6e665c;
  --gold: #c9a96e;
  --gold-light: #d9bc82;
  --gold-dim: rgba(201, 169, 110, 0.14);
  --gold-line: rgba(201, 169, 110, 0.28);
  --border: rgba(243, 238, 230, 0.08);
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --wrap: min(1180px, calc(100% - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
ul { list-style: none; }

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 2px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1510;
}

.btn-gold:hover { filter: brightness(1.06); }

.btn-ghost {
  background: transparent;
  border-color: rgba(243, 238, 230, 0.28);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold-line);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-sm { padding: 12px 20px; font-size: 0.75rem; }
.btn-block { width: 100%; }

/* ─── Eyebrow / section ─── */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-lead {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 42ch;
  font-weight: 300;
}

.section-head {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-lead {
  margin-inline: auto;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(8, 7, 6, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.nav-logo {
  display: block;
  height: 36px;
  width: auto;
  max-width: min(200px, 46vw);
  object-fit: contain;
}

.nav-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--gold-light), #a8844a);
  color: #1a1510;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.nav-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(243, 238, 230, 0.72);
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--ink); }

.nav-links .nav-access {
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.nav-links .nav-access:hover {
  color: var(--gold);
}

.nav-links .nav-cta,
.nav-drawer .nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  color: var(--gold);
}

.nav-links .nav-cta:hover,
.nav-drawer .nav-cta:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold-light);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.lang-switch-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.6875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  color: rgba(243, 238, 230, 0.55) !important;
  text-transform: none !important;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-switch-item:hover {
  color: var(--ink) !important;
}

.lang-switch-item.is-active {
  background: rgba(201, 169, 110, 0.18);
  color: var(--gold) !important;
}

.lang-switch--drawer {
  margin: 8px 0 4px;
}

.lang-switch--drawer .lang-switch-item {
  font-family: var(--font-body) !important;
  font-size: 0.8125rem !important;
  min-width: 42px;
  padding: 8px 12px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  gap: 6px;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}

.nav.is-open .nav-toggle span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav.is-open .nav-toggle span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(8, 7, 6, 0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 100px 24px 48px;
}

.nav-drawer[hidden] { display: none; }

.nav-drawer a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ─── HERO (scroll-pinned sequence) ─── */
.hero-pin {
  position: relative;
}

.hero-pin-track {
  height: 320vh;
  position: relative;
}

.hero {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 24px) clamp(20px, 5vw, 64px) 72px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #080706;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translate3d(-50%, -50%, 0) scale(1.08);
  transform-origin: center center;
  will-change: transform;
  pointer-events: none;
  backface-visibility: hidden;
}

.hero-veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      rgba(8, 7, 6, 0.82) 0%,
      rgba(8, 7, 6, 0.55) 32%,
      rgba(8, 7, 6, 0.22) 58%,
      rgba(8, 7, 6, 0.06) 78%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 7, 6, 0.45) 0%,
      transparent 28%,
      transparent 72%,
      rgba(8, 7, 6, 0.55) 100%
    );
  opacity: 1;
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  width: 100%;
  will-change: transform;
}

.hero-lockup {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: clamp(16px, 2.5vw, 36px);
  margin-bottom: 0;
}

.hero-brand-logo {
  display: block;
  width: min(100%, 420px);
  height: auto;
  max-height: clamp(72px, 14vw, 120px);
  object-fit: contain;
  object-position: left bottom;
  filter: drop-shadow(0 8px 28px rgba(8, 7, 6, 0.55));
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 5.75rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: #fff;
  margin: 0;
  text-shadow: 0 4px 40px rgba(8, 7, 6, 0.55);
  white-space: nowrap;
}

.hero-mission {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.15em;
  padding-bottom: 0.08em;
  min-width: 0;
}

.hero-mission-label {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 2px 18px rgba(8, 7, 6, 0.5);
}

.hero-mission-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6.2vw, 4.5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 4px 40px rgba(8, 7, 6, 0.55);
  white-space: nowrap;
}

.hero-title,
.hero-lead,
.hero-actions {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  pointer-events: none;
  will-change: transform, opacity, filter;
}

.hero-title.is-visible,
.hero-lead.is-visible,
.hero-actions.is-visible {
  pointer-events: auto;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.94);
  max-width: 24ch;
  margin-top: 22px;
  margin-bottom: 0;
  text-shadow: 0 2px 28px rgba(8, 7, 6, 0.55);
}

.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 400;
  color: rgba(243, 238, 230, 0.9);
  max-width: 46ch;
  margin-top: 20px;
  margin-bottom: 0;
  text-shadow: 0 2px 24px rgba(8, 7, 6, 0.6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-progress {
  position: absolute;
  left: clamp(20px, 5vw, 64px);
  right: clamp(20px, 5vw, 64px);
  bottom: 0;
  height: 2px;
  background: rgba(243, 238, 230, 0.1);
  z-index: 2;
}

.hero-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform-origin: left center;
}

.hero-scroll {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: 36px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: opacity 0.35s ease;
}

.hero.is-complete .hero-scroll {
  opacity: 0;
  pointer-events: none;
}

.scroll-dot {
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.35; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-pin-track { height: auto; }
  .hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-title,
  .hero-lead,
  .hero-actions {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    pointer-events: auto !important;
  }
  .hero-progress { display: none; }
}

/* ─── MANIFESTO ─── */
.manifesto {
  padding: clamp(88px, 14vw, 160px) 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 169, 110, 0.08), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 820px;
  text-align: center;
}

.manifesto-eyebrow {
  opacity: calc(0.2 + var(--curtain-eyebrow, 0) * 0.8);
  transform: translateY(calc((1 - var(--curtain-eyebrow, 0)) * 12px));
  will-change: opacity, transform;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgba(243, 238, 230, 0.92);
}

.manifesto-quote em {
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
}

.manifesto-quote .curtain-word {
  display: inline;
  color: rgba(243, 238, 230, calc(0.12 + var(--curtain, 0) * 0.8));
  will-change: color;
}

.manifesto-quote em .curtain-word {
  color: rgba(201, 169, 110, calc(0.18 + var(--curtain, 0) * 0.82));
}

/* ─── MISSIONS ─── */
.missions {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--bg-elevated);
}

.mission-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.mission {
  display: flex;
  flex-direction: column;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.4s var(--ease);
}

.mission--featured {
  border-color: var(--gold-line);
}

.mission:hover {
  border-color: var(--gold-line);
  transform: translateY(-4px);
}

.mission--link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.mission--link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.mission-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.mission-more::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}

.mission--link:hover .mission-more::after {
  transform: translateX(4px);
}

.mission-visual {
  position: relative;
  flex-shrink: 0;
  height: 200px;
  background:
    linear-gradient(180deg, transparent 30%, rgba(8, 7, 6, 0.85) 100%),
    var(--mission-img) center / cover no-repeat;
}

.mission-visual--placeholder {
  background:
    radial-gradient(ellipse 80% 70% at 50% 40%, rgba(201, 169, 110, 0.16), transparent 65%),
    linear-gradient(145deg, #1c1915 0%, #0e0c0a 55%, #16130f 100%);
}

.mission-visual--placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 75%);
  pointer-events: none;
}

.mission-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 0;
}

.mission-placeholder-code {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold);
  line-height: 1;
}

.mission-placeholder-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.mission-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 7, 6, 0.75) 100%);
}

.mission-status {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 6px 12px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: #1a1510;
}

.mission-status--wait {
  background: rgba(8, 7, 6, 0.75);
  color: var(--ink);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.mission-body {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 14px;
}

.mission-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.mission-body p {
  color: var(--muted);
  font-size: 0.9375rem;
  font-weight: 300;
  flex: 1;
}

.mission-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 4px 0 8px;
}

.mission-meta li {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.mission-meta li + li::before {
  content: "·";
  margin-right: 16px;
  color: var(--muted-2);
}

.mission-body .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ─── PILLARS ─── */
.pillars {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--bg);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.pillar {
  background: var(--bg);
  padding: clamp(28px, 3vw, 40px) clamp(22px, 2.5vw, 32px);
  transition: background 0.3s ease;
}

.pillar:hover {
  background: var(--bg-elevated);
}

.pillar-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 28px;
  font-style: normal;
  letter-spacing: -0.02em;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.pillar p {
  color: var(--muted);
  font-size: 0.9375rem;
  font-weight: 300;
}

/* ─── PROOF ─── */
.proof {
  padding: clamp(56px, 8vw, 88px) 0;
  background:
    linear-gradient(180deg, rgba(201, 169, 110, 0.06), transparent),
    var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.proof-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.proof-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.proof-value--text {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  padding-top: 0.35em;
}

.proof-label {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ─── APPLY ─── */
.apply {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--bg);
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  padding: clamp(36px, 5vw, 56px);
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(201, 169, 110, 0.1), transparent 55%),
    var(--bg-elevated);
  border: 1px solid var(--gold-line);
}

.apply-checks {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.apply-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: rgba(243, 238, 230, 0.85);
}

.apply-checks li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--gold-dim);
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.field-row .field {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}

.field-row .field > label {
  /* Reserva 2 linhas p/ labels longos não desalinharem o input/select ao lado */
  min-height: 2.5rem;
  display: flex;
  align-items: flex-end;
}

.field-row .field > :is(input, select, textarea) {
  margin-top: auto;
  width: 100%;
}

.field label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(8, 7, 6, 0.55);
  border: 1px solid var(--border);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input::placeholder { color: var(--muted-2); }

.field input:focus,
.field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%9a9082' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted-2);
  text-align: center;
}

.form-success {
  padding: 14px 16px;
  background: rgba(110, 207, 143, 0.12);
  border: 1px solid rgba(110, 207, 143, 0.35);
  color: #6ecf8f;
  font-size: 0.875rem;
  text-align: center;
}

/* ─── FAQ ─── */
.faq {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--bg-elevated);
}

.faq-inner { max-width: 760px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: relative;
  transition: color 0.2s ease;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover { color: var(--gold-light); }

.faq-item p {
  padding: 0 0 24px;
  color: var(--muted);
  font-weight: 300;
  max-width: 58ch;
}

/* ─── FOOTER ─── */
.footer {
  padding: 48px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-brand p {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: var(--muted-2);
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

/* ─── Scroll reveal (sections) ─── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-from-right {
  opacity: 0;
  transform: translateX(64px);
  transition:
    opacity 0.85s var(--ease) var(--reveal-delay, 0ms),
    transform 0.85s var(--ease) var(--reveal-delay, 0ms);
}

.reveal-from-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .mission-list {
    grid-template-columns: 1fr 1fr;
  }

  .mission--featured {
    grid-column: 1 / -1;
  }

  .mission-visual {
    height: 180px;
  }

  .pillar-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }
}

@media (max-width: 768px) {
  :root { --wrap: min(100% - 40px, 1180px); }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-pin-track {
    height: 280vh;
  }

  .hero {
    align-items: flex-end;
    padding-bottom: 88px;
  }

  .hero-lockup {
    gap: 14px 18px;
  }

  .hero-brand {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }

  .hero-mission-name {
    font-size: clamp(1.65rem, 8vw, 2.75rem);
  }

  .hero-mission-label {
    font-size: 0.75rem;
  }

  .hero-scroll {
    right: 50%;
    transform: translateX(50%);
    bottom: 28px;
  }

  .mission-list,
  .apply-grid,
  .pillar-grid,
  .proof-inner,
  .field-row,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .mission--featured {
    grid-column: auto;
  }

  .mission-visual {
    height: 200px;
  }

  .apply-grid { padding: 28px 22px; }

  .footer-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video,
  .scroll-dot,
  .reveal-on-scroll {
    animation: none !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .reveal-from-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .manifesto-eyebrow {
    opacity: 1 !important;
    transform: none !important;
  }

  .manifesto-quote .curtain-word,
  .manifesto-quote em .curtain-word {
    color: inherit !important;
  }
}

/* ─── Remote registration ─── */
.remote-page .nav--solid {
  position: sticky;
  top: 0;
  background: rgba(8, 7, 6, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.remote-main {
  padding: calc(var(--nav-h) + 48px) 0 96px;
  min-height: 70vh;
}

.remote-wrap {
  max-width: 880px;
}

.remote-hero {
  margin-bottom: 40px;
}

/* ─── Remote success ─── */
.remote-page--success {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 70% 55% at 50% 18%, rgba(201, 169, 110, 0.16), transparent 62%),
    radial-gradient(ellipse 50% 40% at 80% 90%, rgba(201, 169, 110, 0.06), transparent 55%),
    linear-gradient(180deg, #0c0a08 0%, var(--bg) 45%, #060504 100%);
}

.remote-success-shell {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 48px 24px;
  overflow: hidden;
}

.remote-success-globe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

.remote-success-glow {
  position: absolute;
  inset: 12% auto auto 50%;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 1), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  animation: remote-success-glow 4.5s ease-in-out infinite alternate;
}

.remote-success {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.remote-success-brand {
  display: inline-flex;
  margin-bottom: 36px;
  opacity: 0;
  animation: remote-success-fade 0.7s var(--ease) 0.05s forwards;
}

.remote-success-brand img {
  width: auto;
  height: 40px;
}

.remote-success-mark {
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  opacity: 0;
  animation: remote-success-fade 0.6s var(--ease) 0.18s forwards;
}

.remote-success-mark svg {
  width: 100%;
  height: 100%;
}

.remote-success-ring {
  stroke: var(--gold-line);
  stroke-width: 1.5;
  fill: rgba(201, 169, 110, 0.08);
  transform-origin: 32px 32px;
  animation: remote-success-ring 0.8s var(--ease) 0.25s both;
}

.remote-success-check {
  stroke: var(--gold-light);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: remote-success-check 0.55s var(--ease) 0.55s forwards;
}

.remote-success .eyebrow {
  margin-bottom: 12px;
  opacity: 0;
  animation: remote-success-fade 0.65s var(--ease) 0.35s forwards;
}

.remote-success .section-title {
  max-width: 14ch;
  opacity: 0;
  animation: remote-success-fade 0.7s var(--ease) 0.45s forwards;
}

.remote-success-lead {
  margin: 16px auto 0;
  max-width: 36ch;
  opacity: 0;
  animation: remote-success-fade 0.7s var(--ease) 0.55s forwards;
}

.remote-success-lead strong {
  color: var(--gold-light);
  font-weight: 600;
}

.remote-success-cta {
  margin-top: 32px;
  min-width: 200px;
  opacity: 0;
  animation: remote-success-fade 0.7s var(--ease) 0.7s forwards;
}

@keyframes remote-success-fade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes remote-success-ring {
  from {
    opacity: 0;
    transform: scale(0.72);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes remote-success-check {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes remote-success-glow {
  from {
    transform: translateX(-50%) scale(0.96);
  }
  to {
    transform: translateX(-50%) scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .remote-success-globe {
    opacity: 0.35;
  }

  .remote-success-glow {
    animation: none !important;
    opacity: 0.05 !important;
    transform: translateX(-50%) !important;
  }

  .remote-success-brand,
  .remote-success-mark,
  .remote-success .eyebrow,
  .remote-success .section-title,
  .remote-success-lead,
  .remote-success-cta,
  .remote-success-ring,
  .remote-success-check {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}

.remote-ref-badge {
  display: inline-flex;
  gap: 6px;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid var(--gold-line);
  background: var(--gold-dim);
  color: var(--gold-light);
  font-size: 0.8125rem;
}

.remote-ref-badge--muted {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.remote-errors {
  margin-bottom: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(220, 80, 80, 0.4);
  background: rgba(220, 80, 80, 0.1);
  color: #f0a0a0;
  font-size: 0.875rem;
}

.remote-errors ul {
  margin-top: 8px;
  display: grid;
  gap: 4px;
  list-style: disc;
  padding-left: 18px;
}

.remote-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.remote-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 8px;
}

.remote-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 12px 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.remote-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-size: 0.6875rem;
}

.remote-step.is-active {
  border-color: var(--gold-line);
  background: var(--gold-dim);
  color: var(--gold-light);
}

.remote-step.is-done {
  color: var(--ink);
  border-color: rgba(243, 238, 230, 0.18);
}

.remote-step-progress {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.remote-step-panel[hidden] {
  display: none !important;
}

.remote-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.remote-nav .btn {
  flex: 1 1 140px;
}

.remote-nav .btn.is-disabled,
.remote-nav .btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
  filter: none;
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: rgba(220, 80, 80, 0.7);
}

@media (max-width: 720px) {
  .remote-steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
  }

  .remote-step {
    padding: 10px 4px;
    font-size: 0;
  }

  .remote-step span {
    margin: 0 auto;
    font-size: 0.6875rem;
  }
}

.remote-card {
  padding: 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.remote-card h2 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  color: var(--gold-light);
}

.remote-card .field {
  margin-bottom: 16px;
}

.remote-card .field-row {
  margin-bottom: 0;
}

.remote-card .field-row .field {
  margin-bottom: 16px;
}

.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(8, 7, 6, 0.55);
  border: 1px solid var(--border);
  border-radius: 2px;
  outline: none;
  resize: vertical;
  min-height: 110px;
  font: inherit;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.field-hint {
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--muted-2);
}

.remote-product {
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
}

.remote-product:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.remote-product h3 {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.remote-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn-block {
  width: 100%;
}

@media (max-width: 720px) {
  .remote-card {
    padding: 20px 16px;
  }
}

.remote-nav .btn.is-loading,
.btn.is-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  pointer-events: none;
  opacity: 0.85;
  cursor: wait;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(8, 7, 6, 0.2);
  border-top-color: rgba(8, 7, 6, 0.85);
  animation: payment-spin 0.75s linear infinite;
  flex-shrink: 0;
}

.payment-page .payment-shell {
  padding: calc(var(--nav-h) + 28px) 0 48px;
}

.payment-page .payment-wrap {
  max-width: 820px;
}

.payment-hero {
  margin-bottom: 20px;
}

.payment-hero .section-title {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  margin-bottom: 6px;
}

.payment-hero .section-lead {
  margin: 0;
  font-size: 0.9375rem;
}

.payment-flash {
  margin-bottom: 14px;
  padding: 12px 14px;
  font-size: 0.875rem;
}

.payment-flash--ok {
  border: 1px solid rgba(110, 207, 143, 0.35);
  color: #6ecf8f;
  background: rgba(110, 207, 143, 0.08);
}

.payment-panel {
  padding: 18px 20px !important;
}

.payment-panel h2 {
  margin-bottom: 6px !important;
  font-size: 0.95rem !important;
}

.payment-grid {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.payment-side {
  display: grid;
  gap: 10px;
}

.payment-summary-list {
  margin: 0;
  display: grid;
  gap: 8px;
}

.payment-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.payment-summary-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.payment-summary-row dt {
  color: var(--muted);
  font-size: 0.75rem;
}

.payment-summary-row dd {
  margin: 0;
  text-align: right;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.875rem;
}

.payment-summary-row--highlight dd {
  display: grid;
  gap: 2px;
  justify-items: end;
}

.payment-amount-usd {
  color: var(--gold-light);
  font-size: 1rem;
}

.payment-amount-brl {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-2);
}

.pix-qr-wrap {
  display: grid;
  justify-items: center;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.pix-qr-image {
  width: 168px;
  height: 168px;
  border-radius: 8px;
  background: #fff;
  padding: 8px;
  box-sizing: border-box;
  object-fit: contain;
}

.payment-main-col .field-hint {
  margin: 0 0 10px;
}

.payment-actions {
  margin-top: 12px;
  align-items: center;
}

.payment-reissue-form {
  margin: 0;
  flex: 1 1 140px;
}

.payment-reissue-form .btn {
  width: 100%;
}

.payment-waiting-inline {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-waiting-inline strong {
  display: block;
  font-size: 0.875rem;
  color: var(--gold-light);
}

.payment-waiting-inline .payment-spinner {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.payment-waiting-inline .field-hint {
  margin: 4px 0 0;
}

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

  .payment-side {
    justify-items: stretch;
  }

  .pix-qr-wrap {
    justify-self: center;
  }
}

.pix-brcode {
  width: 100%;
  padding: 14px 16px;
  background: rgba(8, 7, 6, 0.55);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8125rem;
  line-height: 1.5;
  resize: vertical;
}

.pix-copy-feedback {
  margin-top: 12px;
  color: #6ecf8f;
  font-size: 0.875rem;
}

.payment-waiting {
  margin-top: 24px;
  text-align: center;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.payment-spinner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(201, 169, 110, 0.2);
  border-top-color: var(--gold);
  animation: payment-spin 0.9s linear infinite;
}

@keyframes payment-spin {
  to { transform: rotate(360deg); }
}
