:root {
  --carbon: #071411;
  --carbon-2: #0e211d;
  --carbon-3: #17302b;
  --signal: #22c7b8;
  --signal-soft: #8ce4d9;
  --champagne: #d8b45a;
  --paper: #f4f1e9;
  --paper-2: #ebe7dc;
  --ink: #0b1916;
  --muted: #61706b;
  --line: rgba(7, 20, 17, .14);
  --white-line: rgba(244, 241, 233, .14);
  --container: 1220px;
  --radius: 26px;
  --shadow: 0 28px 80px rgba(3, 13, 11, .16);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Sora", system-ui, sans-serif; letter-spacing: -.035em; }
h1 em, h2 em { color: var(--signal); font-style: normal; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 128px 0; }
.skip-link { position: fixed; top: -80px; left: 20px; z-index: 999; padding: 12px 16px; background: var(--signal); color: var(--carbon); border-radius: 0 0 8px 8px; }
.skip-link:focus { top: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--paper);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled { background: rgba(7,20,17,.91); border-color: var(--white-line); backdrop-filter: blur(18px); }
.header-inner { height: 78px; display: flex; align-items: center; gap: 34px; }
.brand { flex: 0 0 auto; }
.brand img { width: 150px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a { position: relative; color: rgba(244,241,233,.72); font-family: "Sora", sans-serif; font-size: 12px; font-weight: 500; letter-spacing: .01em; transition: color .2s ease; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 1px; background: var(--signal); transition: width .2s ease; }
.desktop-nav a:hover { color: var(--paper); }
.desktop-nav a:hover::after { width: 100%; }
.desktop-nav .nav-product { color: var(--signal-soft); }
.desktop-nav .nav-product span { margin-left: 2px; }
.desktop-cta { margin-left: 4px; }
.menu-button { display: none; margin-left: auto; width: 46px; height: 46px; border: 1px solid var(--white-line); background: transparent; border-radius: 50%; align-items: center; justify-content: center; flex-direction: column; gap: 7px; cursor: pointer; }
.menu-button span { width: 18px; height: 1px; background: var(--paper); transition: transform .2s ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { padding: 22px 24px 34px; background: rgba(7,20,17,.98); border-top: 1px solid var(--white-line); }
.mobile-menu nav { display: grid; gap: 8px; }
.mobile-menu nav > a:not(.button) { padding: 13px 0; border-bottom: 1px solid var(--white-line); font-family: "Sora", sans-serif; font-size: 18px; }
.mobile-menu .button { margin-top: 18px; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-family: "Sora", sans-serif; font-size: 12px; font-weight: 600; letter-spacing: -.01em; transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 16px; }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 11px; }
.button-large { min-height: 60px; padding-inline: 30px; font-size: 13px; }
.button-primary { color: var(--carbon); background: var(--signal); box-shadow: 0 16px 40px rgba(34,199,184,.15); }
.button-primary:hover { background: #4bd6c8; }
.button-light { color: var(--carbon); background: var(--paper); }
.button-light:hover { background: white; }
.button-outline-light { color: var(--paper); border-color: rgba(244,241,233,.36); }
.button-outline-light:hover { border-color: var(--signal); color: var(--signal-soft); }

.hero {
  position: relative;
  min-height: 910px;
  padding: 150px 0 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 24%, rgba(34,199,184,.10), transparent 28%),
    linear-gradient(135deg, #071411 0%, #0a1916 58%, #10241f 100%);
  overflow: hidden;
}
.hero-grid, .cta-grid { position: absolute; inset: 0; opacity: .2; pointer-events: none; background-image: linear-gradient(rgba(244,241,233,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(244,241,233,.08) 1px, transparent 1px); background-size: 76px 76px; mask-image: linear-gradient(to bottom, transparent 0, black 35%, transparent 94%); }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .86fr 1.14fr; min-height: 590px; align-items: center; gap: 56px; }
.hero-copy { position: relative; z-index: 3; padding-bottom: 16px; }
.eyebrow, .section-tag { display: inline-flex; align-items: center; gap: 10px; color: var(--signal-soft); font-family: "Sora", sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { width: 26px; height: 1px; background: var(--signal); }
.hero h1 { max-width: 670px; margin: 26px 0 28px; font-size: clamp(48px, 5vw, 76px); line-height: 1.02; font-weight: 600; }
.hero-lead { max-width: 600px; margin-bottom: 34px; color: rgba(244,241,233,.72); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; }
.text-link { display: inline-flex; align-items: center; gap: 11px; color: var(--paper); font-family: "Sora", sans-serif; font-size: 12px; font-weight: 500; }
.text-link span { color: var(--signal); }
.hero-note { display: flex; align-items: flex-start; gap: 12px; max-width: 520px; margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--white-line); color: rgba(244,241,233,.57); font-size: 12px; line-height: 1.55; }
.pulse-dot { flex: 0 0 auto; width: 7px; height: 7px; margin-top: 6px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 7px rgba(34,199,184,.1); }

.hero-visual { position: relative; min-height: 620px; border-radius: var(--radius) var(--radius) 0 var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hero-visual picture, .hero-visual picture img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-visual img { object-fit: cover; object-position: 54% center; }
.hero-visual-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,20,17,.02) 42%, rgba(7,20,17,.72) 100%); }
.destination-badge { position: absolute; left: 28px; bottom: 28px; max-width: 315px; padding: 20px 22px; color: var(--paper); background: rgba(7,20,17,.76); border: 1px solid rgba(244,241,233,.18); backdrop-filter: blur(14px); }
.badge-kicker { display: block; margin-bottom: 7px; color: var(--signal-soft); font-family: "Sora", sans-serif; font-size: 8px; letter-spacing: .18em; }
.destination-badge strong { font-family: "Sora", sans-serif; font-size: 16px; line-height: 1.4; }
.network-chip { position: absolute; top: 24px; right: 24px; display: flex; align-items: center; gap: 13px; padding: 13px 16px; color: var(--carbon); background: rgba(244,241,233,.92); backdrop-filter: blur(12px); box-shadow: 0 12px 40px rgba(7,20,17,.16); }
.network-chip small, .network-chip b { display: block; }
.network-chip small { color: var(--muted); font-family: "Sora", sans-serif; font-size: 7px; letter-spacing: .14em; }
.network-chip b { margin-top: 2px; font-size: 10px; }
.network-icon { position: relative; width: 34px; height: 24px; }
.network-icon::before, .network-icon::after { content: ""; position: absolute; height: 1px; background: rgba(7,20,17,.3); transform-origin: left center; }
.network-icon::before { width: 23px; left: 5px; top: 7px; transform: rotate(27deg); }
.network-icon::after { width: 19px; left: 7px; top: 18px; transform: rotate(-29deg); }
.network-icon i { position: absolute; width: 7px; height: 7px; border: 2px solid var(--signal); border-radius: 50%; background: var(--paper); z-index: 1; }
.network-icon i:nth-child(1) { left: 0; top: 2px; }.network-icon i:nth-child(2) { right: 0; top: 11px; }.network-icon i:nth-child(3) { left: 2px; bottom: 0; }

.capability-rail { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 52px; border-top: 1px solid var(--white-line); }
.capability-rail > div { display: grid; grid-template-columns: 38px 1fr; gap: 0 12px; padding: 27px 34px 28px 0; }
.capability-rail > div + div { padding-left: 34px; border-left: 1px solid var(--white-line); }
.capability-rail span { grid-row: span 2; color: var(--signal); font-family: "Sora", sans-serif; font-size: 10px; }
.capability-rail b { font-family: "Sora", sans-serif; font-size: 13px; }
.capability-rail small { color: rgba(244,241,233,.46); font-size: 11px; }

.light-section { background: var(--paper); }
.section-intro { margin-bottom: 60px; }
.split-intro { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 90px; }
.section-tag { color: #137d73; }
.section-intro h2, .manifesto-intro h2 { max-width: 780px; margin: 18px 0 0; font-size: clamp(38px, 4vw, 58px); line-height: 1.12; font-weight: 500; }
.split-intro > p { max-width: 450px; margin: 0; color: var(--muted); font-size: 17px; }
.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.role-grid-2 { grid-template-columns: repeat(2, 1fr); }
.role-card { position: relative; min-height: 520px; padding: 38px; background: #f8f6f0; }
.role-card + .role-card { border-left: 1px solid var(--line); }
.role-card-featured { background: #eeeadf; }
.role-card-dark { color: var(--paper); background: var(--carbon); }
.role-number { position: absolute; top: 34px; right: 34px; color: #75827d; font-family: "Sora", sans-serif; font-size: 10px; letter-spacing: .12em; }
.role-card-dark .role-number { color: rgba(244,241,233,.42); }
.role-icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 72px; border: 1px solid var(--line); border-radius: 50%; }
.role-icon svg { width: 27px; fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.role-icon img { width: 32px; }
.role-card-dark .role-icon { border-color: var(--white-line); }
.role-label { color: #137d73; font-family: "Sora", sans-serif; font-size: 9px; font-weight: 600; letter-spacing: .14em; }
.role-card-dark .role-label { color: var(--signal-soft); }
.role-card h3 { margin: 13px 0 16px; font-size: 27px; font-weight: 500; }
.role-card > p { min-height: 82px; color: var(--muted); font-size: 14px; }
.role-card-dark > p { color: rgba(244,241,233,.58); }
.role-card ul { display: grid; gap: 10px; margin: 26px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; }
.role-card-dark ul { border-color: var(--white-line); }
.role-card li { position: relative; padding-left: 17px; font-size: 12px; font-weight: 500; }
.role-card li::before { content: ""; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--signal); }

.intelligence-section { color: var(--paper); background: var(--carbon-2); overflow: hidden; }
.intelligence-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 80px; }
.section-tag-dark { color: var(--signal-soft); }
.intelligence-copy h2 { max-width: 550px; margin: 20px 0 24px; font-size: clamp(38px, 4vw, 58px); line-height: 1.1; font-weight: 500; }
.intelligence-copy > p { max-width: 560px; color: rgba(244,241,233,.58); font-size: 16px; }
.feature-list { display: grid; margin-top: 46px; border-top: 1px solid var(--white-line); }
.feature-list article { display: grid; grid-template-columns: 38px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--white-line); }
.feature-list article > span { color: var(--signal); font-family: "Sora", sans-serif; font-size: 9px; }
.feature-list h3 { margin: 0 0 4px; font-size: 15px; font-weight: 500; }
.feature-list p { margin: 0; color: rgba(244,241,233,.5); font-size: 12px; }

.data-canvas { position: relative; min-height: 590px; padding: 14px; background: #081815; border: 1px solid rgba(140,228,217,.16); border-radius: var(--radius); box-shadow: 0 40px 100px rgba(0,0,0,.24); }
.data-canvas::before { content: ""; position: absolute; inset: -110px -160px auto auto; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(34,199,184,.13), transparent 68%); }
.data-topbar { position: relative; z-index: 1; height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 12px; color: rgba(244,241,233,.36); border-bottom: 1px solid var(--white-line); }
.data-topbar span { width: 6px; height: 6px; border-radius: 50%; background: rgba(244,241,233,.2); }
.data-topbar span:first-child { background: var(--signal); }
.data-topbar b { margin-left: auto; font-family: "Sora", sans-serif; font-size: 7px; letter-spacing: .17em; }
.map-panel { position: relative; height: 390px; margin: 14px 0; overflow: hidden; background: linear-gradient(140deg, #102723, #0b1b18); border: 1px solid var(--white-line); }
.map-grid { position: absolute; inset: 0; opacity: .26; background-image: linear-gradient(rgba(140,228,217,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(140,228,217,.13) 1px, transparent 1px); background-size: 42px 42px; }
.map-panel > svg { position: absolute; inset: 10px 0 0; width: 100%; height: calc(100% - 10px); overflow: visible; }
.route { fill: none; stroke: var(--signal); stroke-width: 2.6; stroke-linecap: round; stroke-dasharray: 7 10; animation: routeFlow 12s linear infinite; }
.route-muted { stroke: rgba(244,241,233,.12); stroke-width: 12; stroke-dasharray: none; }
.map-nodes circle { fill: var(--carbon); stroke: var(--signal); stroke-width: 3; filter: drop-shadow(0 0 8px rgba(34,199,184,.7)); }
@keyframes routeFlow { to { stroke-dashoffset: -240; } }
.map-card { position: absolute; min-width: 178px; padding: 15px; background: rgba(7,20,17,.83); border: 1px solid rgba(140,228,217,.24); backdrop-filter: blur(10px); }
.map-card-a { left: 25px; top: 25px; }.map-card-b { right: 25px; bottom: 25px; }
.map-card small, .map-card b, .map-card em { display: block; }
.map-card small { color: rgba(244,241,233,.42); font-family: "Sora", sans-serif; font-size: 7px; letter-spacing: .14em; }
.map-card b { margin: 7px 0 10px; font-size: 11px; }
.map-card span { display: block; height: 4px; background: rgba(244,241,233,.12); }
.map-card span i { display: block; width: var(--v); height: 100%; background: var(--signal); }
.map-card em { color: var(--signal-soft); font-family: "Sora", sans-serif; font-size: 8px; font-style: normal; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric-row > div { position: relative; min-height: 98px; padding: 14px; background: rgba(244,241,233,.03); border: 1px solid var(--white-line); }
.metric-row small, .metric-row strong { display: block; }
.metric-row small { color: rgba(244,241,233,.35); font-family: "Sora", sans-serif; font-size: 7px; letter-spacing: .12em; }
.metric-row strong { margin-top: 7px; font-family: "Sora", sans-serif; font-size: 12px; font-weight: 500; }
.mini-bars { position: absolute; right: 12px; bottom: 12px; display: flex; align-items: end; gap: 3px; height: 26px; }
.mini-bars i { width: 4px; background: var(--signal); }.mini-bars i:nth-child(1){height:25%}.mini-bars i:nth-child(2){height:48%}.mini-bars i:nth-child(3){height:38%}.mini-bars i:nth-child(4){height:72%}.mini-bars i:nth-child(5){height:100%}
.mini-line { position: absolute; right: 12px; bottom: 18px; width: 48px; height: 18px; border-top: 2px solid var(--signal); transform: skewY(-17deg); }
.mini-arrow { position: absolute; right: 14px; bottom: 10px; color: var(--signal); font-size: 27px; }

.journey-section { background: #e8e4d9; }
.centered { max-width: 800px; margin-inline: auto; text-align: center; }
.centered h2 { margin-inline: auto; }
.journey-line { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.journey-line-3 { grid-template-columns: repeat(3, 1fr); }
.journey-line::before { content: ""; position: absolute; top: 27px; left: 9%; right: 9%; height: 1px; background: var(--line); }
.journey-line article { position: relative; padding: 0 28px; text-align: center; }
.journey-line article > span { position: relative; z-index: 1; width: 55px; height: 55px; display: inline-grid; place-items: center; color: var(--carbon); background: #e8e4d9; border: 1px solid var(--ink); border-radius: 50%; font-family: "Sora", sans-serif; font-size: 12px; }
.journey-line article:nth-child(4) > span { color: var(--carbon); background: var(--signal); border-color: var(--signal); }
.journey-line h3 { margin: 22px 0 11px; font-size: 17px; font-weight: 600; }
.journey-line p { margin: 0; color: var(--muted); font-size: 13px; }

.platform-section { padding: 90px 0; background: var(--paper); }
.platform-card { position: relative; min-height: 485px; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; overflow: hidden; color: var(--paper); background: linear-gradient(125deg, #071411 0%, #102c26 100%); border-radius: var(--radius); }
.platform-art { position: relative; height: 100%; display: grid; place-items: center; overflow: hidden; }
.platform-art::before { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(34,199,184,.16), transparent 65%); }
.platform-art img { position: relative; z-index: 2; width: 116px; filter: drop-shadow(0 20px 40px rgba(0,0,0,.3)); }
.orbit { position: absolute; border: 1px solid rgba(140,228,217,.18); border-radius: 50%; }
.orbit-a { width: 280px; height: 280px; }.orbit-b { width: 430px; height: 430px; }
.orbit::after { content: ""; position: absolute; top: 50%; right: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--champagne); box-shadow: 0 0 20px rgba(216,180,90,.7); }
.platform-copy { position: relative; z-index: 2; max-width: 610px; padding: 70px 75px 70px 10px; }
.platform-copy h2 { margin: 18px 0 22px; font-size: clamp(36px, 4vw, 54px); line-height: 1.11; font-weight: 500; }
.platform-copy p { max-width: 570px; margin-bottom: 30px; color: rgba(244,241,233,.58); }
.platform-index { position: absolute; top: 30px; right: 34px; color: rgba(244,241,233,.35); font-family: "Sora", sans-serif; font-size: 8px; letter-spacing: .14em; }

.manifesto-section { background: var(--paper); }
.manifesto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; padding-bottom: 82px; border-bottom: 1px solid var(--line); }
.manifesto-intro > p { max-width: 540px; margin-top: 26px; color: var(--muted); font-size: 16px; }
.mission-stack { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.mission-stack article { padding: 34px; background: #f8f6f0; }
.mission-stack span { color: #137d73; font-family: "Sora", sans-serif; font-size: 9px; font-weight: 600; letter-spacing: .16em; }
.mission-stack p { margin: 12px 0 0; font-family: "Sora", sans-serif; font-size: 19px; line-height: 1.5; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 1px; background: var(--line); border: 1px solid var(--line); }
.values-grid article { min-height: 245px; padding: 32px; background: var(--paper); }
.values-grid article > span { color: #137d73; font-family: "Sora", sans-serif; font-size: 9px; }
.values-grid h3 { max-width: 260px; margin: 55px 0 11px; font-size: 17px; font-weight: 600; }
.values-grid p { margin: 0; color: var(--muted); font-size: 13px; }

.cta-section { position: relative; padding: 138px 0; overflow: hidden; color: var(--paper); background: var(--carbon); text-align: center; }
.cta-section::after { content: ""; position: absolute; left: 50%; bottom: -250px; width: 780px; height: 500px; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(34,199,184,.16), transparent 66%); }
.cta-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.cta-inner > img { width: 68px; margin-bottom: 24px; }
.cta-inner > span { color: var(--signal-soft); font-family: "Sora", sans-serif; font-size: 9px; letter-spacing: .2em; }
.cta-inner h2 { max-width: 820px; margin: 22px auto 18px; font-size: clamp(40px, 5vw, 67px); line-height: 1.08; font-weight: 500; }
.cta-inner p { margin-bottom: 32px; color: rgba(244,241,233,.57); font-size: 17px; }

.site-footer { padding: 74px 0 26px; color: var(--paper); background: #030b09; }
.footer-top { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 50px; padding-bottom: 65px; }
.footer-brand img { width: 170px; }
.footer-brand p { margin: 24px 0 0; color: rgba(244,241,233,.45); font-family: "Sora", sans-serif; font-size: 13px; line-height: 1.7; }
.footer-links { display: grid; align-content: start; gap: 11px; }
.footer-links b { margin-bottom: 8px; color: var(--signal-soft); font-family: "Sora", sans-serif; font-size: 9px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.footer-links a { color: rgba(244,241,233,.54); font-size: 12px; transition: color .2s ease; }
.footer-links a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; color: rgba(244,241,233,.3); border-top: 1px solid rgba(244,241,233,.1); font-size: 10px; letter-spacing: .04em; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal].is-visible { opacity: 1; transform: translate(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .desktop-nav { gap: 19px; }
  .desktop-nav a { font-size: 11px; }
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 34px; }
  .hero h1 { font-size: clamp(46px, 5.6vw, 64px); }
  .intelligence-layout { gap: 45px; }
  .platform-copy { padding-right: 42px; }
}

@media (max-width: 960px) {
  .desktop-nav, .desktop-cta { display: none; }
  .menu-button { display: flex; }
  .hero { min-height: auto; padding-top: 130px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 570px; }
  .capability-rail { margin-top: 42px; }
  .split-intro, .intelligence-layout, .manifesto-grid { grid-template-columns: 1fr; gap: 42px; }
  .role-grid, .role-grid-2 { grid-template-columns: 1fr; }
  .role-card { min-height: auto; }
  .role-card + .role-card { border-left: 0; border-top: 1px solid var(--line); }
  .role-icon { margin-bottom: 45px; }
  .role-card > p { min-height: 0; }
  .data-canvas { max-width: 760px; width: 100%; margin-inline: auto; }
  .journey-line, .journey-line-3 { grid-template-columns: 1fr 1fr; gap: 50px 0; }
  .journey-line::before, .journey-line-3::before { display: none; }
  .platform-card { grid-template-columns: .7fr 1.3fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-links:last-child { grid-column: 2; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 88px 0; }
  .header-inner { height: 68px; }
  .brand img { width: 134px; }
  .hero { padding-top: 112px; }
  .hero h1 { margin-top: 22px; font-size: 44px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .text-link { justify-content: center; }
  .hero-visual { min-height: 480px; border-radius: 20px 20px 0 20px; }
  .hero-visual img { object-position: 59% center; }
  .network-chip { top: 14px; right: 14px; }
  .destination-badge { left: 14px; right: 14px; bottom: 14px; max-width: none; }
  .capability-rail { grid-template-columns: 1fr; padding-bottom: 28px; }
  .capability-rail > div, .capability-rail > div + div { padding: 20px 0; border-left: 0; border-bottom: 1px solid var(--white-line); }
  .section-intro h2, .manifesto-intro h2, .intelligence-copy h2, .platform-copy h2 { font-size: 35px; }
  .section-intro { margin-bottom: 42px; }
  .role-card { padding: 30px; }
  .data-canvas { min-height: 505px; padding: 8px; border-radius: 18px; }
  .map-panel { height: 330px; }
  .map-card { min-width: 145px; padding: 12px; }
  .map-card-a { left: 12px; top: 12px; }.map-card-b { right: 12px; bottom: 12px; }
  .metric-row { gap: 5px; }
  .metric-row > div { min-height: 84px; padding: 10px; }
  .metric-row strong { font-size: 10px; }
  .journey-line, .journey-line-3 { grid-template-columns: 1fr; gap: 40px; }
  .journey-line article { padding-inline: 18px; }
  .platform-section { padding: 50px 0; }
  .platform-card { grid-template-columns: 1fr; }
  .platform-art { min-height: 300px; }
  .platform-copy { padding: 10px 30px 50px; }
  .platform-index { top: 22px; right: 24px; }
  .manifesto-grid { padding-bottom: 50px; }
  .mission-stack article { padding: 27px; }
  .mission-stack p { font-size: 16px; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid article { min-height: 210px; }
  .values-grid h3 { margin-top: 42px; }
  .cta-section { padding: 100px 0; }
  .cta-inner h2 { font-size: 39px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 20px; }
  .footer-links:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 38px; }
  .network-chip { display: none; }
  .destination-badge strong { font-size: 14px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* ============================================================
   HOME HUB — 3 portas
   ============================================================ */
.hub-hero { position: relative; min-height: 600px; padding: 150px 0 66px; color: var(--paper); background: radial-gradient(circle at 18% 24%, rgba(34,199,184,.10), transparent 28%), linear-gradient(135deg, #071411 0%, #0a1916 58%, #10241f 100%); overflow: hidden; }
.hub-hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 56px; min-height: 300px; }
.hub-hero h1 { max-width: 640px; margin: 22px 0 22px; font-size: clamp(40px, 5vw, 62px); line-height: 1.08; font-weight: 600; }
.hub-hero-lead { max-width: 540px; color: rgba(244,241,233,.68); font-size: 18px; line-height: 1.65; }
.hub-orbit-box { position: relative; height: 300px; display: grid; place-items: center; overflow: hidden; max-width: 100%; }
.hub-orbit-box::before { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(34,199,184,.16), transparent 65%); }
.hub-orbit-box img { position: relative; z-index: 2; width: 96px; filter: drop-shadow(0 20px 40px rgba(0,0,0,.3)); }
.hub-proof { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 54px; border-top: 1px solid var(--white-line); }
.hub-proof > div { padding: 26px 30px 0 0; }
.hub-proof > div + div { padding-left: 30px; border-left: 1px solid var(--white-line); }
.hub-proof strong { display: block; font-family: "Sora", sans-serif; font-size: 26px; font-weight: 500; }
.hub-proof span { color: rgba(244,241,233,.5); font-size: 12px; }

.door-section { background: var(--paper); }
.door-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
a.door-card { display: flex; flex-direction: column; min-height: 430px; padding: 40px 34px; background: #f8f6f0; transition: background .2s ease, transform .2s ease; }
a.door-card:hover { background: #eeeadf; transform: translateY(-3px); }
a.door-card + a.door-card { border-left: 1px solid var(--line); }
a.door-card.door-dark { color: var(--paper); background: var(--carbon); }
a.door-card.door-dark:hover { background: #0e2620; }
.door-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 54px; border: 1px solid var(--line); border-radius: 50%; }
.door-dark .door-icon { border-color: var(--white-line); }
.door-icon svg { width: 26px; fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.door-dark .door-icon svg { stroke: var(--paper); }
.door-label { color: #137d73; font-family: "Sora", sans-serif; font-size: 9px; font-weight: 600; letter-spacing: .14em; }
.door-dark .door-label { color: var(--signal-soft); }
.door-card h3 { margin: 13px 0 14px; font-size: 25px; font-weight: 500; }
.door-card > p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.door-dark > p { color: rgba(244,241,233,.6); }
.door-cta { margin-top: auto; padding-top: 22px; display: flex; align-items: center; gap: 9px; color: #137d73; font-family: "Sora", sans-serif; font-size: 12px; font-weight: 600; }
.door-dark .door-cta { color: var(--signal-soft); }
.door-sub { position: relative; z-index: 1; margin-top: 12px; font-size: 12.5px; color: var(--muted); }
.door-sub a { color: #137d73; font-weight: 600; border-bottom: 1px solid currentColor; }

/* ============================================================
   FAQ (acordeão reutilizável)
   ============================================================ */
.faq-accordion { max-width: 800px; margin-inline: auto; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.faq-accordion details { padding: 26px 30px; background: var(--paper); }
.faq-accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-family: "Sora", sans-serif; font-size: 16px; font-weight: 500; list-style: none; }
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-plus { flex: 0 0 auto; width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 14px; color: #137d73; transition: transform .2s ease; }
.faq-accordion details[open] .faq-plus { transform: rotate(45deg); }
.faq-accordion p { margin: 16px 0 0; max-width: 640px; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ============================================================
   CRM — pipeline mock + visualizador 3D real
   ============================================================ */
.pipeline-card { position: relative; padding: 26px; color: var(--paper); background: #081815; border: 1px solid rgba(140,228,217,.16); border-radius: var(--radius); box-shadow: 0 40px 100px rgba(0,0,0,.24); }
.pipeline-topbar { display: flex; align-items: center; gap: 7px; padding-bottom: 18px; margin-bottom: 22px; border-bottom: 1px solid var(--white-line); color: rgba(244,241,233,.4); }
.pipeline-topbar span { width: 6px; height: 6px; border-radius: 50%; background: rgba(244,241,233,.2); }
.pipeline-topbar span:first-child { background: var(--signal); }
.pipeline-topbar b { margin-left: auto; font-family: "Sora", sans-serif; font-size: 7px; font-weight: 500; letter-spacing: .16em; }
.pipeline-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pipeline-col { min-height: 220px; padding: 12px; background: rgba(244,241,233,.03); border: 1px solid var(--white-line); }
.pipeline-col h5 { margin: 0 0 12px; color: rgba(244,241,233,.5); font-family: "Sora", sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.pipeline-card-item { margin-bottom: 8px; padding: 11px 12px; background: rgba(7,20,17,.7); border: 1px solid var(--white-line); border-left: 2px solid var(--signal); font-size: 11px; }
.pipeline-card-item b { display: block; margin-bottom: 3px; font-size: 12px; }
.pipeline-card-item span { color: rgba(244,241,233,.42); font-size: 9px; }
.pipeline-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.pipeline-metrics > div { padding: 14px; background: rgba(244,241,233,.03); border: 1px solid var(--white-line); }
.pipeline-metrics small { display: block; color: rgba(244,241,233,.35); font-family: "Sora", sans-serif; font-size: 7px; letter-spacing: .1em; }
.pipeline-metrics strong { display: block; margin-top: 6px; color: var(--signal-soft); font-family: "Sora", sans-serif; font-size: 16px; font-weight: 500; }

.viewer-frame { position: relative; aspect-ratio: 16/10; background: #081815; border: 1px solid var(--white-line); border-radius: 18px; overflow: hidden; }
.viewer-frame iframe { width: 100%; height: 100%; border: 0; }
.viewer-tag { position: absolute; top: 14px; left: 14px; padding: 7px 12px; color: var(--signal-soft); background: rgba(7,20,17,.8); border: 1px solid rgba(140,228,217,.25); font-family: "Sora", sans-serif; font-size: 9px; letter-spacing: .1em; backdrop-filter: blur(8px); }

/* ============================================================
   Feature grid pequeno (ícone + título + texto)
   ============================================================ */
.feat-grid-v2 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 54px; background: var(--line); border: 1px solid var(--line); }
.feat-card-v2 { min-height: 172px; padding: 28px 24px; background: var(--paper); }
.feat-icon-v2 { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 20px; border: 1px solid var(--line); border-radius: 10px; }
.feat-icon-v2 svg { width: 18px; fill: none; stroke: #137d73; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feat-card-v2 h4 { margin: 0 0 8px; font-family: "Sora", sans-serif; font-size: 14px; font-weight: 600; }
.feat-card-v2 p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.6; }

/* ============================================================
   Depoimentos
   ============================================================ */
.testi-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
.testi-card-v2 { padding: 30px; background: #f8f6f0; border: 1px solid var(--line); border-radius: 16px; }
.testi-stars-v2 { margin-bottom: 16px; color: var(--champagne); font-size: 13px; letter-spacing: 2px; }
.testi-card-v2 p { margin-bottom: 20px; color: var(--ink); font-size: 14px; line-height: 1.7; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar-v2 { width: 38px; height: 38px; display: grid; place-items: center; color: var(--signal-soft); background: var(--carbon); border-radius: 50%; font-family: "Sora", sans-serif; font-size: 12px; font-weight: 600; }
.testi-who b { display: block; font-size: 13px; }
.testi-who span { color: var(--muted); font-size: 11.5px; }

/* ============================================================
   Pricing
   ============================================================ */
.pricing-wrap-v2 { max-width: 920px; margin-inline: auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.pricing-main-v2 { padding: 44px; color: var(--paper); background: var(--carbon); }
.pricing-badge-v2 { display: inline-block; margin-bottom: 22px; padding: 6px 14px; color: var(--signal-soft); background: rgba(34,199,184,.14); border-radius: 999px; font-family: "Sora", sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .08em; }
.price-row-v2 { display: flex; align-items: flex-end; gap: 6px; }
.price-row-v2 .curr { padding-bottom: 8px; color: rgba(244,241,233,.6); font-family: "Sora", sans-serif; font-size: 20px; }
.price-row-v2 .val { font-family: "Sora", sans-serif; font-size: 56px; font-weight: 600; }
.price-row-v2 .per { padding-bottom: 10px; color: rgba(244,241,233,.5); font-size: 13px; }
.pricing-note-v2 { margin: 10px 0 28px; color: rgba(244,241,233,.5); font-size: 12.5px; }
.pricing-list-v2 { display: grid; gap: 12px; margin: 0 0 30px; padding: 24px 0 0; border-top: 1px solid var(--white-line); list-style: none; }
.pricing-list-v2 li { display: flex; align-items: flex-start; gap: 10px; color: rgba(244,241,233,.82); font-size: 13px; }
.pricing-list-v2 svg { flex: 0 0 auto; margin-top: 2px; }
.pricing-aside-v2 { display: grid; gap: 24px; align-content: center; padding: 40px 36px; background: #f8f6f0; }
.pricing-aside-v2 article span { color: #137d73; font-family: "Sora", sans-serif; font-size: 9px; font-weight: 600; letter-spacing: .1em; }
.pricing-aside-v2 article h5 { margin: 8px 0 6px; font-size: 14px; }
.pricing-aside-v2 article p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.6; }

/* ============================================================
   Parceria — requisitos + ponte para CRM
   ============================================================ */
.req-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 20px; background: var(--line); border: 1px solid var(--line); }
.req-item { display: flex; align-items: flex-start; gap: 14px; padding: 24px 26px; background: var(--paper); }
.req-item svg { flex: 0 0 auto; margin-top: 2px; fill: none; stroke: #137d73; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.req-item b { display: block; margin-bottom: 3px; font-family: "Sora", sans-serif; font-size: 13px; }
.req-item p { margin: 0; color: var(--ink); font-size: 13.5px; line-height: 1.6; }
.bridge-banner { display: flex; align-items: center; gap: 20px; margin-top: 48px; padding: 24px 28px; background: #eeeadf; border-radius: 16px; }
.bridge-banner p { margin: 0; color: var(--ink); font-size: 13.5px; }
.bridge-banner a { flex: 0 0 auto; color: #137d73; font-weight: 600; font-size: 13px; border-bottom: 1px solid currentColor; }

/* ============================================================
   Calculadora — solar residencial
   ============================================================ */
.calc-card { max-width: 920px; margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.calc-inputs { padding: 40px; background: var(--paper); }
.calc-field { margin-bottom: 20px; }
.calc-field label { display: block; margin-bottom: 8px; color: var(--muted); font-family: "Sora", sans-serif; font-size: 12px; font-weight: 600; }
.calc-field input, .calc-field select { width: 100%; padding: 13px 16px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 10px; font-size: 15px; }
.calc-field input:focus, .calc-field select:focus { outline: 2px solid var(--signal); outline-offset: 1px; }
.calc-result { display: flex; flex-direction: column; justify-content: center; padding: 40px; color: var(--paper); background: var(--carbon); }
.calc-result small { color: rgba(244,241,233,.5); font-family: "Sora", sans-serif; font-size: 10px; letter-spacing: .1em; }
.calc-result strong { display: block; margin: 8px 0 20px; color: var(--signal-soft); font-family: "Sora", sans-serif; font-size: 40px; font-weight: 500; }
.calc-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding-top: 20px; border-top: 1px solid var(--white-line); }
.calc-secondary div b { display: block; font-family: "Sora", sans-serif; font-size: 18px; font-weight: 500; }
.calc-secondary div span { color: rgba(244,241,233,.5); font-size: 10.5px; }
.calc-disclaimer { margin-top: 16px; color: rgba(244,241,233,.4); font-size: 10.5px; line-height: 1.5; }

/* ============================================================
   Sobre — fundadores + linha do tempo
   ============================================================ */
.founder-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 20px; background: var(--line); border: 1px solid var(--line); }
.founder-card { padding: 36px; background: #f8f6f0; }
.founder-avatar { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 22px; color: var(--signal-soft); background: var(--carbon); border-radius: 50%; font-family: "Sora", sans-serif; font-size: 16px; font-weight: 600; }
.founder-card h3 { margin: 0 0 4px; font-size: 19px; }
.founder-role { display: block; margin-bottom: 14px; color: #137d73; font-family: "Sora", sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .06em; }
.founder-card p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.7; }

.timeline-v2 { position: relative; display: grid; gap: 0; margin-top: 20px; }
.timeline-v2::before { content: ""; position: absolute; top: 6px; bottom: 6px; left: 9px; width: 1px; background: var(--line); }
.timeline-item { position: relative; padding: 0 0 40px 40px; }
.timeline-item::before { content: ""; position: absolute; top: 4px; left: 0; width: 19px; height: 19px; background: var(--paper); border: 1px solid var(--ink); border-radius: 50%; }
.timeline-item.is-now::before { background: var(--signal); border-color: var(--signal); }
.timeline-item b { display: block; margin-bottom: 6px; color: #137d73; font-family: "Sora", sans-serif; font-size: 11px; letter-spacing: .06em; }
.timeline-item h4 { margin: 0 0 8px; font-size: 17px; }
.timeline-item p { max-width: 560px; margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.65; }

/* ============================================================
   Estudo de Viabilidade — Caso Real (Showcase)
   ============================================================ */
.study-showcase-section { background: var(--paper-2); padding: 100px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.study-intro-sub { max-width: 760px; margin: 16px auto 0; color: var(--muted); font-size: 16px; line-height: 1.6; text-align: center; }
.study-intro-sub strong { color: var(--ink); font-weight: 600; }
.study-showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.study-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 36px rgba(7,20,17,.06); transition: transform .25s ease, box-shadow .25s ease; }
.study-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(7,20,17,.12); }
.study-card-media { position: relative; width: 100%; aspect-ratio: 16/11; background: var(--carbon); overflow: hidden; border-bottom: 1px solid var(--line); }
.study-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .3s ease; }
.study-card:hover .study-card-media img { transform: scale(1.02); }
.study-card-body { display: flex; flex-direction: column; padding: 28px 30px 32px; flex: 1; }
.study-tag { color: #137d73; font-family: "Sora", sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.study-card-body h3 { font-size: 20px; font-weight: 600; margin: 0 0 12px; color: var(--ink); line-height: 1.3; }
.study-card-body p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.study-cta-box { display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-top: 48px; padding: 40px 48px; background: var(--carbon); color: var(--paper); border-radius: var(--radius); }
.study-cta-info h3 { margin: 8px 0 10px; font-size: 24px; font-weight: 500; }
.study-cta-info p { margin: 0; color: rgba(244,241,233,.68); font-size: 14.5px; max-width: 640px; line-height: 1.6; }
.study-badge { display: inline-block; color: var(--signal-soft); font-family: "Sora", sans-serif; font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }

/* Android Showcase Grid */
.android-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.android-gallery-grid figure { margin: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--white-line); box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.android-gallery-grid img { width: 100%; height: auto; display: block; }

@media (max-width: 960px) {
  .hub-hero-layout { grid-template-columns: 1fr; }
  .hub-proof { grid-template-columns: 1fr; gap: 18px; }
  .hub-proof > div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--white-line); padding-top: 18px; }
  .door-grid { grid-template-columns: 1fr; }
  a.door-card { min-height: auto; }
  a.door-card + a.door-card { border-left: 0; border-top: 1px solid var(--line); }
  .pipeline-cols { grid-template-columns: repeat(2, 1fr); }
  .feat-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .testi-grid-v2 { grid-template-columns: 1fr; }
  .pricing-wrap-v2, .calc-card, .founder-grid, .req-list { grid-template-columns: 1fr; }
  .bridge-banner { flex-direction: column; align-items: flex-start; }
  .study-showcase-grid { grid-template-columns: 1fr; }
  .study-cta-box { flex-direction: column; align-items: flex-start; padding: 32px; }
  .android-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 680px) {
  .hub-hero { padding-top: 118px; }
  .hub-orbit-box { height: 200px; max-width: 100%; overflow: hidden; }
  .hub-orbit-box .orbit-a { width: 170px; height: 170px; }
  .hub-orbit-box .orbit-b { width: 250px; height: 250px; }
  .hub-orbit-box::before { width: 170px; height: 170px; }
  .hub-orbit-box img { width: 70px; }
  .platform-art .orbit-a { width: 190px; height: 190px; }
  .platform-art .orbit-b { width: 270px; height: 270px; }
  .pipeline-cols { grid-template-columns: 1fr; }
  .pipeline-metrics { grid-template-columns: 1fr; }
  .feat-grid-v2 { grid-template-columns: 1fr; }
  .pricing-main-v2, .pricing-aside-v2, .calc-inputs, .calc-result, .founder-card { padding: 28px; }
  .destination-badge { left: 16px; bottom: 16px; right: 16px; max-width: none; padding: 14px 16px; }
  .destination-badge strong { font-size: 14px; }
  .network-chip { top: 16px; right: 16px; padding: 8px 12px; }
  .study-card-body { padding: 22px 20px 26px; }
  .study-card-body h3 { font-size: 18px; }
  .study-cta-box { padding: 24px 20px; }
  .study-cta-info h3 { font-size: 20px; }
}
