/* ============================================================
   NOVERE Capital — Base / shared component layer
   Global chrome: reset, typography, header, nav, search, footer,
   utility strip, buttons, newsletter, badges, responsive chrome.
   Link order per page:  tokens.css  ->  base.css  ->  page <style>
   Page-specific section CSS stays inline in each page.
   ============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); }
body {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-feature-settings: "ss01", "ss02";
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-size: 17px;
    line-height: 1.55;
    overflow-x: hidden;
  }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }
.serif { font-family: 'Familjen Grotesk', sans-serif; font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.mono { font-family: 'DM Sans', sans-serif; }
/* All display / heading typography uses Familjen Grotesk Regular per brand */
h1, h2, h3, h4, h5, .display, .hero h1, .panel-dark h3, .typo h3,
  .quote-card blockquote, .results-grid .cell .val,
  .bigstat .num, .tier .v, .ratio .v, .hero-meta .num,
  .value-num, .step-num, .chart-symbol .price, .chart-stats .v,
  .strat-visual .yr, .news-card h4, .editorial-title h2,
  .invest-cta h2, .newsletter h2, .analysis-card h2,
  .analysis-card .doc .doctitle, .adv-row .idx, .adv-row h4 { font-family: 'Familjen Grotesk', sans-serif; font-weight: 400; font-style: normal; }
/* Italic accent (was Instrument Serif) now uses Familjen Grotesk Italic */
em.fg-italic, .serif-accent { font-family: 'Familjen Grotesk', sans-serif; font-weight: 400; font-style: italic; }
.wrap { max-width: 1480px; margin: 0 auto; padding: 0 56px; }
@media (max-width: 900px) {
  .wrap { padding: 0 24px; }
}
/* —— Top utility strip —— */
.utility {
    background: var(--surface-strong);
    color: #f3f0ea;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
.utility .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 11px; padding-bottom: 11px;
    gap: 32px;
  }
.utility .left, .utility .right { display: flex; gap: 28px; align-items: center; }
.utility a:hover { color: var(--orange); }
.utility .right { gap: 18px; }
/* —— Language dropdown —— */
.lang-select { position: relative; }
.lang-trigger {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 5px 11px; border: 1px solid rgba(243,240,234,0.22);
    border-radius: 999px; color: inherit; font: inherit;
    font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase;
    transition: border-color .2s, background .2s;
  }
.lang-trigger:hover { border-color: rgba(243,240,234,0.55); }
.lang-trigger .globe { width: 13px; height: 13px; opacity: 0.85; }
.lang-trigger .chev { width: 9px; height: 9px; opacity: 0.7; transition: transform .2s; }
.lang-select.open .lang-trigger .chev { transform: rotate(180deg); }
.lang-menu {
    position: absolute; top: calc(100% + 10px); right: 0;
    min-width: 158px; list-style: none; margin: 0; padding: 6px;
    background: var(--bg-card); color: var(--ink);
    border: 1px solid var(--rule); border-radius: 12px;
    box-shadow: 0 18px 44px -14px rgba(0,0,0,0.3);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    z-index: 60; text-transform: none; letter-spacing: 0;
  }
.lang-select.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu li a{
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 9px 12px; border-radius: 8px; cursor: pointer;
    font-size: 14px; font-weight: 500;
  }
.lang-menu li:hover { background: var(--bg-warm); }
.lang-menu li .code { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.5; }
.lang-menu li[aria-selected="true"] { color: var(--orange); }
.lang-menu li[aria-selected="true"] .code { color: var(--orange); opacity: 1; }
/* —— Theme switch —— */
.theme-switch {
    display: inline-flex; align-items: center; flex-shrink: 0;
    width: 52px; height: 26px; padding: 3px;
    border-radius: 999px; border: 1px solid rgba(243,240,234,0.22);
    background: rgba(243,240,234,0.06); position: relative;
    transition: border-color .2s;
  }
.theme-switch:hover { border-color: rgba(243,240,234,0.55); }
.theme-switch .ts-knob {
    width: 20px; height: 20px; border-radius: 50%;
    background: #f3f0ea; display: inline-flex; align-items: center; justify-content: center;
    color: #0c0c0c; transition: transform .25s cubic-bezier(.4,.1,.3,1);
  }
.theme-switch .ts-knob svg { width: 13px; height: 13px; }
.theme-switch .ts-moon { display: none; }
[data-theme="dark"] .theme-switch .ts-knob { transform: translateX(26px); background: var(--orange); color: #0c0c0c; }
[data-theme="dark"] .theme-switch .ts-sun { display: none; }
[data-theme="dark"] .theme-switch .ts-moon { display: inline-flex; }
/* —— Header / nav —— */
header.site {
    position: sticky; top: 0; z-index: 50;
    background: var(--header-bg, rgba(255,255,255,0.86));
    backdrop-filter: saturate(140%) blur(16px);
    -webkit-backdrop-filter: saturate(140%) blur(16px);
  }
.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-top: 22px; padding-bottom: 22px;
    gap: 24px;
  }
.logo {
    display: inline-flex; align-items: center;
    color: var(--ink);
  }
.logo img { height: 22px; width: auto; display: block; }
.logo.on-dark img { filter: brightness(0) invert(1); }
nav.primary { display: flex; gap: 6px; justify-content: center; }
nav.primary > .item {
    position: relative;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
  }
nav.primary > .item:hover { background: var(--bg-warm); }
nav.primary > .item .chev { width: 10px; height: 10px; opacity: 0.55; }
nav.primary > .item .panel {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-6px);
    background: var(--bg-card); color: var(--ink);
    border-radius: 18px;
    box-shadow: 0 24px 60px -16px rgba(0,0,0,0.18), 0 1px 0 rgba(0,0,0,0.04);
    padding: 14px; min-width: 280px;
    opacity: 0; pointer-events: none; transition: opacity .15s, transform .15s;
  }
nav.primary > .item:hover .panel { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
nav.primary .panel a {
    display: block; padding: 10px 14px; font-size: 14px; border-radius: 10px; color: var(--ink-2);
  }
nav.primary .panel a:hover { background: var(--bg-warm); color: var(--orange); }
.nav-cta { justify-self: end; display: flex; gap: 10px; align-items: center; }
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 14px; font-weight: 500;
    transition: transform .15s, background .15s, color .15s;
  }
.btn-ghost { color: var(--ink); }
.btn-ghost:hover { background: var(--bg-warm); }
.btn-primary { background: var(--surface-strong); color: #fff; }
.btn-primary:hover { background: var(--orange); }

/* Button variants — consolidated component layer (reusable across pages) */
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-deep); }
.btn-out { border: 1px solid var(--ink); color: var(--ink); }
.btn-out:hover { background: var(--surface-strong); color: #fff; }
.btn-white { background: #fff; color: #0c0c0c; }
.btn-white:hover { background: var(--surface-strong); color: #fff; }
.btn-out-white { border: 1px solid #fff; color: #fff; }
.btn-out-white:hover { background: #fff; color: #0c0c0c; }
/* Active page indicator (e.g., News when we're on that page) */
nav.primary > .item.active,
  nav.primary > .item.active:hover { background: var(--orange); color: #fff; }
.drawer-link.active { background: var(--orange); color: #fff; }
/* Header search — toggle button opens a panel below the header row */
.nav-search { display: inline-flex; align-items: center; height: 44px; }
.nav-search-toggle {
    height: 44px; padding: 0 18px;
    border-radius: 6px;
    background: var(--bg-warm); color: var(--ink);
    display: inline-flex; align-items: center; justify-content: center;
    border: none; cursor: pointer;
    transition: background .2s;
  }
.nav-search-toggle:hover,
  .nav-search-toggle[aria-expanded="true"] { background: var(--rule); }
.nav-search-toggle svg { width: 18px; height: 18px; }
/* Search panel — slides down beneath the nav row */
.search-panel {
    background: var(--bg);
    border-top: 1px solid transparent;
    max-height: 0; overflow: hidden;
    transition: max-height .28s ease, border-color .2s ease, box-shadow .2s ease;
  }
.search-panel.open {
    max-height: 96px;
    border-top-color: var(--rule);
    box-shadow: 0 8px 16px -10px rgba(0,0,0,0.10);
  }
[data-theme="dark"] .search-panel.open { box-shadow: 0 8px 18px -10px rgba(0,0,0,0.45); }
.search-panel-inner {
    display: flex; align-items: center;
    gap: 14px; padding: 18px 0; width: 100%;
  }
.search-panel-icon {
    width: 20px; height: 20px;
    color: var(--ink); opacity: 0.55;
    flex-shrink: 0;
  }
.search-panel input {
    flex: 1; min-width: 0;
    border: none; background: transparent; outline: none;
    font: inherit; font-size: 17px; color: var(--ink);
    padding: 6px 0;
  }
.search-panel input::placeholder { color: var(--ink); opacity: 0.4; }
.search-panel-close {
    width: 36px; height: 36px;
    border-radius: 6px;
    border: none; background: transparent; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink); opacity: 0.55;
    flex-shrink: 0;
    transition: background .15s, opacity .15s;
  }
.search-panel-close:hover { background: var(--bg-warm); opacity: 1; }
.search-panel-close svg { width: 16px; height: 16px; }
/* WhatsApp button */
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5d; color: #fff; }
.btn-whatsapp .wa-ico { width: 17px; height: 17px; flex-shrink: 0; }
.arrow { width: 14px; height: 14px; transition: transform .15s; }
.btn:hover .arrow { transform: translate(2px, -2px); }
/* —— Ticker rail —— */
.ticker-rail {
    background: var(--bg-warm);
    overflow: hidden;
    position: relative;
  }
.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 60s linear infinite;
  }
.ticker-rail:hover .ticker-track { animation-play-state: paused; }
@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
.ticker-inner {
    display: inline-flex; align-items: center; gap: 24px;
    padding: 14px 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; letter-spacing: 0;
    color: var(--ink-2);
    white-space: nowrap;
  }
.ticker-inner b,
  .ticker-inner .up,
  .ticker-inner .down { font-family: 'DM Mono', monospace; }
.ticker-inner .live-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(10, 127, 63, 0.12);
    color: var(--up);
    padding: 3px 10px 3px 8px;
    border-radius: 999px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.04em;
  }
.ticker-inner .live-pill::before {
    content: "";
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--up);
    animation: livePulse 1.4s ease-out infinite;
  }
@keyframes livePulse {
    0%   { box-shadow: 0 0 0 0 rgba(10,127,63,0.6); }
    70%  { box-shadow: 0 0 0 6px rgba(10,127,63,0); }
    100% { box-shadow: 0 0 0 0 rgba(10,127,63,0); }
  }
.ticker-inner .tick { display: inline-flex; gap: 10px; align-items: baseline; white-space: nowrap; }
.ticker-inner .tick b { color: var(--ink); font-weight: 700; }
.ticker-inner .up { color: var(--up); }
.ticker-inner .down { color: var(--orange-deep); }
.ticker-inner .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; display: inline-block; }
.ticker-inner .sep { width: 4px; height: 4px; background: var(--ink); opacity: 0.25; border-radius: 50%; flex-shrink: 0; }
.eyebrow {
    display: inline-flex; align-items: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 20px; letter-spacing: 0;
    color: var(--ink);
    font-weight: 500;
  }
.hero h1 .orange { color: var(--orange); }
@keyframes tile1Flip {
    0%       { transform: scale(1, 1); }
    1.515%  { transform: scale(-1, 1); }
    16.667%  { transform: scale(-1, 1); }
    18.182%  { transform: scale(1, 1); }
    33.333%  { transform: scale(1, 1); }
    34.848%  { transform: scale(-1, 1); }
    50.000%  { transform: scale(-1, 1); }
    51.515%  { transform: scale(1, 1); }
    66.667%  { transform: scale(1, 1); }
    68.182%  { transform: scale(-1, 1); }
    83.333%  { transform: scale(-1, 1); }
    84.848%  { transform: scale(1, 1); }
    100.000%  { transform: scale(1, 1); }
  }
@keyframes tile2Flip {
    0%       { transform: scale(1, 1); }
    1.961%  { transform: scale(1, -1); }
    16.667%  { transform: scale(1, -1); }
    18.627%  { transform: scale(1, 1); }
    33.333%  { transform: scale(1, 1); }
    35.294%  { transform: scale(1, -1); }
    50.000%  { transform: scale(1, -1); }
    51.961%  { transform: scale(1, 1); }
    66.667%  { transform: scale(1, 1); }
    68.627%  { transform: scale(1, -1); }
    83.333%  { transform: scale(1, -1); }
    85.294%  { transform: scale(1, 1); }
    100.000%  { transform: scale(1, 1); }
  }
@keyframes tile3Flip {
    0%       { transform: scale(1, 1); }
    2.381%  { transform: scale(-1, -1); }
    16.667%  { transform: scale(-1, -1); }
    19.048%  { transform: scale(1, 1); }
    33.333%  { transform: scale(1, 1); }
    35.714%  { transform: scale(-1, -1); }
    50.000%  { transform: scale(-1, -1); }
    52.381%  { transform: scale(1, 1); }
    66.667%  { transform: scale(1, 1); }
    69.048%  { transform: scale(-1, -1); }
    83.333%  { transform: scale(-1, -1); }
    85.714%  { transform: scale(1, 1); }
    100.000%  { transform: scale(1, 1); }
  }
@keyframes tile4Flip {
    0%       { transform: scale(1, 1); }
    1.786%  { transform: scale(-1, 1); }
    16.667%  { transform: scale(-1, 1); }
    18.452%  { transform: scale(-1, -1); }
    33.333%  { transform: scale(-1, -1); }
    35.119%  { transform: scale(-1, 1); }
    50.000%  { transform: scale(-1, 1); }
    51.786%  { transform: scale(1, 1); }
    66.667%  { transform: scale(1, 1); }
    68.452%  { transform: scale(1, -1); }
    83.333%  { transform: scale(1, -1); }
    85.119%  { transform: scale(1, 1); }
    100.000%  { transform: scale(1, 1); }
  }
@keyframes tile5Flip {
    0%       { transform: scale(1, 1); }
    2.132%  { transform: scale(1, -1); }
    16.667%  { transform: scale(1, -1); }
    18.798%  { transform: scale(-1, -1); }
    33.333%  { transform: scale(-1, -1); }
    35.465%  { transform: scale(-1, 1); }
    50.000%  { transform: scale(-1, 1); }
    52.132%  { transform: scale(1, 1); }
    66.667%  { transform: scale(1, 1); }
    68.798%  { transform: scale(1, -1); }
    83.333%  { transform: scale(1, -1); }
    85.465%  { transform: scale(1, 1); }
    100.000%  { transform: scale(1, 1); }
  }
@keyframes tile6Flip {
    0%       { transform: scale(1, 1); }
    2.778%  { transform: scale(-1, 1); }
    16.667%  { transform: scale(-1, 1); }
    19.444%  { transform: scale(-1, -1); }
    33.333%  { transform: scale(-1, -1); }
    36.111%  { transform: scale(-1, 1); }
    50.000%  { transform: scale(-1, 1); }
    52.778%  { transform: scale(-1, -1); }
    66.667%  { transform: scale(-1, -1); }
    69.444%  { transform: scale(1, -1); }
    83.333%  { transform: scale(1, -1); }
    86.111%  { transform: scale(1, 1); }
    100.000%  { transform: scale(1, 1); }
  }
.hero .wrap { position: relative; }
.hero-meta .label {
    margin-top: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink);
  }
/* —— Section helpers —— */
section { position: relative; }
.section-pad-sm { padding: 96px 0; }
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 56px; }
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}
h2.display {
    font-size: clamp(36px, 4.5vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    font-weight: 400;
  }
h2.display em { font-style: normal; font-family: 'Familjen Grotesk', sans-serif; font-weight: 400; color: inherit; }
.section-head p { font-size: 18px; color: var(--ink-2); max-width: 520px; }
.panel-dark .eyebrow { color: var(--orange); }
.panel-dark .eyebrow::before { background: var(--orange); }
.strat-visual .head {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; letter-spacing: 0.04em;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase; font-weight: 500;
  }
.strat-visual .milestone.active .dot { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 0 6px rgba(255,140,0,0.18); }
.strat-visual .body .title { color: #fff; font-size: 15px; font-weight: 500; line-height: 1.3; }
.panel-dark .ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.results-grid.orange-row .cell,
  .results-grid.orange-row .cell .lbl,
  .results-grid.orange-row .cell .key,
  .results-grid.orange-row .cell .val,
  .results-grid.orange-row .cell .val small { color: #161616; }
.results-grid .cell .lbl { font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }
.results-grid .cell .delta.down { color: var(--orange-deep); }
.ratio-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
@media (max-width: 900px) {
  .ratio-row { grid-template-columns: 1fr; }
}
.ratio {
    background: var(--bg-card); border-radius: 20px; padding: 28px;
    display: flex; align-items: baseline; justify-content: space-between;
  }
.ratio .name { font-size: 14px; color: var(--ink-mute); max-width: 60%; }
.bigstat .lbl { font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }
.bigstat.dark { background: var(--surface-strong); color: #fff; }
.bigstat.dark .lbl { color: rgba(255,255,255,0.6); }
.bigstat.dark .num em { color: var(--orange); }
.bigstat.dark .corner { background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.7); }
/* —— Year toggle —— */
.year-toggle {
    display: inline-flex; gap: 4px; background: var(--bg-panel); padding: 4px; border-radius: 6px;
    font-family: 'DM Mono', monospace; font-size: 12px;
  }
.year-toggle button {
    padding: 8px 14px; border-radius: 6px; color: var(--ink-mute);
  }
.year-toggle button.active { background: var(--surface-strong); color: #fff; }
.chart-range button.active { background: var(--orange); color: #fff; }
.chart-stats .lbl { font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
/* —— Steps —— */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
    background: var(--bg-panel);
    border-radius: 22px;
    padding: 36px 32px;
    min-height: 280px;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative; overflow: hidden;
    transition: background .2s, color .2s;
  }
.step:hover { background: var(--orange); color: #fff; }
.step:hover .step-num { color: rgba(255,255,255,0.5); }
.step:hover .step-arrow { background: var(--bg-card); color: var(--orange); }
.step-num { font-family: 'Familjen Grotesk', sans-serif; font-size: 96px; line-height: 1; color: var(--orange); letter-spacing: -0.04em; }
.step h4 { font-size: 26px; font-weight: 400; line-height: 1.15; letter-spacing: -0.015em; margin-top: 18px; }
.step .step-body { color: var(--ink-mute); font-size: 15px; line-height: 1.55; margin-top: 12px; }
.step:hover .step-body { color: rgba(255,255,255,0.85); }
.step-arrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 18px 12px 20px;
    border-radius: 999px;
    background: var(--surface-strong); color: #fff;
    align-self: flex-end;
    margin-top: 32px;
    font-size: 14px; font-weight: 500;
    transition: background .2s, transform .2s;
  }
.step-arrow svg { width: 14px; height: 14px; }
.step:hover .step-arrow { background: var(--bg-card); color: var(--orange); }
.step:hover .step-arrow { transform: translate(2px, -2px); }
/* —— Editorial split (about / team) —— */
.editorial {
    display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start;
  }
@media (max-width: 980px) {
  .editorial { grid-template-columns: 1fr; gap: 48px; }
}
.editorial-title h2 {
    font-size: clamp(40px, 5.4vw, 80px);
    line-height: 0.98; letter-spacing: -0.025em; font-weight: 400;
  }
.editorial-title h2 em { font-style: normal; font-family: 'Familjen Grotesk', sans-serif; color: inherit; font-weight: 400; }
.editorial-body p { font-size: 18px; line-height: 1.6; color: var(--ink-2); }
.editorial-body p + p { margin-top: 18px; }
/* —— Investment typologies —— */
.typo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) {
  .typo-grid { grid-template-columns: 1fr; }
}
.typo {
    background: var(--bg-card);
    border-radius: 28px;
    padding: 40px 36px;
    background: var(--bg-panel);
    transition: background .25s, color .25s, transform .25s;
    display: flex; flex-direction: column; gap: 28px;
    min-height: 460px;
  }
.typo:hover { background: var(--surface-strong); color: #fff; transform: translateY(-4px); }
.typo:hover .typo-meter .lbl { color: rgba(255,255,255,0.55); }
.typo:hover .typo-meter .bar { background: rgba(255,255,255,0.1); }
.typo:hover p { color: rgba(255,255,255,0.75); }
.typo:hover .typo-no { color: rgba(255,255,255,0.4); }
.typo-no { font-family: 'DM Sans', sans-serif; font-size: 14px; letter-spacing: 0; color: var(--ink-faint); }
.typo-no .n { font-family: 'DM Mono', monospace; }
.typo h3 { font-size: 32px; font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; }
.typo p { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.typo-meter { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.typo-meter .lbl { font-family: 'DM Sans', sans-serif; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 8px; }
.typo-meter .bar { height: 6px; background: #ece8e1; border-radius: 999px; overflow: hidden; }
.typo-meter .bar div { height: 100%; background: var(--orange); border-radius: 999px; transition: width .3s; }
/* —— Founder quote / testimonial —— */
.quote-card {
    background: var(--bg-warm);
    border-radius: 32px;
    padding: 72px;
    display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: center;
  }
@media (max-width: 900px) {
  .quote-card { grid-template-columns: 1fr; padding: 36px; gap: 28px; }
}
.quote-card .photo {
    aspect-ratio: 4/5;
    background: repeating-linear-gradient(45deg, #ece8e1 0 12px, #f3efe7 12px 24px);
    border-radius: 20px;
    display: flex; align-items: flex-end; justify-content: center;
    color: var(--ink-mute);
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    padding: 16px;
  }
.quote-card blockquote { font-family: 'Familjen Grotesk', sans-serif; font-size: clamp(24px, 2.4vw, 36px); line-height: 1.25; letter-spacing: -0.01em; color: var(--ink); }
.quote-card blockquote::before { content: "“"; color: var(--orange); font-size: 1.4em; line-height: 0; vertical-align: -0.2em; margin-right: 6px; }
.quote-card .by { margin-top: 24px; font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.quote-card .by b { color: var(--ink); font-weight: 600; }
/* —— Become investor CTA —— */
.invest-cta {
    background: var(--surface-strong);
    color: #fff;
    border-radius: 32px;
    padding: 96px;
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center;
    position: relative; overflow: hidden;
  }
@media (max-width: 900px) {
  .invest-cta { grid-template-columns: 1fr; padding: 48px 28px; }
}
.invest-cta h2 {
    font-size: clamp(36px, 5vw, 72px); line-height: 0.98; letter-spacing: -0.025em; font-weight: 400;
  }
.invest-cta h2 em { font-style: normal; font-family: 'Familjen Grotesk', sans-serif; color: inherit; font-weight: 400; }
.invest-cta p { color: #c8c4bc; font-size: 17px; max-width: 460px; margin-top: 20px; }
.invest-cta a.link { color: var(--orange); text-decoration: underline; text-underline-offset: 4px; }
.invest-cta .visual {
    aspect-ratio: 1/1.05; max-width: 380px; margin-left: auto;
    border-radius: 24px; background: #1f1f1f;
    display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr); gap: 8px;
    padding: 24px;
    position: relative;
  }
.invest-cta .visual .b { background: #2a2a2a; border-radius: 8px; }
.invest-cta .visual .b.on { background: var(--orange); }
/* Half-circle rotating tiles (2 cols x 3 rows) replacing the grid in .invest-cta */
.invest-circles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 0;
    width: 100%; max-width: 390px;
    aspect-ratio: 2 / 3;
    margin-left: auto;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }
.half-tile { width: 100%; height: 100%; display: block; line-height: 0; font-size: 0; }
.half-tile svg { width: 100%; height: 100%; display: block; }
.half-tile {
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
    transform-origin: 50% 50%;
    will-change: transform;
  }
.half-tile.h1 { animation-name: halfRot1; animation-duration: 10.80s; }
.half-tile.h2 { animation-name: halfRot2; animation-duration: 11.10s; }
.half-tile.h3 { animation-name: halfRot3; animation-duration: 10.50s; }
.half-tile.h4 { animation-name: halfRot4; animation-duration: 11.40s; }
.half-tile.h5 { animation-name: halfRot5; animation-duration: 11.70s; }
.half-tile.h6 { animation-name: halfRot6; animation-duration: 12.00s; }
@keyframes halfRot1 {
    0%      { transform: rotate(0deg); }
    2.778%  { transform: rotate(90deg); }
    16.667%  { transform: rotate(90deg); }
    19.444%  { transform: rotate(180deg); }
    33.333%  { transform: rotate(180deg); }
    36.111%  { transform: rotate(270deg); }
    50.000%  { transform: rotate(270deg); }
    52.778%  { transform: rotate(180deg); }
    66.667%  { transform: rotate(180deg); }
    69.444%  { transform: rotate(270deg); }
    83.333%  { transform: rotate(270deg); }
    86.111%  { transform: rotate(360deg); }
    100.000%  { transform: rotate(360deg); }
  }
@keyframes halfRot2 {
    0%      { transform: rotate(0deg); }
    3.153%  { transform: rotate(-90deg); }
    16.667%  { transform: rotate(-90deg); }
    19.820%  { transform: rotate(-180deg); }
    33.333%  { transform: rotate(-180deg); }
    36.486%  { transform: rotate(-270deg); }
    50.000%  { transform: rotate(-270deg); }
    53.153%  { transform: rotate(-180deg); }
    66.667%  { transform: rotate(-180deg); }
    69.820%  { transform: rotate(-270deg); }
    83.333%  { transform: rotate(-270deg); }
    86.486%  { transform: rotate(-360deg); }
    100.000%  { transform: rotate(-360deg); }
  }
@keyframes halfRot3 {
    0%      { transform: rotate(0deg); }
    2.381%  { transform: rotate(90deg); }
    16.667%  { transform: rotate(90deg); }
    19.048%  { transform: rotate(0deg); }
    33.333%  { transform: rotate(0deg); }
    35.714%  { transform: rotate(90deg); }
    50.000%  { transform: rotate(90deg); }
    52.381%  { transform: rotate(0deg); }
    66.667%  { transform: rotate(0deg); }
    69.048%  { transform: rotate(90deg); }
    83.333%  { transform: rotate(90deg); }
    85.714%  { transform: rotate(0deg); }
    100.000%  { transform: rotate(0deg); }
  }
@keyframes halfRot4 {
    0%      { transform: rotate(0deg); }
    3.509%  { transform: rotate(-90deg); }
    16.667%  { transform: rotate(-90deg); }
    20.175%  { transform: rotate(0deg); }
    33.333%  { transform: rotate(0deg); }
    36.842%  { transform: rotate(-90deg); }
    50.000%  { transform: rotate(-90deg); }
    53.509%  { transform: rotate(0deg); }
    66.667%  { transform: rotate(0deg); }
    70.175%  { transform: rotate(-90deg); }
    83.333%  { transform: rotate(-90deg); }
    86.842%  { transform: rotate(0deg); }
    100.000%  { transform: rotate(0deg); }
  }
@keyframes halfRot5 {
    0%      { transform: rotate(0deg); }
    3.846%  { transform: rotate(90deg); }
    16.667%  { transform: rotate(90deg); }
    20.513%  { transform: rotate(180deg); }
    33.333%  { transform: rotate(180deg); }
    37.179%  { transform: rotate(90deg); }
    50.000%  { transform: rotate(90deg); }
    53.846%  { transform: rotate(0deg); }
    66.667%  { transform: rotate(0deg); }
    70.513%  { transform: rotate(90deg); }
    83.333%  { transform: rotate(90deg); }
    87.179%  { transform: rotate(0deg); }
    100.000%  { transform: rotate(0deg); }
  }
@keyframes halfRot6 {
    0%      { transform: rotate(0deg); }
    4.167%  { transform: rotate(-90deg); }
    16.667%  { transform: rotate(-90deg); }
    20.833%  { transform: rotate(-180deg); }
    33.333%  { transform: rotate(-180deg); }
    37.500%  { transform: rotate(-90deg); }
    50.000%  { transform: rotate(-90deg); }
    54.167%  { transform: rotate(0deg); }
    66.667%  { transform: rotate(0deg); }
    70.833%  { transform: rotate(-90deg); }
    83.333%  { transform: rotate(-90deg); }
    87.500%  { transform: rotate(0deg); }
    100.000%  { transform: rotate(0deg); }
  }
/* —— Budget tiers —— */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
@media (max-width: 900px) {
  .tiers { grid-template-columns: 1fr; }
}
.tier {
    background: var(--bg-panel); border-radius: 22px; padding: 36px;
    display: flex; flex-direction: column; gap: 12px;
  }
.tier .lbl { font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }
.tier .d { color: var(--ink-mute); font-size: 14px; margin-top: 12px; }
.analysis-card .label { font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.75; margin-bottom: 18px; }
.analysis-card .doc {
    aspect-ratio: 3/4;
    background: var(--bg-card); color: var(--ink);
    border-radius: 16px;
    padding: 32px;
    transform: rotate(-3deg);
    box-shadow: 0 28px 60px -16px rgba(0,0,0,0.25);
    max-width: 320px;
    margin-left: auto;
    display: flex; flex-direction: column; gap: 12px;
  }
.analysis-card .doc .doctag { font-family: 'DM Sans', sans-serif; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }
.analysis-card .doc .doctitle { font-family: 'Familjen Grotesk', sans-serif; font-size: 28px; line-height: 1.05; letter-spacing: -0.01em; margin-top: 8px; }
.analysis-card .doc .line { height: 6px; background: var(--rule); border-radius: 4px; margin-top: 6px; }
.analysis-card .doc .line.s { width: 70%; }
.news-card .img.warm { background: var(--orange); }
.news-card .img.warm .ph { color: rgba(255,255,255,0.85); }
.news-card .meta { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); padding: 28px 28px 0; }
/* —— Newsletter —— */
.newsletter {
    border-radius: 32px;
    background: var(--bg-warm);
    padding: 96px;
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center;
  }
@media (max-width: 900px) {
  .newsletter { grid-template-columns: 1fr; padding: 48px 28px; }
}
.newsletter h2 { font-size: clamp(36px, 5vw, 72px); line-height: 0.98; letter-spacing: -0.025em; font-weight: 400; }
.newsletter h2 em { font-style: normal; font-family: 'Familjen Grotesk', sans-serif; color: inherit; font-weight: 400; }
.newsletter p { color: var(--ink-mute); margin-top: 20px; max-width: 460px; }
.news-form { display: flex; gap: 8px; background: var(--bg-card); padding: 8px; border-radius: 6px; }
.news-form input { flex: 1; border: none; padding: 16px 20px; font: inherit; outline: none; background: transparent; }
.news-form button { background: var(--surface-strong); color: #fff; border-radius: 6px; padding: 14px 24px; font-weight: 500; font-size: 14px; transition: background .2s; }
.news-form button:hover { background: var(--orange); }
.news-form button.sent { background: var(--orange); }
.news-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-mute); margin-top: 14px; }
.news-consent a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.news-consent label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.news-consent input[type="checkbox"] {
    appearance: none; -webkit-appearance: none;
    width: 18px; height: 18px;
    border: 1.5px solid var(--ink);
    border-radius: 4px;
    background: var(--bg-card);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
    transition: background .15s, border-color .15s;
  }
.news-consent input[type="checkbox"]:checked {
    background: var(--orange); border-color: var(--orange);
  }
.news-consent input[type="checkbox"]:checked::after {
    content: "";
    position: absolute; left: 4px; top: 1px;
    width: 6px; height: 10px;
    border-right: 2px solid #fff; border-bottom: 2px solid #fff;
    transform: rotate(45deg);
  }
/* —— Footer —— */
footer.site {
    background: var(--surface-strong); color: #c8c4bc;
    padding: 96px 0 56px;
    margin-top: 96px;
  }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; }
@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
footer h5 { font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 24px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
footer ul a { color: #f3f0ea; font-size: 15px; }
footer ul a:hover { color: var(--orange); }
.foot-brand .logo { color: #fff; }
.foot-brand .addr { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.6; margin-top: 48px; max-width: 320px; }
.foot-brand .addr a { color: #fff; }
.foot-brand .addr a:hover { color: var(--orange); }
.socials { display: flex; gap: 10px; margin-top: 28px; }
.socials a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .2s, color .2s;
  }
.socials a:hover { background: var(--orange); color: #fff; }
.foot-bottom {
    margin-top: 96px;
    display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap;
    font-size: 13px; color: rgba(255,255,255,0.55);
  }
.foot-bottom .legal { display: flex; gap: 24px; }
.foot-bottom .legal a:hover { color: var(--orange); }
.foot-wordmark { font-family: 'DM Sans', sans-serif; font-weight: 800; letter-spacing: 0.18em; font-size: clamp(80px, 16vw, 240px); color: #1a1a1a; line-height: 0.8; margin-top: 64px; user-select: none; }
.foot-wordmark em { color: var(--orange); font-style: normal; }
/* —— Misc utility —— */
.pad-y-lg { padding: 160px 0; }
.pad-y-md { padding: 120px 0; }
.pad-y-sm { padding: 64px 0; }
.tag-orange {
    display: inline-block; padding: 4px 12px; border-radius: 999px;
    background: var(--orange-soft); color: var(--orange-deep);
    font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  }
.tag-dark {
    display: inline-block; padding: 4px 12px; border-radius: 999px;
    background: var(--surface-strong); color: #fff;
    font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  }
/* —— Hamburger button (desktop: hidden) —— */
.hamburger {
    display: none;
    width: 44px; height: 44px;
    border-radius: 999px;
    background: var(--bg-warm);
    align-items: center; justify-content: center;
    flex-direction: column; gap: 4px;
    flex-shrink: 0;
    cursor: pointer;
  }
.hamburger span {
    width: 18px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s, opacity .15s;
  }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
/* —— Mobile drawer (desktop: hidden) —— */
.drawer {
    display: none;
    position: fixed; left: 0; right: 0; top: 0; bottom: 0;
    background: var(--bg-card);
    z-index: 100;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform .3s ease;
    padding: 92px 24px 32px;
  }
.drawer.open { transform: translateY(0); }
.drawer-close {
    position: absolute; top: 22px; right: 24px;
    width: 44px; height: 44px;
    border-radius: 999px;
    background: var(--bg-warm);
    color: var(--ink);
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 1;
  }
.drawer-inner { display: flex; flex-direction: column; gap: 4px; max-width: 720px; margin: 0 auto; }
.drawer details { padding: 0; }
.drawer summary {
    list-style: none;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 8px;
    font-size: 18px; font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
.drawer summary::-webkit-details-marker { display: none; }
.drawer summary .chev { width: 14px; height: 14px; transition: transform .2s; }
.drawer details[open] summary .chev { transform: rotate(180deg); }
.drawer details a {
    display: block;
    padding: 12px 16px 12px 16px;
    color: var(--ink-2); font-size: 16px;
  }
.drawer details a:hover { color: var(--orange); }
.drawer-link {
    display: block;
    padding: 16px 8px;
    font-size: 18px; font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
.drawer-link:hover { color: var(--orange); }
.drawer-cta { margin-top: 16px; justify-content: center; }
/* —— Hide nav on mobile, simplify —— */
@media (max-width: 980px) {
  nav.primary { display: none; }
  .nav { grid-template-columns: 1fr auto; gap: 12px; }
  .utility .row { font-size: 11px; }
  .utility .left .hide-sm { display: none; }
  .hamburger { display: inline-flex; }
  .drawer { display: block; }
}
/* —— Mobile polish pass —— */
@media (max-width: 720px) {
  .section-pad-sm { padding: 56px 0; }
  h2.display br { display: none; }
  /* Header CTAs shrink */
  .nav-cta { gap: 8px; }
  .nav-cta .btn { padding: 10px 14px; font-size: 13px; }
  .logo img { height: 16px; }
  /* Utility strip: keep phone, drop everything optional */
  .utility .row { gap: 12px; }
  .utility .right { gap: 12px; }
  .utility .right .lang-trigger { padding: 4px 9px; }
  .utility .left a + a { display: none; }
  .invest-cta { padding: 40px 24px; border-radius: 24px; }
  .newsletter { padding: 36px 24px; border-radius: 24px; }
  .quote-card { padding: 28px; border-radius: 22px; }
  /* Footer */
  footer.site { padding: 64px 0 40px; margin-top: 56px; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .foot-bottom .legal { flex-wrap: wrap; gap: 12px; }
  /* Newsletter form: stack input + button */
  .news-form { flex-direction: column; padding: 6px; border-radius: 18px; gap: 4px; }
  .news-form input { padding: 14px 16px; }
  .news-form button { width: 100%; padding: 14px; border-radius: 14px; }
  /* Step CTA inside step cards: shrink */
  .step { padding: 28px 24px; min-height: 0; }
  .step-num { font-size: 72px; }
  .step h4 { font-size: 22px; }
  .step-arrow { font-size: 13px; padding: 10px 14px 10px 16px; }
  /* Typology cards */
  .typo { padding: 32px 24px; min-height: 0; }
  .typo h3 { font-size: 26px; }
  /* Ticker rail: a little smaller */
  .ticker-inner { font-size: 13px; gap: 18px; padding: 11px 10px; }
}
@media (max-width: 480px) {
  /* On small phones, show ONLY hamburger + logo in header to avoid overflow */
  .nav-cta .btn-whatsapp { display: none; }
  .nav { padding-top: 16px; padding-bottom: 16px; gap: 8px; }
}
/* Very small screens */
@media (max-width: 420px) {
  .wrap { padding: 0 18px; }
  .quote-card .photo { aspect-ratio: 4/3; }
}
/* —— SVG defs —— */
.icn { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }
/* Subtle reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
