@font-face {
  font-family: "Aulama Sans";
  src: url("/assets/fonts/AnthropicSans-Roman.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Aulama Serif";
  src: url("/assets/fonts/AnthropicSerif-Roman.woff2") format("woff2");
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #030814;
  --bg-2: #07111f;
  --bg-3: #0b1030;
  --panel: rgba(8, 16, 30, 0.72);
  --panel-solid: rgba(10, 18, 32, 0.94);
  --panel-soft: rgba(255, 255, 255, 0.07);
  --text: #f8fbff;
  --muted: #a8b7cc;
  --dim: #74859d;
  --line: rgba(196, 231, 255, 0.15);
  --line-strong: rgba(126, 232, 255, 0.34);
  --cyan: #1de8ee;
  --sky: #19a9ff;
  --blue: #2563ff;
  --violet: #7436ff;
  --purple: #a633ff;
  --glow-cyan: rgba(29, 232, 238, 0.26);
  --glow-violet: rgba(116, 54, 255, 0.28);
  --radius: 23px;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.38);
  --content: 1080px;
  --gutter: 18px;
  --hero-title: clamp(34px, 4.85vw, 62px);
  --section-title: clamp(28px, 3.7vw, 50px);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Aulama Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 12%, rgba(29, 232, 238, 0.16), transparent 28%),
    radial-gradient(circle at 16% 90%, rgba(116, 54, 255, 0.2), transparent 34%),
    linear-gradient(145deg, #030814 0%, #061425 45%, #090622 100%);
  overflow-x: hidden;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 84%);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
canvas {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 8, 20, 0.7);
  backdrop-filter: blur(24px);
}

.nav-inner {
  width: min(100% - 36px, var(--content));
  min-height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(29, 232, 238, 0.2)) drop-shadow(0 6px 20px rgba(116, 54, 255, 0.24));
}

.brand-wordmark {
  width: 136px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(29, 232, 238, 0.12));
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-word {
  font-family: "Aulama Serif", Georgia, serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.nav-links a {
  position: relative;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.pill-button,
.ghost-button,
.mini-link,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.pill-button {
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 50%, var(--purple));
  box-shadow: 0 18px 50px rgba(37, 99, 255, 0.28);
}

.ghost-button {
  padding: 0 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.text-button {
  padding: 0 12px;
  color: var(--muted);
}

.mini-link {
  min-height: 34px;
  padding: 0 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.065);
  border-color: var(--line);
  font-size: 12px;
}

.pill-button:hover,
.ghost-button:hover,
.mini-link:hover,
.text-button:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 48px rgba(29, 232, 238, 0.12);
}

.global-scene {
  position: fixed;
  inset: 68px 0 0;
  z-index: 0;
  pointer-events: auto;
  opacity: 0.82;
}

.global-scene canvas {
  width: 100%;
  height: 100%;
}

.site-shell main,
.site-footer {
  position: relative;
  z-index: 2;
}

.hero,
.page-hero {
  position: relative;
  min-height: calc(100svh - 60px);
  display: grid;
  place-items: center;
  padding: 68px var(--gutter) 68px;
}

.hero-content,
.page-hero-inner,
.section-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.hero-content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-layout {
  width: min(100%, var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(350px, .88fr);
  align-items: center;
  gap: clamp(24px, 3.8vw, 50px);
}

.company-hero {
  place-items: stretch;
  overflow: hidden;
}

.company-hero .hero-content {
  width: 100%;
  justify-items: start;
  text-align: left;
}

.company-hero .hero-copy {
  margin-left: 0;
  margin-right: 0;
}

.company-hero .hero-actions {
  justify-content: flex-start;
}

.hero-stage-wrap {
  position: relative;
  width: 100%;
  height: min(57svh, 520px);
  min-height: 340px;
  overflow: visible;
  isolation: isolate;
}

.hero-stage-wrap::before {
  content: "";
  position: absolute;
  inset: 8% -8% 2%;
  z-index: -2;
  border-radius: 999px;
  background:
    radial-gradient(circle at 44% 42%, rgba(29,232,238,.24), transparent 34%),
    radial-gradient(circle at 62% 58%, rgba(116,54,255,.25), transparent 39%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.08), transparent 54%);
  filter: blur(10px);
}

.hero-stage-wrap::after {
  content: "";
  position: absolute;
  inset: 10% 2%;
  z-index: -1;
  border: 1px solid rgba(126,232,255,.15);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(3,8,20,.02), transparent 58%);
  box-shadow:
    0 0 90px rgba(29,232,238,.12),
    inset 0 0 80px rgba(116,54,255,.08);
  opacity: .86;
}

.hero-stage-wrap canvas {
  width: 100%;
  height: 100%;
  filter:
    drop-shadow(0 38px 72px rgba(29,232,238,.18))
    drop-shadow(0 24px 80px rgba(116,54,255,.22));
}

.hero-stage-orbit {
  position: absolute;
  inset: 9% 7%;
  pointer-events: none;
}

.hero-stage-orbit span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(196,231,255,.18);
  border-radius: 999px;
  color: rgba(248,251,255,.82);
  background: rgba(3,8,20,.42);
  box-shadow: 0 12px 34px rgba(0,0,0,.2), 0 0 22px rgba(29,232,238,.12);
  font-size: 11px;
  font-weight: 950;
  backdrop-filter: blur(14px);
  animation: orbitChipFloat 5.2s ease-in-out infinite;
}

.hero-stage-orbit span:nth-child(1) {
  top: 10%;
  left: 11%;
}

.hero-stage-orbit span:nth-child(2) {
  top: 20%;
  right: 6%;
  animation-delay: -.9s;
}

.hero-stage-orbit span:nth-child(3) {
  bottom: 18%;
  left: 5%;
  animation-delay: -1.8s;
}

.hero-stage-orbit span:nth-child(4) {
  right: 12%;
  bottom: 12%;
  animation-delay: -2.7s;
}

.hero-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 26px 42px rgba(29, 232, 238, 0.22)) drop-shadow(0 12px 42px rgba(116, 54, 255, 0.26));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(18px);
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px var(--glow-cyan);
}

.display-title {
  max-width: 100%;
  margin: 0;
  font-family: "Aulama Serif", Georgia, serif;
  font-size: var(--hero-title);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: keep-all;
  text-shadow: 0 22px 54px rgba(0, 0, 0, 0.7);
}

.gradient-text {
  display: inline-block;
  max-width: none;
  color: transparent;
  background: linear-gradient(112deg, #ffffff 0%, #42f4ff 28%, #2d7cff 56%, #a633ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  width: min(720px, 100%);
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.hero-copy-mobile {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(760px, 100%);
  margin: 44px auto 0;
}

.metric,
.glass-card,
.product-card,
.stack-card,
.principle-card,
.work-card,
.timeline-item,
.cta-band {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.088), rgba(255, 255, 255, 0.034)),
    var(--panel);
  backdrop-filter: blur(22px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.metric {
  padding: 16px;
  border-radius: 16px;
}

.metric strong {
  display: block;
  font-size: 25px;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.scroll-story {
  min-height: 230vh;
  padding: 70px var(--gutter);
}

.story-pin {
  position: sticky;
  top: 104px;
  width: min(100%, var(--content));
  min-height: calc(100svh - 140px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 44px;
}

.story-copy {
  max-width: 640px;
}

.story-copy .section-title {
  font-size: clamp(36px, 5.2vw, 70px);
}

.phase-list {
  display: grid;
  gap: 14px;
}

.phase-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.phase-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
}

.phase-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section {
  position: relative;
  padding: 102px var(--gutter);
}

.section.compact {
  padding-top: 74px;
  padding-bottom: 74px;
}

.section-head.center {
  text-align: center;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--cyan);
  font-weight: 950;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.section-title {
  margin: 0;
  font-family: "Aulama Serif", Georgia, serif;
  font-size: var(--section-title);
  line-height: 1.05;
  text-wrap: balance;
}

.section-lede {
  width: min(760px, 100%);
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.section-head.center .section-lede {
  margin-left: auto;
  margin-right: auto;
}

.product-grid,
.principles-grid,
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.product-card {
  position: relative;
  min-height: 308px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.product-card::before,
.work-card::before,
.phase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at 22% 0%, rgba(29, 232, 238, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(37, 99, 255, 0.12), rgba(166, 51, 255, 0.08));
  transition: opacity 190ms ease;
}

.product-card:hover,
.work-card:hover {
  transform: translateY(-8px) rotateX(1deg);
  border-color: var(--line-strong);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32);
}

.product-card:hover::before,
.work-card:hover::before,
.phase-card:hover::before {
  opacity: 1;
}

.product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  font-weight: 950;
}

.product-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.status.live {
  color: #dcfcff;
  border-color: rgba(29, 232, 238, 0.34);
  background: rgba(29, 232, 238, 0.1);
}

.status.dev {
  color: #eadfff;
  border-color: rgba(166, 51, 255, 0.36);
  background: rgba(166, 51, 255, 0.12);
}

.product-card h3,
.stack-card h3 {
  margin: 26px 0 12px;
  font-size: 25px;
}

.product-card p,
.stack-card p,
.principle-card p,
.work-card p,
.network-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tech-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
}

.tech-brand {
  min-height: 168px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.12), transparent 52%),
    rgba(255,255,255,.055);
  box-shadow: 0 18px 54px rgba(0,0,0,.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.tech-brand img {
  width: min(150px, 86%);
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.22));
}

.tech-brand:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 50% 0%, rgba(29,232,238,.18), transparent 58%),
    rgba(255,255,255,.07);
}

.brand-symbol {
  min-height: 42px;
  display: grid;
  place-items: center;
  color: var(--text);
  font-weight: 950;
  font-size: 18px;
  letter-spacing: 0;
}

.oracle .brand-symbol { color: #ff4b36; }
.apple .brand-symbol { color: #f8fbff; }
.openai .brand-symbol { color: #dffdf5; }
.alicloud .brand-symbol { color: #ff7a18; }
.cloudflare .brand-symbol { color: #ff8a1c; }
.datagov .brand-symbol { color: #39a9ff; }
.nextcloud .brand-symbol { color: #0082c9; }

.oracle-mark {
  font-size: 20px;
  font-weight: 950;
}

.apple-logo {
  font-size: 38px;
  line-height: 1;
}

.cloudflare-mark {
  font-size: 44px;
  line-height: .7;
}

.tech-brand strong {
  font-size: 16px;
}

.tech-brand small {
  max-width: 160px;
  color: var(--muted);
  line-height: 1.45;
}

.tech-note {
  margin: 18px auto 0;
  max-width: 760px;
  color: var(--muted-strong);
  text-align: center;
  font-size: 13px;
  line-height: 1.65;
}

.product-showcase {
  display: grid;
  gap: 26px;
  margin-top: 52px;
}

.company-proof {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 52px;
}

.company-proof div,
.platform-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.032)),
    rgba(8,16,30,.68);
  box-shadow: 0 20px 64px rgba(0,0,0,.18);
  backdrop-filter: blur(20px);
}

.company-proof div {
  padding: 18px;
  text-align: left;
}

.company-proof strong,
.platform-card strong {
  display: block;
  color: var(--text);
  font-size: 17px;
}

.company-proof span,
.platform-card p {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.narrative-grid,
.platform-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.narrative-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.9;
}

.narrative-copy p {
  margin: 0;
}

.product-band {
  position: relative;
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .8fr);
  gap: 36px;
  align-items: center;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.032)),
    var(--panel);
  box-shadow: 0 26px 88px rgba(0,0,0,.24);
}

.product-band.alt {
  grid-template-columns: minmax(360px, .8fr) minmax(0, .92fr);
}

.product-band.alt .product-copy {
  order: 2;
}

.product-band.alt .product-device {
  order: 1;
}

.product-band.alt .product-media,
.product-band.alt .network-model {
  order: 1;
}

.product-band::before {
  content: "";
  position: absolute;
  inset: -24%;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 26%, rgba(29,232,238,.2), transparent 28%),
    radial-gradient(circle at 82% 70%, rgba(116,54,255,.22), transparent 31%);
  opacity: .72;
  transform: rotate(-5deg);
}

.product-copy {
  position: relative;
  z-index: 2;
}

.product-copy h3 {
  margin: 18px 0 14px;
  font-family: "Aulama Serif", Georgia, serif;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
}

.product-copy p {
  margin: 0;
  max-width: 660px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.product-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.product-points li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.product-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 18px rgba(29,232,238,.35);
}

.product-media {
  position: relative;
  z-index: 2;
  min-height: 320px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.055);
  box-shadow: 0 28px 82px rgba(0,0,0,.28);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  transition: transform 220ms ease, border-color 220ms ease;
}

.product-band.alt .product-media {
  transform: perspective(1200px) rotateY(5deg) rotateX(2deg);
}

.product-band:hover .product-media {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-4px);
  border-color: var(--line-strong);
}

.product-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.network-model {
  position: relative;
  z-index: 2;
  min-height: 320px;
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr 44px 1fr;
  align-items: center;
  justify-items: center;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 28% 18%, rgba(29,232,238,.22), transparent 34%),
    radial-gradient(circle at 70% 80%, rgba(116,54,255,.24), transparent 38%),
    rgba(255,255,255,.052);
  box-shadow: 0 26px 82px rgba(0,0,0,.26);
}

.network-model span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  color: var(--text);
  background: rgba(3,8,20,.56);
  font-weight: 950;
  text-align: center;
}

.network-model i {
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  box-shadow: 0 0 24px rgba(29,232,238,.32);
}

.platform-cards {
  display: grid;
  gap: 16px;
}

.platform-card {
  padding: 24px;
}

.product-device {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 38%, rgba(29,232,238,.18), transparent 34%),
    rgba(3,8,20,.34);
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease;
}

.product-band:hover .product-device {
  transform: translateY(-8px) rotateX(2deg) rotateY(-3deg);
  border-color: var(--line-strong);
}

.chat-device img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  animation: deviceFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 24px 54px rgba(29,232,238,.3));
}

.chat-device span,
.codex-device i,
.bus-device span,
.vpn-device span,
.speed-device span {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
  box-shadow: 0 0 34px rgba(29,232,238,.24);
}

.chat-device span:nth-of-type(1) { width: 62%; height: 2px; top: 28%; left: 18%; animation: scanLine 3.6s ease-in-out infinite; }
.chat-device span:nth-of-type(2) { width: 44%; height: 2px; top: 54%; left: 28%; animation: scanLine 4s ease-in-out infinite reverse; }
.chat-device span:nth-of-type(3) { width: 24%; height: 24%; right: 20%; bottom: 16%; border-radius: 28px; opacity: .22; animation: devicePulse 3s ease-in-out infinite; }

.codex-device b,
.bus-device b {
  font-size: 76px;
  line-height: 1;
  color: var(--text);
  filter: drop-shadow(0 18px 42px rgba(29,232,238,.24));
}

.codex-device i:nth-of-type(1) { width: 72%; height: 2px; top: 34%; left: 14%; }
.codex-device i:nth-of-type(2) { width: 48%; height: 2px; top: 52%; left: 26%; }
.codex-device i:nth-of-type(3) { width: 58%; height: 2px; top: 70%; left: 21%; }

.bus-device span:nth-of-type(1) { width: 58%; height: 12px; bottom: 27%; left: 21%; }
.bus-device span:nth-of-type(2) { width: 18px; height: 18px; bottom: 20%; left: 32%; box-shadow: 94px 0 0 var(--cyan), 0 0 34px rgba(29,232,238,.24); }

.vpn-device span:nth-child(1) { width: 68%; height: 68%; border-radius: 50%; background: transparent; border: 2px solid rgba(29,232,238,.45); animation: spin 7s linear infinite; }
.vpn-device span:nth-child(2) { width: 46%; height: 46%; border-radius: 50%; background: transparent; border: 2px solid rgba(116,54,255,.48); animation: spin 5s linear infinite reverse; }
.vpn-device span:nth-child(3) { width: 88px; height: 88px; border-radius: 28px; transform: rotate(45deg); }

.speed-device b {
  width: 168px;
  height: 84px;
  border: 3px solid rgba(29,232,238,.42);
  border-bottom: 0;
  border-radius: 168px 168px 0 0;
}

.speed-device span {
  width: 92px;
  height: 4px;
  left: 50%;
  top: 55%;
  transform-origin: left center;
  animation: speedNeedle 2.8s cubic-bezier(.42,0,.18,1) infinite;
}

.systems-layout,
.network-layout,
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: 28px;
  align-items: center;
  margin-top: 44px;
}

.system-copy {
  display: grid;
  gap: 16px;
}

.stack-card,
.principle-card,
.work-card,
.network-card {
  border-radius: var(--radius);
  padding: 26px;
}

.network-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.network-visual {
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 48%, rgba(29, 232, 238, 0.16), transparent 30%),
    radial-gradient(circle at 40% 62%, rgba(116, 54, 255, 0.22), transparent 34%),
    rgba(2, 9, 18, 0.52);
  overflow: hidden;
}

.network-visual canvas {
  width: 100%;
  height: 100%;
}

.network-steps {
  display: grid;
  gap: 14px;
}

.network-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.network-step span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
  font-weight: 950;
}

.network-step strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.timeline-item {
  padding: 22px;
  border-radius: 22px;
}

.timeline-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
}

.timeline-item span {
  color: var(--muted);
  line-height: 1.65;
}

.page-hero {
  text-align: center;
}

.product-detail {
  min-height: 100svh;
  text-align: left;
}

.product-detail .brand-lockup {
  margin-bottom: clamp(34px, 7vh, 72px);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .72fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.product-detail .display-title {
  font-size: clamp(48px, 7vw, 94px);
}

.about-copy {
  text-align: left;
}

.about-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.product-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 76% 10%, rgba(29,232,238,.15), transparent 32%),
    radial-gradient(circle at 16% 88%, rgba(116,54,255,.18), transparent 36%),
    linear-gradient(145deg, #030814, #07111f 52%, #080623);
}

.product-page .page-hero {
  min-height: auto;
  padding-top: 48px;
  padding-bottom: 56px;
}

.product-page .brand-lockup {
  margin-bottom: 46px;
}

.product-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(430px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.product-hero-copy {
  display: grid;
  gap: 22px;
}

.product-hero-copy .display-title {
  font-size: clamp(48px, 6vw, 86px);
}

.product-hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.detail-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.detail-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
}

.detail-stats strong {
  display: block;
  font-size: 21px;
}

.detail-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.product-hero-shot,
.detail-shot {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255,255,255,.055);
  box-shadow: 0 30px 100px rgba(0,0,0,.32);
}

.product-hero-shot img,
.detail-shot img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.detail-section {
  padding: 84px var(--gutter);
}

.detail-section .section-inner {
  display: grid;
  gap: 32px;
}

.detail-two-col {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(380px, .72fr);
  gap: 28px;
  align-items: start;
}

.detail-card,
.process-step {
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.032)),
    rgba(8,16,30,.7);
  box-shadow: 0 22px 70px rgba(0,0,0,.2);
  backdrop-filter: blur(20px);
}

.detail-card {
  padding: 26px;
}

.detail-card h2,
.detail-card h3,
.process-step strong {
  margin: 0 0 12px;
  color: var(--text);
}

.detail-card p,
.detail-card li,
.process-step p {
  color: var(--muted);
  line-height: 1.78;
}

.detail-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  padding: 22px;
}

.process-step span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 12px;
  color: #04101b;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  font-weight: 950;
}

.shot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .62fr);
  gap: 18px;
}

.shot-grid .detail-shot:nth-child(2) img {
  object-position: top center;
}

.portrait-stage {
  position: relative;
}

.portrait-card {
  position: relative;
  z-index: 2;
  width: min(430px, 100%);
  margin-left: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
}

.founder-note {
  position: relative;
  z-index: 3;
  width: min(420px, 92%);
  margin: -42px 0 0 auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 16, 30, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.founder-note strong {
  display: block;
  font-size: 24px;
}

.founder-note span,
.founder-note p {
  color: var(--muted);
}

.work-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.work-meta span {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.cta-band {
  margin-top: 40px;
  padding: 44px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 0%, rgba(29, 232, 238, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(37, 99, 255, 0.14), rgba(166, 51, 255, 0.13)),
    rgba(255, 255, 255, 0.055);
}

.cta-band h2 {
  margin: 0;
  font-family: "Aulama Serif", Georgia, serif;
  font-size: 44px;
  line-height: 1.08;
}

.cta-band p {
  width: min(760px, 100%);
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.site-footer {
  padding: 44px 20px 58px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(3, 8, 20, 0.64);
  backdrop-filter: blur(20px);
}

.footer-inner {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-inner .brand-mark {
  width: 38px;
  height: 38px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes deviceFloat {
  0%, 100% { transform: translateY(0) rotateZ(-2deg); }
  50% { transform: translateY(-12px) rotateZ(3deg); }
}

@keyframes scanLine {
  0%, 100% { transform: translateX(-10px) scaleX(.82); opacity: .42; }
  50% { transform: translateX(12px) scaleX(1.08); opacity: 1; }
}

@keyframes devicePulse {
  0%, 100% { transform: scale(.86); opacity: .14; }
  50% { transform: scale(1.08); opacity: .28; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes speedNeedle {
  0% { transform: rotate(154deg); }
  42% { transform: rotate(322deg); }
  72% { transform: rotate(248deg); }
  100% { transform: rotate(154deg); }
}

@keyframes orbitChipFloat {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .78; }
  50% { transform: translate3d(0, -8px, 0); opacity: 1; }
}

@media (hover: none) {
  .product-card:hover,
  .work-card:hover,
  .mini-link:hover,
  .pill-button:hover,
  .ghost-button:hover,
  .text-button:hover {
    transform: none;
  }
}

@media (max-width: 1180px) {
  :root {
    --content: 940px;
    --section-title: clamp(32px, 5.3vw, 48px);
  }

  .nav-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .company-hero .hero-content {
    justify-items: center;
    text-align: center;
  }

  .company-hero .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .company-hero .hero-actions {
    justify-content: center;
  }

  .hero-stage-wrap {
    order: -1;
    width: min(100%, 580px);
    height: min(46svh, 430px);
    min-height: 320px;
    margin-inline: auto;
  }

  .story-pin,
  .systems-layout,
  .network-layout,
  .about-layout,
  .product-detail-grid,
  .narrative-grid,
  .platform-grid,
  .product-hero-panel,
  .detail-two-col,
  .shot-grid {
    grid-template-columns: 1fr;
  }

  .story-pin {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .phase-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-band,
  .product-band.alt {
    grid-template-columns: 1fr;
  }

  .product-band.alt .product-copy,
  .product-band.alt .product-device,
  .product-band.alt .product-media,
  .product-band.alt .network-model {
    order: initial;
  }

  .company-proof {
    grid-template-columns: 1fr;
  }

  .product-media,
  .product-band.alt .product-media {
    transform: none;
  }

  .product-grid,
  .principles-grid,
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scroll-story {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 18px;
    --hero-title: clamp(28px, 7.6vw, 34px);
    --section-title: clamp(30px, 8vw, 38px);
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    background:
      radial-gradient(circle at 50% 16%, rgba(29, 232, 238, 0.12), transparent 36%),
      linear-gradient(152deg, #030814 0%, #061022 55%, #0b0828 100%);
  }

  .site-nav {
    position: sticky;
  }

  .nav-inner,
  .footer-inner {
    width: 100%;
    max-width: 100%;
    padding-inline: 18px;
  }

  .brand-wordmark {
    width: 132px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-subtitle,
  .nav-actions .ghost-button {
    display: none;
  }

  .nav-actions .pill-button {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 13px;
  }

  .nav-links {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding: 8px 18px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 18px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  }

  .nav-links a {
    flex: 0 0 auto;
  }

  .global-scene {
    inset: 68px 0 0;
    opacity: 0.58;
  }

  .hero-layout {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .company-hero .hero-content {
    justify-items: center;
    text-align: center;
  }

  .hero-stage-wrap {
    order: -1;
    width: min(100%, 330px);
    height: 240px;
    min-height: 220px;
    max-height: 32svh;
    margin-inline: auto;
  }

  .hero-stage-wrap::before {
    inset: 4% -4% 2%;
    filter: blur(8px);
  }

  .hero-stage-wrap::after {
    inset: 8% 2%;
  }

  .hero-stage-orbit {
    inset: 5% 3%;
  }

  .hero-stage-orbit span {
    min-height: 26px;
    padding-inline: 9px;
    font-size: 10px;
  }

  .hero,
  .page-hero {
    min-height: calc(100svh - 68px);
    padding: 42px var(--gutter) 58px;
    overflow: hidden;
  }

  .hero-content,
  .page-hero-inner,
  .section-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-logo {
    width: 68px;
    height: 68px;
    margin-bottom: 20px;
  }

  .hero-copy,
  .section-lede,
  .about-copy p {
    font-size: 16px;
    line-height: 1.76;
  }

  .company-hero .hero-copy:not(.hero-copy-mobile) {
    display: none;
  }

  .company-hero .hero-copy-mobile {
    display: block;
    width: 100%;
    max-width: 330px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.75;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .display-title {
    line-height: 1.05;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .company-hero .gradient-text {
    display: block;
    width: 100%;
    font-size: .74em;
    white-space: nowrap;
  }

  .hero-actions {
    gap: 10px;
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
  }

  .company-hero .hero-actions .ghost-button:last-child {
    display: none;
  }

  .pill-button,
  .ghost-button,
  .mini-link,
  .text-button {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .company-hero .hero-actions .pill-button,
  .company-hero .hero-actions .ghost-button {
    flex: 1 1 0;
    min-width: 0;
    max-width: 170px;
    white-space: nowrap;
  }

  .hero-metrics {
    display: none;
  }

  .section,
  .section.compact {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .phase-list,
  .tech-grid,
  .product-grid,
  .principles-grid,
  .work-grid,
  .timeline,
  .company-proof,
  .process-grid,
  .detail-stats {
    grid-template-columns: 1fr;
  }

  .company-proof {
    width: 100%;
    max-width: 340px;
    margin: 44px auto 0;
    gap: 12px;
  }

  .company-proof div {
    width: 100%;
    min-width: 0;
    padding: 18px;
  }

  .company-proof strong,
  .company-proof span {
    overflow-wrap: anywhere;
  }

  .tech-brand {
    min-height: 126px;
  }

  .product-band {
    min-height: auto;
    border-radius: 26px;
    gap: 22px;
    padding: 26px;
    overflow: hidden;
  }

  .product-copy,
  .product-copy p {
    min-width: 0;
    max-width: 100%;
  }

  .product-copy h3 {
    font-size: clamp(30px, 8.4vw, 40px);
  }

  .product-device {
    min-height: 220px;
    border-radius: 24px;
  }

  .product-media {
    min-height: 220px;
    border-radius: 24px;
  }

  .product-media img {
    min-height: 220px;
  }

  .product-hero-shot img,
  .detail-shot img {
    min-height: 240px;
  }

  .network-model {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
  }

  .network-model i {
    width: 2px;
    height: 24px;
  }

  .product-card,
  .work-card {
    min-height: 250px;
  }

  .network-visual {
    min-height: 300px;
  }

  .portrait-card,
  .founder-note {
    margin-left: 0;
  }

  .cta-band {
    padding: 28px;
  }

  .cta-band h2 {
    font-size: 32px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .nav-inner {
    gap: 12px;
    padding-inline: 14px;
  }

  .nav-links {
    padding-inline: 12px;
  }

  .brand-wordmark {
    width: 112px;
  }

  .nav-actions .pill-button {
    display: none;
  }

  .nav-links a {
    padding: 8px 13px;
    font-size: 12px;
  }

  .hero,
  .page-hero {
    padding-inline: 14px;
  }

  .company-hero .hero-copy-mobile,
  .company-proof,
  .hero-actions {
    max-width: 318px;
  }

  .company-hero .hero-actions .pill-button,
  .company-hero .hero-actions .ghost-button {
    max-width: none;
    padding-inline: 12px;
  }
}

@media (orientation: landscape) and (max-height: 560px) {
  :root {
    --hero-title: clamp(32px, 5vw, 42px);
    --section-title: 30px;
  }

  .site-nav {
    position: relative;
  }

  .global-scene {
    inset: 0;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .hero-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .hero-copy,
  .hero-metrics,
  .eyebrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
