:root {
  color-scheme: dark;
  --ink: #f3f2ee;
  --muted: #a7abb3;
  --dim: #747985;
  --paper: #dfe1db;
  --paper-ink: #111318;
  --night: #080a0f;
  --night-2: #0d1017;
  --panel: #121620;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.23);
  --lime: #8edbea;
  --splat: #9b9cff;
  --blue: #6d9fff;
  --max: 1240px;
  --radius: 20px;
  --ease: cubic-bezier(0.2, 0.72, 0.2, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

html:not(.locale-ready) body { visibility: hidden; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--night);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

html[lang="ja"] body {
  font-family: Inter, "Noto Sans JP", "Yu Gothic UI", "Hiragino Sans", "Segoe UI", sans-serif;
  font-feature-settings: "palt";
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--paper-ink);
  background: var(--lime);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 40px), var(--max));
  height: 64px;
  padding: 0 10px 0 18px;
  border: 1px solid transparent;
  border-radius: 16px;
  transform: translateX(-50%);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(12, 15, 22, 0.86);
  border-color: var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: max-content;
  font-size: 17px;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.brand img { border-radius: 8px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #b7bbc4;
  font-size: 13px;
  font-weight: 600;
}
.mobile-purchase { display: none; }

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--dim);
  white-space: nowrap;
}

.language-switcher button {
  padding: 3px 2px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 11px;
  font-weight: 720;
  cursor: pointer;
  transition: color 150ms ease;
}

.language-switcher button:hover,
html[data-language="en"] .language-switcher [data-language-choice="en"],
html[data-language="ja"] .language-switcher [data-language-choice="ja"] { color: var(--lime); }

.site-nav a { position: relative; transition: color 150ms ease; }
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta { justify-self: end; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 160ms var(--ease), background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button-small { min-height: 40px; padding: 0 16px; font-size: 12px; }
.button-ghost { border-color: var(--line-strong); background: rgba(255,255,255,0.025); }
.button-ghost:hover { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.07); }
.button-primary { color: #11140c; background: var(--lime); }
.button-primary:hover { background: #d5ff82; box-shadow: 0 12px 28px rgba(198, 250, 97, 0.16); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(36px, 4vw, 56px);
  width: min(calc(100% - 48px), var(--max));
  min-height: 800px;
  margin: 0 auto;
  padding: 130px 0 62px;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: -25%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(58, 96, 169, 0.17), transparent 67%);
  filter: blur(20px);
}

.hero-copy { position: relative; z-index: 2; min-width: 0; }

.eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
  color: #8c919c;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.eyebrow > span[aria-hidden="true"] {
  width: 18px;
  height: 1px;
  background: var(--lime);
}

.eyebrow.light { color: #9298a5; }
.eyebrow.centered { justify-content: center; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(50px, 4.9vw, 74px);
  font-weight: 570;
  line-height: 0.98;
  letter-spacing: -0.062em;
}

h1 em {
  color: #a4a8b1;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero-lede {
  max-width: 630px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions { display: flex; align-items: center; gap: 28px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c6c8cd;
  font-size: 13px;
  font-weight: 650;
}

.text-link > span[aria-hidden="true"] { color: var(--lime); transition: transform 160ms ease; }
.text-link:hover > span[aria-hidden="true"] { transform: translateY(3px); }

.hero-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin: 40px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  color: #818691;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 10px;
  letter-spacing: .035em;
  list-style: none;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 7px 1px 0;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px currentColor;
}
.status-dot.splat { background: var(--splat); }
.status-dot.blue { background: var(--blue); }

.product-visual { position: relative; justify-self: end; width: 100%; min-width: 0; }

.hero-shot {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: min(100%, 680px);
  max-width: 100%;
  margin: 0 0 0 auto;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: #10131a;
  box-shadow: 0 48px 100px rgba(0,0,0,.56), 0 0 0 8px rgba(255,255,255,.018);
  transform: rotateY(-4deg) rotateX(1.5deg);
  transform-origin: center;
}

.hero-shot img {
  width: 100%;
  aspect-ratio: 1600 / 1126;
  height: auto;
  object-fit: cover;
}

.visual-caption { margin: 14px 10px 0 0; color: #7c828d; font-size: 11px; text-align: right; }
.visual-caption .caption-label { color: #959aa4; font-family: ui-monospace, monospace; letter-spacing: .05em; text-transform: uppercase; }
.visual-caption .caption-copy { font-style: normal; }

.signal-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  min-height: 82px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #7e838e;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.signal-strip p { margin: 0; }
.signal-strip span { width: 3px; height: 3px; border-radius: 50%; background: var(--lime); }

.section { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.product-section { padding-top: 112px; padding-bottom: 112px; }

.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 56px; margin-bottom: 54px; }
.section-heading h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(40px, 4.3vw, 58px);
  font-weight: 560;
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.section-heading > p, .section-heading.split > p { margin: 0 0 4px; color: var(--muted); line-height: 1.75; }
.section-heading.compact { display: block; margin-bottom: 66px; }
.section-heading.split > div .eyebrow { margin-bottom: 18px; }

.duality-grid {
  display: grid;
  grid-template-columns: 1fr 128px 1fr;
  min-height: 360px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(109,159,255,.045), rgba(255,255,255,.012) 48%, rgba(155,156,255,.045));
}
.duality-side { display: flex; flex-direction: column; justify-content: center; padding: 38px; }
.duality-side h3 { margin-bottom: 14px; font-size: clamp(28px, 3vw, 36px); font-weight: 560; line-height: 1.08; letter-spacing: -.045em; }
.duality-side > p:not(.duality-label) { max-width: 430px; margin-bottom: 22px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.duality-label { display: flex; align-items: center; gap: 9px; margin-bottom: 24px; color: #9bdce8; font-family: ui-monospace, monospace; font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.duality-label > span[aria-hidden="true"] { width: 8px; height: 8px; border: 1px solid currentColor; border-radius: 50%; box-shadow: 0 0 12px rgba(142,219,234,.32); }
.splat-side .duality-label { color: var(--splat); }
.splat-side .duality-label > span[aria-hidden="true"] { border-radius: 2px; transform: rotate(45deg); box-shadow: 0 0 12px rgba(155,156,255,.3); }
.duality-side ul { display: grid; gap: 8px; margin: 0; padding: 0; color: #9ca2ad; font-size: 12px; list-style: none; }
.duality-side li { display: flex; align-items: center; gap: 9px; }
.duality-side li::before { width: 4px; height: 4px; border-radius: 50%; content: ""; background: currentColor; }
.duality-bridge { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 24px 0; }
.bridge-line { width: 1px; flex: 1; background: linear-gradient(transparent, rgba(255,255,255,.22)); }
.bridge-line:last-child { background: linear-gradient(rgba(255,255,255,.22), transparent); }
.bridge-mark { display: grid; justify-items: center; gap: 8px; }
.bridge-mark img { border-radius: 13px; box-shadow: 0 0 32px rgba(109,159,255,.18); }
.bridge-mark small { color: #717783; font-family: ui-monospace, monospace; font-size: 7px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature-card {
  position: relative;
  min-height: 340px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  transition: border-color 180ms ease, transform 200ms var(--ease), background 180ms ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.24); background: linear-gradient(145deg, rgba(255,255,255,.052), rgba(255,255,255,.018)); }
.feature-card-large { grid-column: 1 / -1; display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 48px; min-height: 470px; }
.feature-card h3 { max-width: 460px; margin-bottom: 14px; font-size: clamp(27px, 3vw, 37px); font-weight: 570; line-height: 1.08; letter-spacing: -.04em; }
.feature-card p:not(.card-kicker) { max-width: 510px; margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.feature-number { position: absolute; top: 30px; right: 30px; color: #555b66; font-family: ui-monospace, monospace; font-size: 10px; }
.card-kicker { margin-bottom: 12px; color: var(--lime); font-family: ui-monospace, monospace; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.registration-media {
  position: relative;
  min-height: 190px;
  margin: -6px -6px 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: #0d1118;
}

.registration-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(8,10,15,0), rgba(8,10,15,.3));
}

.registration-base {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center 42%;
}

.registration-zoom {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  width: min(38%, 190px);
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(0,0,0,.42), 0 0 0 6px rgba(255,255,255,.055);
}

.card-icon {
  position: relative;
  display: grid;
  place-items: center;
  height: 160px;
  margin: -4px -6px 22px;
}

.local-icon::before {
  position: absolute;
  width: 154px;
  height: 154px;
  border: 1px solid rgba(142,219,234,.18);
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle, rgba(142,219,234,.12), rgba(142,219,234,.035) 58%, transparent 70%),
    linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 0 34px rgba(142,219,234,.08);
}

.local-icon img {
  position: relative;
  z-index: 1;
  width: min(100%, 136px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(142,219,234,.22));
}

.local-points {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: #9ca2ad;
  font-size: 12px;
  line-height: 1.55;
  list-style: none;
}

.local-points li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.local-points li::before {
  width: 5px;
  height: 5px;
  margin-top: .58em;
  border-radius: 50%;
  flex: 0 0 auto;
  content: "";
  background: var(--lime);
  box-shadow: 0 0 9px rgba(142,219,234,.45);
}

.cache-section { position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0e1219; }
.cache-section::before { position: absolute; inset: 0; content: ""; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(circle at 72% 48%, black, transparent 60%); }
.cache-inner { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 68px; min-height: 690px; padding-top: 86px; padding-bottom: 86px; }
.cache-copy h2 { max-width: 630px; margin: 0 0 24px; font-size: clamp(42px, 4.3vw, 58px); font-weight: 560; line-height: 1.02; letter-spacing: -.056em; }
.cache-copy h2 em { color: #a4a8b1; font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.045em; }
.cache-copy > p:not(.eyebrow) { max-width: 590px; margin-bottom: 16px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.cache-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; }
.cache-facts div { padding: 15px 13px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.018); }
.cache-facts strong { display: block; margin-bottom: 3px; color: #d9dce2; font-size: 17px; font-weight: 600; letter-spacing: -.03em; }
.cache-facts span { display: block; color: #8c939e; font-size: 9px; line-height: 1.4; text-transform: uppercase; }

.cache-visual { min-width: 0; }

.lod-visual {
  position: relative;
  margin: 0;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(39,45,56,.92), rgba(17,21,29,.95));
  box-shadow: 0 38px 80px rgba(0,0,0,.38), inset 0 1px rgba(255,255,255,.06);
}

.lod-visual::after {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  content: "";
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(4,7,12,0), rgba(4,7,12,.28));
}

.lod-overview {
  width: 100%;
  aspect-ratio: 1400 / 975;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.lod-detail-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  width: min(47%, 340px);
  padding: 9px;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 11px;
  background: rgba(12,15,22,.78);
  box-shadow: 0 22px 48px rgba(0,0,0,.4), inset 0 1px rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
}

.lod-detail-card span {
  display: block;
  margin: 0 0 7px 2px;
  color: var(--lime);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.lod-detail {
  width: 100%;
  aspect-ratio: 800 / 530;
  height: auto;
  object-fit: cover;
  border-radius: 7px;
}

.tools-section {
  position: relative;
  overflow: hidden;
  padding-top: 112px;
  padding-bottom: 112px;
  background: #070a11;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 1px rgba(255,255,255,.035), inset 0 80px 120px rgba(0,0,0,.18);
}

.tools-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  opacity: .9;
  background:
    radial-gradient(circle at 92% 16%, rgba(142, 219, 234, .08), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 34%, rgba(0,0,0,.16));
  pointer-events: none;
}

.tools-section::after {
  position: absolute;
  top: -14%;
  left: -8%;
  z-index: 0;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(58, 96, 169, 0.18), transparent 28%);
  filter: blur(22px);
}

.tools-inner {
  position: relative;
  z-index: 1;
}

.tool-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.tool-card {
  position: relative;
  min-height: 390px;
  padding: 20px 20px 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(24,29,39,.86), rgba(10,13,20,.94));
  box-shadow: 0 18px 42px rgba(0,0,0,.22), inset 0 1px rgba(255,255,255,.055);
  transition: border-color 180ms ease, box-shadow 220ms ease, transform 220ms var(--ease), background 180ms ease;
}

.tool-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(255,255,255,.055), transparent 34%);
  opacity: .55;
}

.tool-card:hover {
  z-index: 2;
  border-color: rgba(255,255,255,.2);
  background: linear-gradient(145deg, rgba(30,36,48,.92), rgba(11,14,22,.96));
  box-shadow: 0 26px 58px rgba(0,0,0,.32), 0 0 34px rgba(109,159,255,.08), inset 0 1px rgba(255,255,255,.07);
  transform: translateY(-5px) scale(1.015);
}

.tool-card h3 { margin-bottom: 10px; font-size: 21px; font-weight: 570; letter-spacing: -.035em; }
.tool-card p { max-width: 280px; margin: 0; color: #8c919d; font-size: 13px; line-height: 1.7; }
.tool-index { position: absolute; top: 24px; right: 24px; color: #67707e; font-family: ui-monospace, monospace; font-size: 9px; }

.tool-media {
  position: relative;
  overflow: hidden;
  margin: 0 0 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: #0c1017;
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
}

.tool-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms var(--ease), filter 220ms ease;
}

.tool-card:hover .tool-media img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.055);
}

.access-section { position: relative; display: grid; place-items: center; min-height: 620px; padding: 80px 24px; overflow: hidden; background: var(--paper); color: var(--paper-ink); }
.access-grid { position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(#111 1px, transparent 1px), linear-gradient(90deg, #111 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(circle at 50% 45%, black, transparent 68%); }
.access-inner { position: relative; z-index: 1; max-width: min(100%, 1040px); text-align: center; }
.access-inner > img { margin: 0 auto 28px; border-radius: 14px; box-shadow: 0 16px 30px rgba(10,15,25,.18); }
.access-inner .eyebrow { color: #62666b; }
.access-inner .eyebrow span[aria-hidden="true"] { background: #687245; }
.access-inner h2 { margin: 0 auto 20px; font-size: clamp(40px, 4.7vw, 58px); font-weight: 580; line-height: 1; letter-spacing: -.055em; white-space: nowrap; }
.access-inner > p:not(.eyebrow):not(.download-note) { max-width: 580px; margin: 0 auto 34px; color: #60646a; font-size: 16px; }
.download-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: min(100%, 720px); margin: 0 auto; }
.download-card { position: relative; display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 14px; min-height: 82px; padding: 15px 18px; overflow: hidden; border: 1px solid rgba(17,19,24,.22); border-radius: 12px; color: #eef0ec; background: #14171c; box-shadow: 0 14px 34px rgba(26,30,35,.1); text-align: left; cursor: pointer; transition: transform 180ms var(--ease), background 180ms ease, box-shadow 180ms ease; }
.download-card:not(:disabled):hover { background: #20252b; box-shadow: 0 18px 36px rgba(26,30,35,.16); transform: translateY(-3px); }
.download-card svg { width: 28px; fill: currentColor; }
.download-card span { display: grid; gap: 3px; }
.download-card strong { font-size: 13px; font-weight: 700; }
.download-card small { color: #a8afb8; font-size: 10px; }
.download-card b { color: var(--lime); font-size: 18px; font-weight: 400; }
.download-card-disabled { grid-template-columns: 32px 1fr; padding-right: 30px; color: #c5c8c4; background: #23272d; cursor: not-allowed; }
.download-card-disabled svg { color: #9aa0a8; }
.download-card-disabled small { color: #8d949e; }
.download-ribbon { position: absolute; top: 12px; right: -28px; display: block; width: 96px; padding: 4px 0; color: #101318; background: var(--lime); font-family: ui-monospace, "Cascadia Code", Consolas, monospace; font-size: 9px; font-weight: 800; letter-spacing: .08em; line-height: 1; text-align: center; text-transform: uppercase; transform: rotate(35deg); box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.download-note { margin: 16px 0 0; color: #666b70; font-size: 12px; }
.download-note a { color: #1a2429; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr auto auto; align-items: center; gap: 34px; min-height: 110px; padding: 0 max(24px, calc((100vw - 1240px) / 2)); color: #747984; background: #090b10; font-size: 11px; }
.footer-brand { color: var(--ink); }
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: var(--ink); }
.copyright { margin: 0; }
.site-footer > p { margin: 0; }

.soon-header {
  background: rgba(12, 15, 22, 0.86);
  border-color: var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.soon-page {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 110px);
  padding: 148px 24px 92px;
  overflow: hidden;
  background: #11151d;
}

.soon-page::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .24;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 50% 48%, black, transparent 72%);
}

.soon-card {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  text-align: center;
}

.soon-card > img {
  margin: 0 auto 28px;
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(109,159,255,.18);
}

.soon-card h1 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(46px, 6vw, 78px);
}

.soon-card > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.soon-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 560ms var(--ease), transform 560ms var(--ease); }
.js .reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 120ms; }

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

@media (max-width: 1240px) {
  .hero { grid-template-columns: 1fr; width: min(calc(100% - 48px), 900px); padding-top: 155px; }
  .hero-copy { max-width: 760px; padding-left: 0; }
  .product-visual { justify-self: stretch; width: 100%; }
  .hero-shot { width: 100%; margin: 0; transform: none; }
  .visual-caption { text-align: center; }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav-toggle { display: block; justify-self: end; }
  .header-cta { display: none; }
  .soon-header .header-cta { display: inline-flex; }
  .soon-header .soon-nav { display: none; }
  .site-nav { position: absolute; top: 70px; right: 0; left: 0; display: none; flex-direction: column; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 14px; background: rgba(12,15,22,.97); box-shadow: 0 20px 40px rgba(0,0,0,.35); }
  .site-nav a { padding: 14px 12px; border-bottom: 1px solid var(--line); }
  .site-nav .language-switcher { align-self: stretch; justify-content: center; padding: 12px; border-bottom: 1px solid var(--line); }
  .site-nav .language-switcher button { padding: 4px 8px; }
  .site-nav a:last-child { border: 0; }
  .site-nav .mobile-purchase { display: block; color: var(--lime); }
  .site-header.menu-open .site-nav { display: flex; }
  .site-header.menu-open .nav-toggle span:not(.sr-only):nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .site-header.menu-open .nav-toggle span:not(.sr-only):nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }

  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .duality-grid { grid-template-columns: 1fr; }
  .duality-bridge { flex-direction: row; min-height: 100px; padding: 0 32px; }
  .bridge-line { width: auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.22)); }
  .bridge-line:last-child { background: linear-gradient(90deg, rgba(255,255,255,.22), transparent); }
  .feature-card-large { grid-template-columns: 1fr; gap: 20px; }
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
  .cache-inner { grid-template-columns: 1fr; gap: 60px; }
  .cache-visual { width: min(100%, 720px); margin: 0 auto; }
  .site-footer { grid-template-columns: 1fr auto; padding-top: 32px; padding-bottom: 32px; }
  .site-footer > p:first-of-type { display: none; }
}

@media (max-width: 680px) {
  .hero-glow { display: none; }
  .site-header { top: 10px; width: calc(100% - 20px); }
  .hero { width: calc(100% - 32px); min-height: auto; padding-top: 118px; padding-bottom: 62px; }
  h1 { font-size: clamp(43px, 12.5vw, 58px); }
  .hero-lede { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-actions .button { width: 100%; }
  .hero-formats { gap: 9px 15px; }
  .signal-strip { flex-direction: column; gap: 4px; min-height: 132px; }
  .signal-strip span { margin: 3px 0; }
  .section { width: calc(100% - 32px); }
  .product-section, .tools-section { padding-top: 78px; padding-bottom: 78px; }
  .section-heading { margin-bottom: 44px; }
  .section-heading h2 { font-size: 40px; }
  .duality-side { padding: 32px 25px; }
  .duality-label { margin-bottom: 22px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-column: auto; }
  .feature-card { min-height: 310px; padding: 25px; }
  .registration-media { min-height: 170px; margin-right: 0; margin-left: 0; }
  .registration-zoom { right: 12px; bottom: 12px; width: 34%; }
  .card-icon { height: 145px; margin-bottom: 18px; }
  .tool-grid { grid-template-columns: 1fr; }
  .tool-card { min-height: 360px; padding: 22px; }
  .tool-media { margin-bottom: 20px; }
  .cache-inner { min-height: auto; padding-top: 78px; padding-bottom: 78px; }
  .cache-copy h2 { font-size: 42px; }
  .cache-facts { grid-template-columns: 1fr; }
  .cache-facts div { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
  .lod-visual { padding: 10px; }
  .lod-visual::after { inset: 10px; }
  .lod-detail-card { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 10px; }
  .access-section { min-height: 610px; padding-top: 70px; padding-bottom: 70px; }
  .access-inner h2 { font-size: 44px; white-space: normal; }
  .download-actions { grid-template-columns: 1fr; }
  .soon-page { padding-top: 124px; padding-bottom: 72px; }
  .soon-card > p:not(.eyebrow) { font-size: 15px; }
  .soon-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .soon-actions .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; gap: 18px; padding: 42px 20px; text-align: center; }
}

@media (max-width: 400px) {
  .hero { width: calc(100% - 24px); }
  .section { width: calc(100% - 24px); }
}
