:root {
  color-scheme: dark;
  --ink: #eef7f3;
  --ink-strong: #ffffff;
  --ink-soft: #abc0b8;
  --muted: #71847d;
  --void: #05080c;
  --void-2: #091117;
  --panel: rgba(10, 20, 24, 0.78);
  --panel-strong: rgba(13, 28, 32, 0.94);
  --panel-soft: rgba(255, 255, 255, 0.055);
  --line: rgba(157, 255, 226, 0.16);
  --line-strong: rgba(157, 255, 226, 0.32);
  --cyan: #48d5ff;
  --teal: #21d6a3;
  --teal-dark: #0b7d65;
  --amber: #f2b544;
  --coral: #ff6b5f;
  --green: #6dffb2;
  --telegram: #229ed9;
  --platform-gold: #f2b544;
  --platform-gold-soft: #ffd36c;
  --platform-gold-deep: #db8c27;
  --platform-gold-panel: rgba(24, 30, 27, 0.9);
  --platform-gold-gradient: linear-gradient(90deg, #ffd66f 0%, #f6bf4d 48%, #e99a27 100%);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --container: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(33, 214, 163, 0.13), transparent 30rem),
    radial-gradient(circle at 16% 34%, rgba(72, 213, 255, 0.11), transparent 28rem),
    linear-gradient(180deg, #04070b 0%, #081014 46%, #05080c 100%);
  color: var(--ink);
  font-family:
    "Space Grotesk", "Satoshi", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
p,
li,
dd,
small,
a,
button {
  overflow-wrap: break-word;
}

:lang(ko) h1,
:lang(ko) h2,
:lang(ko) h3,
:lang(ko) p {
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}

:lang(ja) h1,
:lang(ja) h2,
:lang(ja) h3,
:lang(ja) p,
:lang(zh-Hans) h1,
:lang(zh-Hans) h2,
:lang(zh-Hans) h3,
:lang(zh-Hans) p,
:lang(zh-Hant) h1,
:lang(zh-Hant) h2,
:lang(zh-Hant) h3,
:lang(zh-Hant) p {
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
}

:lang(th) p,
:lang(th) li,
:lang(bn) p,
:lang(bn) li,
:lang(hi) p,
:lang(hi) li {
  overflow-wrap: anywhere;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(157, 255, 226, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 213, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 8, 12, 0.76), rgba(5, 8, 12, 0.12), rgba(5, 8, 12, 0.64)),
    repeating-linear-gradient(
      115deg,
      transparent 0,
      transparent 26px,
      rgba(242, 181, 68, 0.035) 27px,
      transparent 28px
    );
}

body.is-language-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(72, 213, 255, 0.72);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 14px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--cyan);
  color: #031014;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(157, 255, 226, 0.1);
  background: rgba(3, 7, 10, 0.64);
  backdrop-filter: blur(20px);
  transition:
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(157, 255, 226, 0.2);
  background: rgba(3, 7, 10, 0.88);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
}

.nav-shell {
  width: min(100% - 32px, var(--container));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand,
.nav-platform,
.nav-cta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand {
  gap: 10px;
  color: var(--ink-strong);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-logo {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(109, 255, 178, 0.32);
  border-radius: 50%;
  box-shadow:
    0 0 0 6px rgba(33, 214, 163, 0.045),
    0 0 28px rgba(72, 213, 255, 0.2);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  min-height: 44px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.nav-links a:hover {
  background: rgba(157, 255, 226, 0.08);
  color: var(--ink-strong);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 11px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.language-toggle:hover {
  border-color: rgba(157, 255, 226, 0.14);
  background: rgba(157, 255, 226, 0.06);
  color: var(--ink-strong);
}

.language-toggle:active {
  transform: scale(0.96);
}

.language-toggle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-platform {
  position: relative;
  gap: 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 226, 164, 0.82);
  border-radius: var(--radius);
  padding: 0 14px;
  background:
    var(--platform-gold-gradient),
    rgba(242, 181, 68, 0.2);
  color: #151006;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    0 0 0 3px rgba(242, 181, 68, 0.1),
    0 0 34px rgba(242, 181, 68, 0.22),
    0 14px 34px rgba(0, 0, 0, 0.3);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.nav-platform::after,
.button-platform::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 32%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 246, 221, 0.42), transparent);
  pointer-events: none;
  transform: skewX(-18deg) translateX(-130%);
  animation: cta-sheen 4.4s ease-in-out infinite;
}

[dir="rtl"] .nav-platform::after,
[dir="rtl"] .button-platform::after {
  display: none;
}

.nav-platform:hover {
  border-color: rgba(255, 226, 164, 0.92);
  color: #151006;
  box-shadow:
    0 0 0 4px rgba(242, 181, 68, 0.15),
    0 0 48px rgba(242, 181, 68, 0.32),
    0 18px 40px rgba(0, 0, 0, 0.36);
  transform: translateY(-1px);
}

.nav-cta {
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(72, 213, 255, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--telegram), #1666e8);
  color: white;
  font-size: 14px;
  font-weight: 900;
  box-shadow:
    0 0 28px rgba(34, 158, 217, 0.28),
    0 14px 34px rgba(0, 0, 0, 0.3);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.nav-cta:hover {
  border-color: rgba(72, 213, 255, 0.58);
  box-shadow:
    0 0 42px rgba(34, 158, 217, 0.36),
    0 18px 42px rgba(0, 0, 0, 0.34);
  transform: translateY(-1px);
}

.nav-platform span,
.nav-cta span {
  white-space: nowrap;
}

.nav-cta svg,
.nav-platform svg,
.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: 28px 0 42px;
  border-bottom: 1px solid rgba(157, 255, 226, 0.12);
  background: #04070b;
}

.hero-bg {
  position: relative;
  z-index: 3;
  width: min(100% - 32px, var(--container));
  display: block;
  margin: 0 auto 42px;
  overflow: hidden;
  border: 1px solid rgba(72, 213, 255, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 68% 28%, rgba(72, 213, 255, 0.14), transparent 34%),
    #04070b;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 26px 78px rgba(0, 0, 0, 0.42);
}

.hero-bg img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  opacity: 1;
  filter: saturate(0.92) contrast(1.08);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 5, 8, 0.98) 0%, rgba(2, 5, 8, 0.93) 30%, rgba(2, 5, 8, 0.55) 52%, rgba(2, 5, 8, 0.28) 70%, rgba(2, 5, 8, 0.68) 100%),
    linear-gradient(180deg, rgba(4, 7, 11, 0.12) 0%, rgba(4, 7, 11, 0.24) 52%, rgba(4, 7, 11, 0.96) 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 4px
    );
  mix-blend-mode: overlay;
  opacity: 0.26;
}

.hero-grid {
  position: relative;
  z-index: 3;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 0.9fr);
  gap: 44px;
  align-items: center;
}

.hero-copy {
  grid-column: 1;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
p,
small,
li,
dd,
dt,
strong,
span {
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--ink-strong);
  font-size: 72px;
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  color: var(--ink-strong);
  font-size: 42px;
  line-height: 1.07;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink-strong);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 30px;
  color: #d3e5df;
  font-size: 20px;
  line-height: 1.62;
  text-wrap: pretty;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  gap: 10px;
  min-width: 180px;
  padding: 13px 18px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active,
.button-platform:active,
.nav-platform:active,
.nav-cta:active,
.hero-contact-link:active,
.language-option:active,
.platform-link:active {
  transform: scale(0.96);
}

.button-primary {
  border: 1px solid rgba(109, 255, 178, 0.4);
  background: linear-gradient(135deg, #39f0b4, #22d9a5 48%, #19b890);
  color: #00110e;
  box-shadow:
    0 0 34px rgba(33, 214, 163, 0.28),
    0 18px 40px rgba(0, 0, 0, 0.34);
}

.button-primary:hover {
  border-color: rgba(109, 255, 178, 0.66);
  box-shadow:
    0 0 48px rgba(33, 214, 163, 0.36),
    0 22px 46px rgba(0, 0, 0, 0.4);
}

.button-secondary {
  border: 1px solid rgba(157, 255, 226, 0.22);
  background: rgba(6, 13, 17, 0.72);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(72, 213, 255, 0.42);
  background: rgba(12, 24, 29, 0.9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.button-platform {
  position: relative;
  min-width: 210px;
  overflow: hidden;
  border: 1px solid rgba(255, 226, 164, 0.72);
  background:
    var(--platform-gold-gradient),
    rgba(242, 181, 68, 0.2);
  color: #151006;
  box-shadow:
    0 0 0 4px rgba(242, 181, 68, 0.1),
    0 0 44px rgba(242, 181, 68, 0.24),
    0 20px 44px rgba(0, 0, 0, 0.38);
}

.button-platform:hover {
  border-color: rgba(255, 226, 164, 0.94);
  box-shadow:
    0 0 0 5px rgba(242, 181, 68, 0.14),
    0 0 62px rgba(242, 181, 68, 0.36),
    0 24px 52px rgba(0, 0, 0, 0.42);
}

.button-platform span,
.button-platform svg,
.nav-platform span,
.nav-platform svg {
  position: relative;
  z-index: 1;
}

.hero-contact-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.hero-contact-link:hover {
  color: var(--ink-strong);
  transform: translateY(-1px);
}

.hero-contact-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.hero-platform-note {
  max-width: 590px;
  margin: 14px 0 0;
  border-left: 2px solid rgba(242, 181, 68, 0.54);
  padding-left: 14px;
  color: rgba(219, 232, 226, 0.82);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.52;
  text-wrap: pretty;
}

.hero-command {
  max-width: 570px;
  display: grid;
  gap: 6px;
  margin-top: 26px;
  border-left: 2px solid rgba(109, 255, 178, 0.62);
  padding-left: 16px;
}

.hero-command span {
  color: var(--green);
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-command strong {
  color: var(--ink-strong);
  font-size: 17px;
  line-height: 1.45;
  text-wrap: balance;
}

:lang(ko) .hero-command strong,
:lang(ja) .hero-command strong,
:lang(zh-Hans) .hero-command strong,
:lang(zh-Hant) .hero-command strong {
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
  text-wrap: pretty;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 590px;
  margin-top: 24px;
  border: 1px solid rgba(157, 255, 226, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(157, 255, 226, 0.14);
}

.hero-points span {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  background: rgba(5, 11, 15, 0.76);
  color: #cce4dc;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.hero-visual {
  justify-self: end;
  width: 100%;
  min-height: 590px;
  position: relative;
  overflow: hidden;
  contain: paint;
}

.signal-stage {
  position: absolute;
  inset: 0;
  min-height: 590px;
  overflow: hidden;
  contain: paint;
}

.signal-stage::before {
  position: absolute;
  inset: 18px 0;
  content: "";
  border: 1px solid rgba(72, 213, 255, 0.16);
  border-radius: 50%;
  transform: rotate(-12deg);
  box-shadow: 0 0 80px rgba(72, 213, 255, 0.08);
  animation: orbit-drift 16s ease-in-out infinite alternate;
}

.signal-stage::after {
  position: absolute;
  left: 7%;
  right: 5%;
  top: 46%;
  z-index: 1;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(72, 213, 255, 0.7), rgba(109, 255, 178, 0.62), transparent);
  box-shadow: 0 0 28px rgba(72, 213, 255, 0.34);
  transform: translateY(-54px);
  animation: scanline 7s ease-in-out infinite;
}

.ticker-strip {
  position: absolute;
  left: 4px;
  right: 10px;
  top: 12px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.ticker-strip span {
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(157, 255, 226, 0.18);
  border-radius: var(--radius);
  background: rgba(4, 9, 13, 0.68);
  color: #d7fff1;
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.signal-card {
  position: absolute;
  z-index: 3;
  width: min(390px, 76%);
  border: 1px solid rgba(157, 255, 226, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(12, 25, 30, 0.92), rgba(5, 11, 15, 0.92)),
    rgba(9, 18, 22, 0.92);
  color: var(--ink);
  box-shadow:
    0 0 44px rgba(33, 214, 163, 0.12),
    var(--shadow);
  backdrop-filter: blur(18px);
}

.signal-card-primary {
  right: 24px;
  top: 76px;
  width: min(390px, 56%);
  padding: 20px;
  animation: card-float-a 8s ease-in-out infinite;
}

.signal-card-result {
  left: 36px;
  bottom: 52px;
  padding: 18px;
  width: min(292px, 36%);
  border-color: rgba(242, 181, 68, 0.28);
  animation: card-float-b 9s ease-in-out infinite;
}

.signal-card-result .signal-list {
  gap: 8px;
}

.signal-card-result .signal-list.compact div {
  grid-template-columns: 1fr;
  gap: 2px;
}

.signal-card-result .signal-list dd {
  font-size: 14px;
}

.message-topline,
.message-footer,
.message-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.room-name {
  min-width: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.message-id,
.status-win {
  color: var(--muted);
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 800;
}

.status-win {
  color: var(--amber);
}

.signal-card h2 {
  margin: 8px 0 14px;
  color: var(--ink-strong);
  font-size: 24px;
  line-height: 1.15;
}

.signal-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.signal-list div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: baseline;
  gap: 10px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(157, 255, 226, 0.12);
}

.signal-list.compact div {
  grid-template-columns: 104px minmax(0, 1fr);
}

.signal-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.signal-list dt {
  color: #7f948d;
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-list dd {
  min-width: 0;
  margin: 0;
  color: var(--ink-strong);
  font-weight: 900;
  overflow-wrap: anywhere;
  word-break: normal;
  font-variant-numeric: tabular-nums;
}

.message-footer {
  margin-top: 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.mini-terminal {
  position: absolute;
  right: 58px;
  bottom: 16px;
  z-index: 4;
  width: 176px;
  border: 1px solid rgba(72, 213, 255, 0.28);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(2, 6, 9, 0.92);
  color: #ebfff8;
  box-shadow:
    0 0 38px rgba(72, 213, 255, 0.18),
    0 18px 48px rgba(0, 0, 0, 0.42);
}

.mini-terminal span,
.mini-terminal small {
  display: block;
  color: #8ba19a;
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 800;
}

.mini-terminal strong {
  display: block;
  margin: 4px 0;
  color: var(--green);
  font-size: 30px;
  line-height: 1;
}

.cred-strip {
  position: relative;
  z-index: 3;
  width: min(100% - 32px, var(--container));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(157, 255, 226, 0.16);
  border-radius: var(--radius);
  background: rgba(3, 8, 11, 0.78);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.cred-strip div {
  min-height: 96px;
  padding: 18px 20px;
  border-right: 1px solid rgba(157, 255, 226, 0.12);
}

.cred-strip div:last-child {
  border-right: 0;
}

.cred-strip strong,
.cred-strip span {
  display: block;
}

.cred-strip strong {
  margin-bottom: 5px;
  color: var(--ink-strong);
  font-size: 15px;
}

.cred-strip span {
  color: var(--ink-soft);
  font-size: 14px;
}

.signal-rail {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 100%;
  margin-top: 26px;
  overflow: hidden;
  contain: layout paint;
  border-top: 1px solid rgba(157, 255, 226, 0.09);
  border-bottom: 1px solid rgba(157, 255, 226, 0.09);
  background: rgba(1, 5, 8, 0.56);
}

.signal-rail::before,
.signal-rail::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  content: "";
  pointer-events: none;
}

.signal-rail::before {
  left: 0;
  background: linear-gradient(90deg, var(--void), transparent);
}

.signal-rail::after {
  right: 0;
  background: linear-gradient(270deg, var(--void), transparent);
}

.signal-rail-track {
  width: max-content;
  display: flex;
  gap: 12px;
  padding: 12px 0;
  animation: signal-marquee 46s linear infinite;
}

.signal-rail-track span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(157, 255, 226, 0.1);
  border-radius: 999px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(215, 255, 241, 0.86);
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

@keyframes signal-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes hero-drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes logo-orbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-drift {
  from {
    transform: rotate(-14deg) scale(0.98);
  }

  to {
    transform: rotate(-8deg) scale(1.03);
  }
}

@keyframes scanline {
  0%,
  100% {
    opacity: 0.18;
    transform: translateY(-78px);
  }

  48% {
    opacity: 0.72;
    transform: translateY(104px);
  }
}

@keyframes card-float-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes card-float-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 8px, 0);
  }
}

.section {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 96px 0;
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.section-heading {
  max-width: 860px;
}

.section-heading p:not(.eyebrow),
.proof-copy p,
.cta-copy p,
.about-card p,
.market-card p,
.data-copy p,
.discipline-copy p,
.disclaimer-panel p:not(.eyebrow) {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.68;
}

.about-section {
  padding-bottom: 72px;
}

.about-section .section-heading {
  max-width: 900px;
}

.about-section .section-heading h2 {
  max-width: 920px;
  font-size: clamp(34px, 3.65vw, 48px);
  line-height: 1.08;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.about-card,
.market-card,
.data-panel,
.discipline-panel,
.disclaimer-panel {
  border: 1px solid rgba(157, 255, 226, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(15, 32, 38, 0.82), rgba(6, 14, 18, 0.86)),
    rgba(7, 17, 21, 0.82);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.26);
}

.about-card {
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg));
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.about-card:hover,
.market-card:hover {
  border-color: rgba(72, 213, 255, 0.32);
  box-shadow:
    0 0 42px rgba(72, 213, 255, 0.1),
    0 28px 70px rgba(0, 0, 0, 0.32);
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    translateY(-3px);
}

.about-card span,
.market-card h3,
.discipline-rules span {
  color: var(--green);
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-card h3 {
  margin: 8px 0 0;
}

.about-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
  text-wrap: pretty;
}

.visual-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 14px;
  margin-top: 16px;
}

.visual-story-card,
.engine-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(157, 255, 226, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(15, 32, 38, 0.52), rgba(6, 14, 18, 0.72)),
    rgba(7, 17, 21, 0.82);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 28px 70px rgba(0, 0, 0, 0.3);
}

.visual-story-card {
  min-height: 100%;
}

.visual-story-card picture,
.engine-media picture {
  display: block;
  overflow: hidden;
  background: #02070a;
}

.visual-story-card picture {
  aspect-ratio: 16 / 9;
}

.visual-story-wide picture {
  position: relative;
}

.visual-story-wide picture::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 8, 12, 0.16), transparent 42%),
    linear-gradient(180deg, transparent 48%, rgba(2, 8, 12, 0.42));
}

.visual-story-card:not(.visual-story-wide) picture {
  aspect-ratio: 4 / 3;
}

.visual-stack-card {
  display: grid;
  grid-template-rows: auto min-content;
}

.research-stack-visual {
  position: relative;
  min-height: 278px;
  display: grid;
  align-content: center;
  gap: 18px;
  overflow: hidden;
  padding: 22px;
  background:
    radial-gradient(circle at 18% 20%, rgba(109, 255, 178, 0.2), transparent 12rem),
    radial-gradient(circle at 82% 18%, rgba(72, 213, 255, 0.16), transparent 13rem),
    linear-gradient(135deg, rgba(11, 28, 33, 0.95), rgba(4, 10, 14, 0.96));
}

.research-stack-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(72, 213, 255, 0.12), transparent),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 31px,
      rgba(157, 255, 226, 0.045) 32px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 31px,
      rgba(157, 255, 226, 0.035) 32px
    );
  opacity: 0.72;
}

.lifecycle-card,
.lifecycle-connector {
  position: relative;
  z-index: 1;
}

.signal-lifecycle-visual {
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  gap: 12px;
}

.lifecycle-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(157, 255, 226, 0.14);
  border-radius: calc(var(--radius) - 1px);
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(10, 25, 30, 0.86), rgba(2, 8, 12, 0.9)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 16px 34px rgba(0, 0, 0, 0.22);
}

.lifecycle-result {
  border-color: rgba(242, 181, 68, 0.24);
}

.lifecycle-card > span {
  color: var(--green);
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.lifecycle-result > span {
  color: var(--amber);
}

.lifecycle-card > strong {
  color: var(--ink-strong);
  font-size: 24px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.lifecycle-result > strong {
  color: var(--platform-gold-soft);
}

.lifecycle-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.lifecycle-card dl div {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border-top: 1px solid rgba(157, 255, 226, 0.1);
  padding-top: 8px;
}

.lifecycle-card dt,
.lifecycle-card dd {
  margin: 0;
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  line-height: 1.25;
}

.lifecycle-card dt {
  color: var(--ink-soft);
  font-weight: 900;
  text-transform: uppercase;
}

.lifecycle-card dd {
  color: var(--ink-strong);
  text-align: right;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.lifecycle-connector {
  display: grid;
  place-items: center;
}

.lifecycle-connector span {
  width: 72%;
  height: 1px;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(109, 255, 178, 0.72), rgba(242, 181, 68, 0.7), transparent);
  box-shadow: 0 0 18px rgba(109, 255, 178, 0.2);
}

.visual-story-card img,
.engine-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
  filter: saturate(0.96) contrast(1.04);
  transition:
    transform 320ms ease,
    filter 320ms ease;
}

.visual-story-card:hover img,
.engine-panel:hover .engine-media img {
  transform: scale(1.025);
  filter: saturate(1.05) contrast(1.07);
}

.visual-story-card figcaption {
  display: grid;
  gap: 8px;
  padding: 16px 18px 18px;
}

.visual-story-card figcaption span {
  color: var(--green);
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.visual-story-card figcaption strong {
  color: var(--ink-strong);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.16;
  text-wrap: balance;
}

:lang(ko) .visual-story-card figcaption strong {
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
}

:lang(ja) .visual-story-card figcaption strong,
:lang(zh-Hans) .visual-story-card figcaption strong,
:lang(zh-Hant) .visual-story-card figcaption strong {
  word-break: normal;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.strategy-section {
  position: relative;
}

.strategy-section::before,
.process-section::before {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 46px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(72, 213, 255, 0.38), rgba(242, 181, 68, 0.32), transparent);
}

.strategy-bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: 36px;
}

.engine-panel {
  position: relative;
  grid-column: span 6;
  display: grid;
  grid-template-columns: minmax(270px, 0.78fr) minmax(520px, 1.22fr);
  gap: 24px;
  align-items: stretch;
  min-height: 430px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(72, 213, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(13, 31, 36, 0.92), rgba(4, 10, 13, 0.9) 54%, rgba(7, 13, 18, 0.96)),
    radial-gradient(circle at 78% 18%, rgba(72, 213, 255, 0.15), transparent 16rem),
    radial-gradient(circle at 18% 82%, rgba(109, 255, 178, 0.12), transparent 18rem);
  box-shadow:
    0 0 60px rgba(72, 213, 255, 0.1),
    0 30px 80px rgba(0, 0, 0, 0.32);
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    translateY(0);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.engine-panel:hover {
  border-color: rgba(72, 213, 255, 0.34);
  box-shadow:
    0 0 80px rgba(72, 213, 255, 0.16),
    0 36px 90px rgba(0, 0, 0, 0.38);
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    translateY(-3px);
}

.engine-panel::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(rgba(157, 255, 226, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 213, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, transparent 0%, rgba(3, 8, 11, 0.34) 100%);
  background-size: 38px 38px, 38px 38px, 100% 100%;
  opacity: 0.6;
  pointer-events: none;
}

.matrix-copy,
.model-stack,
.engine-visual-wrap {
  position: relative;
  z-index: 1;
}

.engine-visual-wrap {
  display: grid;
  align-content: center;
  gap: 12px;
  min-width: 0;
}

.engine-media {
  margin: 0;
}

.engine-media picture {
  aspect-ratio: 16 / 10;
}

.matrix-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.matrix-header {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.matrix-kicker,
.matrix-status,
.review-checks strong,
.model-stack em {
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
}

.matrix-kicker,
.strategy-kicker {
  color: var(--green);
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.matrix-status {
  display: inline-flex;
  min-height: 32px;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(109, 255, 178, 0.2);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(109, 255, 178, 0.08);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.matrix-status i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(109, 255, 178, 0.84);
}

.matrix-copy h3 {
  margin: 0 0 12px;
  max-width: 14ch;
  color: var(--ink-strong);
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.02;
  text-wrap: balance;
}

.matrix-copy p {
  max-width: 46ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  text-wrap: pretty;
}

.review-checks,
.model-stack {
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.review-checks li {
  display: flex;
  min-width: 0;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(157, 255, 226, 0.12);
  border-radius: calc(var(--radius) - 2px);
  padding: 10px 12px;
  background: rgba(3, 10, 13, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.review-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(109, 255, 178, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 255, 178, 0.18), rgba(72, 213, 255, 0.06));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 18px rgba(109, 255, 178, 0.16);
}

.review-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.review-checks strong {
  min-width: 0;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
  text-wrap: balance;
}

.model-stack {
  display: grid;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(157, 255, 226, 0.14);
  border-radius: calc(var(--radius) + 4px);
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(6, 17, 21, 0.86), rgba(2, 7, 10, 0.72)),
    rgba(4, 10, 13, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 70px rgba(0, 0, 0, 0.28);
}

.model-stack li {
  display: grid;
  grid-template-columns: minmax(112px, 0.8fr) minmax(140px, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 44px;
  border: 1px solid rgba(157, 255, 226, 0.1);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(8, 18, 22, 0.66);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.model-stack li:hover {
  border-color: rgba(109, 255, 178, 0.24);
  background: rgba(12, 26, 31, 0.78);
  transform: translateY(-1px);
}

.model-stack strong {
  min-width: 0;
  color: var(--ink-strong);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.model-track {
  position: relative;
  min-width: 0;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.model-track i {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--level);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 0 20px rgba(109, 255, 178, 0.34);
}

.model-stack li:nth-child(3) .model-track i {
  background: linear-gradient(90deg, rgba(242, 181, 68, 0.85), rgba(242, 181, 68, 0.45));
}

.model-stack em {
  grid-column: 1 / -1;
  min-width: 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.4;
  text-wrap: balance;
}

:lang(ko) .review-checks strong,
:lang(ko) .model-stack em,
:lang(ja) .review-checks strong,
:lang(ja) .model-stack em,
:lang(zh-Hans) .review-checks strong,
:lang(zh-Hans) .model-stack em,
:lang(zh-Hant) .review-checks strong,
:lang(zh-Hant) .model-stack em {
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}

[dir="rtl"] .model-track i {
  right: 0;
  left: auto;
}

@media (prefers-reduced-motion: no-preference) {
  .model-track i {
    animation: model-pulse 3.2s ease-in-out infinite;
  }
}

@keyframes model-pulse {
  0%,
  100% {
    opacity: 0.82;
  }

  50% {
    opacity: 1;
  }
}

.strategy-card {
  min-height: 230px;
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(157, 255, 226, 0.14);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(19, 38, 44, 0.78), rgba(8, 16, 20, 0.78)),
    var(--panel);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg));
}

.strategy-card:hover {
  border-color: rgba(109, 255, 178, 0.34);
  box-shadow:
    0 0 38px rgba(33, 214, 163, 0.1),
    0 28px 68px rgba(0, 0, 0, 0.34);
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    translateY(-3px);
}

.strategy-card-wide {
  grid-column: span 6;
}

.strategy-card h3 {
  margin-top: 28px;
  max-width: 420px;
}

.strategy-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.catalog-section {
  padding-top: 68px;
}

.architecture-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: 1px;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid rgba(157, 255, 226, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(12, 28, 34, 0.92), rgba(4, 10, 14, 0.94)),
    rgba(5, 12, 15, 0.9);
  box-shadow:
    0 0 70px rgba(72, 213, 255, 0.1),
    0 30px 82px rgba(0, 0, 0, 0.34);
}

.architecture-board::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(157, 255, 226, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 255, 226, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, black, transparent 76%);
}

.architecture-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 286px;
  padding: 28px;
  background: rgba(4, 10, 13, 0.26);
}

.architecture-copy span {
  color: var(--green);
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.architecture-copy h3 {
  max-width: 470px;
  margin: 18px 0 12px;
  font-size: 32px;
  line-height: 1.08;
}

.architecture-copy p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
  text-wrap: pretty;
}

.engine-layers {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  background: rgba(157, 255, 226, 0.12);
  list-style: none;
}

.engine-layers li {
  min-height: 286px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 28%, rgba(72, 213, 255, 0.1), transparent 12rem),
    rgba(5, 12, 16, 0.86);
}

.engine-layers span {
  width: 48px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border: 1px solid rgba(72, 213, 255, 0.3);
  border-radius: 999px;
  color: var(--cyan);
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
}

.engine-layers strong,
.engine-layers small {
  display: block;
}

.engine-layers strong {
  margin-bottom: 8px;
  color: var(--ink-strong);
  font-size: 19px;
  line-height: 1.18;
}

.engine-layers small {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.regime-atlas {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
  margin-top: 18px;
}

.regime-panel {
  position: relative;
  min-height: 0;
  grid-column: span 3;
  display: grid;
  align-content: start;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(157, 255, 226, 0.14);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(17, 37, 43, 0.82), rgba(6, 14, 18, 0.86)),
    rgba(7, 17, 21, 0.82);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg));
  transition:
    transform 190ms ease,
    border-color 190ms ease,
    box-shadow 190ms ease,
    background-color 190ms ease;
}

.regime-panel:hover {
  border-color: rgba(72, 213, 255, 0.34);
  box-shadow:
    0 0 48px rgba(72, 213, 255, 0.11),
    0 30px 76px rgba(0, 0, 0, 0.34);
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    translateY(-3px);
}

.regime-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 44%),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 24px,
      rgba(157, 255, 226, 0.035) 25px,
      transparent 26px
    );
  opacity: 0.65;
}

.regime-panel-featured {
  grid-column: span 6;
  min-height: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(109, 255, 178, 0.18), transparent 20rem),
    radial-gradient(circle at 88% 22%, rgba(72, 213, 255, 0.16), transparent 22rem),
    linear-gradient(180deg, rgba(16, 43, 47, 0.94), rgba(5, 14, 18, 0.94));
}

.regime-panel-gate {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  border-color: rgba(242, 181, 68, 0.22);
  background:
    radial-gradient(circle at 92% 16%, rgba(242, 181, 68, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(42, 31, 13, 0.42), rgba(7, 17, 18, 0.86));
}

.regime-head,
.regime-panel > p,
.gate-copy,
.gate-copy > p,
.setup-minis,
.setup-line,
.gate-matrix {
  min-width: 0;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.regime-head {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.regime-head h3 {
  grid-column: 1 / -1;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.gate-copy {
  display: grid;
  gap: 16px;
}

.gate-copy > p {
  min-width: 0;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.62;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.regime-panel p {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.setup-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(72, 213, 255, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(72, 213, 255, 0.2), transparent 56%),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 26px rgba(72, 213, 255, 0.12);
}

.setup-icon::before {
  width: 20px;
  height: 20px;
  content: "";
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

.setup-icon-breakout::before {
  clip-path: polygon(8% 72%, 38% 44%, 52% 56%, 88% 18%, 92% 46%, 100% 46%, 100% 0, 54% 0, 54% 8%, 78% 12%, 50% 42%, 38% 30%, 0 66%);
}

.setup-icon-trend::before {
  clip-path: polygon(0 72%, 0 54%, 28% 54%, 28% 38%, 56% 38%, 56% 22%, 88% 22%, 88% 8%, 100% 8%, 100% 92%, 88% 92%, 88% 42%, 64% 42%, 64% 58%, 36% 58%, 36% 74%);
}

.setup-icon-pullback::before {
  clip-path: polygon(0 44%, 38% 44%, 38% 24%, 76% 24%, 76% 8%, 100% 34%, 76% 60%, 76% 44%, 54% 44%, 54% 70%, 18% 70%, 18% 92%, 0 92%);
}

.setup-icon-range::before {
  clip-path: polygon(0 18%, 100% 18%, 100% 32%, 20% 32%, 20% 42%, 82% 42%, 82% 58%, 20% 58%, 20% 68%, 100% 68%, 100% 82%, 0 82%);
}

.setup-icon-leadlag::before {
  clip-path: polygon(0 22%, 44% 22%, 44% 6%, 72% 34%, 44% 62%, 44% 46%, 0 46%, 0 22%, 28% 54%, 72% 54%, 72% 38%, 100% 66%, 72% 94%, 72% 78%, 28% 78%);
}

.setup-icon-gate::before {
  clip-path: polygon(8% 10%, 92% 10%, 92% 32%, 66% 32%, 66% 90%, 34% 90%, 34% 32%, 8% 32%);
  background: linear-gradient(135deg, var(--amber), var(--coral));
}

.regime-head span:not(.setup-icon) {
  color: var(--green);
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.regime-head h3 {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 28px;
  line-height: 1.12;
}

:lang(ko) .regime-head h3,
:lang(ja) .regime-head h3,
:lang(zh-Hans) .regime-head h3,
:lang(zh-Hant) .regime-head h3 {
  word-break: keep-all;
  line-break: strict;
}

.regime-panel-featured .regime-head h3 {
  max-width: 920px;
  font-size: 38px;
}

.regime-panel > p {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.58;
  text-wrap: pretty;
}

.regime-panel-featured > p {
  max-width: 800px;
  font-size: 16px;
}

.setup-minis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
}

.setup-minis div,
.setup-line span,
.gate-matrix span {
  border: 1px solid rgba(157, 255, 226, 0.13);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.setup-minis div {
  min-width: 0;
  min-height: 0;
  display: grid;
  align-items: center;
  padding: 13px 14px;
}

.setup-minis strong {
  display: block;
}

.setup-minis strong {
  margin-bottom: 0;
  color: var(--ink-strong);
  font-size: 15px;
  line-height: 1.24;
  text-wrap: balance;
}

.setup-line,
.gate-matrix {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}

.setup-line span,
.gate-matrix span {
  min-width: 0;
  max-width: 100%;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  color: #d7fff1;
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  white-space: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}

:lang(ko) .setup-line span,
:lang(ko) .gate-matrix span,
:lang(ja) .setup-line span,
:lang(ja) .gate-matrix span,
:lang(zh-Hans) .setup-line span,
:lang(zh-Hans) .gate-matrix span,
:lang(zh-Hant) .setup-line span,
:lang(zh-Hant) .gate-matrix span {
  word-break: keep-all;
  line-break: strict;
}

:lang(hi) .setup-line span,
:lang(bn) .setup-line span {
  padding-inline: 9px;
  font-size: 11.5px;
}

.gate-matrix span {
  border-color: rgba(242, 181, 68, 0.18);
  color: #ffe2a4;
}

.regime-panel-gate .gate-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.regime-panel-gate .gate-matrix span {
  min-height: 48px;
  justify-content: center;
  text-align: center;
}

.taxonomy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.taxonomy-card,
.setup-card,
.regime-strip article {
  border: 1px solid rgba(157, 255, 226, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(17, 37, 43, 0.82), rgba(6, 14, 18, 0.84)),
    rgba(7, 17, 21, 0.82);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
}

.taxonomy-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg));
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.taxonomy-card:hover {
  border-color: rgba(109, 255, 178, 0.32);
  box-shadow:
    0 0 42px rgba(33, 214, 163, 0.1),
    0 28px 70px rgba(0, 0, 0, 0.32);
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    translateY(-3px);
}

.taxonomy-card span,
.setup-card span {
  color: var(--green);
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.taxonomy-card h3 {
  margin-top: 34px;
}

.taxonomy-card p,
.setup-card p,
.regime-strip p {
  margin-bottom: 0;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.regime-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(157, 255, 226, 0.14);
  border-radius: var(--radius);
  background: rgba(157, 255, 226, 0.12);
}

.regime-strip article {
  min-height: 230px;
  border: 0;
  border-radius: 0;
  padding: 18px;
  box-shadow: none;
}

.regime-strip strong {
  display: block;
  min-height: 48px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: break-word;
}

.setup-catalog {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.setup-card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg));
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.setup-card:hover {
  border-color: rgba(72, 213, 255, 0.32);
  box-shadow:
    0 0 38px rgba(72, 213, 255, 0.1),
    0 28px 70px rgba(0, 0, 0, 0.32);
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    translateY(-3px);
}

.setup-card h3 {
  margin-top: 30px;
}

.setup-card-primary {
  grid-column: span 2;
  border-color: rgba(109, 255, 178, 0.28);
  background:
    radial-gradient(circle at 22% 18%, rgba(109, 255, 178, 0.16), transparent 17rem),
    linear-gradient(180deg, rgba(20, 47, 51, 0.9), rgba(7, 18, 20, 0.9));
}

.setup-card-synthetic {
  border-color: rgba(242, 181, 68, 0.22);
  background:
    linear-gradient(180deg, rgba(42, 31, 13, 0.42), rgba(7, 17, 18, 0.86)),
    rgba(7, 17, 21, 0.82);
}

.markets-section {
  padding-top: 76px;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.market-card {
  min-height: clamp(202px, 17vw, 236px);
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg));
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.market-card:hover {
  border-color: rgba(72, 213, 255, 0.3);
  box-shadow:
    0 0 34px rgba(72, 213, 255, 0.09),
    0 24px 58px rgba(0, 0, 0, 0.28);
  transform:
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    translateY(-3px);
}

.market-icon {
  width: 56px;
  height: 56px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(72, 213, 255, 0.25);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 35% 30%, rgba(109, 255, 178, 0.22), transparent 56%),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.market-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.market-card h3 {
  margin: 0;
  color: var(--green);
  font-size: 15px;
  white-space: nowrap;
}

.market-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.market-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-self: end;
  margin-top: 8px;
}

.market-examples span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(157, 255, 226, 0.13);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.04);
  color: #d7fff1;
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.data-section {
  padding-top: 30px;
}

.data-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1fr);
  gap: 44px;
  align-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 82% 18%, rgba(72, 213, 255, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(9, 27, 33, 0.92), rgba(5, 12, 16, 0.9));
}

.data-panel h2 {
  margin-bottom: 0;
}

.data-copy {
  display: grid;
  gap: 16px;
}

.data-copy p {
  margin: 0;
}

.discipline-section {
  padding-top: 26px;
}

.discipline-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.82fr);
  gap: 24px;
  padding: 28px;
  border-color: rgba(255, 107, 95, 0.2);
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 107, 95, 0.13), transparent 20rem),
    linear-gradient(180deg, rgba(31, 22, 22, 0.88), rgba(5, 12, 15, 0.9));
}

.discipline-copy {
  display: grid;
  align-content: center;
}

.discipline-copy p:not(.eyebrow) {
  margin-bottom: 12px;
}

.discipline-rules {
  display: grid;
  gap: 12px;
}

.discipline-rules article {
  min-height: 140px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 107, 95, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(0, 0, 0, 0.2);
}

.discipline-rules span {
  color: #ffb7af;
}

.discipline-rules strong {
  color: var(--ink-strong);
  font-size: 19px;
}

.discipline-rules small {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.dark-band {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 106px max(16px, calc((100vw - var(--container)) / 2));
  background:
    linear-gradient(90deg, rgba(2, 6, 9, 0.98), rgba(8, 19, 22, 0.96)),
    linear-gradient(135deg, rgba(255, 107, 95, 0.06), transparent 42%),
    repeating-linear-gradient(
      90deg,
      rgba(157, 255, 226, 0.04) 0,
      rgba(157, 255, 226, 0.04) 1px,
      transparent 1px,
      transparent 30px
    );
  color: white;
  border-top: 1px solid rgba(157, 255, 226, 0.14);
  border-bottom: 1px solid rgba(157, 255, 226, 0.14);
}

.dark-band .eyebrow {
  color: var(--amber);
}

.dark-band .section-heading p:not(.eyebrow) {
  color: #bfd1cb;
}

.split-layout {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.signal-stack {
  display: grid;
  gap: 14px;
}

.telegram-message {
  border: 1px solid rgba(72, 213, 255, 0.2);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(13, 29, 35, 0.94), rgba(6, 13, 17, 0.94)),
    var(--panel-strong);
  color: var(--ink);
  box-shadow:
    0 0 34px rgba(72, 213, 255, 0.1),
    0 24px 58px rgba(0, 0, 0, 0.36);
}

.telegram-message.result {
  margin-left: 46px;
  border-color: rgba(242, 181, 68, 0.28);
}

.message-header {
  margin-bottom: 16px;
}

.message-header span {
  color: var(--green);
  font-weight: 900;
}

.message-header small {
  border: 1px solid rgba(157, 255, 226, 0.14);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 900;
}

.telegram-message ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.telegram-message li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(157, 255, 226, 0.12);
  padding-bottom: 10px;
}

.telegram-message li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.telegram-message li span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
}

.telegram-message li strong {
  min-width: 0;
  color: var(--ink-strong);
  text-align: right;
  overflow-wrap: normal;
  word-break: keep-all;
  font-variant-numeric: tabular-nums;
}

.process-section {
  padding-bottom: 74px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border: 1px solid rgba(157, 255, 226, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(4, 10, 13, 0.76);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.timeline-step {
  position: relative;
  min-height: 256px;
  padding: 24px;
  border-right: 1px solid rgba(157, 255, 226, 0.12);
}

.timeline-step:last-child {
  border-right: 0;
}

.timeline-step span {
  width: 74px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border: 1px solid rgba(72, 213, 255, 0.28);
  border-radius: 999px;
  background: rgba(72, 213, 255, 0.09);
  color: var(--cyan);
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-step p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(620px, 1.22fr);
  gap: clamp(34px, 4vw, 56px);
  align-items: center;
  padding-top: 78px;
}

.proof-copy {
  max-width: 720px;
}

.proof-copy h2 {
  max-width: 680px;
  font-size: clamp(36px, 4.1vw, 58px);
  line-height: 1.02;
  text-wrap: balance;
}

.proof-copy p:not(.eyebrow) {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.68;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(157, 255, 226, 0.14);
  border-radius: var(--radius);
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(18, 39, 46, 0.78), rgba(8, 16, 20, 0.82));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
}

.metric span,
.metric small {
  color: var(--ink-soft);
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 900;
}

.metric strong {
  display: block;
  max-width: 100%;
  color: var(--green);
  font-size: clamp(20px, 1.35vw, 24px);
  line-height: 1.12;
  font-variant-numeric: tabular-nums;
  white-space: normal;
  overflow-wrap: normal;
  word-break: keep-all;
  text-wrap: balance;
}

.platform-section {
  padding-top: clamp(28px, 4vw, 52px);
}

.platform-panel {
  position: relative;
  display: grid;
  border-color: rgba(242, 181, 68, 0.34);
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 0.95fr);
  gap: 24px;
  align-items: stretch;
  border: 1px solid rgba(242, 181, 68, 0.18);
  border-radius: var(--radius);
  padding: 28px;
  background:
    radial-gradient(circle at 10% 0%, rgba(242, 181, 68, 0.13), transparent 20rem),
    linear-gradient(180deg, rgba(24, 30, 27, 0.88), rgba(5, 12, 15, 0.9));
  box-shadow:
    0 0 60px rgba(242, 181, 68, 0.08),
    0 26px 70px rgba(0, 0, 0, 0.3);
}

.platform-panel::before {
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 214, 111, 0.08), transparent 32%, transparent 68%, rgba(233, 154, 39, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 44%);
}

.platform-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.platform-copy h2 {
  max-width: 760px;
}

.platform-copy p:not(.eyebrow) {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.68;
  text-wrap: pretty;
}

.platform-note {
  margin-bottom: 0;
  border-left: 2px solid rgba(242, 181, 68, 0.58);
  padding-left: 14px;
}

.platform-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.platform-grid article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  min-height: auto;
  border: 1px solid rgba(157, 255, 226, 0.13);
  border-radius: var(--radius);
  padding: 15px;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.platform-card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 181, 68, 0.25);
  border-radius: calc(var(--radius) - 1px);
  background:
    radial-gradient(circle at 50% 45%, rgba(242, 181, 68, 0.22), transparent 60%),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 26px rgba(0, 0, 0, 0.22);
}

.platform-card-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--platform-gold-soft);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-grid article > div {
  display: grid;
  gap: 6px;
}

.platform-grid article > div > span {
  color: var(--amber);
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.platform-grid strong {
  color: var(--ink-strong);
  font-size: 18px;
  line-height: 1.18;
}

.platform-grid small {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
  text-wrap: pretty;
}

.platform-link {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  width: 100%;
  min-height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  justify-self: stretch;
  overflow: hidden;
  border: 2px solid rgba(255, 226, 164, 0.82);
  border-radius: var(--radius);
  padding: 16px 24px;
  background:
    var(--platform-gold-gradient),
    rgba(242, 181, 68, 0.2);
  color: #151006;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.28;
  text-align: center;
  box-shadow:
    0 0 0 4px rgba(242, 181, 68, 0.12),
    0 0 58px rgba(242, 181, 68, 0.32),
    0 24px 56px rgba(0, 0, 0, 0.4);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.platform-link::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 32%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  pointer-events: none;
  transform: skewX(-18deg) translateX(-130%);
  animation: cta-sheen 5.8s ease-in-out infinite;
}

[dir="rtl"] .platform-link::after {
  display: none;
}

@keyframes cta-sheen {
  0%,
  52% {
    transform: skewX(-18deg) translateX(-130%);
  }

  76%,
  100% {
    transform: skewX(-18deg) translateX(430%);
  }
}

.platform-link span,
.platform-link svg {
  position: relative;
  z-index: 1;
}

.platform-link span {
  min-width: 0;
  overflow-wrap: break-word;
}

.platform-link:hover {
  border-color: rgba(255, 226, 164, 0.92);
  box-shadow:
    0 0 0 5px rgba(242, 181, 68, 0.16),
    0 0 72px rgba(242, 181, 68, 0.42),
    0 28px 62px rgba(0, 0, 0, 0.46);
  transform: translateY(-2px);
}

.platform-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(520px, 1fr);
  gap: 44px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(157, 255, 226, 0.14);
  border-radius: var(--radius);
  background: rgba(4, 10, 13, 0.76);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  color: var(--ink-strong);
  font-weight: 900;
}

summary::after {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(109, 255, 178, 0.24);
  border-radius: 50%;
  background: rgba(109, 255, 178, 0.08);
  color: var(--green);
  content: "+";
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin: -2px 20px 20px;
  color: var(--ink-soft);
}

.cta-section {
  width: min(100% - 32px, var(--container));
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(109, 255, 178, 0.18);
  border-radius: var(--radius);
  padding: 34px;
  background:
    linear-gradient(120deg, rgba(33, 214, 163, 0.15), rgba(72, 213, 255, 0.08), rgba(242, 181, 68, 0.08)),
    rgba(4, 10, 13, 0.88);
  box-shadow:
    0 0 60px rgba(33, 214, 163, 0.12),
    0 26px 70px rgba(0, 0, 0, 0.34);
}

.cta-copy h2 {
  margin-bottom: 10px;
}

.cta-copy p {
  max-width: 720px;
  margin-bottom: 0;
}

.disclaimer-section {
  padding-top: 0;
  padding-bottom: 54px;
}

.disclaimer-panel {
  padding: 26px 28px;
  border-color: rgba(157, 255, 226, 0.12);
  background:
    linear-gradient(180deg, rgba(12, 24, 29, 0.78), rgba(5, 11, 15, 0.86)),
    rgba(7, 17, 21, 0.82);
}

.disclaimer-panel h2 {
  max-width: 880px;
  margin-bottom: 12px;
  font-size: 28px;
}

.disclaimer-panel p:not(.eyebrow) {
  max-width: 980px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.68;
}

.site-footer {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(380px, 1fr);
  gap: 30px;
  align-items: start;
  border-top: 1px solid rgba(157, 255, 226, 0.14);
  padding: 30px 0 44px;
  color: var(--ink-soft);
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-strong);
}

.site-footer p {
  margin-bottom: 0;
}

.risk-note {
  justify-self: end;
  max-width: 620px;
  font-size: 14px;
}

.footer-legal {
  justify-self: end;
  max-width: 620px;
  text-align: right;
}

.footer-legal .risk-note {
  justify-self: initial;
}

.data-attribution {
  margin-top: 8px;
  font-size: 9px;
  line-height: 1.2;
  color: rgba(188, 214, 205, 0.18);
}

.data-attribution a {
  color: inherit;
  text-decoration: none;
}

.data-attribution a:hover,
.data-attribution a:focus-visible {
  color: rgba(188, 214, 205, 0.36);
}

.language-layer {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(1, 5, 8, 0.72);
  backdrop-filter: blur(16px);
}

.language-layer[hidden] {
  display: none;
}

.language-dialog {
  width: min(640px, 100%);
  max-height: min(760px, calc(100dvh - 44px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(157, 255, 226, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(14, 31, 36, 0.98), rgba(4, 10, 13, 0.98)),
    var(--void);
  box-shadow:
    0 0 70px rgba(72, 213, 255, 0.12),
    0 30px 90px rgba(0, 0, 0, 0.56);
}

.language-dialog-head {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  min-width: 0;
  border-bottom: 1px solid rgba(157, 255, 226, 0.13);
  padding: 22px;
}

.language-dialog-head > div {
  min-width: 0;
}

.language-dialog-head span {
  color: var(--green);
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.language-dialog-head h2 {
  margin: 4px 0 0;
  font-size: 28px;
  line-height: 1.18;
}

.language-close {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(157, 255, 226, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.language-close:hover {
  border-color: rgba(72, 213, 255, 0.34);
  background: rgba(157, 255, 226, 0.08);
}

.language-close:active {
  transform: scale(0.96);
}

.language-close svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 18px;
  overflow: auto;
}

.language-option {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.28;
  min-width: 0;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.language-option:hover,
.language-option[aria-current="page"] {
  border-color: rgba(72, 213, 255, 0.24);
  background: rgba(157, 255, 226, 0.07);
}

.language-flag {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 20px rgba(0, 0, 0, 0.22);
}

.language-flag img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.language-label {
  min-width: 0;
  overflow-wrap: break-word;
}

:lang(ko) .language-label {
  word-break: keep-all;
  overflow-wrap: normal;
}

:lang(ja) .language-label,
:lang(zh-Hans) .language-label,
:lang(zh-Hant) .language-label {
  word-break: normal;
  overflow-wrap: anywhere;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: min(320px, calc(100vw - 40px));
  border: 1px solid rgba(109, 255, 178, 0.26);
  border-radius: var(--radius);
  padding: 13px 16px;
  background: rgba(2, 6, 9, 0.94);
  color: white;
  font-weight: 800;
  box-shadow:
    0 0 28px rgba(33, 214, 163, 0.14),
    0 18px 44px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 480ms ease,
    transform 480ms ease;
}

.no-js .reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1240px) {
  .proof-section {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .proof-copy,
  .proof-copy h2,
  .proof-copy p:not(.eyebrow) {
    max-width: 820px;
  }

  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .nav-links {
    display: none;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 36px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 38px;
  }

  .hero-bg {
    margin-bottom: 34px;
  }

  .hero-bg img {
    opacity: 1;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(2, 5, 8, 0.99) 0%, rgba(2, 5, 8, 0.97) 46%, rgba(2, 5, 8, 0.7) 72%, rgba(2, 5, 8, 0.86) 100%),
      linear-gradient(180deg, rgba(4, 7, 11, 0.08) 0%, rgba(4, 7, 11, 0.42) 50%, rgba(4, 7, 11, 0.98) 100%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
    gap: 32px;
  }

  .hero-copy {
    max-width: 760px;
    padding-top: 42px;
  }

  .hero-visual {
    width: min(100%, 920px);
    min-height: 540px;
    margin-top: 0;
    justify-self: center;
  }

  .signal-stage {
    min-height: 540px;
  }

  .strategy-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-story-grid {
    grid-template-columns: 1fr;
  }

  .visual-story-card:not(.visual-story-wide) picture {
    aspect-ratio: 16 / 9;
  }

  .research-stack-visual {
    min-height: 258px;
  }

  .engine-panel {
    min-height: 420px;
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .strategy-card {
    min-height: 250px;
    grid-column: span 1;
  }

  .strategy-card-wide {
    min-height: 230px;
    grid-column: span 2;
  }

  .architecture-board {
    grid-template-columns: 1fr;
  }

  .architecture-copy,
  .engine-layers li {
    min-height: 280px;
  }

  .regime-panel,
  .regime-panel-featured,
  .regime-panel-gate {
    grid-column: span 6;
  }

  .regime-panel-gate {
    grid-template-columns: 1fr;
  }

  .setup-minis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .taxonomy-grid {
    grid-template-columns: 1fr;
  }

  .taxonomy-card {
    min-height: 210px;
  }

  .regime-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .setup-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .setup-card-primary {
    grid-column: span 2;
  }

  .market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .data-panel,
  .proof-section,
  .discipline-panel,
  .platform-panel,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav-shell {
    gap: 12px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-platform,
  .nav-cta {
    width: 48px;
    padding: 0;
  }

  .nav-platform span,
  .nav-cta span {
    display: none;
  }
}

@media (max-width: 860px) {
  .nav-shell {
    width: min(100% - 24px, var(--container));
  }

  .nav-links {
    display: none;
  }

  .language-toggle {
    padding: 0 11px;
  }

  .nav-platform,
  .nav-cta {
    padding: 0 12px;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-copy {
    padding-top: 28px;
  }

  .hero-bg,
  .hero-grid,
  .section,
  .cred-strip,
  .cta-section,
  .disclaimer-section,
  .site-footer {
    width: min(100% - 24px, var(--container));
  }

  h1 {
    font-size: 46px;
    line-height: 1.02;
  }

  h2 {
    font-size: 32px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .cred-strip {
    grid-template-columns: 1fr;
  }

  .cred-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(157, 255, 226, 0.12);
  }

  .cred-strip div:last-child {
    border-bottom: 0;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(157, 255, 226, 0.12);
  }

  .timeline-step:last-child {
    border-bottom: 0;
  }

  .timeline-step span {
    margin-bottom: 22px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .platform-panel {
    padding: 24px;
  }

  .platform-link {
    min-height: 62px;
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 150px;
  }

  .cta-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .risk-note {
    justify-self: start;
  }

  .footer-legal {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 66px;
  }

  .brand {
    max-width: 168px;
    white-space: normal;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .nav-platform,
  .nav-cta {
    min-height: 44px;
    font-size: 0;
  }

  .language-toggle span {
    font-size: 0;
  }

  .language-toggle {
    width: 44px;
    padding: 0;
  }

  .nav-platform svg,
  .nav-cta svg {
    width: 21px;
    height: 21px;
  }

  .hero {
    padding-top: 16px;
    padding-bottom: 38px;
  }

  .hero-bg {
    margin-bottom: 26px;
  }

  .hero-bg img {
    object-position: center top;
    opacity: 1;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(2, 5, 8, 0.92), rgba(2, 5, 8, 0.84) 52%, rgba(2, 5, 8, 0.98) 100%),
      linear-gradient(90deg, rgba(2, 5, 8, 0.82), rgba(2, 5, 8, 0.46));
  }

  .hero-copy {
    padding-top: 20px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 19px;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .hero-contact-link {
    width: 100%;
    justify-content: flex-start;
    min-height: 44px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    overflow: visible;
  }

  .signal-stage {
    position: relative;
    min-height: auto;
    display: grid;
    gap: 14px;
    overflow: visible;
    padding-top: 92px;
  }

  .signal-stage::before,
  .signal-stage::after {
    display: none;
  }

  .ticker-strip {
    left: 0;
    right: 0;
    top: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ticker-strip span:nth-child(n + 5) {
    display: none;
  }

  .signal-card {
    position: relative;
    width: 100%;
  }

  .signal-card-primary {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    padding: 16px;
  }

  .signal-card-result {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    padding: 16px;
  }

  .signal-list div,
  .signal-list.compact div {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 8px;
  }

  .mini-terminal {
    display: none;
  }

  .mini-terminal strong {
    font-size: 24px;
  }

  .section {
    padding: 70px 0;
  }

  .strategy-bento {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .visual-story-grid,
  .market-grid {
    grid-template-columns: 1fr;
  }

  .about-card,
  .market-card {
    min-height: auto;
    padding: 20px;
  }

  .about-section .section-heading h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .about-card {
    gap: 12px;
  }

  .visual-story-card picture,
  .visual-story-card:not(.visual-story-wide) picture {
    aspect-ratio: 16 / 10;
  }

  .research-stack-visual {
    min-height: 250px;
    gap: 12px;
    padding: 16px;
  }

  .lifecycle-card {
    padding: 14px;
  }

  .lifecycle-card > strong {
    font-size: 22px;
  }

  .visual-story-card figcaption {
    padding: 14px 16px 16px;
  }

  .engine-panel,
  .strategy-card,
  .strategy-card-wide {
    grid-column: span 1;
  }

  .engine-panel {
    min-height: 360px;
    gap: 18px;
    padding: 20px;
  }

  .engine-media picture {
    aspect-ratio: 4 / 3;
  }

  .matrix-copy h3 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 38px);
  }

  .review-checks {
    grid-template-columns: 1fr;
  }

  .model-stack {
    padding: 12px;
  }

  .model-stack li {
    grid-template-columns: minmax(92px, 0.72fr) minmax(0, 1fr);
    gap: 10px;
    padding: 11px;
  }

  .model-track {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .model-stack em {
    grid-column: 1 / -1;
    justify-self: end;
    text-align: right;
  }

  [dir="rtl"] .model-stack em {
    justify-self: start;
    text-align: left;
  }

  .architecture-copy {
    min-height: auto;
    padding: 22px;
  }

  .architecture-copy h3 {
    font-size: 28px;
  }

  .engine-layers {
    grid-template-columns: 1fr;
  }

  .engine-layers li {
    grid-template-columns: 46px minmax(0, 1fr);
    align-content: start;
    column-gap: 12px;
    row-gap: 4px;
    min-height: auto;
    padding: 16px;
  }

  .engine-layers span {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .engine-layers strong {
    margin-bottom: 0;
  }

  .strategy-card {
    min-height: auto;
    padding: 20px;
  }

  .strategy-card h3 {
    margin-top: 28px;
  }

  .regime-strip {
    grid-template-columns: 1fr;
  }

  .regime-strip article {
    min-height: auto;
  }

  .regime-strip strong {
    min-height: auto;
    margin-bottom: 10px;
  }

  .setup-catalog {
    grid-template-columns: 1fr;
  }

  .setup-card,
  .setup-card-primary {
    grid-column: span 1;
    min-height: 250px;
  }

  .regime-atlas {
    grid-template-columns: 1fr;
  }

  .regime-panel,
  .regime-panel-featured,
  .regime-panel-gate {
    grid-column: span 1;
    min-height: auto;
    padding: 20px;
  }

  .regime-panel-gate .gate-matrix {
    grid-template-columns: 1fr;
  }

  .regime-head h3,
  .regime-panel-featured .regime-head h3 {
    font-size: 26px;
  }

  .setup-minis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .data-panel,
  .discipline-panel {
    gap: 20px;
    padding: 20px;
  }

  .discipline-rules article {
    min-height: auto;
  }

  .setup-minis div {
    padding: 12px;
  }

  .setup-minis strong {
    font-size: 13px;
  }

  .dark-band {
    padding: 78px 12px;
  }

  .split-layout {
    gap: 34px;
  }

  .telegram-message {
    padding: 18px;
  }

  .telegram-message.result {
    margin-left: 0;
  }

  .telegram-message li {
    display: grid;
    gap: 2px;
  }

  .telegram-message li strong {
    text-align: left;
  }

  .proof-section {
    padding-top: 66px;
  }

  .platform-section {
    padding-top: 18px;
  }

  .platform-panel {
    gap: 18px;
    padding: 20px;
  }

  .platform-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .faq-section {
    gap: 24px;
  }

  summary {
    align-items: flex-start;
  }

  .cta-section {
    padding: 24px;
    margin-bottom: 48px;
  }

  .disclaimer-panel {
    padding: 22px;
  }

  .disclaimer-panel h2 {
    font-size: 24px;
  }

  .site-footer {
    padding-bottom: 34px;
  }

  .language-layer {
    padding: 12px;
  }

  .language-dialog {
    max-height: calc(100dvh - 24px);
  }

  .language-grid {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .language-dialog-head {
    padding: 18px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 34px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .room-name,
  .message-id,
  .status-win {
    font-size: 11px;
  }

  .signal-card h2 {
    font-size: 21px;
  }

  .research-stack-visual {
    min-height: 248px;
  }

  .lifecycle-card dt,
  .lifecycle-card dd {
    font-size: 11px;
  }

  .setup-minis {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}
