/* ================================================================
   TERRITÓRIO BOCAINA × TOKN.ID — PROPOSTA
   Design system + responsive + scroll animations
   ================================================================ */

:root {
  /* Paleta */
  --bg: #FBFAF7;
  --bg-tint: #F3F0E9;
  --bg-dark: #0E0F11;
  --bg-dark-2: #16181B;
  --line: rgba(25, 25, 27, 0.08);
  --line-strong: rgba(25, 25, 27, 0.16);
  --line-light: rgba(245, 242, 234, 0.10);
  --line-light-strong: rgba(245, 242, 234, 0.20);

  --ink: #17181B;
  --ink-2: #2B2D31;
  --ink-muted: #5D6068;
  --ink-dim: #8E9199;

  --paper: #F5F2EA;
  --paper-dim: rgba(245, 242, 234, 0.70);
  --paper-muted: rgba(245, 242, 234, 0.55);

  --pink: #FF0054;
  --pink-soft: #FFECF2;
  --pink-glow: rgba(255, 0, 84, 0.15);

  --gold: #C9A24C;
  --earth: #4A3F2A;
  --forest: #2D4A3E;

  /* Tipografia */
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 820px;
  --gutter: clamp(24px, 5vw, 72px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ================================================================
   TOPBAR
   ================================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--gutter);
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  transition: opacity 0.3s ease;
}

.topbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.topbar-brand-mark { font-weight: 700; }
.topbar-brand-x { color: var(--ink-dim); font-weight: 400; }
.topbar-brand-agency { font-weight: 600; }
.pink { color: var(--pink); }

.topbar-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--ink-muted);
}

@media (max-width: 640px) {
  .topbar-date { display: none; }
  .topbar-meta { gap: 12px; }
}

/* ================================================================
   SCENE (seção base)
   ================================================================ */
.scene {
  position: relative;
  padding: clamp(80px, 12vh, 140px) var(--gutter);
  overflow: hidden;
}

.scene-block { background: var(--bg); }
.scene-tint { background: var(--bg-tint); }
.scene-dark { background: var(--bg-dark); color: var(--paper); }
.scene-narrow { padding-top: clamp(60px, 8vh, 100px); padding-bottom: clamp(60px, 8vh, 100px); }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

/* ================================================================
   SCENE OPEN (abertura fullscreen)
   ================================================================ */
.scene-open {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
}

.scene-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.scene-bg-hero {
  background:
    radial-gradient(ellipse at 30% 70%, rgba(255, 0, 84, 0.08), transparent 50%),
    linear-gradient(135deg, #1a1815 0%, #0e0f11 40%, #16130f 100%);
}

.scene-bg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 165, 0, 0.06), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(74, 63, 42, 0.4), transparent 50%);
  opacity: 0.8;
}

.scene-bg-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 0 600 Q 200 550, 400 570 T 800 560 T 1200 580 L 1200 800 L 0 800 Z' fill='rgba(20,18,14,0.6)'/%3E%3Cpath d='M 0 650 Q 300 610, 600 630 T 1200 620 L 1200 800 L 0 800 Z' fill='rgba(10,9,7,0.7)'/%3E%3Cpath d='M 0 700 Q 400 680, 800 690 T 1200 685 L 1200 800 L 0 800 Z' fill='rgba(5,5,5,0.85)'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: bottom;
  opacity: 0.9;
}

.scene-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, transparent 20%, rgba(0,0,0,0.4) 90%);
  z-index: 1;
  pointer-events: none;
}

.scene-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--gutter);
}

.scene-content-bottom { padding-bottom: clamp(80px, 15vh, 160px); }

.opener-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.1;
  color: var(--pink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.opener-line {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 5.5vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--paper);
  max-width: 900px;
  margin-bottom: 8px;
}

.opener-line-accent em {
  font-style: italic;
  color: var(--pink);
  font-weight: 500;
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.scroll-cue-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, transparent, var(--paper-muted));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(1.2); opacity: 0.8; }
}

.scroll-cue-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--paper-muted);
  text-transform: uppercase;
}

/* ================================================================
   TIPOGRAFIA — DISPLAYS
   ================================================================ */
.display-lg {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 40px;
}

.display-md {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}

.display-md em, .display-lg em {
  font-style: italic;
  color: var(--pink);
  font-weight: 500;
}

.display-md.subdued {
  color: var(--ink-muted);
  font-weight: 400;
  margin-bottom: 40px;
}

.display-md-light { color: var(--paper); }
.display-md-light em { color: var(--pink); }

/* ================================================================
   PARÁGRAFOS + TEXTOS
   ================================================================ */
.paragraph-lg {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 720px;
  margin-bottom: 32px;
}

.paragraph-lg strong {
  color: var(--ink);
  font-weight: 600;
}

.paragraph-md {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-muted);
}

.paragraph-muted { color: var(--ink-dim); }
.paragraph-light { color: var(--paper-dim); }
.paragraph-light strong { color: var(--paper); }

.text-center { text-align: center; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

.statement {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.35;
  color: var(--ink);
  margin-top: 32px;
  letter-spacing: -0.01em;
}

.statement strong { font-weight: 600; }
.statement em { font-style: italic; color: var(--pink); }

/* ================================================================
   EYEBROW
   ================================================================ */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.eyebrow-mark {
  width: 24px;
  height: 2px;
  background: var(--pink);
  display: inline-block;
}

.eyebrow-light { color: var(--pink); }

/* ================================================================
   CONCEITO — grid 3 colunas
   ================================================================ */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.concept-item {
  padding-top: 32px;
  border-top: 2px solid var(--ink);
}

.concept-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--pink);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.concept-item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.concept-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-muted);
}

.scene-concept { background: var(--bg); position: relative; }

.scene-bg-topo {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='rgba(25,25,27,0.04)' fill='none' stroke-width='1'%3E%3Cpath d='M 0 100 Q 300 60, 600 90 T 1200 80'/%3E%3Cpath d='M 0 120 Q 300 90, 600 110 T 1200 105'/%3E%3Cpath d='M 0 140 Q 300 115, 600 130 T 1200 125'/%3E%3Cpath d='M 0 160 Q 300 140, 600 150 T 1200 148'/%3E%3Cpath d='M 0 180 Q 300 165, 600 170 T 1200 170'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  pointer-events: none;
}

/* ================================================================
   ARQUITETURA (SVG diagram)
   ================================================================ */
.architecture-diagram {
  margin: 80px 0 60px;
  display: flex;
  justify-content: center;
}

.arch-svg {
  width: 100%;
  max-width: 700px;
  height: auto;
}

/* ================================================================
   ROW 2 COL
   ================================================================ */
.row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-top: 40px;
}

.row-2col-flip {
  grid-template-columns: 1fr 1fr;
}

.col-text { }
.col-visual { display: flex; justify-content: center; }

/* Coin visual */
.coin-visual {
  width: 100%;
  max-width: 420px;
}

/* Micro flow list */
.micro-flow {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.micro-flow li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 24px;
  background: var(--bg-tint);
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}

.micro-flow-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--pink);
  letter-spacing: 1.5px;
  padding-top: 3px;
  flex-shrink: 0;
}

/* ================================================================
   PASSPORT COMPARISON
   ================================================================ */
.passport-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin: 80px 0 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.passport-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.passport-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--pink);
}

.passport-visual {
  max-width: 260px;
  width: 100%;
}

.passport-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================================================
   MARKETPLACE MOCKUP
   ================================================================ */
.marketplace-mockup {
  margin: 60px 0 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 20px 60px -20px rgba(23, 24, 27, 0.35),
    0 8px 20px -8px rgba(23, 24, 27, 0.15);
}

.mock-browser {
  background: var(--bg-dark-2);
  border-radius: 12px;
  overflow: hidden;
}

.mock-browser-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  background: #1E2024;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-browser-dots {
  display: flex;
  gap: 8px;
}

.mock-browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.mock-browser-dots span:first-child { background: #FF5F57; }
.mock-browser-dots span:nth-child(2) { background: #FEBC2E; }
.mock-browser-dots span:last-child { background: #28C840; }

.mock-browser-url {
  flex: 1;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.mock-browser-content {
  padding: 40px;
  background: #FBFAF7;
}

.mp-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.mp-filter {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(23, 24, 27, 0.05);
  color: var(--ink-muted);
  cursor: default;
}

.mp-filter-active {
  background: var(--ink);
  color: var(--paper);
}

.mp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mp-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(23, 24, 27, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(23, 24, 27, 0.12);
}

.mp-card-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

.mp-img-1 {
  background: linear-gradient(135deg, #2D4A3E 0%, #4A3F2A 100%);
  background-image:
    linear-gradient(135deg, rgba(45,74,62,0.85), rgba(74,63,42,0.85)),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 0 100 Q 50 70, 100 85 T 200 80 L 200 150 L 0 150 Z' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  background-size: cover;
}

.mp-img-2 {
  background: linear-gradient(135deg, #7A3E1F 0%, #4A3F2A 100%);
  background-image:
    linear-gradient(135deg, rgba(122,62,31,0.8), rgba(74,63,42,0.9)),
    radial-gradient(circle at 30% 40%, rgba(255,180,100,0.2), transparent 50%);
}

.mp-img-3 {
  background: linear-gradient(135deg, #4A3F2A 0%, #17181B 100%);
  background-image:
    linear-gradient(135deg, rgba(74,63,42,0.85), rgba(23,24,27,0.9)),
    radial-gradient(circle at 70% 30%, rgba(201,162,76,0.15), transparent 60%);
}

.mp-img-4 {
  background: linear-gradient(135deg, #1E3A2E 0%, #0E0F11 100%);
  background-image:
    linear-gradient(135deg, rgba(30,58,46,0.85), rgba(14,15,17,0.95)),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 0 130 Q 60 100, 100 115 T 200 110 L 200 150 L 0 150 Z' fill='rgba(255,255,255,0.05)'/%3E%3Cpath d='M 0 110 Q 40 90, 100 100 T 200 95 L 200 150 L 0 150 Z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  background-size: cover;
}

.mp-card-body {
  padding: 16px;
}

.mp-card-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--pink);
  margin-bottom: 8px;
}

.mp-card-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.2;
}

.mp-card-meta {
  font-size: 11px;
  color: var(--ink-muted);
  line-height: 1.4;
}

/* MP FLOW */
.mp-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  padding: 40px 24px;
  background: var(--bg-tint);
  border-radius: 8px;
}

.mp-flow-item { text-align: center; }

.mp-flow-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--pink);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.mp-flow-item p {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
}

.mp-flow-arrow svg { width: 32px; height: 12px; }

/* ================================================================
   FEATURE LIST
   ================================================================ */
.feature-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 1px;
  background: var(--pink);
}

.panel-mockup {
  width: 100%;
  max-width: 350px;
  filter: drop-shadow(0 20px 40px rgba(23, 24, 27, 0.15));
}

/* ================================================================
   MAGIC FLOW (invisible onboarding)
   ================================================================ */
.magic-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 60px 0;
}

.magic-step {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-light);
  border-radius: 8px;
}

.magic-step-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--pink);
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.magic-step-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.magic-step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: var(--paper);
  margin-bottom: 12px;
}

.magic-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--paper-muted);
}

/* ================================================================
   ROADMAP
   ================================================================ */
.roadmap-track {
  margin-top: 60px;
  position: relative;
  padding-left: 40px;
}

.roadmap-track::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, var(--line-strong), var(--line));
}

.roadmap-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  padding: 24px 0 40px;
  position: relative;
}

.roadmap-item::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 32px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line-strong);
  z-index: 1;
}

.roadmap-item:nth-child(2)::before {
  border-color: var(--pink);
  background: var(--pink);
  box-shadow: 0 0 0 6px var(--pink-soft);
}

.roadmap-marker { }

.roadmap-phase {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 6px;
}

.roadmap-time {
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 500;
}

.roadmap-body { }

.roadmap-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.roadmap-body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 600px;
}

/* ================================================================
   INVESTIMENTO
   ================================================================ */
.scene-investment { padding-top: 40px; }

.investment-block {
  margin-bottom: 60px;
  padding: 48px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 24px -12px rgba(23, 24, 27, 0.08);
}

.investment-block-monthly {
  background: linear-gradient(135deg, #fff 0%, #FAF8F3 100%);
}

.investment-header {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}

.investment-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--ink-muted);
  font-weight: 500;
}

.investment-total {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-left: auto;
}

.investment-unit {
  font-size: 0.4em;
  color: var(--ink-muted);
  font-weight: 400;
  margin-left: 4px;
}

.investment-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--pink);
  font-weight: 600;
  width: 100%;
  margin-top: 4px;
  text-align: right;
}

.investment-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.investment-side { }

.investment-side-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 12px;
}

.investment-side-value {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  line-height: 1;
}

.investment-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.investment-list li {
  padding: 12px 0 12px 22px;
  position: relative;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.investment-list li:last-child { border-bottom: none; }

.investment-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 1px;
  background: var(--pink);
}

.investment-detail {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--pink-soft);
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink);
}

.investment-detail strong {
  color: var(--pink);
  font-weight: 600;
}

/* Optional retainer */
.investment-optional {
  margin-top: 20px;
  padding: 40px;
  border: 2px dashed var(--line-strong);
  border-radius: 12px;
  background: var(--bg-tint);
}

.investment-optional-inner {
  max-width: 720px;
}

.investment-optional-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 12px;
}

.investment-optional-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.investment-optional-value {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--pink);
  margin-bottom: 16px;
}

.investment-optional p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.investment-optional-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.investment-optional-list li {
  padding-left: 22px;
  position: relative;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
}

.investment-optional-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 1px;
  background: var(--pink);
}

/* ================================================================
   COMPARAÇÃO DE MERCADO
   ================================================================ */
.compare-market {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 60px 0;
}

.compare-market-col {
  padding: 32px;
  border-radius: 12px;
}

.compare-market-col-old {
  background: #fff;
  border: 1px solid var(--line);
}

.compare-market-col-new {
  background: var(--ink);
  color: var(--paper);
  position: relative;
}

.compare-market-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 12px;
}

.compare-market-col-new .compare-market-tag {
  color: var(--pink);
}

.compare-market-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.compare-market-col-new .compare-market-desc {
  color: var(--paper-muted);
  border-bottom-color: var(--line-light);
}

.compare-market-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}

.compare-market-col-new .compare-market-line {
  border-bottom-color: var(--line-light);
}

.compare-market-line:last-child { border-bottom: none; }

.compare-market-label {
  font-size: 13px;
  color: var(--ink-muted);
}

.compare-market-col-new .compare-market-label { color: var(--paper-muted); }

.compare-market-value {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.compare-market-col-new .compare-market-value { color: var(--paper); }

/* ================================================================
   ANCHOR ITEMS (Programa Cliente Âncora)
   ================================================================ */
.anchor-list {
  margin: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.anchor-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line-light);
  border-radius: 8px;
}

.anchor-check {
  width: 32px;
  height: 32px;
}

.anchor-body h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
  color: var(--paper);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.anchor-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--paper-muted);
}

/* ================================================================
   FECHAMENTO
   ================================================================ */
.scene-close {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  color: var(--paper);
}

.scene-bg-close {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255, 0, 84, 0.06), transparent 55%),
    linear-gradient(180deg, #16130f 0%, #0e0f11 50%, #1a1815 100%);
}

.scene-bg-close::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='rgba(245,242,234,0.03)' fill='none' stroke-width='1'%3E%3Cpath d='M 0 350 Q 300 300, 600 320 T 1200 310'/%3E%3Cpath d='M 0 370 Q 300 330, 600 340 T 1200 335'/%3E%3Cpath d='M 0 390 Q 300 360, 600 370 T 1200 365'/%3E%3Cpath d='M 0 410 Q 300 390, 600 395 T 1200 395'/%3E%3Cpath d='M 0 430 Q 300 420, 600 420 T 1200 420'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  opacity: 0.8;
}

.scene-vignette-close {
  background: radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(0,0,0,0.5) 90%);
}

.close-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--pink);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.close-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 40px;
}

.close-title em {
  font-style: italic;
  color: var(--pink);
  font-weight: 500;
}

.close-line {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--paper-dim);
  margin-bottom: 48px;
}

.close-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 22px 40px;
  background: var(--pink);
  color: var(--paper);
  text-decoration: none;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 32px -8px rgba(255, 0, 84, 0.5);
}

.close-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -8px rgba(255, 0, 84, 0.6);
}

.close-cta-arrow {
  font-size: 22px;
  transition: transform 0.2s ease;
}

.close-cta:hover .close-cta-arrow {
  transform: translateX(4px);
}

.close-contact {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--paper-muted);
}

.close-contact strong {
  color: var(--paper);
  font-weight: 600;
}

.close-signature {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
}

.close-signature-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--paper);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.close-signature-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--pink);
  margin-bottom: 16px;
}

.close-signature-line {
  font-size: 13px;
  color: var(--paper-muted);
  font-style: italic;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  padding: 40px var(--gutter);
  background: var(--bg-dark-2);
  color: var(--paper-muted);
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: var(--container-max);
  margin: 0 auto;
}

.site-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--paper);
}

.site-footer-x { color: var(--paper-muted); font-weight: 400; }

.site-footer-meta {
  display: flex;
  gap: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
}

/* ================================================================
   REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }
.reveal.delay-6 { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scroll-cue-line { animation: none; }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  .concept-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .row-2col {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .col-visual { order: -1; }

  .passport-comparison {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .passport-arrows { transform: rotate(90deg); margin: 0 auto; }

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

  .mp-flow {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mp-flow-arrow { transform: rotate(90deg); margin: 0 auto; }

  .magic-flow {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .roadmap-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .investment-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .compare-market {
    grid-template-columns: 1fr;
  }

  .investment-block { padding: 32px 24px; }
  .investment-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .investment-total { margin-left: 0; }
  .investment-note { text-align: left; }
}

@media (max-width: 640px) {
  .scene { padding: 80px var(--gutter); }
  .mock-browser-content { padding: 24px 16px; }
  .mp-grid { grid-template-columns: 1fr; }
  .anchor-item { grid-template-columns: 1fr; padding: 20px; }
  .anchor-check { width: 24px; height: 24px; }
  .close-cta { padding: 18px 28px; font-size: 14px; }
  .investment-optional { padding: 24px; }
}
