﻿@import url('/inter.css');

:root {
  --ink: #f7fbff;
  --muted: #93a6be;
  --faint: #61738c;
  --night: #030817;
  --night-2: #071125;
  --panel: rgba(10, 23, 47, .72);
  --line: rgba(148, 183, 222, .15);
  --cyan: #55dfff;
  --blue: #3f7cff;
  --violet: #8b6cff;
  --mint: #54f2c3;
  --orange: #ff7a5c;
  --max: 1320px;
  --header: 82px;
  --mx: 50vw;
  --my: 20vh;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background: var(--night);
}
body {
  width: 100%;
  max-width: 100%;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -20%, rgba(37, 88, 179, .2), transparent 35%),
    var(--night);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .08;
  background-image: radial-gradient(rgba(190, 218, 255, .32) .45px, transparent .65px);
  background-size: 5px 5px;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 999; padding: 10px 14px; background: #fff; color: #071125; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.cursor-light {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(540px circle at var(--mx) var(--my), rgba(54, 119, 255, .085), transparent 62%);
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 36px), var(--max));
  height: var(--header);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  padding: 0 18px 0 22px;
  border: 1px solid rgba(181, 207, 238, .13);
  border-radius: 22px;
  background: rgba(4, 11, 28, .68);
  backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
  transition: top .35s ease, background .35s ease, border-color .35s ease;
}
.site-header.scrolled { top: 10px; background: rgba(3, 9, 23, .9); border-color: rgba(181, 207, 238, .2); }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; max-width: 100%; }
.brand-art { position: relative; display: block; flex: 0 1 auto; width: 220px; max-width: 100%; }
.brand-logo { display: block; width: 100%; height: auto; object-fit: contain; }
.brand-logo-ink { display: none; position: absolute; inset: 0; pointer-events: none; }
.brand-logo-ink-hub { clip-path: inset(28% 38% 23% 29%); }
.brand-logo-ink-tagline { clip-path: inset(76% 0 0 29%); }
.brand-logo-footer { width: 255px; }
.brand-mark {
  position: relative;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(115, 205, 255, .28);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(47, 124, 255, .34), rgba(112, 72, 231, .18));
  box-shadow: inset 0 0 22px rgba(68, 177, 255, .12), 0 8px 26px rgba(27, 91, 206, .16);
  overflow: hidden;
}
.brand-mark::before { content: ""; position: absolute; width: 30px; height: 30px; border: 1px solid rgba(134, 221, 255, .25); border-radius: 50%; animation: brand-orbit 7s linear infinite; }
.brand-mark::after { content: ""; position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); top: 8px; right: 9px; box-shadow: 0 0 12px var(--cyan); }
.brand-mark b { font-size: 17px; letter-spacing: -.04em; }
.brand-mark i { position: absolute; inset: 0; background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.14), transparent 72%); transform: translateX(-100%); animation: brand-sheen 5s ease-in-out infinite; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-size: 18px; letter-spacing: -.04em; }
.brand-copy small { margin-top: 5px; color: #6f86a3; font-size: 8.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
@keyframes brand-orbit { to { transform: rotate(360deg); } }
@keyframes brand-sheen { 0%, 65% { transform: translateX(-110%); } 85%,100% { transform: translateX(110%); } }

.main-nav { display: flex; align-items: center; gap: 5px; margin: 0 auto; }
.main-nav a { position: relative; padding: 12px 13px; color: #91a2b9; font-size: 13px; font-weight: 600; transition: color .25s ease; }
.main-nav a::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 7px; height: 1px; background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.site-theme-toggle { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(181, 207, 238, .15); border-radius: 13px; color: #b6c8dd; background: rgba(255,255,255,.035); cursor: pointer; transition: .2s ease; }
.site-theme-toggle span { font-size: 17px; line-height: 1; }.site-theme-toggle b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.site-theme-toggle:hover { color: #fff; border-color: rgba(85, 209, 255, .42); background: rgba(52,119,255,.12); }
.panel-link { padding: 12px 13px; color: #9aabc1; font-size: 13px; font-weight: 600; }
.panel-link:hover { color: #fff; }
.button {
  --button-bg: rgba(255, 255, 255, .06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid rgba(161, 203, 255, .22);
  border-radius: 14px;
  color: #fff;
  background: var(--button-bg);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -.01em;
  box-shadow: inset 0 1px rgba(255, 255, 255, .08);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); border-color: rgba(125, 216, 255, .5); }
.button span { font-size: 17px; font-weight: 400; transition: transform .25s ease; }
.button:hover span { transform: translate(2px, -2px); }
.button-small { min-height: 46px; padding: 0 18px; font-size: 12.5px; }
.button-primary { --button-bg: linear-gradient(135deg, #367dff, #765af1); border-color: rgba(130, 204, 255, .38); box-shadow: 0 16px 38px rgba(42, 101, 236, .28), inset 0 1px rgba(255,255,255,.26); }
.button-primary:hover { box-shadow: 0 20px 50px rgba(56, 114, 255, .4), inset 0 1px rgba(255,255,255,.28); }
.button-large { min-height: 64px; padding: 0 30px; border-radius: 17px; font-size: 15px; }
.menu-button { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.04); cursor: pointer; }
.menu-button span { display: block; width: 17px; height: 1px; margin: 5px auto; background: #fff; transition: transform .25s ease; }

.hero {
  position: relative;
  min-height: 100svh;
  max-width: 1600px;
  margin: 0 auto;
  padding: 190px max(28px, calc((100vw - var(--max))/2 + 18px)) 54px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 40px 30px;
}
.hero-grid { position: absolute; inset: 0; z-index: -3; opacity: .12; background-image: linear-gradient(rgba(112,163,222,.17) 1px, transparent 1px), linear-gradient(90deg, rgba(112,163,222,.17) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, #000 0, transparent 84%); }
.hero::before { content: ""; position: absolute; z-index: -2; width: 60%; height: 70%; right: -5%; top: 14%; border-radius: 50%; background: radial-gradient(circle, rgba(36, 101, 255, .18), transparent 68%); filter: blur(30px); }
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(100px); opacity: .2; pointer-events: none; }
.glow-a { width: 380px; height: 380px; left: -180px; top: 34%; background: #1664ff; }
.glow-b { width: 320px; height: 320px; right: 7%; bottom: -170px; background: #7b55ff; }
.hero-copy { position: relative; z-index: 2; max-width: 720px; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: #78a9d4; font-size: 10.5px; line-height: 1.3; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow span { position: relative; width: 28px; height: 1px; background: linear-gradient(90deg, var(--cyan), transparent); }
.eyebrow span::before { content: ""; position: absolute; width: 4px; height: 4px; top: -1.5px; left: 0; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.hero h1 { margin: 24px 0 26px; font-size: clamp(45px, 5.3vw, 80px); line-height: .99; letter-spacing: -.065em; font-weight: 620; }
h1 em, h2 em { color: transparent; font-style: normal; background: linear-gradient(100deg, #fff 5%, #75dfff 55%, #9685ff); -webkit-background-clip: text; background-clip: text; }
.hero-lead { max-width: 640px; color: #a4b4c8; font-size: clamp(16px, 1.35vw, 19px); line-height: 1.75; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; margin-top: 38px; }
.text-link { display: inline-flex; align-items: center; gap: 16px; color: #a8b8cc; font-size: 13px; font-weight: 650; transition: color .25s ease; }
.text-link span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; color: var(--cyan); transition: transform .25s ease, border-color .25s ease; }
.text-link:hover { color: #fff; }
.text-link:hover span { transform: translateY(3px); border-color: rgba(85,223,255,.5); }
.text-link.bright { color: #fff; }

.living-system { position: relative; width: calc(100% + 110px); min-height: 680px; margin-left: -55px; display: grid; place-items: center; isolation: isolate; }
.living-system::before { content: ""; position: absolute; z-index: -2; width: 116%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(55, 132, 255, .15) 0 20%, rgba(48, 101, 255, .07) 38%, transparent 70%); filter: blur(12px); animation: energy-field 3.4s ease-in-out infinite; }
.living-system::after { content: ""; position: absolute; z-index: -3; width: 98%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(45, 168, 255, .17), rgba(92, 61, 224, .1) 42%, transparent 72%); filter: blur(46px); animation: breathe 2.8s ease-in-out infinite; }
#living-orb { width: 100%; height: 680px; max-width: 860px; display: block; cursor: crosshair; touch-action: pan-y; filter: drop-shadow(0 0 46px rgba(57, 161, 255, .42)) drop-shadow(0 0 92px rgba(82, 66, 233, .22)); animation: orb-presence 3.8s ease-in-out infinite; }
.orb-center { position: absolute; display: grid; place-items: center; width: 70px; height: 70px; border-radius: 50%; background: rgba(4, 15, 38, .82); border: 1px solid rgba(108, 195, 255, .34); box-shadow: 0 0 40px rgba(33, 108, 255, .32), inset 0 0 25px rgba(65, 127, 255, .14); pointer-events: none; }
.orb-center span { font-size: 17px; font-weight: 750; }
.orb-center i { position: absolute; inset: -8px; border: 1px dashed rgba(108, 195, 255, .2); border-radius: 50%; animation: brand-orbit 12s linear infinite; }
.orbit-label { position: absolute; display: grid; gap: 2px; padding: 10px 13px; min-width: 116px; border: 1px solid rgba(148, 187, 232, .15); border-radius: 12px; background: rgba(6, 15, 35, .62); backdrop-filter: blur(12px); box-shadow: 0 12px 30px rgba(0,0,0,.16); pointer-events: none; transition: transform .3s ease; }
.orbit-label b { font-size: 11px; }
.orbit-label small { color: #69809d; font-size: 8.5px; }
.label-one { left: 2%; top: 31%; }
.label-two { right: 1%; top: 23%; }
.label-three { right: 5%; bottom: 23%; }
.living-system:hover .label-one { transform: translate(-5px, 2px); }
.living-system:hover .label-two { transform: translate(6px, -3px); }
.living-system:hover .label-three { transform: translate(7px, 4px); }
.orb-hint { position: absolute; bottom: 4px; display: flex; align-items: center; gap: 9px; color: #7185a2; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.orb-hint i { width: 5px; height: 5px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 9px var(--mint); animation: blink 1.6s ease-in-out infinite; }
@keyframes breathe { 50% { transform: scale(1.28); opacity: .48; } }
@keyframes energy-field { 50% { transform: scale(1.12) rotate(4deg); opacity: .7; } }
@keyframes orb-presence { 50% { filter: drop-shadow(0 0 68px rgba(57, 181, 255, .58)) drop-shadow(0 0 112px rgba(101, 70, 244, .32)); } }
@keyframes blink { 50% { opacity: .3; } }

.hero-proof { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr; align-items: center; gap: 14px 22px; padding-top: 32px; border-top: 1px solid var(--line); }
.hero-proof > span { color: #38506d; font-size: 10px; font-weight: 800; }
.hero-proof p { color: #6e819b; font-size: 10.5px; line-height: 1.5; }
.hero-proof strong { display: block; margin-bottom: 4px; color: #c4d2e2; font-size: 11px; }

.section { position: relative; width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 135px 0; }
.section-number { margin-bottom: 64px; padding-bottom: 16px; border-bottom: 1px solid var(--line); color: #536782; font-size: 9.5px; font-weight: 800; letter-spacing: .18em; }
.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; gap: 50px; align-items: end; margin-bottom: 56px; }
.section-heading h2, .manifesto h2, .transformation h2, .contact h2, .principles h2 { margin-top: 18px; font-size: clamp(38px, 4.8vw, 68px); line-height: 1.04; letter-spacing: -.055em; font-weight: 610; }
.section-heading > p { color: #8295ae; font-size: 15px; line-height: 1.7; max-width: 420px; }

.manifesto { border-top: 1px solid rgba(147,179,218,.06); }
.manifesto-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 11%; }
.manifesto-sticky { align-self: start; position: sticky; top: 130px; }
.manifesto-copy { padding-top: 55px; }
.manifesto-copy > p { margin-bottom: 26px; color: #899bb2; font-size: 16px; line-height: 1.85; }
.manifesto-copy .large-copy { color: #d4dfec; font-size: clamp(23px, 2.4vw, 33px); line-height: 1.5; letter-spacing: -.025em; }
.quote-line { display: flex; gap: 22px; margin-top: 54px; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #8497b0; font-size: 14px; line-height: 1.7; }
.quote-line i { width: 3px; min-height: 54px; border-radius: 4px; background: linear-gradient(var(--cyan), var(--violet)); box-shadow: 0 0 18px rgba(85,223,255,.3); }
.quote-line strong { color: #fff; font-size: 17px; }

.possibilities { overflow: hidden; overflow: clip; }
.possibilities::before { content: ""; position: absolute; z-index: -1; width: min(700px, 145vw); height: min(700px, 145vw); left: max(-40%, -180px); top: 20%; border-radius: 50%; background: rgba(27, 95, 218, .1); filter: blur(150px); }
.capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; perspective: 1000px; }
.capability-card { position: relative; min-height: 360px; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, rgba(13, 29, 58, .78), rgba(5, 13, 31, .72)); box-shadow: inset 0 1px rgba(255,255,255,.035); transform-style: preserve-3d; transition: border-color .3s ease, box-shadow .3s ease, transform .16s ease; }
.capability-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; background: radial-gradient(360px circle at var(--cx,50%) var(--cy,50%), rgba(72,143,255,.14), transparent 65%); transition: opacity .3s ease; }
.capability-card:hover { border-color: rgba(101, 182, 255, .35); box-shadow: 0 28px 65px rgba(0,0,0,.24), inset 0 1px rgba(255,255,255,.06); }
.capability-card:hover::before { opacity: 1; }
.capability-card.featured { min-height: 522px; grid-row: span 2; background: linear-gradient(145deg, rgba(14, 39, 78, .86), rgba(9, 14, 40, .8)); }
.capability-card.wide { min-height: 290px; grid-column: 1 / -1; display: grid; grid-template-columns: 42px 1fr .65fr; align-items: center; gap: 25px; }
.capability-card.wide .card-top { align-self: start; }
.card-top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; margin-bottom: 42px; }
.card-index { color: #546985; font-size: 9.5px; font-weight: 800; letter-spacing: .16em; }
.card-symbol { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(124,190,255,.18); border-radius: 14px; color: #9acbff; background: rgba(49,110,219,.08); font-size: 14px; font-weight: 760; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 14px var(--mint); animation: blink 1.8s ease-in-out infinite; }
.capability-card h3 { position: relative; z-index: 1; max-width: 510px; margin-bottom: 15px; color: #ecf6ff; font-size: clamp(22px, 2.3vw, 31px); line-height: 1.2; letter-spacing: -.035em; font-weight: 600; }
.capability-card p { position: relative; z-index: 1; max-width: 590px; color: #8194ae; font-size: 14px; line-height: 1.75; }
.capability-card ul { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; list-style: none; }
.capability-card li, .card-foot { padding: 8px 11px; border: 1px solid rgba(124,170,223,.14); border-radius: 999px; color: #7790ae; background: rgba(255,255,255,.025); font-size: 9.5px; font-weight: 650; }
.card-foot { position: absolute; left: 34px; bottom: 30px; right: 34px; width: max-content; max-width: calc(100% - 68px); border: 0; border-radius: 0; padding: 11px 0 0; border-top: 1px solid var(--line); }
.flow-visual { position: relative; height: 160px; margin: -5px 0 38px; }
.flow-visual::before, .flow-visual::after { content: ""; position: absolute; top: 50%; height: 1px; width: 80%; left: 10%; background: linear-gradient(90deg, transparent, rgba(83,182,255,.55), rgba(132,98,255,.6), transparent); }
.flow-visual::after { filter: blur(6px); opacity: .7; }
.flow-visual span { position: absolute; top: calc(50% - 18px); width: 36px; height: 36px; border: 1px solid rgba(98,191,255,.4); border-radius: 12px; background: #0c1d3c; box-shadow: 0 0 25px rgba(42,119,255,.22); }
.flow-visual span:nth-child(1) { left: 9%; }
.flow-visual span:nth-child(2) { left: calc(50% - 18px); border-radius: 50%; animation: flow-node 3s ease-in-out infinite; }
.flow-visual span:nth-child(3) { right: 9%; border-color: rgba(148,105,255,.42); }
.flow-visual b { position: absolute; top: calc(50% - 3px); left: 10%; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 15px var(--cyan); animation: data-move 4s linear infinite; }
@keyframes flow-node { 50% { transform: scale(1.2); box-shadow: 0 0 40px rgba(52,137,255,.42); } }
@keyframes data-move { to { left: 87%; background: var(--violet); } }
.data-lines { height: 135px; display: flex; align-items: end; gap: 8px; padding: 18px; border-left: 1px solid var(--line); }
.data-lines i { flex: 1; height: var(--h); min-width: 7px; border-radius: 5px 5px 1px 1px; background: linear-gradient(to top, rgba(71,102,255,.25), #5ccfff); box-shadow: 0 0 14px rgba(55,161,255,.12); transform-origin: bottom; animation: data-pulse 3.5s ease-in-out infinite alternate; }
.data-lines i:nth-child(1) { --h: 42%; }
.data-lines i:nth-child(2) { --h: 66%; }
.data-lines i:nth-child(3) { --h: 51%; }
.data-lines i:nth-child(4) { --h: 88%; }
.data-lines i:nth-child(5) { --h: 72%; }
.data-lines i:nth-child(6) { --h: 96%; }
.data-lines i:nth-child(2n) { animation-delay: -.8s; }
@keyframes data-pulse { to { transform: scaleY(.72); opacity: .58; } }

.transformation { width: 100%; max-width: none; padding-left: max(24px, calc((100vw - var(--max))/2)); padding-right: max(24px, calc((100vw - var(--max))/2)); background: linear-gradient(120deg, rgba(16, 56, 125, .22), rgba(37, 19, 88, .18)); border-top: 1px solid rgba(135,181,233,.08); border-bottom: 1px solid rgba(135,181,233,.08); }
.transformation-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8%; align-items: center; }
.transformation-copy > p:not(.eyebrow) { margin: 26px 0 30px; max-width: 580px; color: #879ab2; font-size: 15px; line-height: 1.8; }
.transformation-map { position: relative; min-height: 560px; display: grid; align-content: center; grid-template-columns: .72fr .26fr 1fr; align-items: center; }
.map-node, .map-result { position: relative; z-index: 2; padding: 26px; border: 1px solid rgba(139,184,237,.18); border-radius: 20px; background: rgba(6, 15, 36, .66); backdrop-filter: blur(14px); }
.map-node span, .map-result > small { display: block; margin-bottom: 15px; color: #64809f; font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.map-node strong { display: block; color: #c9d6e5; font-size: 18px; line-height: 1.5; letter-spacing: -.02em; }
.map-path { position: relative; height: 100%; min-height: 240px; }
.map-path::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: linear-gradient(90deg, var(--cyan), var(--violet)); box-shadow: 0 0 15px rgba(66,159,255,.4); }
.map-path i { position: absolute; top: calc(50% - 4px); left: 0; width: 8px; height: 8px; border-radius: 50%; background: #fff; box-shadow: 0 0 18px var(--cyan); animation: data-move 3s ease-in-out infinite; }
.map-result { padding: 20px; }
.map-result > div { display: flex; gap: 13px; padding: 16px 8px; border-top: 1px solid var(--line); }
.map-result > div > span { display: grid; place-items: center; flex: 0 0 31px; height: 31px; border: 1px solid rgba(108,188,255,.21); border-radius: 9px; color: #6fa6d8; font-size: 9px; }
.map-result p { color: #6f849e; font-size: 10.5px; line-height: 1.5; }
.map-result p b { display: block; margin-bottom: 3px; color: #dbe8f5; font-size: 12px; }

.method-line { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.method-line::before { content: ""; position: absolute; left: 4%; right: 4%; top: 38px; height: 1px; background: linear-gradient(90deg, var(--cyan), rgba(83,185,255,.25), rgba(142,99,255,.25), var(--violet)); }
.method-step { position: relative; padding: 0 15px 10px; }
.method-step > span { position: relative; z-index: 2; display: grid; place-items: center; width: 76px; height: 76px; margin-bottom: 34px; border: 1px solid rgba(123,187,255,.24); border-radius: 50%; color: #9bc9f2; background: var(--night); font-size: 12px; box-shadow: 0 0 0 8px var(--night), 0 0 35px rgba(49,114,238,.12); }
.method-step small { color: #5e7898; font-size: 8.5px; font-weight: 850; letter-spacing: .2em; }
.method-step h3 { margin: 13px 0 13px; color: #e9f3fd; font-size: 20px; line-height: 1.25; letter-spacing: -.025em; font-weight: 600; }
.method-step p { color: #70839d; font-size: 13px; line-height: 1.75; }

.principles { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9%; border-top: 1px solid var(--line); }
.principles-intro { align-self: start; position: sticky; top: 130px; }
.principles-grid { display: grid; grid-template-columns: 1fr 1fr; }
.principle { min-height: 290px; padding: 34px; border-left: 1px solid var(--line); border-top: 1px solid var(--line); transition: background .3s ease; }
.principle:nth-child(-n+2) { border-top: 0; }
.principle:hover { background: linear-gradient(140deg, rgba(48,101,206,.1), transparent); }
.principle > span { color: #537293; font-size: 8.5px; font-weight: 850; letter-spacing: .2em; }
.principle h3 { margin: 65px 0 15px; color: #e3edf8; font-size: 21px; line-height: 1.28; letter-spacing: -.03em; font-weight: 570; }
.principle p { color: #6e819a; font-size: 12.5px; line-height: 1.7; }

.contact { min-height: 670px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 8%; align-items: center; padding-left: 65px; padding-right: 65px; overflow: hidden; border: 1px solid rgba(126,182,243,.15); border-radius: 36px; background: linear-gradient(125deg, rgba(10,39,84,.74), rgba(10,15,40,.9) 48%, rgba(41,22,91,.7)); box-shadow: 0 40px 100px rgba(0,0,0,.3), inset 0 1px rgba(255,255,255,.05); }
.contact::before { content: ""; position: absolute; width: 520px; height: 520px; right: -160px; top: -180px; border: 1px solid rgba(124,197,255,.12); border-radius: 50%; box-shadow: 0 0 0 55px rgba(118,108,255,.025), 0 0 0 110px rgba(64,156,255,.018); }
.contact-glow { position: absolute; width: 420px; height: 420px; right: 5%; bottom: -220px; border-radius: 50%; background: #246fff; filter: blur(120px); opacity: .3; }
.contact-copy { position: relative; z-index: 2; }
.contact-copy > p:not(.eyebrow) { max-width: 660px; margin-top: 28px; color: #90a4bd; font-size: 16px; line-height: 1.8; }
.contact-action { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; padding-left: 45px; border-left: 1px solid var(--line); }
.contact-email { color: #b8c9dc; font-size: 13px; border-bottom: 1px solid rgba(184,201,220,.28); }
.contact-action small { color: #607591; font-size: 10px; }

.site-footer { width: min(calc(100% - 48px), var(--max)); margin: 100px auto 0; padding: 60px 0 34px; border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: .7fr 1fr 1fr; align-items: center; gap: 7%; padding-bottom: 60px; }
.footer-main > p { max-width: 440px; color: #667a94; font-size: 12.5px; line-height: 1.7; }
.footer-main nav { display: flex; justify-content: flex-end; gap: 20px; }
.footer-main nav a { color: #778ba4; font-size: 11px; font-weight: 650; }
.footer-main nav a:hover { color: #fff; }
.footer-bottom { display: flex; gap: 24px; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line); color: #4f647e; font-size: 9.5px; letter-spacing: .04em; }
.footer-bottom a:hover { color: var(--cyan); }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .main-nav { display: none; position: absolute; left: 0; right: 0; top: calc(100% + 8px); flex-direction: column; align-items: stretch; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: rgba(3,9,23,.98); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px; }
  .brand { min-width: 0; flex: 0 1 auto; }
  .header-actions { flex: 0 0 auto; margin-left: auto; }
  .menu-button { display: block; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .panel-link { display: none; }
  .hero { grid-template-columns: 1fr .8fr; }
  .living-system { margin-right: -120px; }
  .orbit-label { display: none; }
  .capability-card.wide { grid-template-columns: 36px 1fr .5fr; }
  .transformation-shell { grid-template-columns: 1fr; }
  .transformation-map { max-width: 850px; width: 100%; margin: 20px auto 0; }
  .method-line { grid-template-columns: 1fr 1fr; row-gap: 60px; }
  .method-line::before { display: none; }
  .principles { grid-template-columns: 1fr; }
  .principles-intro { position: static; margin-bottom: 60px; }
}

@media (max-width: 820px) {
  :root { --header: 70px; }
  .site-header {
    display: grid;
    top: 10px;
    left: max(10px, env(safe-area-inset-left));
    right: max(10px, env(safe-area-inset-right));
    width: auto;
    max-width: none;
    transform: none;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 0 10px 0 14px;
    border-radius: 18px;
  }
  .site-header > .brand { width: min(176px, 100%); overflow: hidden; }
  .brand-mark { width: 41px; height: 41px; }
  .site-header .brand-art { width: 176px; }
  .brand-logo-footer { width: 225px; }
  .brand-copy small { display: none; }
  .header-actions .button-small { display: none; }
  .hero { min-height: auto; padding: 145px 24px 54px; grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
  .hero-copy { text-align: left; }
  .hero h1 { font-size: clamp(43px, 12vw, 66px); }
  .living-system { order: 2; width: calc(100% + 96px); margin: -28px -48px 0; min-height: 520px; }
  #living-orb { height: 540px; }
  .hero-proof { order: 3; grid-template-columns: auto 1fr; gap: 14px; }
  .section { width: min(calc(100% - 36px), var(--max)); padding: 95px 0; }
  .section-number { margin-bottom: 45px; }
  .section-heading, .manifesto-layout { grid-template-columns: 1fr; gap: 34px; }
  .manifesto-sticky { position: static; }
  .manifesto-copy { padding-top: 0; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card.featured { min-height: 500px; grid-row: auto; }
  .capability-card.wide { grid-column: auto; min-height: 390px; display: block; }
  .capability-card.wide .card-top { margin-bottom: 42px; }
  .data-lines { position: absolute; left: 34px; right: 34px; bottom: 30px; height: 110px; border: 0; padding: 15px 0 0; border-top: 1px solid var(--line); }
  .transformation { width: 100%; padding-left: 18px; padding-right: 18px; }
  .transformation-map { grid-template-columns: 1fr; gap: 22px; min-height: 0; margin-top: 50px; }
  .map-path { min-height: 90px; }
  .map-path::before { left: 50%; right: auto; width: 1px; height: 100%; background: linear-gradient(var(--cyan), var(--violet)); }
  .map-path i { left: calc(50% - 4px); top: 0; animation: data-move-vertical 3s ease-in-out infinite; }
  @keyframes data-move-vertical { to { top: 92%; background: var(--violet); } }
  .method-line { grid-template-columns: 1fr; }
  .method-step { display: grid; grid-template-columns: 76px 1fr; column-gap: 24px; }
  .method-step > span { grid-row: 1 / 5; }
  .method-step h3, .method-step p { grid-column: 2; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle { min-height: 245px; border-left: 0; border-top: 1px solid var(--line) !important; padding-left: 0; padding-right: 0; }
  .principle:first-child { border-top: 0 !important; }
  .principle h3 { margin-top: 50px; }
  .contact { width: calc(100% - 24px); min-height: auto; padding: 85px 28px; grid-template-columns: 1fr; gap: 55px; border-radius: 28px; }
  .contact-action { padding: 35px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-main nav { justify-content: flex-start; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (max-width: 520px) {
  .site-header { padding-left: 12px; padding-right: 9px; }
  .site-header > .brand { width: min(172px, 100%); }
  .site-header .brand-art { width: 172px; }
  .menu-button { width: 46px; min-width: 46px; flex: 0 0 46px; }
  .hero { padding-left: 18px; padding-right: 18px; }
  .hero h1 { letter-spacing: -.055em; }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .text-link { justify-content: center; }
  .living-system { width: calc(100% + 88px); margin-left: -44px; margin-right: -44px; }
  .orb-center { width: 58px; height: 58px; }
  .capability-card { min-height: 390px; padding: 26px; border-radius: 20px; }
  .capability-card.featured { min-height: 530px; }
  .card-foot { left: 26px; right: 26px; max-width: calc(100% - 52px); }
  .flow-visual { margin-left: -20px; margin-right: -20px; }
  .method-step { grid-template-columns: 62px 1fr; padding: 0; }
  .method-step > span { width: 62px; height: 62px; }
  .contact h2 { font-size: 42px; }
  .contact .button { width: 100%; padding: 0 20px; }
  .contact-email { font-size: 11px; }
}

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