:root {
  --bg: #0B0F1A;
  --bg-soft: #101624;
  --card: #141926;
  --line: rgba(255,255,255,.08);
  --cyan: #22D3EE;
  --cyan-dim: rgba(34,211,238,.16);
  --orange: #F97316;
  --text: #F8FAFC;
  --muted: #94A3B8;
  --max: 1160px;
  --nav-h: 72px;
  --radius: 20px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); background: var(--bg); }
body {
  font-family: "Noto Sans HK", "PingFang TC", "Microsoft JhengHei", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .display {
  font-family: "Space Grotesk", "Noto Sans HK", sans-serif;
  letter-spacing: -.03em;
}
.idx, .kicker, .chip, .hud-list span, .matrix b, .process b, .mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
.skip {
  position: absolute; left: -999px; top: 8px; z-index: 400;
  background: var(--cyan); color: #042028; padding: 8px 14px; border-radius: 8px;
}
.skip:focus { left: 8px; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.muted { color: var(--muted); }

.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 80;
  display: flex; align-items: center;
  background: rgba(11,15,26,.78); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  width: min(1240px, calc(100% - 40px)); margin: 0 auto;
  display: flex; align-items: center; gap: 16px;
}
.brand { display: flex; align-items: center; min-width: 0; }
.brand img { height: 40px; width: auto; max-width: min(220px, 52vw); }
.nav-links { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.nav-links a, .nav-parent {
  padding: 8px 16px; color: var(--muted); font-size: 14px; border-radius: 999px;
  white-space: nowrap; background: none; border: 0; font: inherit; cursor: pointer;
  letter-spacing: .02em;
}
.nav-links a:hover, .nav-links a.active,
.nav-parent:hover, .nav-item.has-menu.is-open .nav-parent, .nav-parent.active {
  color: #fff; background: rgba(255,255,255,.06);
}
.nav-item.has-menu { position: relative; }
.nav-submenu {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%); padding-top: 10px; min-width: 188px; z-index: 90;
}
.nav-submenu-inner {
  display: flex; flex-direction: column; gap: 2px; padding: 8px;
  border-radius: 14px; background: rgba(11,15,26,.96);
  border: 1px solid var(--line); box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.nav-submenu a { display: block; width: 100%; border-radius: 10px; padding: 9px 12px; }
.nav-item.has-menu:hover .nav-submenu,
.nav-item.has-menu:focus-within .nav-submenu,
.nav-item.has-menu.is-open .nav-submenu { display: block; }
.lang-switch {
  display: flex; flex: none; border: 1px solid var(--line);
  border-radius: 999px; overflow: hidden; background: rgba(11,15,26,.5);
}
.lang-switch button {
  min-width: 38px; height: 34px; padding: 0 10px; font-size: 12px; color: var(--muted);
}
.lang-switch button.is-on { color: #042028; background: var(--cyan); font-weight: 700; }
.nav-cta {
  display: inline-flex; align-items: center; min-height: 40px; padding: 0 16px;
  border-radius: 999px; background: var(--cyan); color: #042028; font-size: 13px; font-weight: 700;
  white-space: nowrap;
}
.menu-btn {
  display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.45);
  background: rgba(11,15,26,.55); border-radius: 12px; place-items: center;
}
.menu-btn i, .menu-btn i::before, .menu-btn i::after {
  display: block; width: 18px; height: 2px; background: #fff; border-radius: 1px;
}
.menu-btn i { position: relative; }
.menu-btn i::before, .menu-btn i::after { content: ""; position: absolute; left: 0; }
.menu-btn i::before { top: -6px; }
.menu-btn i::after { top: 6px; }
.menu-btn.open i { background: transparent; }
.menu-btn.open i::before { top: 0; transform: rotate(45deg); }
.menu-btn.open i::after { top: 0; transform: rotate(-45deg); }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cyan); letter-spacing: .2em; font-size: 12px; text-transform: uppercase; margin-bottom: 14px;
}
.lead { color: var(--muted); max-width: 720px; margin-bottom: 28px; }
.lead.dense { margin-bottom: 14px; }
.cta, .cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px; border-radius: 12px; font-weight: 700;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.btn-primary, .btn-cyan { background: var(--cyan); color: #042028; }
.btn-orange { background: var(--orange); color: #1a0a00; }
.btn-ghost { border-color: rgba(255,255,255,.28); color: var(--text); background: transparent; }
.btn:hover { transform: translateY(-2px); }
.btn-cyan:hover { box-shadow: 0 10px 28px rgba(34,211,238,.28); }
.btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }

/* ===== HOME HERO ===== */
.hero {
  position: relative; z-index: 2; background: #000;
  min-height: 100svh; padding: 0;
}
.hero-grid { display: block; width: 100%; max-width: none; margin: 0; }
.hero-copy {
  position: relative; z-index: 3;
  width: min(var(--max), calc(100% - 40px)); margin: 0 auto;
  min-height: 100svh;
  padding: calc(var(--nav-h) + 24px) 0 148px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-copy h1 {
  font-size: clamp(44px, 7vw, 88px); line-height: .98; margin: 12px 0 16px; max-width: 8ch;
  text-shadow: 0 10px 40px rgba(0,0,0,.55);
}
.hero-copy .lead { font-size: 18px; margin-bottom: 0; color: #dbe4ee; }
.hero-fold { position: absolute; inset: 0; }
.hero-visual {
  position: absolute; inset: 0; aspect-ratio: auto; border-radius: 0; overflow: hidden;
  border: 0; background: #000;
}
.hero-still {
  position: absolute; inset: 0; display: block;
}
.hero-still img, .hero-video, .hero-visual video, .hero-visual img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-hud {
  display: none;
  position: absolute; left: 0; right: 240px; bottom: 0; z-index: 4;
  border-top: 1px solid var(--line);
  background: rgba(11,15,26,.78);
  backdrop-filter: blur(14px);
}
.hero-hud div {
  flex: 1; min-width: 0; padding: 14px 20px;
  border-right: 1px solid var(--line);
}
.hero-hud div:last-child { border-right: 0; }
.hero-hud span {
  display: block; color: var(--cyan); font-size: 10px; letter-spacing: .16em;
  margin-bottom: 4px; font-family: "JetBrains Mono", ui-monospace, monospace;
}
.hero-hud em {
  display: block; font-style: normal; font-size: 13px; font-weight: 650; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
@media (min-width: 1367px) {
  .hero-hud { display: flex; }
}
.hero-veil {
  display: block; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,15,26,.5) 0%, rgba(11,15,26,.12) 42%, rgba(11,15,26,.88) 100%);
}

/* Smara-style home: text+particles first, landscape avatar on scroll */
body.home {
  --live-w: min(896px, calc(100vw - 48px));
}
body.home .hero {
  background: transparent;
  overflow: hidden;
  min-height: 100svh;
}
body.home .hero-stage { display: none !important; }
body.home .live-sec,
body.home .gate,
body.home .end,
body.home .foot {
  position: relative;
  z-index: 2;
  background: var(--bg);
}
body.home .space {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  opacity: 1;
}
body.home .nebula,
body.home .grid-fade {
  position: absolute; inset: 0; pointer-events: none;
}
body.home .nebula {
  z-index: 0;
  background: #070b14;
}
body.home .grid-fade {
  display: none;
  background-image:
    linear-gradient(rgba(34,211,238,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 10%, transparent 72%);
}
body.home .hero-copy {
  position: relative; z-index: 3;
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 100svh;
  padding: calc(var(--nav-h) + 48px) 0 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
body.home .hero-copy h1 {
  max-width: 14em;
  font-size: clamp(36px, 5.6vw, 68px);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 700;
  margin: 12px 0 16px;
  text-shadow: 0 10px 40px rgba(0,0,0,.45);
}
body.home .hero-copy .lead {
  max-width: 28em;
  font-size: clamp(16px, 1.8vw, 22px);
  color: #d5e4ee;
  margin: 0 0 28px;
}
body.home .hero-line {
  margin-top: 28px;
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: .16em;
  opacity: .9;
}
body.home .hero-copy .cta {
  gap: 12px;
  margin-top: 8px;
}
body.home .hero-copy .btn {
  min-height: 52px;
  min-width: 148px;
  padding: 0 26px;
  border-radius: 12px;
  font-family: "Space Grotesk", "Noto Sans HK", sans-serif;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: .04em;
}
body.home .hero-copy .btn-cyan {
  background: linear-gradient(180deg, #67e8f9 0%, #22d3ee 100%);
  color: #042028;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    0 3px 0 #0e7490,
    0 10px 22px rgba(34,211,238,.28);
}
body.home .hero-copy .btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    0 4px 0 #0e7490,
    0 14px 26px rgba(34,211,238,.36);
}
body.home .hero-copy .btn-cyan:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 1px 3px rgba(8,145,178,.35),
    0 1px 0 #0e7490,
    0 6px 14px rgba(34,211,238,.22);
}
body.home .hero-copy .btn-ghost {
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.32);
  color: #f8fafc;
  backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 3px 0 rgba(0,0,0,.35),
    0 10px 20px rgba(0,0,0,.28);
}
body.home .hero-copy .btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.5);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    0 4px 0 rgba(0,0,0,.38),
    0 12px 22px rgba(0,0,0,.32);
}
body.home .hero-copy .btn-ghost:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 1px 3px rgba(0,0,0,.3),
    0 1px 0 rgba(0,0,0,.3);
}
.wb-screen {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 24px) 0 88px;
  background:
    radial-gradient(ellipse 70% 80% at 78% 58%, rgba(34,211,238,.12), transparent 58%),
    radial-gradient(ellipse 50% 60% at 18% 20%, rgba(249,115,22,.08), transparent 55%),
    #0a101c;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.wb-screen-glow {
  position: absolute;
  width: min(640px, 70vw);
  height: min(640px, 70vw);
  right: 4%;
  top: 52%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,211,238,.22) 0%, rgba(34,211,238,.04) 42%, transparent 70%);
  pointer-events: none;
}
.wb-screen-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 48px 40px;
  align-items: center;
}
.wb-screen-copy .chip {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(34,211,238,.35);
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: .08em;
}
.wb-screen-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}
.wb-screen-lockup img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}
.wb-screen-lockup span {
  font-family: "Space Grotesk", "Noto Sans HK", sans-serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
}
.wb-screen-copy h2 {
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.12;
  max-width: 12em;
  margin: 0 0 16px;
}
.wb-screen-copy .lead {
  max-width: 34em;
  font-size: clamp(16px, 1.6vw, 19px);
  color: #d5e4ee;
  margin: 0 0 22px;
}
.wb-screen-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 8px;
}
.wb-screen-points li {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: 13px;
}
.wb-screen-copy .cta { margin-top: 22px; }
.wb-screen-copy .btn {
  min-height: 52px;
  min-width: 148px;
  padding: 0 24px;
}
.wb-screen-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  max-width: 36em;
}
.wb-screen-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.wb-screen-mascot {
  width: min(520px, 100%);
  height: auto;
  filter: drop-shadow(0 28px 48px rgba(0,0,0,.45));
}

body.home .live-sec {
  padding: 0 0 72px;
  background: transparent;
}
body.home .band {
  position: relative; z-index: 2;
  padding: 88px 0;
  background: rgba(7,11,20,.94);
}
body.home .band-alt { background: rgba(11,15,26,.96); }
body.home .band h2 {
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.12;
  margin: 0 0 14px;
  max-width: 16ch;
}
body.home .band > .wrap > .lead {
  max-width: 42em;
  margin-bottom: 36px;
  color: var(--muted);
}
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.svc-grid.three { grid-template-columns: repeat(3, 1fr); }
.work-wall.pair { grid-template-columns: 1fr 1fr; }
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
  padding: 22px 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-band div { text-align: center; }
.stat-band b {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--cyan);
  line-height: 1.1;
}
.stat-band span { color: var(--muted); font-size: 13px; }
.belief-list { list-style: none; display: grid; gap: 16px; margin: 8px 0 40px; }
.belief-list li { padding: 22px 24px; }
.belief-list b { display: block; margin-bottom: 8px; }
.mile { list-style: none; display: grid; gap: 14px; margin: 20px 0 36px; }
.mile li { display: grid; grid-template-columns: 72px 1fr; gap: 16px; align-items: start; }
.mile time { color: var(--cyan); font-family: "JetBrains Mono", monospace; font-size: 13px; }
.map-brands { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0; }
.tabs-ind {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 0 40px;
}
.tabs-ind b { display: block; margin: 0 0 10px; }
.svc-card {
  display: grid;
  grid-template-rows: 180px 1fr;
  overflow: hidden;
  color: inherit;
}
.svc-card img { width: 100%; height: 180px; object-fit: cover; }
.svc-card > div { padding: 22px 24px 24px; }
.svc-card h3 { font-size: 20px; margin: 0 0 8px; }
.svc-card p { color: var(--muted); font-size: 14px; margin: 0 0 14px; }
.svc-card .more { color: var(--cyan); font-size: 13px; }
.svc-card:hover { border-color: rgba(34,211,238,.35); }
.how-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 40px;
}
.how-grid h3 { font-size: 17px; margin: 4px 0 10px; }
.how-grid:has(> :nth-child(3):last-child) { grid-template-columns: repeat(3, 1fr); }
.how-notes {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 22px;
  max-width: 52em;
}
.how-notes li { padding-left: 14px; border-left: 2px solid var(--line); }
.more { color: var(--cyan); font-size: 14px; }
.more:hover { text-decoration: underline; }
.work-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}
.work-tile {
  display: grid;
  grid-template-rows: 160px 1fr;
  overflow: hidden;
  color: inherit;
}
.work-tile img { width: 100%; height: 160px; object-fit: cover; }
.work-tile > div { padding: 16px 18px 18px; }
.work-tile h3 { font-size: 18px; margin: 6px 0 8px; }
.work-tile p { font-size: 13px; margin: 0 0 6px; }
.work-tile:hover { border-color: rgba(34,211,238,.35); }
.fit-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.fit-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 16px;
  font-size: 16px;
}
.fit-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
}
.fit-list.dim li { color: var(--muted); }
.chk-set {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  display: grid;
  gap: 8px;
}
.chk-set legend { color: var(--muted); font-size: 13px; padding: 0 6px; }
.chk { display: flex; align-items: center; gap: 8px; color: var(--text); font-size: 14px; }
.chk input { width: auto; accent-color: var(--cyan); }
select {
  width: 100%; background: rgba(11,15,26,.55); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 14px; outline: none;
}
select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-dim); }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px; }
.filter-row button {
  min-height: 36px; padding: 0 14px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--muted); background: transparent;
}
.filter-row button.is-on { color: #042028; background: var(--cyan); border-color: var(--cyan); }
.dh-stage { width: min(896px, 100%); margin: 28px auto 0; }
.dh-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  overflow: hidden; border-radius: 18px; background: #05080f;
}
.dh-frame anam-agent {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.avatar-page .hero-avatar,
.avatar-page .hero-avatar.hud {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  min-height: 0; max-height: none;
  border-radius: 0; box-shadow: none;
}
.avatar-page .hero-avatar anam-agent {
  left: 0; top: 0; width: 100%; height: 100%;
  transform: none;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 8px 0 36px;
}
.spec-grid article {
  min-height: 0;
}
.spec-grid b {
  display: block;
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: .14em;
  margin-bottom: 8px;
}
.svc-prose h2 { font-size: clamp(22px, 3vw, 28px); margin: 0 0 10px; }
.svc-prose p { color: var(--muted); max-width: 64ch; margin-bottom: 16px; font-size: 16px; line-height: 1.75; }
.svc-prose + .spec-grid { margin-top: 8px; }
body.home .olivia-stage {
  position: relative;
  width: var(--live-w);
  margin: 0 auto;
}
body.home .olivia-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  border-radius: 22px;
  background: #05080f;
}
body.home .session-end {
  display: none;
  position: absolute; inset: 0; z-index: 4;
  place-items: center; padding: 24px; text-align: center;
  background: rgba(7,11,20,.72);
  color: #fff; font-size: 15px;
}
body.home.olivia-gone .session-end { display: grid; }
body.home .olivia-dock {
  position: absolute; inset: 0;
  right: auto; bottom: auto;
  width: 100%; height: 100%;
}
body.home .hero-avatar,
body.home .hero-avatar.hud {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  min-height: 0; max-height: none;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}
body.home .hero-avatar anam-agent {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: none;
}
body.home .smara-block {
  position: relative; z-index: 2;
  padding: 88px 0;
  background: rgba(7,11,20,.92);
}
body.home .smara-block h2 {
  font-size: clamp(32px, 5.2vw, 58px);
  line-height: 1.08;
  margin-bottom: 36px;
  max-width: 16ch;
}
body.home .feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
body.home .feat-grid.three { grid-template-columns: repeat(3, 1fr); }
body.home .feat-grid article,
body.home .fit-grid article {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(20,25,38,.55);
}
body.home .feat-grid b,
body.home .feat-grid h3,
body.home .fit-grid h3 { display: block; font-size: 22px; margin: 8px 0 10px; }
body.home .drop-tabs {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  color: var(--muted); font-size: 12px; letter-spacing: .12em;
  margin: -18px 0 28px;
}
body.home .drop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
body.home .drop-grid article:last-child { grid-column: 1 / -1; }
body.home .drop-grid h3 { font-size: 24px; margin: 8px 0 10px; }
body.home .drop-grid .more { color: var(--cyan); font-size: 14px; font-weight: 700; display: inline-block; margin-top: 12px; }
body.home .fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
body.home .fit-note { margin-top: 22px; max-width: 48em; }
body.home .session-caption { margin: 16px 0 6px; font-size: 15px; }
body.home .session-feel { color: #fff; font-size: 18px; font-style: italic; }
body.home .persona {
  position: relative; z-index: 2;
  padding: 100px 0 72px;
  text-align: left;
  background: transparent;
}
body.home .persona h2 {
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
  max-width: 12em;
}
body.home .persona em { font-style: italic; color: var(--cyan); }
body.home .persona .lead { margin: 18px 0 0; }
@media (max-width: 980px) {
  body.home .feat-grid,
  body.home .feat-grid.three,
  body.home .drop-grid,
  body.home .fit-grid { grid-template-columns: 1fr; }
  body.home .drop-grid article:last-child { grid-column: auto; }
}
.gate {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 0;
  margin: 0 auto 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--line);
}
.gate a {
  display: grid; gap: 6px;
  padding: 22px 18px;
  background: var(--bg);
}
.gate a:hover { background: #121826; }
.gate .idx { color: var(--cyan); font-size: 11px; letter-spacing: .16em; }
.gate b { font-size: 16px; font-weight: 650; }
.tracks { padding: 88px 0 48px; }
.tracks h2 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 8px; }
.track-hud { margin-top: 28px; border-top: 1px solid var(--line); }
.track-hud a {
  display: grid; grid-template-columns: 72px minmax(0, 1fr) 28px;
  gap: 16px; align-items: center;
  padding: 28px 4px; border-bottom: 1px solid var(--line);
}
.track-hud a:hover { background: rgba(34,211,238,.04); }
.track-hud .idx { color: var(--cyan); font-size: 13px; letter-spacing: .16em; }
.track-hud h3 { font-size: clamp(22px, 3vw, 32px); margin: 0; line-height: 1.1; }
.track-hud p { color: var(--muted); margin: 6px 0 0; font-size: 15px; }
.track-hud .go { color: var(--cyan); font-size: 20px; text-align: right; }

.wall { padding: 24px 0 72px; }
.wall-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 16px; margin-bottom: 22px;
}
.wall h2 { font-size: clamp(32px, 5vw, 56px); line-height: 1.08; }
.wall-grid {
  width: min(1440px, calc(100% - 24px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, 20vw);
  gap: 6px;
}
.poster {
  position: relative; display: block; overflow: hidden; background: #070b14;
  min-height: 0; height: 100%;
}
.poster img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s ease;
}
.poster:hover img { transform: scale(1.04); }
.poster.featured { grid-column: span 2; grid-row: span 2; }
.poster.tall { grid-row: span 2; }
.poster-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 48px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.82));
  display: grid; gap: 4px;
}
.poster-meta .tag { font-size: 10px; letter-spacing: .16em; color: var(--cyan); }
.poster-meta strong { font-size: 16px; font-weight: 650; }
.boot {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: #070b14; color: var(--cyan); letter-spacing: .12em;
  animation: boot-out .5s 1.5s forwards; pointer-events: none; z-index: 2;
}
@keyframes boot-out { to { opacity: 0; visibility: hidden; } }
.hero-stage { display: none; }
.hero-flank { display: none; }
.olivia-dock {
  position: fixed; z-index: 60; right: 20px; bottom: 20px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  width: 200px;
}
.olivia-hint {
  position: absolute; left: 50%; bottom: 12px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--cyan);
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
  transform: translateX(-50%);
  pointer-events: none;
  animation: hint-pulse 2.4s ease-in-out infinite;
}
@keyframes hint-pulse {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}
.olivia-dock.is-talking .olivia-hint { display: none; }
.hero-avatar {
  position: relative; right: auto; bottom: auto; top: auto;
  width: 200px; height: 200px; min-height: 200px; max-height: 200px;
  overflow: hidden; border-radius: 50%; pointer-events: auto;
  background: #070b14;
  box-shadow: 0 0 0 2px rgba(34,211,238,.4), 0 18px 48px rgba(0,0,0,.45);
}
.hero-avatar anam-agent {
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  width: 380px;
  height: 520px;
  min-height: 0;
  transform: translateX(-50%);
}
body.olivia-gone anam-agent,
body.olivia-gone .olivia-hint { display: none !important; }

.layer { padding: 88px 0 24px; }
.layer h2, .metrics-wrap h2, .industries h2, .apps h2, .notes h2, .end h2, .panel-sec h2, .page-hero h1 {
  line-height: 1.08;
}
.panel-sec h2 { margin: 36px 0 18px; }
.panel-sec .wrap > h2:first-child { margin-top: 0; }
.layer h2 { font-size: clamp(32px, 5vw, 56px); max-width: 14ch; }
.layer .intro { color: var(--muted); max-width: 42em; margin: 16px 0 36px; font-size: 17px; }
.work {
  display: grid; grid-template-columns: 240px 1fr; border: 1px solid var(--line);
  border-radius: 22px; overflow: hidden; background: var(--card);
}
.tabs { display: flex; flex-direction: column; border-right: 1px solid var(--line); background: #101624; }
.tabs button {
  text-align: left; color: var(--muted); padding: 18px 22px;
  border-bottom: 1px solid var(--line); width: 100%;
}
.tabs button:hover { color: #fff; }
.tabs button.is-on { color: #fff; background: rgba(34,211,238,.08); box-shadow: inset 3px 0 0 var(--cyan); }
.panel { display: none; grid-template-columns: 1.15fr .85fr; min-height: 480px; }
.panel.is-on { display: grid; }
.panel .copy { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.panel h3 { font-size: 28px; margin: 8px 0 12px; }
.panel .shot { position: relative; min-height: 480px; }
.panel .shot img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.trust { padding: 28px 0; border-block: 1px solid var(--line); margin-top: 72px; }
.trust-row { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; color: var(--muted); }
.trust-row b { color: #fff; letter-spacing: .18em; font-size: 11px; }

.metrics-wrap { padding: 80px 0; }
.metrics-wrap h2 { font-size: clamp(28px, 4vw, 44px); max-width: 16ch; margin-bottom: 12px; }
.metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); margin-top: 36px; border: 1px solid var(--line);
  border-radius: 22px; overflow: hidden;
}
.metrics > div { background: var(--bg); padding: 36px 28px; }
.metrics b { display: block; font-size: clamp(36px, 5vw, 56px); color: var(--cyan); line-height: 1; margin-bottom: 10px; }

.industries { padding: 24px 0 80px; }
.industries h2 { font-size: clamp(28px, 4.4vw, 48px); max-width: 16ch; margin: 8px 0 28px; }
.igrid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.icard {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  overflow: hidden; display: grid; grid-template-columns: 1.35fr .65fr; min-height: 380px; padding: 0;
}
.icard:hover { border-color: rgba(34,211,238,.45); }
.icard:nth-child(even) { grid-template-columns: .65fr 1.35fr; }
.icard:nth-child(even) .icard-body { order: -1; }
.icard img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.icard .icard-body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.icard h3 { font-size: 28px; margin: 0; }
.icard p { margin: 0; font-size: 16px; }
.icard .more { color: var(--cyan); font-size: 14px; font-weight: 700; margin-top: 8px; }
.note { overflow: hidden; padding: 0; }
.note img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.note .note-body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.note h3 { font-size: 24px; margin: 0 0 8px; }
.about-visual { width: 100%; height: 380px; object-fit: cover; border-radius: 18px; border: 1px solid var(--line); }
.wb-brand {
  display: flex; align-items: center; gap: 28px;
  padding: 8px 0 4px; background: transparent;
  border: 0; border-radius: 0;
}
.wb-icon {
  width: 96px; height: 96px; flex: none;
  object-fit: contain; border-radius: 22px;
}
.logo-stage {
  display: flex; align-items: center; justify-content: flex-start;
  padding: 40px 44px; background: #050505; min-height: 180px;
}
.logo-stage img {
  height: 72px; width: auto; max-width: min(280px, 100%);
  object-fit: contain; object-position: left center;
}
.app.app-logo { min-height: 0; grid-template-columns: 1.1fr .9fr; }
.app.app-logo img { width: auto; height: 72px; min-height: 0; object-fit: contain; }

.sdk {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
  padding: 72px 0; border-top: 1px solid var(--line);
}
.code { background: #0a101c; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.code-bar { display: flex; gap: 4px; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.code-bar button {
  color: var(--muted); font-size: 12px; padding: 6px 10px; border-radius: 8px;
}
.code-bar button.is-on { background: #182033; color: #fff; }
pre { margin: 0; padding: 22px; overflow: auto; color: #d6e4f0; font-size: 13px; line-height: 1.7; }
.kw { color: var(--cyan); } .str { color: #fdba74; } .cmt { color: #64748b; }

.apps { padding: 24px 0 72px; }
.apps-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 22px; }
.apps h2 { font-size: clamp(28px, 4vw, 44px); }
.agrid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.app { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--card); display: grid; grid-template-columns: 1.35fr .65fr; min-height: 380px; }
.app:nth-child(even) { grid-template-columns: .65fr 1.35fr; }
.app:nth-child(even) > div:last-child { order: -1; }
.app img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.app.app-logo { min-height: 0; }
.app.app-logo .logo-stage img {
  width: auto; height: 72px; min-height: 0; max-width: min(280px, 100%);
  object-fit: contain; object-position: left center;
}
.app > div:last-child { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.app .tag { font-size: 11px; letter-spacing: .14em; color: var(--cyan); }

.notes { padding: 24px 0 80px; border-top: 1px solid var(--line); }
.notes h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 22px; }
.ngrid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.note { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 0; display: grid; grid-template-columns: 1.35fr .65fr; min-height: 340px; }
.note:nth-child(even) { grid-template-columns: .65fr 1.35fr; }
.note:nth-child(even) .note-body { order: -1; }
.note q { display: block; font-size: 16px; line-height: 1.6; margin-bottom: 16px; }

.crew { display: grid; gap: 20px; grid-template-columns: 1fr; }
.person-card {
  display: grid; grid-template-columns: 280px 1fr; gap: 28px; padding: 18px; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
}
.person-card img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: 50% 18%; border-radius: 12px; }
.person-card h3 { margin: 6px 0 8px; font-size: 22px; }
.person-card h3 small { color: var(--muted); font-weight: 500; font-size: 14px; }
.founder-hero h1 { font-size: clamp(40px, 6vw, 72px); max-width: 16ch; }
.founder-quote {
  font-family: "Space Grotesk", "Noto Sans HK", sans-serif;
  font-size: clamp(20px, 3.2vw, 32px);
  line-height: 1.35;
  max-width: 18em;
  margin: 18px 0 0;
  color: #fff;
}
.founder-article {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
.founder-aside { position: sticky; top: calc(var(--nav-h) + 20px); }
.founder-aside img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 12%;
  border-radius: 18px;
  border: 1px solid var(--line);
}
.founder-prose p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 64ch;
}
.founder-prose .idx { margin-bottom: 18px; }
.founder-en {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.founder-en h2 { font-size: 22px; margin-bottom: 16px; color: #fff; }
.phoenix-copy { max-width: 62ch; color: var(--muted); font-size: 16px; line-height: 1.8; margin: 8px 0 18px; }

.about-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 28px; margin-bottom: 28px; }
.hud-list {
  list-style: none; border: 1px solid var(--line); background: var(--card); border-radius: 18px; overflow: hidden;
}
.hud-list li {
  display: grid; grid-template-columns: 110px 1fr; gap: 12px; padding: 12px 16px;
  border-bottom: 1px solid var(--line); font-size: 14px;
}
.hud-list li:last-child { border-bottom: 0; }
.hud-list span { color: var(--cyan); font-size: 11px; letter-spacing: .12em; align-self: center; }
.hud-list em { font-style: normal; }
.mini { margin: 14px 0 0; padding-left: 16px; color: var(--muted); font-size: 13px; display: grid; gap: 4px; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.matrix { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 8px 0 36px; }
.matrix article {
  min-height: 108px; display: flex; flex-direction: column; justify-content: space-between;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 18px;
}
.matrix b { font-size: 13px; letter-spacing: .16em; color: var(--cyan); }
.matrix span { color: var(--muted); font-size: 13px; margin-top: 10px; }

.end {
  padding: 88px 0; text-align: center; border-top: 1px solid var(--line);
  background: transparent;
}
.end h2 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 12px; }
.end .cta { justify-content: center; }

.panel-sec { position: relative; z-index: 2; padding: 96px 0 72px; }
.idx { color: var(--cyan); font-size: 12px; letter-spacing: .22em; margin-bottom: 8px; }
.chip { display: inline-block; color: var(--cyan); font-size: 11px; letter-spacing: .18em; }
.hud {
  position: relative; background: var(--card); border: 1px solid var(--line); border-radius: 18px;
}
.hud.pad { padding: 28px 26px 30px; text-align: left; color: inherit; width: 100%; }
.hud.pad h3 { margin: 8px 0 10px; font-size: 20px; }
.hud.pad p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.65; }
.hud.pad .idx { margin-bottom: 12px; }
.hero-avatar.hud { position: relative; background: #070b14; border: 0; border-radius: 50%; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.info-list { display: grid; gap: 16px; margin-top: 8px; }
.info-list div { color: var(--muted); font-size: 14px; }
.info-list b { display: block; color: #fff; font-size: 13px; letter-spacing: .12em; margin-bottom: 4px; }
.info-list a:hover { color: var(--cyan); }
.qr-slot {
  margin-top: 18px; border: 1px dashed rgba(34,211,238,.35); border-radius: 16px;
  padding: 16px; color: var(--muted); font-size: 13px; display: flex; align-items: center; gap: 12px;
}
.qr-box {
  width: 72px; height: 72px; border-radius: 10px; flex: none;
  background: linear-gradient(45deg, transparent 46%, rgba(34,211,238,.35) 46% 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, rgba(249,115,22,.35) 46% 54%, transparent 54%),
    rgba(255,255,255,.03);
}
form { display: grid; gap: 12px; }
label { font-size: 13px; color: var(--muted); display: grid; gap: 6px; }
input, textarea {
  width: 100%; background: rgba(11,15,26,.55); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 14px; outline: none;
}
input:focus, textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-dim); }
textarea { min-height: 120px; resize: vertical; }
.form-note { color: var(--muted); font-size: 12px; }

.foot {
  position: relative; z-index: 2; border-top: 1px solid var(--line);
  padding: 48px 0 36px; color: var(--muted); font-size: 13px; background: var(--bg);
}
.foot-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.foot-brand img { height: 36px; width: auto; }
.cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-bottom: 28px; }
.cols b { display: block; margin-bottom: 10px; color: #fff; }
.cols a, .cols span { display: block; color: var(--muted); padding: 4px 0; }
.cols a:hover { color: #fff; }

.dots { display: none; }
.modal {
  position: fixed; inset: 0; z-index: 120; display: none; place-items: center; padding: 24px;
}
.modal.open { display: grid; }
.modal-bg { position: absolute; inset: 0; background: rgba(2,4,10,.72); backdrop-filter: blur(10px); }
.modal-card {
  position: relative; width: min(720px, 100%); max-height: min(86svh, 820px); overflow: auto;
  background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 28px;
}
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 40px; height: 40px;
  border-radius: 50%; border: 1px solid var(--line);
}
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px);
  background: #042028; color: var(--cyan); border: 1px solid rgba(34,211,238,.4);
  padding: 12px 18px; border-radius: 999px; opacity: 0; pointer-events: none; transition: .3s; z-index: 200;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.subpage .nav { background: rgba(11,15,26,.86); }
.page-hero {
  position: relative; z-index: 2; min-height: 62svh; display: flex; align-items: flex-end;
  padding: calc(var(--nav-h) + 36px) 0 48px; overflow: hidden;
}
.page-hero .cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,15,26,.35) 0%, rgba(11,15,26,.92) 100%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(36px, 6vw, 64px); margin: 8px 0 12px; }
.page-hero .lead { margin-bottom: 0; color: #d4d4d8; }
.aff-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; }
.aff-tabs a {
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line);
  color: var(--muted); font-size: 13px;
}
.aff-tabs a.is-on, .aff-tabs a:hover { color: #042028; background: var(--cyan); border-color: var(--cyan); }
.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: start; }
.split img {
  width: 100%; min-height: 280px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line);
}
.prose p { color: var(--muted); margin-bottom: 14px; max-width: 68ch; }
.line-stack { display: grid; gap: 20px; }
.line-block { display: grid; grid-template-columns: .92fr 1.08fr; overflow: hidden; }
.line-stack .line-block:nth-child(even) { grid-template-columns: 1.08fr .92fr; }
.line-stack .line-block:nth-child(even) .line-media { order: -1; }
.line-media { min-height: 260px; background: #070b14; }
.line-media img { width: 100%; height: 100%; object-fit: cover; }
.line-copy { padding: 28px 32px; }
.line-copy h3 { font-size: clamp(22px, 3vw, 30px); margin: 8px 0 10px; }
.line-copy p { color: var(--muted); font-size: 15px; }
.bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.shot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 8px; margin-top: 8px; }
.shot-grid img { width: 100%; height: 220px; object-fit: cover; border: 1px solid var(--line); }
.shot-grid img:first-child { height: 100%; min-height: 220px; grid-row: 1 / span 2; }
.shot-grid.four { grid-template-columns: 1fr 1fr; }
.shot-grid.four img, .shot-grid.four img:first-child { grid-row: auto; height: 200px; min-height: 0; }
.sib-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.work-grid.pair { grid-template-columns: 1fr 1fr; }
.work-card { overflow: hidden; display: flex; flex-direction: column; }
.work-card.span-all { grid-column: 1 / -1; }
.work-card.landscape { display: grid; grid-template-columns: 1.4fr .8fr; }
.work-media { background: #070b14; position: relative; }
.work-media video, .work-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.work-media.portrait video, .work-media.portrait img {
  aspect-ratio: 9/16; max-height: 72vh; margin: 0 auto; object-fit: contain;
}
.work-media.wide video, .work-media.wide img { aspect-ratio: 16/9; }
.work-copy { padding: 24px 26px 26px; }
.work-copy h2 { font-size: 22px; margin: 6px 0 12px; }
.work-copy h3 { font-size: 18px; margin: 6px 0 10px; }
.work-copy p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.process { list-style: none; display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.process.four { grid-template-columns: repeat(4, 1fr); }
.process li { display: grid; gap: 6px; }
.process b { color: var(--cyan); font-size: 12px; }
.process small { color: var(--muted); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 18px; }
.gallery img { width: 100%; height: 140px; object-fit: cover; border: 1px solid var(--line); }
.veil { position: absolute; inset: 0; z-index: 1; }

@media (max-width: 1024px), ((max-width: 1366px) and (pointer: coarse)) {
  body.home { --live-w: 100vw; }
  body.home .olivia-stage { margin: 0; }
  body.home .olivia-frame { border-radius: 0; }
}

@media (max-width: 980px) {
  .gate { grid-template-columns: 1fr 1fr; }
  .svc-grid, .how-grid, .work-wall, .fit-pair, .spec-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid, .work, .panel, .sdk, .igrid, .agrid, .ngrid, .cols,
  .contact-grid, .about-grid, .crew, .split, .metrics, .founder-article, .wb-brand,
  .icard, .icard:nth-child(even), .app, .app:nth-child(even), .note, .note:nth-child(even),
  .person-card, .app.app-logo { grid-template-columns: 1fr; }
  .wall-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: minmax(180px, 38vw); }
  .poster.featured { grid-column: span 2; grid-row: span 1; }
  .poster.tall { grid-row: span 1; min-height: 280px; }
  .track-hud a { grid-template-columns: 48px minmax(0, 1fr) 20px; padding: 22px 0; }
  .wb-brand { flex-direction: column; align-items: flex-start; }
  .icard:nth-child(even) .icard-body,
  .app:nth-child(even) > div:last-child,
  .note:nth-child(even) .note-body { order: 0; }
  .icard img, .app img, .note img {
    min-height: 240px; height: 240px;
  }
  .app.app-logo img, .logo-stage img {
    min-height: 0; height: 64px; width: auto;
  }
  .founder-aside { position: static; }
  .tabs { flex-direction: row; overflow: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .tabs button { white-space: nowrap; border-bottom: 0; border-right: 1px solid var(--line); }
  .tabs button.is-on { box-shadow: inset 0 -3px 0 var(--cyan); }
  .panel .shot { min-height: 220px; }
  .nav-cta { display: none; }
  .cards-3, .matrix, .process, .gallery, .work-grid, .work-grid.pair, .work-card.landscape,
  .line-block, .bio-grid, .sib-row, .shot-grid, .shot-grid.four, .person-card {
    grid-template-columns: 1fr;
  }
  .line-stack .line-block:nth-child(even) { grid-template-columns: 1fr; }
  .line-stack .line-block:nth-child(even) .line-media { order: 0; }
  .shot-grid img:first-child { grid-row: auto; height: 200px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; margin-left: 0; }
  .lang-switch { margin-left: auto; }
  .menu-btn { display: grid; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(11,15,26,.96); backdrop-filter: blur(18px);
    padding: 16px 20px 22px; border-bottom: 1px solid var(--line); gap: 4px;
  }
  .nav.open .nav-links a, .nav.open .nav-parent { width: 100%; padding: 12px 14px; text-align: left; }
  .nav-item.has-menu { width: 100%; }
  .nav-submenu, .nav-item.has-menu:hover .nav-submenu, .nav-item.has-menu:focus-within .nav-submenu {
    position: static; transform: none; padding: 0 0 8px 12px; display: none;
  }
  .nav-item.has-menu.is-open .nav-submenu { display: block; }
  .nav-submenu-inner { box-shadow: none; background: rgba(255,255,255,.03); }
  body.home .hero-copy {
    align-items: center;
    text-align: center;
  }
  body.home .hero-copy h1,
  body.home .hero-copy .lead,
  body.home .hero-line {
    max-width: none;
    width: 100%;
  }
  body.home .hero-copy .cta { justify-content: center; width: 100%; }
  body.home .hero-copy .btn { min-width: 132px; }
}

@media (min-width: 701px) and (max-width: 1366px) {
  body.home .hero-copy {
    min-height: 100svh;
    padding: calc(var(--nav-h) + 36px) 0 72px;
    width: min(1100px, calc(100% - 40px));
  }
  body.home .hero-copy h1 { font-size: clamp(32px, 5vw, 52px); }
  body.home .gate { grid-template-columns: 1fr 1fr; margin: 8px auto 24px; }
  .hero {
    display: flex; flex-direction: column; height: auto; min-height: 0; padding: 0;
  }
  .hero-grid { display: contents; }
  .hero-copy { order: 3; min-height: 0; justify-content: flex-start; padding: 36px 0 12px; width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
  .hero-fold {
    order: 1; display: flex; flex-direction: column; position: relative; inset: auto;
    height: 100svh; min-height: 100svh; padding-top: var(--nav-h); overflow: hidden;
  }
  .hero-visual {
    position: relative; inset: auto; flex: 1 1 46%; min-height: 0; aspect-ratio: auto;
    border-radius: 0; border: 0;
  }
  .hero-veil { display: none; }
  .hero-still img, .hero-video, .hero-visual video, .hero-visual img {
    object-fit: contain; object-position: center; background: #000;
  }
  .hero-hud { display: none; }
  .hero-stage {
    display: grid; flex: 1 1 54%; min-height: 36svh;
    grid-template-columns: minmax(140px, 200px) minmax(0, 1fr) minmax(140px, 200px);
    column-gap: 10px; align-items: stretch; padding: 10px 16px 14px;
    background: var(--bg); z-index: 4;
  }
  .hero-flank {
    display: flex; flex-direction: column; justify-content: space-evenly; gap: 8px;
    padding: 12px 14px; background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  }
  .hero-flank-k { margin: 0 0 3px; color: var(--cyan); font-size: 10px; letter-spacing: .12em; }
  .hero-flank strong, .hero-flank span, .hero-flank a {
    display: block; font-size: 13px; line-height: 1.35; font-weight: 650; word-break: break-word;
  }
  .hero-flank a { color: var(--cyan); }
  .olivia-dock {
    position: relative; right: auto; bottom: auto; width: auto;
    margin: auto; align-self: center;
  }
  .hero-avatar, .hero-avatar.hud {
    position: relative; right: auto; bottom: auto; top: auto;
    width: 180px; height: 180px; min-height: 180px; max-height: 180px;
    aspect-ratio: 1; border-radius: 50%; margin: 0 auto;
    box-shadow: 0 0 0 2px rgba(34,211,238,.35);
  }
  body.olivia-gone .hero-fold { height: auto; min-height: 0; }
  body.olivia-gone .hero-visual { flex: 1 1 auto; min-height: 42svh; }
}

@media (max-width: 700px) {
  body.home .hero-copy {
    min-height: 100svh;
    padding: calc(var(--nav-h) + 24px) 0 64px;
    width: min(var(--max), calc(100% - 24px));
  }
  body.home .hero-copy h1 { font-size: clamp(28px, 8vw, 40px); }
  body.home .hero-copy .cta {
    flex-direction: column;
    align-items: stretch;
    width: min(280px, 100%);
    margin-left: auto;
    margin-right: auto;
  }
  body.home .hero-copy .btn { width: 100%; min-width: 0; }
  body.home .gate { grid-template-columns: 1fr; }
  .svc-grid, .svc-grid.three, .how-grid, .work-wall, .work-wall.pair, .fit-pair, .spec-grid, .stat-band, .map-brands, .tabs-ind { grid-template-columns: 1fr; }
  .hero { display: flex; flex-direction: column; padding: 0; }
  .hero-grid { display: contents; }
  .hero-copy { order: 3; min-height: 0; justify-content: flex-start; padding: 28px 0 8px; width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
  .hero-copy h1 { font-size: clamp(32px, 9vw, 44px); }
  .hero-fold {
    order: 1; display: flex; flex-direction: column; position: relative; inset: auto;
    height: 100svh; min-height: 100svh; padding-top: var(--nav-h); overflow: hidden;
  }
  .hero-veil { display: none; }
  .hero-visual {
    flex: 1 1 auto; min-height: 0; aspect-ratio: auto; border-radius: 0; border: 0;
  }
  .hero-still img, .hero-video, .hero-visual video, .hero-visual img {
    object-fit: cover; object-position: center top;
  }
  .hero-hud { display: none; }
  .hero-copy { padding-bottom: 8px; }
  .wall-grid { grid-template-columns: 1fr; grid-auto-rows: minmax(220px, 56vw); }
  .poster.featured, .poster.tall { grid-column: span 1; grid-row: span 1; min-height: 240px; }
  .hero-stage {
    display: grid; flex: 0 0 42svh; height: 42svh;
    grid-template-columns: 86px minmax(0, 1fr) 86px; column-gap: 6px;
    padding: 8px 8px 10px; background: var(--bg); z-index: 4;
  }
  .hero-flank {
    display: flex; flex-direction: column; justify-content: space-evenly; gap: 8px;
    padding: 10px 7px; background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  }
  .hero-flank-k { margin: 0 0 3px; color: var(--cyan); font-size: 9px; letter-spacing: .12em; }
  .hero-flank strong, .hero-flank span, .hero-flank a {
    display: block; font-size: 12px; line-height: 1.3; font-weight: 650; word-break: break-word;
  }
  .hero-flank a { color: var(--cyan); }
  .olivia-dock {
    position: relative; right: auto; bottom: auto; width: auto;
    margin: auto; align-self: center;
  }
  .hero-avatar, .hero-avatar.hud {
    position: relative; right: auto; bottom: auto; top: auto;
    width: 150px; height: 150px; min-height: 150px; max-height: 150px;
    aspect-ratio: 1; border-radius: 50%; margin: 0 auto;
    box-shadow: 0 0 0 2px rgba(34,211,238,.35);
  }
  body.olivia-gone .hero-fold { height: auto; min-height: 0; }
  body.olivia-gone .hero-visual { min-height: 48svh; }
}
@media (max-width: 360px) {
  .hero-stage { grid-template-columns: 74px minmax(0, 1fr) 74px; column-gap: 4px; padding-left: 6px; padding-right: 6px; }
}
@media (max-width: 700px) and (max-height: 640px) {
  .hero-stage { flex-basis: 32svh; height: 32svh; max-height: 260px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  body.home .olivia-stage::before,
  body.home .live-dot { animation: none !important; }
}

body.home .olivia-dock.olivia-fab {
  position: fixed !important;
  z-index: 70;
  inset: auto 40px 40px auto !important;
  width: 168px !important;
  height: 168px !important;
  margin: 0 !important;
  display: block !important;
  transform: none;
  border-radius: 50% !important;
  overflow: hidden !important;
  background: #070b14;
  box-shadow: 0 0 0 2px rgba(34,211,238,.45), 0 16px 36px rgba(0,0,0,.45);
  cursor: pointer;
}
body.home .olivia-fab iframe.dbd-frame,
body.home .olivia-fab iframe.dbd-frame.dbd-voice {
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  top: 0 !important;
  bottom: auto !important;
  width: 240px !important;
  height: 336px !important;
  max-height: none !important;
  transform: translateX(-50%) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: block !important;
  background: #070b14 !important;
}
.dbd-launch { display: none !important; }
@media (max-width: 1024px), (max-width: 1366px) and (hover: none) {
  body.home .olivia-dock.olivia-fab {
    inset: auto auto max(56px, calc(env(safe-area-inset-bottom, 0px) + 40px)) 50% !important;
    transform: translateX(-50%);
  }
}
@media (max-width: 980px) {
  .wb-screen {
    min-height: 100svh;
    padding: calc(var(--nav-h) + 28px) 0 160px;
  }
  .wb-screen-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    width: min(1180px, calc(100% - 40px));
  }
  .wb-screen-visual { min-height: 0; order: -1; }
  .wb-screen-mascot { width: min(280px, 68vw); margin: 0 auto; }
  .wb-screen-glow { top: 22%; right: 50%; transform: translate(50%, -40%); width: 70vw; height: 70vw; }
  .wb-screen-copy h2 { max-width: none; }
}
@media (max-width: 700px) {
  body.home .olivia-dock.olivia-fab {
    width: 148px !important;
    height: 148px !important;
    inset: auto auto max(88px, calc(env(safe-area-inset-bottom, 0px) + 64px)) 50% !important;
  }
  body.home .olivia-fab iframe.dbd-frame,
  body.home .olivia-fab iframe.dbd-frame.dbd-voice {
    width: 200px !important;
    height: 280px !important;
    top: 0 !important;
  }
}
