:root {
    --bg: #090d13;
    --bg-2: #0d131c;
    --panel: #111924;
    --panel-2: #151f2b;
    --panel-3: #1a2633;
    --line: #263443;
    --line-soft: rgba(255,255,255,.085);
    --text: #f5f7fb;
    --muted: #9ba8b6;
    --muted-2: #748292;
    --red: #f12d39;
    --red-soft: rgba(241,45,57,.13);
    --aqua: #38d7d5;
    --gold: #f4b64e;
    --volt: #d9ee55;
    --cobalt: #4d82ff;
    --shadow: 0 26px 80px rgba(0,0,0,.28);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--text); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.site-shell { overflow: hidden; background: linear-gradient(180deg,#090d13 0%,#0c121a 42%,#090d13 100%); }

.site-header {
    width: min(1320px, calc(100% - 48px));
    height: 92px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 20;
    border-bottom: 1px solid var(--line-soft);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; text-decoration: none; }
.brand-mark { width: 42px; height: 50px; display: grid; place-items: center; overflow: hidden; }
.brand-mark img { width: 42px; height: auto; object-fit: contain; filter: drop-shadow(0 10px 22px rgba(0,0,0,.35)); }
.brand-copy { display: grid; gap: 3px; }
.brand-copy strong { font-size: 1.18rem; letter-spacing: -.045em; }
.brand-copy strong span { color: var(--red); }
.brand-copy small { color: #697789; font-size: .52rem; font-weight: 800; letter-spacing: .18em; }
.site-nav { display: flex; align-items: center; gap: 29px; }
.site-nav a { color: #a9b5c2; font-size: .72rem; font-weight: 700; text-decoration: none; transition: color .18s ease; }
.site-nav a:hover { color: #fff; }
.team-login { justify-self: end; display: inline-flex; align-items: center; gap: 12px; padding: 11px 15px 11px 17px; border: 1px solid #354353; border-radius: 11px; background: linear-gradient(180deg,#151d27,#101720); color: #f3f6fb; font-size: .72rem; font-weight: 800; text-decoration: none; box-shadow: 0 8px 28px rgba(0,0,0,.18); transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.team-login span { color: #ff6871; }
.team-login:hover { transform: translateY(-1px); border-color: #59697c; background: #18222e; }

.hero {
    min-height: 820px;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0,.92fr) minmax(560px,1.08fr);
    gap: 70px;
    align-items: center;
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
    padding: 96px 0 90px;
}
.hero:before { content: ""; position: absolute; inset: -92px -300px 0; pointer-events: none; background: radial-gradient(circle at 11% 28%,rgba(241,45,57,.14),transparent 30%), radial-gradient(circle at 88% 25%,rgba(77,130,255,.11),transparent 28%); }
.hero-grid-glow { position: absolute; inset: 0 44% 0 -180px; pointer-events: none; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.07) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.07) 1px,transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(90deg,#000 0%,transparent 95%); }
.hero-copy, .office-map { position: relative; z-index: 1; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 22px; color: #f86a72; font-size: .62rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { width: 25px; height: 2px; background: var(--red); box-shadow: 0 0 18px rgba(241,45,57,.55); }
.eyebrow.light { color: #ff7c83; }
h1, h2, h3, p { text-wrap: pretty; }
h1 { max-width: 720px; margin: 0; font-size: clamp(4.2rem,6.7vw,7rem); line-height: .91; letter-spacing: -.07em; font-weight: 850; }
h1 em { display: block; color: #ff4651; font-style: normal; }
.hero-lead { max-width: 710px; margin: 30px 0 0; color: #a8b4c1; font-size: 1rem; line-height: 1.78; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 18px; border-radius: 11px; font-size: .72rem; font-weight: 850; letter-spacing: -.01em; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg,#f53340,#c91725); color: #fff; box-shadow: 0 13px 32px rgba(241,45,57,.24), inset 0 1px rgba(255,255,255,.22); }
.button-primary:hover { box-shadow: 0 18px 38px rgba(241,45,57,.34), inset 0 1px rgba(255,255,255,.22); }
.button-secondary { border: 1px solid #374555; background: rgba(18,26,36,.72); color: #c4ced8; }
.button-secondary:hover { border-color: #5b6b7d; }
.hero-proof { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 46px; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.hero-proof div { min-height: 86px; padding: 18px 20px 18px 0; display: grid; grid-template-columns: auto 1fr; gap: 10px; align-content: center; }
.hero-proof div + div { padding-left: 20px; border-left: 1px solid var(--line-soft); }
.hero-proof strong { color: #ff646d; font-size: .6rem; letter-spacing: .12em; }
.hero-proof span { color: #94a1ae; font-size: .71rem; line-height: 1.5; }

.office-map { padding: 18px; border: 1px solid #2a3949; border-radius: 28px; background: linear-gradient(155deg,rgba(26,37,50,.96),rgba(12,18,27,.98)); box-shadow: 0 44px 120px rgba(0,0,0,.38), inset 0 1px rgba(255,255,255,.045); overflow: hidden; }
.office-map:before { content: ""; position: absolute; width: 360px; height: 360px; right: -160px; top: -180px; border-radius: 50%; background: radial-gradient(circle,rgba(77,130,255,.14),transparent 64%); pointer-events: none; }
.office-map-head { min-height: 68px; padding: 5px 7px 16px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line-soft); }
.office-map-head > div { display: grid; gap: 5px; }
.micro-label { color: #69788a; font-size: .52rem; font-weight: 900; letter-spacing: .18em; }
.office-map-head strong { font-size: 1.06rem; letter-spacing: -.03em; }
.live-chip { display: inline-flex; align-items: center; gap: 8px; padding: 7px 9px; border: 1px solid rgba(56,215,213,.2); border-radius: 999px; background: rgba(56,215,213,.07); color: #83ebe9; font-size: .58rem; font-weight: 800; }
.live-chip i, .office-map-foot i { width: 7px; height: 7px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 15px rgba(56,215,213,.8); }
.office-canvas { min-height: 500px; position: relative; margin: 14px 0; border: 1px solid var(--line-soft); border-radius: 18px; background: radial-gradient(circle at 50% 47%,rgba(241,45,57,.11),transparent 25%), linear-gradient(rgba(255,255,255,.028) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.028) 1px,transparent 1px), rgba(4,8,13,.26); background-size: auto, 34px 34px, 34px 34px, auto; overflow: hidden; }
.office-orbit { position: absolute; left: 50%; top: 48%; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-one { width: 310px; height: 310px; }
.orbit-two { width: 455px; height: 455px; border-color: rgba(255,255,255,.045); }
.office-core { width: 174px; min-height: 190px; position: absolute; left: 50%; top: 48%; z-index: 3; transform: translate(-50%,-50%); display: grid; place-items: center; align-content: center; gap: 5px; padding: 18px; border: 1px solid rgba(241,45,57,.38); border-radius: 24px; background: linear-gradient(160deg,#1c202a,#10161f); box-shadow: 0 24px 70px rgba(0,0,0,.4), 0 0 48px rgba(241,45,57,.12); text-align: center; }
.core-mark { width: 58px; height: 70px; display: grid; place-items: center; overflow: hidden; margin-bottom: 3px; }
.core-mark img { width: 58px; height: auto; filter: drop-shadow(0 10px 24px rgba(0,0,0,.35)); }
.office-core small { color: #ff626c; font-size: .5rem; font-weight: 900; letter-spacing: .18em; }
.office-core strong { font-size: 1.05rem; letter-spacing: -.03em; }
.office-core p { margin: 1px 0 0; color: #778697; font-size: .62rem; }
.office-node { --accent: var(--aqua); min-width: 132px; min-height: 64px; position: absolute; z-index: 4; display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: center; padding: 10px 12px; border: 1px solid rgba(255,255,255,.09); border-radius: 13px; background: linear-gradient(145deg,#151e29,#0e151e); box-shadow: 0 13px 34px rgba(0,0,0,.26); }
.office-node > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: color-mix(in srgb,var(--accent) 9%,transparent); border: 1px solid color-mix(in srgb,var(--accent) 20%,transparent); color: var(--accent); font-size: .55rem; font-weight: 900; }
.office-node div { display: grid; gap: 2px; }
.office-node small { color: #667688; font-size: .42rem; font-weight: 900; letter-spacing: .12em; }
.office-node strong { font-size: .72rem; }
.node-a { --accent: var(--red); left: 6%; top: 9%; }
.node-b { --accent: var(--aqua); right: 6%; top: 10%; }
.node-c { --accent: var(--gold); left: 5%; top: 43%; }
.node-d { --accent: var(--volt); right: 5%; top: 43%; }
.node-e { --accent: var(--cobalt); left: 12%; bottom: 8%; }
.node-f { --accent: #bd79ff; right: 12%; bottom: 8%; }
.office-map-foot { min-height: 45px; padding: 13px 4px 1px; display: flex; justify-content: space-between; gap: 20px; color: #718091; font-size: .56rem; }
.office-map-foot span { display: inline-flex; align-items: center; gap: 7px; }

.signal-strip { width: min(1320px,calc(100% - 48px)); margin: 0 auto 26px; display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid #263544; border-radius: 20px; background: #101720; box-shadow: var(--shadow); overflow: hidden; }
.signal-strip article { min-height: 174px; padding: 27px 28px; position: relative; background: linear-gradient(145deg,rgba(255,255,255,.018),transparent); }
.signal-strip article + article { border-left: 1px solid #263544; }
.signal-strip article:after { content: ""; position: absolute; left: 28px; bottom: 0; width: 44px; height: 2px; background: linear-gradient(90deg,var(--red),transparent); }
.signal-strip span { color: #667687; font-size: .55rem; font-weight: 900; letter-spacing: .16em; }
.signal-strip strong { display: block; margin-top: 24px; max-width: 340px; font-size: 1rem; line-height: 1.35; letter-spacing: -.025em; }
.signal-strip p { margin: 9px 0 0; max-width: 360px; color: #82909f; font-size: .72rem; line-height: 1.6; }

.section { width: min(1320px,calc(100% - 48px)); margin: 0 auto; padding: 118px 0; }
.section-heading { margin-bottom: 48px; }
.section-heading h2, .statement-copy h2, .scale-copy h2, .possibility-head h2, .foundation-copy h2, .closing-copy h2 { margin: 0; font-size: clamp(2.7rem,4.6vw,4.8rem); line-height: 1.02; letter-spacing: -.055em; }
.section-heading > p, .split-heading > p, .scale-copy > p:last-child, .possibility-head > p:last-child, .foundation-copy > p:last-child, .closing-copy > p:last-child { color: #94a1af; font-size: .9rem; line-height: 1.75; }
.split-heading { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(390px,.7fr); gap: 80px; align-items: end; }
.split-heading > p { margin: 0 0 5px; max-width: 600px; }

.section-statement { display: grid; grid-template-columns: 1.15fr .85fr; gap: 86px; align-items: center; }
.statement-copy h2 { max-width: 780px; }
.statement-panel { padding: 34px; border: 1px solid #2a3948; border-radius: 24px; background: radial-gradient(circle at 100% 0,rgba(241,45,57,.08),transparent 34%), linear-gradient(145deg,#111924,#0e151e); box-shadow: 0 28px 90px rgba(0,0,0,.22); }
.statement-panel p { margin: 0; color: #8d9baa; font-size: .82rem; line-height: 1.7; }
.statement-panel strong { display: block; margin: 24px 0 9px; color: #dbe3ec; font-size: .76rem; }
.statement-panel blockquote { margin: 0 0 22px; padding: 22px 0 22px 22px; border-left: 3px solid var(--red); color: #fff; font-size: clamp(1.5rem,2.6vw,2.4rem); line-height: 1.15; letter-spacing: -.04em; font-weight: 800; }

.section-shape { padding-top: 126px; }
.shape-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.shape-card { --accent: var(--red); min-height: 390px; position: relative; padding: 28px; display: flex; flex-direction: column; border: 1px solid #2a3848; border-radius: 22px; background: radial-gradient(circle at 88% 5%,color-mix(in srgb,var(--accent) 9%,transparent),transparent 32%), linear-gradient(145deg,#141d28,#0f161f); overflow: hidden; box-shadow: 0 24px 70px rgba(0,0,0,.18); transition: transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.shape-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb,var(--accent) 35%,#2a3848); box-shadow: 0 34px 90px rgba(0,0,0,.28); }
.shape-card:before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--accent),transparent 72%); }
.shape-aqua { --accent: var(--aqua); }
.shape-volt { --accent: var(--volt); }
.shape-cobalt { --accent: var(--cobalt); }
.shape-index { color: var(--accent); font-size: .6rem; font-weight: 900; letter-spacing: .14em; }
.shape-icon { width: 54px; height: 54px; margin-top: 32px; display: grid; place-items: center; border-radius: 15px; color: var(--accent); background: color-mix(in srgb,var(--accent) 7%,transparent); border: 1px solid color-mix(in srgb,var(--accent) 22%,transparent); font-size: .68rem; font-weight: 900; letter-spacing: .08em; }
.shape-card h3 { margin: 20px 0 10px; font-size: 1.5rem; letter-spacing: -.04em; }
.shape-card > p { max-width: 560px; margin: 0; color: #8997a6; font-size: .82rem; line-height: 1.66; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 30px; }
.tag-row span { padding: 8px 10px; border: 1px solid rgba(255,255,255,.07); border-radius: 999px; background: rgba(255,255,255,.025); color: #93a0ad; font-size: .6rem; font-weight: 750; }

.scale-section { width: 100%; position: relative; padding: 116px max(24px,calc((100% - 1320px)/2)); background: linear-gradient(140deg,#111722 0%,#171f2b 55%,#0d131c 100%); border-top: 1px solid #253240; border-bottom: 1px solid #253240; overflow: hidden; }
.scale-section:before { content: ""; position: absolute; width: 620px; height: 620px; right: -300px; top: -270px; border: 1px solid rgba(241,45,57,.18); border-radius: 50%; box-shadow: 0 0 0 72px rgba(241,45,57,.025),0 0 0 144px rgba(241,45,57,.012); }
.scale-shell { position: relative; z-index: 1; display: grid; grid-template-columns: .86fr 1.14fr; gap: 92px; align-items: start; }
.scale-copy { position: sticky; top: 40px; }
.scale-copy > p:last-child { max-width: 580px; margin: 23px 0 0; }
.scale-steps { border-top: 1px solid var(--line-soft); }
.scale-steps article { min-height: 142px; display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: center; padding: 23px 0; border-bottom: 1px solid var(--line-soft); }
.scale-steps article > span { color: #ff5f68; font-size: .62rem; font-weight: 900; letter-spacing: .14em; }
.scale-steps article div { display: grid; gap: 5px; }
.scale-steps small { color: #647386; font-size: .49rem; font-weight: 900; letter-spacing: .16em; }
.scale-steps strong { font-size: 1.06rem; letter-spacing: -.025em; }
.scale-steps p { max-width: 560px; margin: 0; color: #83909f; font-size: .74rem; line-height: 1.6; }

.section-possibility { text-align: center; padding-top: 130px; padding-bottom: 130px; }
.possibility-head { max-width: 880px; margin: 0 auto; }
.possibility-head .eyebrow { justify-content: center; }
.possibility-head > p:last-child { max-width: 650px; margin: 20px auto 0; }
.possibility-cloud { max-width: 1050px; margin: 52px auto 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.possibility-cloud span { padding: 13px 16px; border: 1px solid #2a3948; border-radius: 999px; background: linear-gradient(145deg,#131c27,#0e151e); color: #a9b4bf; font-size: .7rem; font-weight: 750; box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.possibility-cloud span:nth-child(4n+1) { border-color: rgba(241,45,57,.3); color: #ff747c; }
.possibility-cloud span:nth-child(4n+2) { border-color: rgba(56,215,213,.25); color: #72dfdd; }
.possibility-cloud span:nth-child(4n+3) { border-color: rgba(244,182,78,.26); color: #e8bf71; }
.possibility-cloud span:nth-child(4n) { border-color: rgba(77,130,255,.28); color: #86a9ff; }
.possibility-note { max-width: 760px; margin: 34px auto 0; color: #667586; font-size: .72rem; line-height: 1.65; }

.foundation-section { width: 100%; padding: 112px max(24px,calc((100% - 1320px)/2)); background: radial-gradient(circle at 10% 30%,rgba(56,215,213,.07),transparent 25%), radial-gradient(circle at 88% 24%,rgba(77,130,255,.08),transparent 30%), linear-gradient(145deg,#0d141d,#121b26); border-top: 1px solid #243241; border-bottom: 1px solid #243241; }
.foundation-shell { display: grid; grid-template-columns: .88fr 1.12fr; gap: 90px; align-items: start; }
.foundation-copy > p:last-child { max-width: 600px; margin: 23px 0 0; }
.foundation-grid { display: grid; grid-template-columns: repeat(2,1fr); border: 1px solid #2a3948; border-radius: 20px; overflow: hidden; background: rgba(6,11,17,.25); }
.foundation-grid article { min-height: 170px; padding: 26px; display: grid; align-content: center; gap: 8px; }
.foundation-grid article:nth-child(odd) { border-right: 1px solid var(--line-soft); }
.foundation-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
.foundation-grid span { color: #ff6069; font-size: .54rem; font-weight: 900; letter-spacing: .14em; }
.foundation-grid strong { font-size: .94rem; }
.foundation-grid p { margin: 0; color: #7f8d9c; font-size: .7rem; line-height: 1.55; }

.closing-panel { width: min(1320px,calc(100% - 48px)); margin: 32px auto 0; min-height: 360px; position: relative; display: grid; grid-template-columns: 180px minmax(0,1fr) auto; gap: 42px; align-items: center; padding: 48px; border: 1px solid #313f4f; border-radius: 28px; background: radial-gradient(circle at 15% 40%,rgba(241,45,57,.12),transparent 30%), linear-gradient(145deg,#171f2a,#0c121a); box-shadow: 0 36px 100px rgba(0,0,0,.28); overflow: hidden; }
.closing-panel:after { content: ""; position: absolute; width: 420px; height: 420px; right: -240px; top: -180px; border: 1px solid rgba(77,130,255,.22); border-radius: 50%; box-shadow: 0 0 0 62px rgba(77,130,255,.024),0 0 0 124px rgba(77,130,255,.012); }
.closing-mark { width: 155px; height: 190px; display: grid; place-items: center; position: relative; z-index: 1; }
.closing-mark img { width: 134px; height: auto; object-fit: contain; filter: drop-shadow(0 24px 30px rgba(0,0,0,.36)); }
.closing-copy { position: relative; z-index: 1; }
.closing-copy h2 { max-width: 760px; font-size: clamp(2.7rem,4vw,4.3rem); }
.closing-copy > p:last-child { max-width: 750px; margin: 20px 0 0; }
.closing-actions { position: relative; z-index: 1; display: grid; justify-items: end; gap: 14px; min-width: 210px; }
.closing-actions span { color: #5f6d7c; font-size: .48rem; font-weight: 800; letter-spacing: .13em; }

.site-footer { width: min(1320px,calc(100% - 48px)); min-height: 126px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line-soft); }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand > span { width: 31px; height: 40px; display: grid; place-items: center; overflow: hidden; }
.footer-brand img { width: 31px; height: auto; }
.footer-brand div { display: grid; gap: 3px; }
.footer-brand strong { font-size: .84rem; }
.footer-brand small, .footer-meta { color: #657383; font-size: .58rem; }
.footer-meta { display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: 10px 20px; }

@media (max-width: 1120px) {
    .site-header { grid-template-columns: 1fr auto; }
    .site-nav { display: none; }
    .hero { grid-template-columns: 1fr; min-height: 0; padding-top: 78px; }
    .hero-copy { max-width: 850px; }
    .office-map { max-width: 820px; }
    .section-statement, .scale-shell, .foundation-shell { grid-template-columns: 1fr; gap: 56px; }
    .scale-copy { position: static; }
    .split-heading { grid-template-columns: 1fr; gap: 25px; }
    .split-heading > p { max-width: 760px; }
    .closing-panel { grid-template-columns: 145px 1fr; }
    .closing-actions { grid-column: 2; justify-items: start; }
}

@media (max-width: 820px) {
    .hero-proof, .signal-strip, .shape-grid { grid-template-columns: 1fr; }
    .hero-proof div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line-soft); }
    .signal-strip article + article { border-left: 0; border-top: 1px solid #263544; }
    .office-canvas { min-height: 560px; }
    .office-core { top: 49%; }
    .node-a { left: 5%; top: 7%; }
    .node-b { right: 5%; top: 7%; }
    .node-c { left: 3%; top: 42%; }
    .node-d { right: 3%; top: 42%; }
    .node-e { left: 7%; bottom: 7%; }
    .node-f { right: 7%; bottom: 7%; }
    .shape-card { min-height: 360px; }
    .foundation-grid { grid-template-columns: 1fr; }
    .foundation-grid article:nth-child(odd) { border-right: 0; }
    .foundation-grid article + article { border-top: 1px solid var(--line-soft); }
    .foundation-grid article:nth-child(-n+2) { border-bottom: 0; }
    .closing-panel { grid-template-columns: 1fr; }
    .closing-mark { display: none; }
    .closing-actions { grid-column: 1; }
}

@media (max-width: 640px) {
    .site-header, .hero, .signal-strip, .section, .closing-panel, .site-footer { width: min(100% - 28px,1320px); }
    .site-header { height: 80px; }
    .brand-copy small { display: none; }
    .brand-mark { width: 35px; height: 43px; }
    .brand-mark img { width: 35px; }
    .team-login { padding: 10px 12px; font-size: .66rem; }
    .team-login span { display: none; }
    .hero { padding: 58px 0 70px; gap: 45px; }
    h1 { font-size: clamp(3.25rem,16vw,4.7rem); }
    .hero-lead { font-size: .92rem; }
    .hero-actions { display: grid; }
    .button { width: 100%; }
    .hero-proof div { min-height: 72px; }
    .office-map { padding: 12px; border-radius: 20px; }
    .office-map-head { min-height: 62px; }
    .office-map-head strong { font-size: .9rem; }
    .office-canvas { min-height: 520px; }
    .orbit-two { width: 380px; height: 380px; }
    .orbit-one { width: 255px; height: 255px; }
    .office-core { width: 146px; min-height: 168px; }
    .core-mark { width: 48px; height: 60px; }
    .core-mark img { width: 48px; }
    .office-node { min-width: 108px; min-height: 58px; grid-template-columns: 28px 1fr; padding: 9px; gap: 7px; }
    .office-node > span { width: 28px; height: 28px; }
    .office-node small { font-size: .36rem; }
    .office-node strong { font-size: .61rem; }
    .node-a { left: 2%; top: 5%; }
    .node-b { right: 2%; top: 5%; }
    .node-c { left: 1%; top: 43%; }
    .node-d { right: 1%; top: 43%; }
    .node-e { left: 4%; bottom: 5%; }
    .node-f { right: 4%; bottom: 5%; }
    .office-map-foot { display: grid; gap: 6px; }
    .signal-strip article { min-height: 150px; }
    .section { padding: 82px 0; }
    .section-heading h2, .statement-copy h2, .scale-copy h2, .possibility-head h2, .foundation-copy h2, .closing-copy h2 { font-size: clamp(2.35rem,12vw,3.6rem); }
    .statement-panel { padding: 25px; }
    .shape-card { min-height: 0; padding: 23px; }
    .scale-section, .foundation-section { padding: 82px 14px; }
    .scale-steps article { grid-template-columns: 42px 1fr; min-height: 130px; }
    .possibility-cloud { gap: 8px; margin-top: 40px; }
    .possibility-cloud span { padding: 11px 13px; font-size: .64rem; }
    .closing-panel { margin-top: 18px; padding: 31px 24px; border-radius: 22px; }
    .site-footer { min-height: 170px; padding: 30px 0; flex-direction: column; align-items: flex-start; justify-content: center; }
    .footer-meta { justify-content: flex-start; }
}
