/* viny.ai — landing v2 · brand kit aplicado */

:root {
  --paper: #F5F2EA;
  --paper-2: #ECE7DA;
  --paper-3: #E2DCC9;
  --ink: #07120E;
  --ink-2: #16241E;
  --ink-3: #3E544C;
  --ink-4: #6F8278;
  --green-deep: #0F3D2E;
  --green-mid: #1A6B4E;
  --green-volt: #00E27A;
  --rule: #D9D2BF;
  --rule-dark: #1F2D27;
  --danger: #C0392B;
  --sans: "Inter Tight", system-ui, sans-serif;
  --serif: "Fraunces", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
::selection { background: var(--green-volt); color: var(--ink); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ========== TIPO ========== */
.cap { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }
.cap .num { color: var(--green-mid); font-weight: 600; }
.cap.dark { color: var(--ink-4); }
.cap.dark .num { color: var(--green-volt); }

.h-display { font-family: var(--sans); font-weight: 500; font-size: clamp(48px, 8vw, 128px); line-height: 0.9; letter-spacing: -0.045em; margin: 0; text-wrap: balance; color: var(--ink); }
.h-display em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--green-mid); }
.h1 { font-family: var(--sans); font-weight: 500; font-size: clamp(36px, 5vw, 72px); line-height: 0.96; letter-spacing: -0.04em; margin: 0; text-wrap: balance; }
.h1 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--green-mid); }
.h2 { font-family: var(--sans); font-weight: 500; font-size: clamp(26px, 3vw, 42px); line-height: 1.0; letter-spacing: -0.03em; margin: 0; text-wrap: balance; }
.h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--green-mid); }
.h3 { font-family: var(--sans); font-weight: 500; font-size: clamp(19px, 1.6vw, 24px); line-height: 1.15; letter-spacing: -0.02em; margin: 0; }
.h3 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--green-mid); }
.body-l { font-size: clamp(17px, 1.3vw, 20px); line-height: 1.5; color: var(--ink-2); text-wrap: pretty; margin: 0; }
.body { font-size: 16px; line-height: 1.6; color: var(--ink-2); margin: 0; }
.body-s { font-size: 14px; line-height: 1.55; color: var(--ink-3); margin: 0; }
.mono-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.mono-tag.dark { color: var(--ink-4); }

/* ========== NAV ========== */
.nav { position: sticky; top: 0; z-index: 80; background: color-mix(in oklch, var(--paper) 92%, transparent); backdrop-filter: blur(14px); border-bottom: 1px solid var(--rule); }
.nav-in { display: flex; justify-content: space-between; align-items: center; height: 64px; gap: 20px; }
.nav-mark { display: flex; align-items: center; gap: 10px; }
.nav-mark .name { font-family: var(--sans); font-weight: 500; font-size: 19px; letter-spacing: -0.04em; color: var(--ink); display: inline-flex; align-items: baseline; }
.nav-mark .name .d { color: var(--green-volt); font-size: 0.6em; transform: translateY(-0.18em); display: inline-block; margin-left: 0.04em; }
.toc { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.toc a { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.toc a:hover { color: var(--ink); }
@media (max-width: 980px) { .toc a:not(.toc-cta) { display: none; } }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 999px; font-family: var(--sans); font-weight: 500; font-size: 14px; letter-spacing: -0.01em; transition: transform .15s ease, background .2s ease; cursor: pointer; }
.btn-primary { background: var(--ink); color: var(--paper); border: 1px solid var(--ink); }
.btn-primary:hover { background: var(--green-deep); border-color: var(--green-deep); transform: translateY(-1px); }
.btn-volt { background: var(--green-volt); color: var(--ink); border: 1px solid var(--green-volt); }
.btn-volt:hover { background: var(--ink); color: var(--green-volt); border-color: var(--ink); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--rule); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-l { padding: 16px 24px; font-size: 15px; }
.btn .arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ========== HERO ========== */
.hero { padding: clamp(72px, 12vh, 144px) 0 clamp(48px, 8vh, 96px); position: relative; overflow: hidden; border-bottom: 1px solid var(--rule); }
.hero .grid-bg { position: absolute; inset: 0; background-image: linear-gradient(to right, color-mix(in oklch, var(--ink) 4%, transparent) 1px, transparent 1px); background-size: 80px 80px; pointer-events: none; opacity: 0.5; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; position: relative; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
.hero-copy .cap { margin-bottom: 24px; }
.hero-copy .h-display { margin-bottom: 24px; }
.hero-copy .lede { max-width: 56ch; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-ctas .meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-left: 8px; }

/* ========== ORG LIVE ========== */
.org { background: var(--ink); border-radius: 6px; padding: 22px; position: relative; overflow: hidden; min-height: 480px; display: flex; flex-direction: column; box-shadow: 0 32px 64px -32px rgba(7,18,14,0.4); }
.org-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--rule-dark); }
.org-head .ttl { font-family: var(--sans); font-weight: 500; font-size: 13px; color: var(--paper); display: flex; align-items: center; gap: 8px; }
.org-head .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--green-volt); box-shadow: 0 0 0 0 var(--green-volt); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(0,226,122,0.6); } 50% { box-shadow: 0 0 0 7px rgba(0,226,122,0); } }
.org-head .meta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-4); }
.org-head .meta b { color: var(--green-volt); font-weight: 500; }
.org-tree { padding: 18px 4px 4px; display: flex; flex-direction: column; gap: 10px; }
.org-row { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.org-node { display: flex; align-items: center; gap: 10px; padding: 9px 13px 9px 9px; background: color-mix(in oklch, var(--ink) 70%, var(--ink-2)); border: 1px solid var(--rule-dark); border-radius: 999px; transition: all .3s ease; }
.org-node.active { border-color: var(--green-volt); background: color-mix(in oklch, var(--green-volt) 8%, var(--ink-2)); }
.org-node .av { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--sans); font-weight: 600; font-size: 11px; color: var(--paper); flex-shrink: 0; }
.org-node .av.gh-1 { background: #B85C3F; }
.org-node .av.gh-2 { background: #4A6B5B; }
.org-node .av.gh-3 { background: #7B6A48; }
.org-node .av.gh-4 { background: #5C4A6B; }
.org-node .av.gh-5 { background: #8B5A7A; }
.org-node .av.bot { background: var(--ink); border: 1px solid var(--green-volt); color: var(--green-volt); font-family: var(--mono); font-size: 12px; font-weight: 500; }
.org-node .role { font-family: var(--sans); font-size: 12px; color: var(--paper); white-space: nowrap; }
.org-node .role b { font-weight: 500; }
.org-node .role .sm { font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-4); display: block; line-height: 1.3; }
.org-node.active .role .sm { color: var(--green-volt); }
.org-feed { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--rule-dark); display: flex; flex-direction: column; gap: 6px; min-height: 110px; }
.feed-line { display: flex; gap: 10px; align-items: baseline; font-family: var(--mono); font-size: 11px; color: var(--ink-4); animation: feedIn .4s ease; }
@keyframes feedIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.feed-line .t { color: var(--green-volt); flex-shrink: 0; }
.feed-line .who { color: var(--paper); flex-shrink: 0; }
.feed-line .what { color: var(--ink-4); }

/* ========== SECTION ========== */
.section { padding: clamp(72px, 11vh, 144px) 0; border-bottom: 1px solid var(--rule); position: relative; }
.section.dark { background: var(--ink); color: var(--paper); border-bottom-color: var(--rule-dark); }
.section.dark .h1, .section.dark .h2, .section.dark .h3, .section.dark .h-display { color: var(--paper); }
.section.dark .body-l, .section.dark .body { color: color-mix(in oklch, var(--paper) 78%, transparent); }
.section.dark .body-s { color: color-mix(in oklch, var(--paper) 60%, transparent); }
.section.deep { background: var(--green-deep); color: var(--paper); border-bottom-color: var(--rule-dark); }
.section.deep .h1, .section.deep .h2, .section.deep .h3, .section.deep .h-display { color: var(--paper); }
.section.deep .h1 em, .section.deep .h2 em, .section.deep .h3 em, .section.deep .h-display em { color: var(--green-volt); }
.section.deep .body-l, .section.deep .body { color: color-mix(in oklch, var(--paper) 82%, transparent); }
.section.paper-2 { background: var(--paper-2); }

.head-row { display: grid; grid-template-columns: 280px 1fr; gap: clamp(24px, 5vw, 80px); margin-bottom: clamp(40px, 7vh, 72px); align-items: end; }
@media (max-width: 880px) { .head-row { grid-template-columns: 1fr; gap: 14px; } }

/* ========== CARDS ========== */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 880px) { .cards-3, .cards-2 { grid-template-columns: 1fr; } }
.card { padding: 28px; border: 1px solid var(--rule); border-radius: 4px; background: var(--paper-2); }
.card.dark { background: color-mix(in oklch, var(--ink) 70%, var(--ink-2)); border-color: var(--rule-dark); color: var(--paper); }
.card.dark .body, .card.dark .body-s { color: color-mix(in oklch, var(--paper) 78%, transparent); }
.card.dark .h3 { color: var(--paper); }
.card .body, .card .body-s { margin-top: 10px; }
.card .num-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 14px; }
.card.dark .num-tag { color: var(--green-volt); }

/* ========== BLAIR WARREN PILLARS ========== */
.pillars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; }
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pillars { grid-template-columns: 1fr; } }
.pillar { padding: 28px 22px; background: var(--paper-2); display: flex; flex-direction: column; gap: 12px; min-height: 280px; }
.pillar .num-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-mid); }
.pillar h3 { font-family: var(--sans); font-weight: 500; font-size: 22px; line-height: 1.05; letter-spacing: -0.02em; margin: 0; color: var(--ink); text-wrap: balance; }
.pillar h3 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--green-mid); }
.pillar p { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin: 0; text-wrap: pretty; }

/* ========== AUDIENCE TABS ========== */
.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .audience { grid-template-columns: 1fr; } }
.aud-card { padding: 36px 32px; border: 1px solid var(--rule); border-radius: 6px; background: var(--paper); display: flex; flex-direction: column; gap: 16px; transition: all .25s ease; position: relative; overflow: hidden; }
.aud-card:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: 0 24px 48px -32px rgba(7,18,14,0.25); }
.aud-card .who { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; padding-bottom: 22px; border-bottom: 1px solid var(--rule); margin-bottom: 4px; }
.aud-card .who-mark { font-family: var(--mono); font-size: 16px; color: var(--green-mid); font-weight: 600; line-height: 1; opacity: 0.7; }
.aud-card .who-label { font-family: var(--sans); font-weight: 600; font-size: clamp(34px, 3.4vw, 44px); line-height: 1.0; letter-spacing: -0.035em; color: var(--ink); margin: 0; text-transform: none; }
.aud-card .who-sub { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-mid); font-weight: 600; }
.aud-card h3 { font-family: var(--sans); font-weight: 500; font-size: 28px; line-height: 1.0; letter-spacing: -0.025em; margin: 0; text-wrap: balance; }
.aud-card h3 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--green-mid); }
.aud-card p { font-size: 15px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.aud-card ul { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 8px; }
.aud-card li { font-size: 14px; line-height: 1.5; color: var(--ink-2); padding-left: 18px; position: relative; }
.aud-card li::before { content: "→"; position: absolute; left: 0; color: var(--green-mid); font-family: var(--mono); }
.aud-card .price { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: baseline; }
.aud-card .price .v { font-family: var(--sans); font-weight: 500; font-size: 22px; letter-spacing: -0.02em; color: var(--ink); }
.aud-card .price .v em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--green-mid); }
.aud-card .price .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.aud-card .cta { margin-top: 14px; }

/* ========== SHIFT (mundo antigo vs novo) ========== */
.shift { display: grid; grid-template-columns: 1fr 80px 1fr; gap: 0; border: 1px solid var(--rule); border-radius: 6px; overflow: hidden; }
@media (max-width: 880px) { .shift { grid-template-columns: 1fr; } }
.shift-side { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; gap: 18px; }
.shift-side.old { background: var(--paper-2); color: var(--ink); }
.shift-side.new { background: var(--ink); color: var(--paper); }
.shift-side.old h3 { color: var(--ink); }
.shift-side.old h3 em { color: var(--green-deep); }
.shift-side .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.shift-side.old .lbl { color: var(--ink-3); }
.shift-side.new .lbl { color: var(--green-volt); }
.shift-side h3 { font-family: var(--sans); font-weight: 500; font-size: clamp(24px, 2.6vw, 32px); line-height: 1.05; letter-spacing: -0.025em; margin: 0; text-wrap: balance; }
.shift-side h3 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--green-mid); }
.shift-side.new h3 em { color: var(--green-volt); }
.shift-side ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.shift-side li { font-size: 15px; line-height: 1.5; padding-left: 22px; position: relative; }
.shift-side.old li { color: var(--ink-3); }
.shift-side.old li::before { content: "✕"; position: absolute; left: 0; color: var(--danger); font-family: var(--mono); font-size: 13px; }
.shift-side.new li { color: color-mix(in oklch, var(--paper) 88%, transparent); }
.shift-side.new li::before { content: "✓"; position: absolute; left: 0; color: var(--green-volt); font-family: var(--mono); font-size: 13px; }
.shift-arrow { display: flex; align-items: center; justify-content: center; background: var(--green-deep); color: var(--green-volt); font-family: var(--mono); font-size: 24px; }
@media (max-width: 880px) { .shift-arrow { padding: 16px 0; transform: rotate(90deg); } }

/* ========== CASES ========== */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule-dark); border: 1px solid var(--rule-dark); border-radius: 4px; overflow: hidden; }
@media (max-width: 880px) { .cases { grid-template-columns: 1fr; } }
.case { padding: 36px 28px; background: color-mix(in oklch, var(--ink) 70%, var(--ink-2)); color: var(--paper); display: flex; flex-direction: column; gap: 14px; }
.case .who { font-family: var(--sans); font-weight: 600; font-size: 15px; letter-spacing: -0.01em; color: var(--paper); }
.case .who .dot { color: var(--green-volt); }
.case .v { font-family: var(--sans); font-weight: 500; font-size: clamp(38px, 4vw, 56px); line-height: 0.9; letter-spacing: -0.04em; color: var(--paper); margin: 4px 0; }
.case .v em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--green-volt); }
.case .v .unit { font-family: var(--sans); font-size: 0.45em; color: var(--ink-4); font-weight: 400; letter-spacing: 0; margin-left: 6px; }
.case .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-4); }
.case p { font-size: 14px; line-height: 1.5; color: color-mix(in oklch, var(--paper) 70%, transparent); margin-top: auto; padding-top: 14px; border-top: 1px solid var(--rule-dark); }

/* ========== COMPARE ========== */
.compare-wrap { background: var(--paper-2); border: 1px solid var(--rule); border-radius: 6px; overflow: hidden; }
.compare { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--rule); font-size: 14.5px; }
.compare th { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; background: var(--paper); }
.compare th.viny { background: var(--ink); color: var(--green-volt); }
.compare td.viny { background: color-mix(in oklch, var(--green-volt) 6%, var(--paper)); color: var(--ink); font-weight: 500; }
.compare td.feat { font-family: var(--sans); font-weight: 500; color: var(--ink); }
.compare tr:last-child td { border-bottom: 0; }
.compare .check { color: var(--green-mid); font-family: var(--mono); }
.compare td.viny .check { color: var(--green-mid); font-weight: 600; }
.compare .x { color: var(--danger); font-family: var(--mono); opacity: 0.6; }
@media (max-width: 760px) { .compare th, .compare td { padding: 12px 10px; font-size: 12.5px; } }

/* ========== STAT BIG ========== */
.stat-big { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 80px); align-items: center; }
@media (max-width: 880px) { .stat-big { grid-template-columns: 1fr; } }
.stat-big .num { font-family: var(--sans); font-weight: 500; font-size: clamp(96px, 16vw, 240px); line-height: 0.85; letter-spacing: -0.06em; color: var(--green-volt); }
.stat-big .num em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.stat-big .num .x { color: var(--paper); font-size: 0.5em; vertical-align: 0.2em; margin-left: -0.05em; }

/* ========== PRODUCTS ========== */
.products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (max-width: 880px) { .products { grid-template-columns: 1fr; } }
.product { display: grid; grid-template-columns: 64px 1fr auto; gap: 18px; padding: 22px; align-items: center; background: var(--paper-2); border: 1px solid var(--rule); border-radius: 4px; transition: all .2s ease; }
.product:hover { border-color: var(--ink); transform: translateX(2px); }
.product .icon { width: 64px; height: 64px; border-radius: 14px; background: var(--ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; }
.product .icon svg { width: 32px; height: 32px; }
.product .who { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.product .ttl { font-family: var(--sans); font-weight: 500; font-size: 19px; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); margin: 0 0 4px; }
.product .ttl em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--green-mid); }
.product .desc { font-size: 13px; color: var(--ink-3); margin: 0; line-height: 1.4; }
.product .arr { font-family: var(--mono); font-size: 18px; color: var(--ink-3); }

/* ========== STEPS ========== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 24px; background: var(--paper-2); border: 1px solid var(--rule); border-radius: 4px; display: flex; flex-direction: column; gap: 10px; }
.step .n { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; color: var(--green-mid); font-weight: 600; }
.step h4 { font-family: var(--sans); font-weight: 500; font-size: 18px; letter-spacing: -0.015em; margin: 0; color: var(--ink); }
.step h4 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--green-mid); }
.step p { font-size: 13.5px; color: var(--ink-3); line-height: 1.5; margin: 0; }

/* ========== MARKET ========== */
.market { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px) { .market { grid-template-columns: 1fr; } }
.market-card { padding: 28px; background: color-mix(in oklch, var(--ink) 70%, var(--ink-2)); border: 1px solid var(--rule-dark); border-radius: 6px; }
.market-card .v { font-family: var(--sans); font-weight: 500; font-size: clamp(40px, 4vw, 56px); line-height: 0.9; letter-spacing: -0.035em; color: var(--green-volt); margin-bottom: 10px; }
.market-card .v em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.market-card .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 12px; }
.market-card p { font-size: 14px; line-height: 1.5; color: color-mix(in oklch, var(--paper) 75%, transparent); margin: 0; }

/* ========== ROADMAP ========== */
.road { position: relative; padding-left: 40px; }
.road::before { content: ""; position: absolute; left: 14px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, var(--green-volt) 0%, var(--green-mid) 50%, var(--rule-dark) 100%); }
.road-row { display: grid; grid-template-columns: 200px 1fr; gap: 32px; padding: 18px 0; align-items: baseline; position: relative; }
@media (max-width: 720px) { .road-row { grid-template-columns: 1fr; gap: 6px; } }
.road-row::before { content: ""; position: absolute; left: -34px; top: 22px; width: 14px; height: 14px; border-radius: 50%; background: var(--ink); border: 2px solid var(--green-volt); }
.road-row.future::before { background: var(--ink); border-color: var(--ink-4); }
.road-row .when { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-volt); }
.road-row.future .when { color: var(--ink-4); }
.road-row .what { font-family: var(--sans); font-weight: 500; font-size: 17px; line-height: 1.35; color: var(--paper); margin: 0; text-wrap: pretty; }
.road-row.future .what { color: color-mix(in oklch, var(--paper) 65%, transparent); }
.road-row .what em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--green-volt); }

/* ========== FOUNDER ========== */
.founder { display: grid; grid-template-columns: 220px 1fr; gap: clamp(28px, 5vw, 56px); align-items: start; padding: clamp(36px, 5vw, 56px); background: var(--paper-2); border: 1px solid var(--rule); border-radius: 6px; }
@media (max-width: 760px) { .founder { grid-template-columns: 1fr; } }
.founder .ph { aspect-ratio: 4/5; background: var(--ink); border-radius: 4px; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 18px; }
.founder .ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.04) contrast(1.04); }
.founder .ph::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, color-mix(in oklch, var(--ink) 78%, transparent) 100%); pointer-events: none; }
.founder .ph .name { position: relative; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-volt); z-index: 1; }
.founder blockquote { font-family: var(--sans); font-weight: 500; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.15; letter-spacing: -0.02em; margin: 0; text-wrap: balance; color: var(--ink); }
.founder blockquote em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--green-mid); }
.founder .sig { margin-top: 24px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.founder .sig b { color: var(--ink); font-weight: 500; }

/* ========== ECOSSISTEMA · 6 PRODUTOS ========== */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 1080px) { .eco-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .eco-grid { grid-template-columns: 1fr; } }

.eco-card {
  position: relative;
  padding: 32px 28px 28px;
  background: color-mix(in oklch, var(--ink) 65%, var(--ink-2));
  border: 1px solid var(--rule-dark);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
}
.eco-card:hover {
  border-color: color-mix(in oklch, var(--green-volt) 50%, var(--rule-dark));
  background: color-mix(in oklch, var(--ink) 55%, var(--ink-2));
  transform: translateY(-2px);
}
.eco-card.eco-hero {
  grid-column: span 3;
  background:
    radial-gradient(ellipse at 92% 10%, color-mix(in oklch, var(--green-volt) 14%, transparent), transparent 55%),
    color-mix(in oklch, var(--ink) 55%, var(--ink-2));
  border-color: color-mix(in oklch, var(--green-volt) 28%, var(--rule-dark));
  padding: clamp(36px, 4vw, 48px);
}
@media (max-width: 1080px) { .eco-card.eco-hero { grid-column: span 2; } }
@media (max-width: 700px)  { .eco-card.eco-hero { grid-column: span 1; } }

.eco-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.eco-num {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-volt);
  padding-top: 6px;
}
.eco-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklch, var(--ink) 92%, transparent);
  border: 1px solid color-mix(in oklch, var(--green-volt) 22%, var(--rule-dark));
  flex-shrink: 0;
}
.eco-icon svg { width: 26px; height: 26px; }
.eco-card.eco-hero .eco-icon { width: 64px; height: 64px; }
.eco-card.eco-hero .eco-icon svg { width: 30px; height: 30px; }

.eco-ttl {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin: 0;
}
.eco-card.eco-hero .eco-ttl { font-size: clamp(40px, 3.6vw, 56px); }
.eco-ttl em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--green-volt);
}
.eco-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: color-mix(in oklch, var(--paper) 60%, transparent);
  margin: -6px 0 0;
}
.eco-desc {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.5;
  color: color-mix(in oklch, var(--paper) 78%, transparent);
  margin: 4px 0 0;
  text-wrap: pretty;
}
.eco-desc b { color: var(--paper); font-weight: 500; }
.eco-card.eco-hero .eco-desc { font-size: 17px; max-width: 60ch; }

.eco-feats {
  list-style: none;
  margin: 8px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--rule-dark);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.eco-feats li {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.4;
  color: color-mix(in oklch, var(--paper) 72%, transparent);
  padding-left: 18px;
  position: relative;
}
.eco-feats li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--green-volt);
  top: 1px;
}
.eco-card.eco-hero .eco-feats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
}
@media (max-width: 700px) { .eco-card.eco-hero .eco-feats { grid-template-columns: 1fr; } }

.eco-foot {
  margin-top: 56px;
  padding: 28px 32px;
  border-top: 1px solid var(--rule-dark);
  display: flex;
  align-items: baseline;
  gap: 28px;
  flex-wrap: wrap;
}
.eco-foot-cap {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-volt);
  flex-shrink: 0;
}
.eco-foot-line {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin: 0;
  text-wrap: balance;
}
.eco-foot-line em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--green-volt);
}

/* ========== CTA FINAL ========== */
.cta-final { text-align: center; padding: clamp(80px, 14vh, 168px) 0; background: var(--ink); color: var(--paper); border-bottom: 1px solid var(--rule-dark); position: relative; overflow: hidden; }
.cta-final::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(ellipse at 50% 100%, color-mix(in oklch, var(--green-volt) 14%, transparent), transparent 60%); pointer-events: none; }
.cta-final .h-display { color: var(--paper); }
.cta-final .h-display em { color: var(--green-volt); }
.cta-final .lede { max-width: 56ch; margin: 28px auto 0; color: color-mix(in oklch, var(--paper) 75%, transparent); }
.cta-final .ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 40px; position: relative; }
.cta-final .meta { margin-top: 24px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-4); position: relative; }
.cta-final .meta b { color: var(--green-volt); font-weight: 500; }

/* ========== TICKER ========== */
.ticker { background: var(--paper-2); border-bottom: 1px solid var(--rule); overflow: hidden; }
.ticker-track { display: flex; gap: 48px; padding: 12px 0; animation: ticker 50s linear infinite; white-space: nowrap; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.ticker-track span { display: inline-flex; align-items: center; gap: 10px; }
.ticker-track .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--green-volt); }
.ticker-track b { color: var(--ink); font-weight: 500; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== ACTIVITY BAR (linha viva sob o hero) ========== */
.activity-bar { background: var(--ink); color: var(--paper); border-top: 1px solid var(--rule-dark); border-bottom: 1px solid var(--rule-dark); display: flex; align-items: stretch; overflow: hidden; position: relative; }
.activity-bar::before { content: ""; position: absolute; left: 240px; top: 0; bottom: 0; width: 60px; background: linear-gradient(to right, var(--ink), transparent); pointer-events: none; z-index: 2; }
.activity-bar::after { content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 80px; background: linear-gradient(to right, transparent, var(--ink)); pointer-events: none; z-index: 2; }
.activity-head { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; flex-shrink: 0; background: var(--ink); position: relative; z-index: 3; white-space: nowrap; min-width: 240px; }
.dot-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green-volt); box-shadow: 0 0 0 0 var(--green-volt); animation: pulse 2s infinite; }
.activity-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-volt); font-weight: 500; }
.activity-track { display: flex; gap: 36px; padding: 14px 0; white-space: nowrap; animation: actScroll 90s linear infinite; flex: 1; min-width: 0; align-items: center; }
.activity-bar:hover .activity-track { animation-play-state: paused; }
.act-item { display: inline-flex; align-items: baseline; gap: 8px; font-family: var(--sans); font-size: 13px; color: color-mix(in oklch, var(--paper) 78%, transparent); flex-shrink: 0; }
.act-item b { color: var(--paper); font-weight: 500; }
.act-item em { font-family: var(--serif); font-style: italic; color: var(--green-volt); font-weight: 400; }
.act-item .when { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-4); margin-left: 4px; }
@keyframes actScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== STICKY BAR ========== */
.fomo-bar { position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%) translateY(120%); background: var(--ink); color: var(--paper); padding: 12px 18px 12px 14px; border-radius: 999px; box-shadow: 0 24px 48px -16px rgba(7,18,14,0.5); display: inline-flex; align-items: center; gap: 14px; z-index: 90; transition: transform .4s cubic-bezier(0.4, 1.4, 0.6, 1); border: 1px solid var(--rule-dark); }
.fomo-bar.show { transform: translateX(-50%) translateY(0); }
.fomo-bar .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--green-volt); box-shadow: 0 0 0 0 var(--green-volt); animation: pulse 2s infinite; }
.fomo-bar .text { font-family: var(--sans); font-size: 13px; color: var(--paper); }
.fomo-bar .text b { color: var(--green-volt); font-weight: 500; }
.fomo-bar .btn { padding: 7px 14px; font-size: 12px; }
.fomo-bar .close { color: var(--ink-4); font-family: var(--mono); font-size: 16px; padding: 0 4px; }
.fomo-bar .close:hover { color: var(--paper); }

/* ========== FOOTER ========== */
.foot { background: var(--ink); color: var(--ink-4); padding: 64px 0 36px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 48px; border-bottom: 1px solid var(--rule-dark); }
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-grid h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--paper); margin: 0 0 16px; font-weight: 500; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-grid a { font-size: 14px; color: color-mix(in oklch, var(--paper) 65%, transparent); }
.foot-grid a:hover { color: var(--green-volt); }
.foot-grid .brand-block .name { font-family: var(--sans); font-weight: 500; font-size: 28px; letter-spacing: -0.04em; color: var(--paper); display: inline-flex; align-items: baseline; }
.foot-grid .brand-block .name .d { color: var(--green-volt); font-size: 0.6em; transform: translateY(-0.18em); display: inline-block; margin-left: 0.04em; }
.foot-grid .brand-block p { font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1.4; color: color-mix(in oklch, var(--paper) 75%, transparent); margin: 14px 0 0; max-width: 36ch; }
.foot-bottom { padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }

/* ========== FADE ========== */
.fade { opacity: 0; transform: translateY(14px); transition: opacity .8s ease, transform .8s ease; }
.fade.in { opacity: 1; transform: none; }

/* ========== ORG TREE STATIC (Empresa section) ========== */
.org-block { background: var(--paper); border: 1px solid var(--rule); border-radius: 18px; padding: 36px 36px 44px; }
.org-block-head { margin-bottom: 32px; }
.org-block-head .h2 { font-family: var(--sans); font-weight: 500; font-size: 28px; line-height: 1.15; letter-spacing: -0.025em; color: var(--ink); margin: 8px 0 12px; }
.org-block-head .h2 em { font-family: var(--serif); font-style: italic; color: var(--green-mid); font-weight: 500; }

.org-tree-static { display: flex; flex-direction: column; align-items: center; gap: 0; }
.org-ceo-node { background: var(--ink); color: var(--paper); padding: 18px 28px; border-radius: 12px; text-align: center; min-width: 200px; box-shadow: 0 4px 12px rgba(7, 18, 14, 0.12); }
.org-ceo-node .org-role { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-volt); font-weight: 600; margin-bottom: 6px; }
.org-ceo-node .org-name { font-family: var(--serif); font-style: italic; font-size: 19px; font-weight: 500; }
.org-line { width: 2px; height: 28px; background: var(--rule); }

.org-directors-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; width: 100%; position: relative; padding-top: 20px; }
.org-directors-row::before { content: ''; position: absolute; top: 0; left: 12.5%; right: 12.5%; height: 2px; background: var(--rule); }
.org-directors-row::after { content: ''; position: absolute; top: 0; left: 50%; width: 2px; height: 20px; background: var(--rule); transform: translateX(-50%); }
.org-dir-node { background: var(--paper-2); border: 1.5px solid var(--rule); border-radius: 12px; padding: 16px 18px; text-align: center; position: relative; transition: all 0.2s; }
.org-dir-node::before { content: ''; position: absolute; top: -20px; left: 50%; width: 2px; height: 20px; background: var(--rule); transform: translateX(-50%); }
.org-dir-node:hover { transform: translateY(-2px); border-color: var(--green-mid); }
.org-dir-node .org-role { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; margin-bottom: 6px; }
.org-dir-node .org-name { font-family: var(--sans); font-size: 16px; color: var(--ink); font-weight: 500; line-height: 1.2; margin-bottom: 8px; }
.org-dir-node .org-name em { font-family: var(--serif); font-style: italic; color: var(--green-mid); font-weight: 500; }
.org-dir-node .org-staff { font-family: var(--mono); font-size: 10.5px; color: var(--green-mid); letter-spacing: 0.05em; font-weight: 600; padding-top: 6px; border-top: 1px solid var(--rule); }
.org-dir-node.mkt { border-top: 3px solid var(--green-mid); }
.org-dir-node.ven { border-top: 3px solid #1A4D8A; }
.org-dir-node.ops { border-top: 3px solid #6B3FA0; }
.org-dir-node.fin { border-top: 3px solid #B8902C; }

.org-staff-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; width: 100%; padding-top: 20px; position: relative; }
.org-staff-row::before { content: ''; position: absolute; top: 0; left: 12.5%; right: 12.5%; height: 2px; background: var(--rule); }
.org-staff-cell { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; background: var(--paper); border: 1px dashed var(--rule); border-radius: 8px; padding: 10px 12px; text-align: center; position: relative; }
.org-staff-cell::before { content: ''; position: absolute; top: -20px; left: 50%; width: 2px; height: 20px; background: var(--rule); transform: translateX(-50%); }

@media (max-width: 880px) {
  .org-directors-row, .org-staff-row { grid-template-columns: 1fr 1fr; }
  .org-directors-row::before, .org-staff-row::before { display: none; }
  .org-directors-row::after, .org-dir-node::before, .org-staff-cell::before { display: none; }
  .org-line { display: none; }
}

/* ========== MARKET TEASER ========== */
.market-teaser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 1100px) { .market-teaser-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .market-teaser-grid { grid-template-columns: 1fr; } }
.market-teaser-card { background: var(--paper); border: 1px solid var(--rule); border-radius: 14px; padding: 18px 20px; transition: all 0.2s; cursor: pointer; }
.market-teaser-card:hover { border-color: var(--green-mid); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(7, 18, 14, 0.06); }
.market-teaser-name { font-family: var(--sans); font-weight: 600; font-size: 17px; color: var(--ink); line-height: 1.2; margin: 8px 0 6px; }
.market-teaser-name em { font-family: var(--serif); font-style: italic; color: var(--green-mid); font-weight: 500; }
.market-teaser-creator { font-size: 12.5px; color: var(--ink-3); margin-bottom: 14px; }
.market-teaser-creator b { color: var(--ink-2); font-weight: 500; }
.market-teaser-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--rule); }
.market-teaser-price { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--ink); font-weight: 500; }
.market-teaser-price small { font-family: var(--sans); font-style: normal; font-size: 11px; color: var(--ink-3); margin-left: 2px; }
.market-teaser-rating { font-family: var(--mono); font-size: 10.5px; color: var(--green-mid); letter-spacing: 0.05em; font-weight: 600; }

/* ========== EXAMPLES ROW (Itaú, Nubank, etc) ========== */
.ex-card { background: color-mix(in oklch, var(--paper) 5%, var(--ink-2)); border: 1px solid var(--rule-dark); border-radius: 14px; padding: 18px 20px; }
.ex-card .ex-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-volt); margin-bottom: 10px; font-weight: 600; }
.ex-card p { font-size: 14px; color: color-mix(in oklch, var(--paper) 86%, transparent); line-height: 1.55; margin: 0; }
.ex-card p b { color: var(--paper); font-weight: 600; }
.ex-card p em { color: var(--green-volt); font-family: var(--serif); font-style: italic; font-weight: 500; }

/* ========== DAY GRID (PESSOA·FUNCIONÁRIO·EMPRESA — um dia) ========== */
.day-grid { display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 24px; padding: 48px 0; border-top: 1px solid var(--rule); }
@media (max-width: 1100px) { .day-grid { grid-template-columns: 1fr; gap: 32px; } }
.day-cap { display: flex; flex-direction: column; justify-content: flex-start; }
.day-cap .h2 { font-family: var(--sans); font-weight: 500; font-size: clamp(22px, 2.4vw, 32px); line-height: 1.05; letter-spacing: -0.02em; }
.day-cap .h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--green-mid); }
.day-col { background: var(--paper); border: 1px solid var(--rule); border-radius: 14px; padding: 22px 24px; }
.day-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-mid); font-weight: 600; padding-bottom: 12px; margin-bottom: 14px; border-bottom: 1px solid var(--rule); }
.day-list { list-style: none; padding: 0; margin: 0; }
.day-list li { padding: 10px 0; font-size: 13.5px; color: var(--ink-2); line-height: 1.55; border-bottom: 1px dashed var(--rule); }
.day-list li:last-child { border-bottom: none; }
.day-list li b { color: var(--ink); font-weight: 600; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; }
.day-list li em { font-family: var(--serif); font-style: italic; color: var(--green-mid); font-weight: 500; }

