/* ============================================
   GHC · Negócios & Expansão — Ascent system v2
   ============================================ */

/* ---------- TOKENS (per brand book) ---------- */
:root {
  --paper:    #F2F0EC;
  --paper-2:  #E8E5DD;
  --white:    #FFFFFF;
  --ink:      #0A0A0A;
  --ink-2:    #1A1A1A;
  --mute:     #6B6B66;
  --mute-2:   #9C9C95;
  --line:     #D8D5CD;
  --line-2:   #C4C0B6;
  --lime:     #C6F432;
  --lime-2:   #B5E029;
  --lime-soft:rgba(198, 244, 50, 0.18);

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --max: 1380px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card:        0 18px 36px -22px rgba(10, 10, 10, 0.18);
  --shadow-card-hover:  0 36px 56px -30px rgba(10, 10, 10, 0.30);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Satoshi', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
em, i { font-style: normal; }
em { color: var(--lime); }
.section-dark em,
.display-dark em { color: var(--lime); }

/* ---------- GRAIN OVERLAY ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.055;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.8'/></svg>");
}

/* ---------- LAYOUT PRIMITIVES ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .wrap { padding: 0 40px; }
}
.section { padding: 96px 0; border-bottom: 1px solid var(--line); position: relative; }
@media (min-width: 1024px) {
  .section { padding: 128px 0; }
}
.section-paper2 { background: var(--paper-2); }
.section-dark   { background: var(--ink); color: var(--paper); }

.split-3-9 { display: grid; grid-template-columns: 1fr; gap: 40px; }
.split-4-8 { display: grid; grid-template-columns: 1fr; gap: 40px; }
.split-5-7 { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) {
  .split-3-9 { grid-template-columns: 3fr 9fr; gap: 64px; }
  .split-4-8 { grid-template-columns: 4fr 8fr; gap: 80px; }
  .split-5-7 { grid-template-columns: 5fr 7fr; gap: 80px; }
}

/* ---------- TYPOGRAPHY ---------- */
.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
}
.mute  { color: var(--mute); }
.accent { color: var(--lime-2); }
.section-dark .accent { color: var(--lime); }

/* Display = heavy grotesk per brand book */
.display-1 {
  font-family: 'Cabinet Grotesk', 'Satoshi', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2.75rem, 7vw, 5.75rem);
  line-height: 0.95;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: 28px;
}
.display-2 {
  font-family: 'Cabinet Grotesk', 'Satoshi', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.display-3 {
  font-family: 'Cabinet Grotesk', 'Satoshi', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin-bottom: 16px;
}
.display-dark { color: var(--paper); }
.display-cta {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 22px;
}

.body-lg {
  font-size: 1.075rem;
  line-height: 1.6;
  color: var(--mute);
  max-width: 64ch;
}
@media (min-width: 768px) {
  .body-lg { font-size: 1.15rem; }
}
.body-dark { color: rgba(242, 240, 236, 0.7); }

.lede {
  font-size: 1.075rem;
  line-height: 1.6;
  color: var(--mute);
  max-width: 58ch;
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .lede { font-size: 1.2rem; }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mute);
  margin-bottom: 32px;
}
.eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--ink);
}

/* ---------- LOGO MARK (4 barras Ascent) ---------- */
.logo-mark {
  width: 26px;
  height: 26px;
  color: var(--ink);
  flex-shrink: 0;
}
.logo-mark .bar-1,
.logo-mark .bar-2,
.logo-mark .bar-3 { fill: currentColor; }
.logo-mark .bar-4 { fill: var(--lime); }

.section-dark .logo-mark,
.lockup-dark .logo-mark { color: var(--paper); }

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mute);
}
.topbar-row {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-mid { display: none; }
@media (min-width: 768px) {
  .topbar-mid { display: block; }
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(242, 240, 236, 0.96);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand lockup */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-divider {
  width: 1px;
  height: 26px;
  background: var(--line-2);
}
.section-dark .brand-divider,
.lockup-dark .brand-divider { background: rgba(242, 240, 236, 0.25); }
.brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}
.brand-name {
  font-family: 'Cabinet Grotesk', 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.brand-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mute);
  margin-top: 4px;
}
.section-dark .brand-name,
.lockup-dark .brand-name { color: var(--paper); }
.section-dark .brand-sub,
.lockup-dark .brand-sub  { color: rgba(242, 240, 236, 0.55); }

.brand-lg .logo-mark { width: 36px; height: 36px; }
.brand-lg .brand-divider { height: 36px; }
.brand-lg .brand-name { font-size: 2rem; }
.brand-lg .brand-sub  { font-size: 10px; }

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}
.nav-link {
  position: relative;
  font-size: 0.92rem;
  color: var(--ink-2);
  padding: 4px 0;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width 0.4s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }
.nav-link.is-active { color: var(--ink); font-weight: 700; }
.nav-link.is-active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-portal {
  display: none;
  font-size: 0.92rem;
  color: var(--ink-2);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  font-weight: 500;
  transition: color 0.2s, border-color 0.2s;
}
.nav-portal:hover { color: var(--ink); border-bottom-color: var(--ink); }
@media (min-width: 768px) {
  .nav-portal { display: inline-flex; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: 'Satoshi', sans-serif;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.18s var(--ease);
  will-change: transform;
  white-space: nowrap;
}
.btn-lg { padding: 14px 24px; font-size: 0.98rem; }
.btn-block { width: 100%; padding: 16px 24px; font-size: 1rem; }

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--lime);
  color: var(--ink);
}
.btn-primary:active { transform: translateY(1px) scale(0.98); }

.btn-ghost {
  border-color: var(--line-2);
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-ghost:active { transform: translateY(1px) scale(0.98); }

.section-dark .btn-ghost {
  border-color: rgba(242, 240, 236, 0.25);
  color: var(--paper);
}
.section-dark .btn-ghost:hover {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

/* Link arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: gap 0.4s var(--ease), color 0.25s, border-color 0.25s;
}
.link-arrow .arrow { transition: transform 0.4s var(--ease); display: inline-block; }
.link-arrow:hover {
  gap: 16px;
  color: var(--ink);
  border-bottom-color: var(--lime);
}
.link-arrow:hover .arrow { transform: translateX(3px); }

.link-arrow-light {
  color: var(--paper);
  border-bottom-color: rgba(242, 240, 236, 0.4);
}
.link-arrow-light:hover {
  color: var(--lime);
  border-bottom-color: var(--lime);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 72px 0 96px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero { padding: 112px 0 144px; }
}
.hero::before {
  content: '';
  position: absolute;
  inset: auto -10% -40% auto;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(198, 244, 50, 0.18) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(20px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: end;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 7fr 5fr; gap: 72px; }
}
.hero-left { position: relative; z-index: 1; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.hero-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-stat { display: flex; flex-direction: column; gap: 8px; }
.stat-num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mute);
  max-width: 18ch;
}

/* Hero right — structure stack */
.hero-right { position: relative; }
.stack-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 0 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mute);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--mute-2);
}
.dot-on {
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(198, 244, 50, 0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(198, 244, 50, 0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(198, 244, 50, 0.08); }
}
.stack {
  display: grid;
  gap: 12px;
}
.card-struct {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease), border-color 0.3s, box-shadow 0.4s;
  animation: floatCard 7s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.6s);
}
.card-struct:nth-child(2) { margin-left: clamp(0px, 4vw, 32px); }
.card-struct:nth-child(3) { margin-left: clamp(0px, 8vw, 64px); }
.card-struct:nth-child(4) { margin-left: clamp(0px, 12vw, 96px); }
.card-struct:hover {
  border-color: var(--ink);
  transform: translateX(-8px) translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}
.card-struct header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.card-struct h4 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 2px;
}
.card-struct p {
  font-size: 0.82rem;
  color: var(--mute);
  margin-bottom: 14px;
}
.bar {
  height: 5px;
  background: var(--paper-2);
  border-radius: 999px;
  overflow: hidden;
}
.bar span {
  display: block;
  height: 100%;
  background: var(--lime);
  border-radius: 999px;
  transform-origin: left;
  animation: barGrow 1.4s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 0.2s);
}
.card-struct .bar span { background: var(--ink); }
.card-struct.card-final .bar span { background: var(--lime); }
@keyframes barGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.tag {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--paper-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mute);
}
.tag-on {
  background: var(--lime);
  color: var(--ink);
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* ---------- MARQUEE ---------- */
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 44px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.025em;
  color: var(--paper);
  white-space: nowrap;
  animation: scrollX 38s linear infinite;
  padding-left: 44px;
}
.marquee-track em {
  color: var(--lime);
}
.marquee-bar {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 28px;
  flex-shrink: 0;
}
.marquee-bar i {
  width: 5px;
  background: var(--paper);
  display: block;
}
.marquee-bar i:nth-child(1) { height: 45%; }
.marquee-bar i:nth-child(2) { height: 62%; }
.marquee-bar i:nth-child(3) { height: 78%; }
.marquee-bar i:nth-child(4) { height: 100%; background: var(--lime); }
@keyframes scrollX {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- RAIL / SECTION HEADS ---------- */
.rail-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mute);
  margin-bottom: 20px;
}
.eyebrow-dark { color: rgba(242, 240, 236, 0.55); }
.rail-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mute-2);
  max-width: 28ch;
  line-height: 1.7;
}
.rail-text {
  color: var(--mute);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 36ch;
}
.rail-sticky {
  position: static;
  top: auto;
  align-self: start;
}
@media (min-width: 1024px) {
  .rail-sticky { position: sticky; top: 120px; }
}
.section-head { margin-bottom: 56px; }
.section-foot { margin-top: 56px; }
.rail-body > .body-lg,
.rail-body > .display-2 { margin-bottom: 32px; }
.rail-body > .link-arrow + .stats-row { margin-top: 48px; }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  border-top: 1px solid var(--line);
  padding-top: 36px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}
.stat-big {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 6px;
}

/* ---------- BENTO PILLARS ---------- */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
  }
  .pillar          { grid-column: span 6; }
  .pillar-lg       { grid-column: span 12; }
}
@media (min-width: 1024px) {
  .pillar          { grid-column: span 5; }
  .pillar-lg       { grid-column: span 7; }
}

.pillar {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.3s, box-shadow 0.4s;
  color: var(--ink);
}
.pillar-lg { min-height: 380px; padding: 32px; }
.pillar:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.pillar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(198, 244, 50, 0.15), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.pillar:hover::after { opacity: 1; }

.pillar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.pillar-viz {
  flex: 1;
  margin: 4px 0 18px;
  display: flex;
  align-items: center;
  color: var(--ink);
  min-height: 110px;
}
.pillar-viz svg { width: 100%; height: auto; }
.svg-mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  fill: var(--mute);
}
.svg-accent { stroke: var(--lime-2); }
.svg-accent-fill { fill: var(--lime-2); }
.svg-ink   { stroke: var(--ink); }
.svg-ink-fill { fill: var(--ink); }

.pillar-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 2.6vw, 2.4rem);
  line-height: 1.0;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: 10px;
}
.pillar-desc {
  color: var(--mute);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 40ch;
}
.pillar-arrow {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s, gap 0.4s var(--ease);
}
.pillar-arrow i { font-style: normal; color: inherit; transition: transform 0.4s var(--ease); }
.pillar:hover .pillar-arrow { gap: 14px; }
.pillar:hover .pillar-arrow i { transform: translateX(3px); }

.path-anim {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawPath 2.2s var(--ease) forwards;
}
@keyframes drawPath { to { stroke-dashoffset: 0; } }

/* ---------- STEPS ---------- */
.steps { border-top: 1px solid var(--line); }
.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.5s var(--ease);
}
@media (min-width: 768px) {
  .step {
    grid-template-columns: 140px 1fr;
    gap: 36px;
    padding: 48px 0;
  }
  .step:hover { padding-left: 12px; }
}
.step-num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-feature-settings: 'tnum';
  transition: color 0.3s;
}
.step:hover .step-num { color: var(--lime-2); }
.step-label { margin-bottom: 10px; }
.step-body h3 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
}
.step-body p {
  color: var(--mute);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 58ch;
  margin-bottom: 18px;
}
.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.step-tags li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-2);
  padding: 6px 12px;
  background: var(--paper-2);
  border-radius: 999px;
}

/* ---------- PROFILES ---------- */
.profiles { border-top: 1px solid rgba(242, 240, 236, 0.18); }
.profile {
  display: grid;
  grid-template-columns: 56px 1fr 40px;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(242, 240, 236, 0.18);
  font-size: 1.1rem;
  cursor: pointer;
  transition: padding 0.5s var(--ease);
}
@media (min-width: 768px) {
  .profile {
    grid-template-columns: 80px 1fr 48px;
    padding: 28px 0;
    font-size: 1.3rem;
  }
  .profile:hover { padding-left: 14px; }
}
.profile-num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0;
  color: var(--lime);
}
.profile-text {
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  color: var(--paper);
}
.profile-arrow {
  text-align: right;
  font-size: 1.25rem;
  color: var(--lime);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.profile:hover .profile-arrow {
  opacity: 1;
  transform: translateX(0);
}
.profile-foot { padding-top: 32px; }
.section-dark .body-lg { margin-top: 24px; }

/* ---------- CTA SECTION ---------- */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: end;
}
@media (min-width: 1024px) {
  .cta-grid { grid-template-columns: 7fr 5fr; gap: 80px; }
}
.cta-lede { margin-top: 24px; max-width: 50ch; }

.cta-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--ink-2);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(198, 244, 50, 0.18), transparent 60%);
  pointer-events: none;
}
.cta-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(242, 240, 236, 0.18);
}
.cta-card-head .mono { color: rgba(242, 240, 236, 0.55); }
.cta-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  position: relative;
}
.cta-card .btn-primary {
  background: var(--lime);
  color: var(--ink);
}
.cta-card .btn-primary:hover { background: var(--paper); color: var(--ink); }
.cta-card .btn-ghost {
  border-color: rgba(242, 240, 236, 0.25);
  color: var(--paper);
}
.cta-card .btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.cta-card-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(242, 240, 236, 0.55);
}
.cta-card-foot strong { color: var(--lime); font-weight: 600; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(12, 1fr); }
  .footer-brand { grid-column: span 5; }
  .footer-col   { grid-column: span 3; }
  .footer-col + .footer-col { grid-column: span 4; }
}
.footer-tag {
  margin-top: 24px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 1.9vw, 1.75rem);
  line-height: 1.18;
  letter-spacing: -0.022em;
  max-width: 38ch;
  color: var(--paper);
}
.footer-head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(242, 240, 236, 0.55);
  margin-bottom: 20px;
}
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list a {
  color: rgba(242, 240, 236, 0.85);
  font-weight: 500;
  transition: color 0.25s, padding-left 0.4s var(--ease);
}
.footer-list a:hover { color: var(--lime); padding-left: 8px; }
.footer-contacts { display: flex; flex-direction: column; gap: 18px; }
.footer-contacts a { display: block; transition: transform 0.4s var(--ease); }
.footer-contacts a:hover { transform: translateX(4px); }
.footer-contacts .mono { display: block; margin-bottom: 4px; color: rgba(242, 240, 236, 0.55); }
.footer-link {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  color: var(--paper);
  transition: color 0.25s;
}
.footer-contacts a:hover .footer-link { color: var(--lime); }
.footer-link i { font-style: normal; }

.footer-foot {
  padding-top: 28px;
  border-top: 1px solid rgba(242, 240, 236, 0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(242, 240, 236, 0.55);
}
@media (min-width: 768px) {
  .footer-foot { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 60ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 140ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 220ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 380ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================
   HOME DARK — gradiente verde com hero único
   ============================================ */
body.home-dark {
  background-color: #050605;
  background-image:
    radial-gradient(ellipse 110% 80% at 50% 28%, rgba(58, 86, 24, 0.55) 0%, rgba(30, 48, 14, 0.4) 28%, rgba(12, 18, 8, 0.6) 60%, rgba(5, 6, 5, 0.85) 100%);
  background-attachment: fixed;
  color: var(--paper);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
body.home-dark::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle 320px at 12% 110%, rgba(198, 244, 50, 0.10), transparent 70%),
    radial-gradient(circle 380px at 88% -10%, rgba(198, 244, 50, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
body.home-dark > *:not(.modal):not(.nav-mobile) { position: relative; z-index: 1; }
/* Override: o header precisa ficar acima dos demais blocos do body
   para o drawer mobile (dentro dele) renderizar acima do hero. */
body.home-dark > .nav { position: sticky; top: 0; z-index: 60; }

.home-dark .grain {
  mix-blend-mode: screen;
  opacity: 0.05;
}

/* Nav — dark variant */
.home-dark .nav {
  background: rgba(5, 6, 5, 0.92);
  border-bottom: 1px solid rgba(242, 240, 236, 0.12);
}
.home-dark .nav-row { height: 84px; }
.home-dark .nav-link { color: rgba(242, 240, 236, 0.7); }
.home-dark .nav-link:hover { color: var(--paper); }
.home-dark .nav-link:hover::after { background: var(--lime); }
.home-dark .nav-link.is-active { color: var(--paper); }
.home-dark .nav-link.is-active::after { background: var(--lime); }
.home-dark .nav-portal { color: rgba(242, 240, 236, 0.7); }
.home-dark .nav-portal:hover { color: var(--paper); border-bottom-color: var(--paper); }

/* Logo on dark — proporção mais discreta */
.home-dark .brand { gap: 14px; }
.home-dark .logo-mark {
  width: 38px;
  height: 38px;
  color: var(--paper);   /* bars 1-3 inherit via currentColor */
}
.home-dark .brand-divider {
  height: 34px;
  background: rgba(242, 240, 236, 0.22);
}
.home-dark .brand-name {
  color: var(--paper);
  font-size: 1.55rem;
  letter-spacing: -0.025em;
  line-height: 1;
}
.home-dark .brand-sub {
  color: rgba(242, 240, 236, 0.5);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  margin-top: 5px;
}

/* Hero — dark */
.home-dark .hero {
  border-bottom: none;
  padding: 64px 0 96px;
  min-height: calc(100dvh - 84px);
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  .home-dark .hero { padding: 80px 0 112px; }
}
.home-dark .hero::before { display: none; }
.home-dark .display-1 { color: var(--paper); }
.home-dark .display-1 em { color: var(--lime); }
.home-dark .lede { color: rgba(242, 240, 236, 0.72); }
.home-dark .stat-num { color: var(--paper); }
.home-dark .stat-label { color: rgba(242, 240, 236, 0.55); }
.home-dark .hero-foot { border-top-color: rgba(242, 240, 236, 0.12); }

/* Buttons — dark */
.home-dark .btn-primary { background: var(--lime); color: var(--ink); }
.home-dark .btn-primary:hover { background: var(--paper); color: var(--ink); }
.home-dark .btn-ghost {
  border-color: rgba(242, 240, 236, 0.28);
  color: var(--paper);
}
.home-dark .btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* Structure stack — glass dark */
.home-dark .card-struct {
  background: rgba(12, 16, 10, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(242, 240, 236, 0.10);
  box-shadow:
    0 24px 48px -28px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(242, 240, 236, 0.04);
}
.home-dark .card-struct:hover {
  border-color: rgba(198, 244, 50, 0.45);
}
.home-dark .card-struct h4 { color: var(--paper); }
.home-dark .card-struct p { color: rgba(242, 240, 236, 0.55); }
.home-dark .card-struct .mono.mute { color: rgba(242, 240, 236, 0.4); }
.home-dark .card-struct .bar { background: rgba(242, 240, 236, 0.08); }
.home-dark .card-struct .bar span { background: rgba(242, 240, 236, 0.6); }
.home-dark .card-struct.card-final .bar span { background: var(--lime); }
.home-dark .tag { background: rgba(242, 240, 236, 0.06); color: rgba(242, 240, 236, 0.55); }
.home-dark .tag-on { background: var(--lime); color: var(--ink); }

/* ============================================
   DARK THEME — overrides para subpáginas
   (cards/papers mantêm tema claro internamente)
   ============================================ */

/* Topbar — semi-transparente sobre gradiente */
.home-dark .topbar {
  background: rgba(8, 10, 6, 0.4);
  border-bottom-color: rgba(242, 240, 236, 0.08);
  color: rgba(242, 240, 236, 0.5);
}

/* Sections transparentes — gradiente atravessa */
.home-dark .section,
.home-dark .section-paper2,
.home-dark .section-dark {
  background: transparent;
  border-bottom-color: rgba(242, 240, 236, 0.10);
}

/* Headlines de display em paper */
.home-dark .display-2,
.home-dark .display-3 { color: var(--paper); }
.home-dark .display-2 em,
.home-dark .display-3 em { color: var(--lime); }
.home-dark .display-dark { color: var(--paper); }
.home-dark .display-dark em { color: var(--lime); }

/* Body em paper opaco */
.home-dark .body-lg { color: rgba(242, 240, 236, 0.72); }
.home-dark .body-dark { color: rgba(242, 240, 236, 0.72); }

/* Eyebrows / labels mute */
.home-dark .rail-eyebrow { color: rgba(242, 240, 236, 0.5); }
.home-dark .rail-eyebrow.eyebrow-dark { color: rgba(242, 240, 236, 0.5); }
.home-dark .rail-note { color: rgba(242, 240, 236, 0.5); }
.home-dark .rail-text { color: rgba(242, 240, 236, 0.65); }

/* Mono utilities (fora de cards claros) */
.home-dark .section > .wrap .mono.mute,
.home-dark .section > .wrap .mute {
  color: rgba(242, 240, 236, 0.55);
}

/* Link arrow — paper sobre dark */
.home-dark .section .link-arrow {
  color: var(--paper);
  border-bottom-color: rgba(242, 240, 236, 0.45);
}
.home-dark .section .link-arrow:hover {
  color: var(--lime);
  border-bottom-color: var(--lime);
}

/* Stats */
.home-dark .stat-big { color: var(--paper); }
.home-dark .stats-row { border-top-color: rgba(242, 240, 236, 0.12); }

/* Steps (metodo) — sem card, direto na gradiente */
.home-dark .steps { border-top-color: rgba(242, 240, 236, 0.12); }
.home-dark .step { border-bottom-color: rgba(242, 240, 236, 0.12); }
.home-dark .step-num { color: var(--paper); }
.home-dark .step:hover .step-num { color: var(--lime); }
.home-dark .step-body h3 { color: var(--paper); }
.home-dark .step-body p { color: rgba(242, 240, 236, 0.65); }
.home-dark .step-tags li {
  background: rgba(242, 240, 236, 0.08);
  color: rgba(242, 240, 236, 0.7);
}

/* Profiles list (para-quem-e e home dark) */
.home-dark .profiles { border-top-color: rgba(242, 240, 236, 0.15); }
.home-dark .profile { border-bottom-color: rgba(242, 240, 236, 0.15); }
.home-dark .profile-text { color: var(--paper); }
.home-dark .profile-num { color: var(--lime); }
.home-dark .profile-arrow { color: var(--lime); }
.home-dark .link-arrow-light {
  color: var(--paper);
  border-bottom-color: rgba(242, 240, 236, 0.45);
}
.home-dark .link-arrow-light:hover { color: var(--lime); border-bottom-color: var(--lime); }

/* FAQ — sem card, direto na gradiente */
.home-dark .faq-list { border-top-color: rgba(242, 240, 236, 0.15); }
.home-dark .faq-item { border-bottom-color: rgba(242, 240, 236, 0.15); }
.home-dark .faq-num { color: rgba(242, 240, 236, 0.5); }
.home-dark .faq-q { color: var(--paper); }
.home-dark .faq-a { color: rgba(242, 240, 236, 0.65); }
.home-dark .faq-toggle { color: var(--paper); }
.home-dark .faq-item.is-open .faq-q { color: var(--lime); }
.home-dark .faq-item.is-open .faq-toggle { color: var(--lime); }

/* Footer dark — gradiente atravessa, ajusta bordas */
.home-dark .footer {
  background: transparent;
  border-top: 1px solid rgba(242, 240, 236, 0.10);
  padding-top: 80px;
}
.home-dark .footer-foot { border-top-color: rgba(242, 240, 236, 0.10); }

/* ============================================
   SUBPÁGINAS — page header, FAQ, profiles deep,
   contact, next-page navigation
   ============================================ */

/* Page header (subpáginas) */
.page-header {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .page-header { padding: 104px 0 88px; }
}
.page-header::before {
  content: '';
  position: absolute;
  inset: auto -10% -50% auto;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(198, 244, 50, 0.16) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(20px);
}
.page-header-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .page-header-grid { grid-template-columns: 8fr 4fr; gap: 64px; }
}
.crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mute);
  margin-bottom: 28px;
}
.crumb a {
  color: var(--mute);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.crumb a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.crumb-sep { opacity: 0.4; }
.crumb-current { color: var(--ink); }

.page-h1 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: 24px;
}
.page-h1 em { color: var(--lime-2); }
.page-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--mute);
  max-width: 58ch;
}

.page-visual {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.page-visual-mark {
  width: clamp(160px, 22vw, 280px);
  height: clamp(160px, 22vw, 280px);
  color: var(--ink);
}

.page-meta {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  .page-meta { grid-template-columns: repeat(4, 1fr); }
}
.page-meta-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mute);
  line-height: 1.6;
}
.page-meta-item strong {
  display: block;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 6px;
  text-transform: none;
}

/* ---------- PILLARS — versão expandida (subpágina) ---------- */
.pillar-deep {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  transition: border-color 0.3s, box-shadow 0.4s;
}
@media (min-width: 1024px) {
  .pillar-deep {
    grid-template-columns: 4fr 8fr;
    padding: 48px;
    gap: 56px;
  }
}
.pillar-deep:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-card-hover);
}
.pillar-deep-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pillar-deep-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mute);
}
.pillar-deep-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  letter-spacing: -0.028em;
  line-height: 1;
  color: var(--ink);
}
.pillar-deep-desc {
  color: var(--mute);
  font-size: 1.05rem;
  line-height: 1.6;
}
.pillar-deep-viz {
  background: var(--paper-2);
  border-radius: var(--radius-md);
  padding: 24px;
  min-height: 160px;
  display: flex;
  align-items: center;
}
.pillar-deep-viz svg { width: 100%; height: auto; }
.pillar-deep-body { display: flex; flex-direction: column; gap: 28px; }
.pillar-deep-block h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mute);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pillar-deep-block h4::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 999px;
}
.pillar-deep-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 640px) {
  .pillar-deep-list { grid-template-columns: 1fr 1fr; }
}
.pillar-deep-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.98rem;
  color: var(--ink-2);
  line-height: 1.45;
}
.pillar-deep-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--ink);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ---------- METHOD STEP DEEP (subpágina) ---------- */
.steps-deep .step { padding: 56px 0; }
.step-deep-extra {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) {
  .step-deep-extra { grid-template-columns: repeat(2, 1fr); }
}
.step-deep-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mute);
  margin-bottom: 10px;
}
.step-deep-col p {
  font-size: 0.98rem;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 36ch;
}

/* ---------- PROFILE DEEP CARDS (subpágina) ---------- */
.profiles-deep {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) {
  .profiles-deep { grid-template-columns: repeat(2, 1fr); }
}
.profile-deep {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.5s var(--ease), border-color 0.3s, box-shadow 0.4s;
  min-height: 320px;
}
.profile-deep:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.profile-deep-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.profile-deep-num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--lime-2);
}
.profile-deep-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mute);
  padding: 4px 10px;
  background: var(--paper-2);
  border-radius: 999px;
}
.profile-deep h3 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.profile-deep p {
  color: var(--mute);
  font-size: 1rem;
  line-height: 1.55;
  flex: 1;
}
.profile-deep ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.profile-deep ul li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-2);
  padding: 6px 12px;
  background: var(--paper-2);
  border-radius: 999px;
}

/* ---------- FAQ ---------- */
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 56px 1fr 32px;
  gap: 18px;
  align-items: start;
  cursor: pointer;
  transition: padding 0.5s var(--ease);
}
@media (min-width: 768px) {
  .faq-item { grid-template-columns: 80px 1fr 40px; padding: 32px 0; gap: 28px; }
  .faq-item:hover { padding-left: 12px; }
}
.faq-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mute);
  padding-top: 6px;
}
.faq-content { min-width: 0; }
.faq-q {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 0;
  transition: color 0.25s;
}
.faq-item.is-open .faq-q { color: var(--lime-2); }
.faq-a {
  color: var(--mute);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 64ch;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), margin-top 0.4s var(--ease);
}
.faq-item.is-open .faq-a {
  max-height: 320px;
  opacity: 1;
  margin-top: 16px;
}
.faq-toggle {
  width: 24px;
  height: 24px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  color: var(--ink);
  transition: color 0.25s, transform 0.4s var(--ease);
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.4s var(--ease);
}
.faq-toggle::before { width: 12px; height: 1.5px; }
.faq-toggle::after  { width: 1.5px; height: 12px; }
.faq-item.is-open .faq-toggle { color: var(--lime-2); transform: rotate(180deg); }
.faq-item.is-open .faq-toggle::after { transform: scaleY(0); }

/* ---------- CONTACT (diagnóstico subpágina) ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.5s var(--ease), border-color 0.3s, box-shadow 0.4s;
  min-height: 280px;
}
.contact-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.contact-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-card-head .dot { width: 8px; height: 8px; }
.contact-card h3 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.contact-card p {
  color: var(--mute);
  font-size: 0.98rem;
  line-height: 1.55;
  flex: 1;
}
.contact-card .link-arrow { margin-top: auto; }

/* ---------- DIAGNÓSTICO FORM ---------- */
.diag-form-wrap {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .diag-form-wrap { padding: 48px; }
}
.diag-form-wrap::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(198, 244, 50, 0.20), transparent 65%);
  pointer-events: none;
}
.diag-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .diag-form { grid-template-columns: 1fr 1fr; }
  .diag-form .field-full { grid-column: 1 / -1; }
}
.field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(242, 240, 236, 0.55);
  margin-bottom: 10px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--paper);
  background: rgba(242, 240, 236, 0.05);
  border: 1px solid rgba(242, 240, 236, 0.18);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 0.25s, background 0.25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--lime);
  background: rgba(198, 244, 50, 0.05);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(242, 240, 236, 0.35); }
.field textarea { min-height: 120px; resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M3 4.5L6 7.5L9 4.5' stroke='%23F2F0EC' stroke-width='1.4' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.diag-submit-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}
.diag-fineprint {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(242, 240, 236, 0.55);
}
.diag-fineprint strong { color: var(--lime); font-weight: 600; }
.diag-form .btn-primary {
  background: var(--lime);
  color: var(--ink);
}
.diag-form .btn-primary:hover { background: var(--paper); color: var(--ink); }

/* ---------- NEXT-PAGE NAV ---------- */
.next-page {
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.next-page-inner {
  padding: 64px 0;
}
.next-page a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  transition: padding-left 0.5s var(--ease);
}
.next-page a:hover { padding-left: 16px; }
.next-page-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mute);
  margin-bottom: 14px;
  display: block;
}
.next-page-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  letter-spacing: -0.028em;
  line-height: 1;
  color: var(--ink);
  transition: color 0.25s;
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
}
.next-page a:hover .next-page-title { color: var(--lime-2); }
.next-page-arrow {
  display: inline-block;
  transition: transform 0.5s var(--ease);
}
.next-page a:hover .next-page-arrow { transform: translateX(10px); }

/* ---------- HOME PILLAR MINI (resumo) ---------- */
.home-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .home-pillars { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (min-width: 1024px) {
  .home-pillars { grid-template-columns: repeat(4, 1fr); }
}
.home-pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.5s var(--ease), border-color 0.3s, box-shadow 0.4s;
  position: relative;
  min-height: 200px;
}
.home-pillar:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.home-pillar-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mute);
}
.home-pillar h3 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.65rem;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.home-pillar p {
  color: var(--mute);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}
.home-pillar-arrow {
  margin-top: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s, gap 0.4s var(--ease);
}
.home-pillar-arrow i { transition: transform 0.4s var(--ease); }
.home-pillar:hover .home-pillar-arrow { gap: 14px; }
.home-pillar:hover .home-pillar-arrow i { transform: translateX(3px); }

/* ---------- HOME METHOD COMPACT ---------- */
.home-method {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .home-method { grid-template-columns: repeat(3, 1fr); }
}
.home-step {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.home-step-num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 10px;
}
.home-step h4 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.home-step p {
  color: var(--mute);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 32ch;
}

/* ============================================
   PROGRESS WIDGET — barras crescentes (ecoa marca)
   ============================================ */
.progress-widget {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}
.progress-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 220px;
  width: 100%;
  max-width: 180px;
}
.progress-bar {
  flex: 1;
  height: 100%;
  position: relative;
  background: rgba(242, 240, 236, 0.06);
  border-radius: 4px;
  overflow: hidden;
}
.progress-bar > span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: var(--paper);
  border-radius: 4px;
  transition: height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -1px 0 rgba(242, 240, 236, 0.15);
}
.progress-bar-lime > span { background: var(--lime); }
.progress-bar-lime > span.full {
  box-shadow:
    0 -1px 0 var(--lime),
    0 0 20px rgba(198, 244, 50, 0.4);
}

.progress-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(242, 240, 236, 0.5);
  line-height: 1.6;
}
.progress-count {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.65rem;
  letter-spacing: -0.025em;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: 'Cabinet Grotesk', sans-serif;
  text-transform: none;
}
.progress-count .progress-num { color: var(--lime); }
.progress-count .progress-of {
  color: rgba(242, 240, 236, 0.45);
  font-size: 1rem;
}
.progress-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(242, 240, 236, 0.5);
  max-width: 18ch;
}
@media (max-width: 1023px) {
  .progress-widget { display: none; }
}

/* Intro do formulário (texto que vinha na lateral) */
.diag-intro {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(242, 240, 236, 0.72);
  max-width: 56ch;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(242, 240, 236, 0.12);
}

/* ============================================
   DIAG FORM LONG — formulário de diagnóstico (10 perguntas)
   ============================================ */
.diag-form-long {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.form-section {
  border: none;
  padding: 0;
  margin: 0;
}
.form-section + .form-section {
  padding-top: 32px;
  border-top: 1px solid rgba(242, 240, 236, 0.18);
}
.form-section-title {
  display: block;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: var(--paper);
  padding: 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .field-full { grid-column: 1 / -1; }
}
.question { margin-bottom: 18px; }
.question:last-of-type { margin-bottom: 0; }
.question label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--paper);
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: 0;
}
.q-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lime);
  padding: 4px 8px;
  background: rgba(198, 244, 50, 0.12);
  border-radius: 6px;
  flex-shrink: 0;
  font-weight: 500;
  line-height: 1;
  margin-top: 1px;
}
.diag-form-long .field textarea {
  min-height: 88px;
  resize: vertical;
}

/* Submit row */
.diag-form-long .diag-submit-row {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(242, 240, 236, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.diag-form-long .btn-primary {
  background: var(--lime);
  color: var(--ink);
}
.diag-form-long .btn-primary:hover { background: var(--paper); color: var(--ink); }
.diag-form-long .btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* Estado de sucesso */
.form-success {
  text-align: center;
  padding: 48px 32px;
  color: var(--paper);
}
.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.form-success h3 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: var(--paper);
}
.form-success p {
  color: rgba(242, 240, 236, 0.7);
  max-width: 48ch;
  margin: 0 auto 28px;
  line-height: 1.55;
  font-size: 1.02rem;
}
.form-success p strong { color: var(--lime); font-weight: 700; }

/* ============================================
   TEAM CARDS (sobre) — cartões claros sobre gradiente
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
.team-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--ink);
  transition: transform 0.5s var(--ease), border-color 0.3s, box-shadow 0.4s;
  min-height: 360px;
}
.team-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  position: relative;
  margin-bottom: 4px;
}
.team-avatar::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.3s, inset 0.3s;
}
.team-card:hover .team-avatar::after { opacity: 1; inset: -4px; }
.team-name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.022em;
  line-height: 1.1;
  color: var(--ink);
}
.team-role {
  color: var(--mute);
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 4px;
}
.team-bio {
  color: var(--mute);
  font-size: 0.92rem;
  line-height: 1.55;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* ============================================
   MODAL (solucoes "Saiba mais" pop-ups)
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal[open] { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 5, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.modal-content {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  border-radius: 24px;
  padding: 36px 40px;
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 60px 100px -40px rgba(0,0,0,0.6);
  animation: modalIn 0.35s var(--ease);
}
@keyframes modalIn {
  from { transform: translateY(20px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0)    scale(1);    opacity: 1; }
}
.modal-icon {
  width: 44px;
  height: 44px;
  background: rgba(198, 244, 50, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  margin-bottom: 22px;
}
.modal-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, color 0.2s;
  color: var(--ink);
}
.modal-close:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.modal-close svg { width: 14px; height: 14px; }
.modal-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  color: var(--ink);
}
.modal-subtitle {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.modal-desc {
  color: var(--mute);
  font-size: 0.96rem;
  line-height: 1.55;
  margin-bottom: 22px;
}
.modal-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 24px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 520px) {
  .modal-list { grid-template-columns: 1fr 1fr; }
}
.modal-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--ink-2);
  line-height: 1.3;
}
.modal-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: rgba(198, 244, 50, 0.3);
  border-radius: 999px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M3 6.5L5 8.5L9 4' stroke='%230A0A0A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.modal-result {
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--mute);
}
.modal-result strong { color: var(--ink); font-weight: 700; }

@media (max-width: 520px) {
  .modal-content { padding: 28px 24px; border-radius: 20px; }
  .modal-title { font-size: 1.6rem; }
}

/* Modal de sucesso (form diagnóstico) */
.modal-success-content {
  text-align: center;
  padding: 56px 40px 44px;
  max-width: 460px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modal-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  box-shadow: 0 0 0 8px rgba(198, 244, 50, 0.18);
}
.modal-success-content .modal-title {
  font-size: 2.1rem;
  margin-bottom: 14px;
}
.modal-success-text {
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--mute);
  max-width: 38ch;
  margin: 0 auto 28px;
  letter-spacing: 0;
}
.modal-success-text em {
  font-style: normal;
  color: var(--lime-2);
  font-weight: 600;
}
.modal-success-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 280px;
  margin: 0 auto;
}
.modal-success-actions .btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.modal-success-actions .btn-primary:hover {
  background: var(--lime);
  color: var(--ink);
}
.modal-success-actions .btn-ghost {
  border-color: var(--line);
  color: var(--ink);
}
.modal-success-actions .btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ============================================
   MENU MOBILE — hamburger + drawer fullscreen
   (somente em viewports < 1024px)
   ============================================ */

/* Botão hamburger — escondido por padrão (desktop) */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(242, 240, 236, 0.22);
  border-radius: 999px;
  position: relative;
  z-index: 51;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.25s, background 0.25s;
}
.nav-toggle:hover { border-color: var(--lime); }
.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1.6px;
  background: var(--paper);
  transition: all 0.35s var(--ease);
  border-radius: 999px;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 20px; width: 12px; left: 15px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle[aria-expanded="true"] { border-color: var(--lime); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
  background: var(--lime);
  left: 12px;
  width: 18px;
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
  background: var(--lime);
}

/* Drawer mobile — escondido por padrão */
.nav-mobile {
  position: fixed;
  inset: 0;
  background-color: #050605;
  background-image: radial-gradient(ellipse 110% 80% at 50% 30%, rgba(58, 86, 24, 0.55) 0%, rgba(30, 48, 14, 0.4) 28%, rgba(12, 18, 8, 0.65) 60%, rgba(5, 6, 5, 0.95) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  flex-direction: column;
  padding: 100px 24px 32px;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.35s var(--ease), transform 0.45s var(--ease);
  overflow-y: auto;
}
.nav-mobile[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-mobile-nav {
  display: flex;
  flex-direction: column;
}
.nav-mobile-nav a {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 6vw, 2.4rem);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--paper);
  padding: 20px 0;
  border-bottom: 1px solid rgba(242, 240, 236, 0.08);
  transition: color 0.25s, padding-left 0.4s var(--ease);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-mobile-nav a::after {
  content: '→';
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.35s var(--ease);
  color: var(--lime);
  font-weight: 500;
}
.nav-mobile-nav a.is-active {
  color: var(--lime);
  padding-left: 6px;
}
.nav-mobile-nav a.is-active::after { opacity: 1; transform: translateX(0); }
.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(242, 240, 236, 0.08);
}
.nav-mobile-actions .btn {
  width: 100%;
  padding: 16px 20px;
  font-size: 0.98rem;
  border-radius: 999px;
}

/* Ativa o menu mobile abaixo de 1024px */
@media (max-width: 1023px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-mobile { display: flex; }
  .home-dark .nav-portal { display: none; }
  .home-dark .nav-row { gap: 12px; }
  /* Remove sticky do rail em mobile — evita sobreposição ao rolar */
  .rail-sticky { position: static; top: auto; align-self: auto; }
}

/* Garantia: nunca aparece em desktop */
@media (min-width: 1024px) {
  .nav-toggle,
  .nav-mobile { display: none !important; }
}

/* Telas muito pequenas (smartphones) */
@media (max-width: 480px) {
  .home-dark .brand-divider,
  .home-dark .brand-sub { display: none; }
  .home-dark .brand { gap: 10px; }
  .home-dark .nav-actions { gap: 8px; }
  .home-dark .nav-actions .btn-primary {
    padding: 9px 14px;
    font-size: 0.85rem;
  }
  .home-dark .nav-actions .btn-primary svg { display: none; }
}

/* ---------- MOBILE TUNING ---------- */
@media (max-width: 767px) {
  .hero { padding: 56px 0 64px; }
  .hero-foot {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    justify-items: center;
    text-align: center;
  }
  .hero-stat { align-items: center; }
  .hero-stat .stat-num { font-size: clamp(1.9rem, 9vw, 2.4rem); }
  .hero-stat .stat-label {
    font-size: 8.5px;
    letter-spacing: 0.16em;
    max-width: 12ch;
  }
  .display-1 { font-size: clamp(2.5rem, 9vw, 3.5rem); }
  .card-struct:nth-child(2),
  .card-struct:nth-child(3),
  .card-struct:nth-child(4) { margin-left: 0; }
  .pillar { min-height: 280px; padding: 22px; }
  .pillar-lg { min-height: 320px; padding: 24px; }
  .marquee-track { font-size: 1.85rem; gap: 28px; padding-left: 24px; }
}

/* ---------- STRUCTURE CARDS — tap-to-activate ---------- */
.card-struct { cursor: pointer; }
.card-struct:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}
.card-struct .bar span {
  transition: width 0.7s var(--ease), background 0.3s;
}
.card-struct.is-active {
  border-color: var(--lime);
  transform: translateX(-8px) translateY(-3px);
  box-shadow: 0 24px 60px -28px rgba(198, 244, 50, 0.45), var(--shadow-card-hover);
}
.card-struct.is-active .bar span {
  width: 100% !important;
  background: var(--lime) !important;
}
.home-dark .card-struct.is-active {
  border-color: var(--lime);
  background: rgba(198, 244, 50, 0.08);
  box-shadow: 0 24px 60px -28px rgba(198, 244, 50, 0.5);
}
.home-dark .card-struct.is-active h4 { color: var(--lime); }
.card-struct.is-active .tag {
  background: var(--lime);
  color: var(--ink);
}
.card-struct.is-active .mono.mute { color: var(--lime); }
.home-dark .card-struct.is-active .mono.mute { color: var(--lime); }
