:root {
  --ink: #0b1f1b;
  --ink-soft: #526b65;
  --paper: #eef5f2;
  --paper-bright: #fbfdfc;
  --night: #020706;
  --night-2: #061411;
  --night-3: #0a1c18;
  --lime: #5ce6d2;
  --lime-bright: #9af5df;
  --mint: #66cbb5;
  --amber: #e8b45a;
  --line: rgba(8, 45, 37, 0.13);
  --line-dark: rgba(210, 255, 244, 0.105);
  --container: 1240px;
  --radius: 28px;
  --shadow: 0 40px 100px rgba(0, 0, 0, 0.32);
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 180ms;
  animation-timing-function: ease-out;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter,
    "SF Pro Display",
    "SF Pro Text",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 1ms;
  }
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.container {
  width: min(calc(100% - 56px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -80px;
  left: 20px;
  padding: 12px 18px;
  border-radius: 99px;
  background: var(--lime);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 18px;
}

.page-progress {
  position: fixed;
  z-index: 300;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
}

.page-progress i {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(92, 230, 210, 0.8);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 200;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.075);
  background: rgba(8, 13, 11, 0.8);
  backdrop-filter: blur(22px) saturate(130%);
}

.nav-shell {
  height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 46px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(92, 230, 210, 0.75);
  border-radius: 8px;
  background: rgba(92, 230, 210, 0.08);
  color: var(--lime);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.08em;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 1px;
  right: -10px;
  bottom: 5px;
  transform: rotate(-45deg);
  background: var(--lime);
}

.brand-type {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 8px;
}

.brand-type strong {
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.19em;
}

.brand-type small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 13px;
}

.site-nav .numyra-locale-control-promo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.site-nav .numyra-locale-control-promo label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-nav .numyra-locale-control-promo select {
  min-height: 34px;
  max-width: 126px;
  border: 1px solid rgba(196, 223, 213, 0.3);
  border-radius: 999px;
  padding: 4px 24px 4px 9px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font: 600 12px/1.2 system-ui, sans-serif;
}

html[lang]:not([lang="zh-CN"]) .nav-shell {
  gap: clamp(16px, 2vw, 28px);
}

html[lang]:not([lang="zh-CN"]) .site-nav {
  gap: clamp(10px, 1vw, 16px);
  font-size: 11px;
}

.site-nav > a {
  position: relative;
  transition: color 0.22s ease;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--lime);
  transition: transform 0.22s ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav > a.active {
  color: white;
}

.site-nav > a.active::after,
.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  color: white;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.nav-cta i {
  color: var(--lime);
  font-style: normal;
}

.nav-edition {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.35);
  font:
    9px/1 ui-monospace,
    "SFMono-Regular",
    Menlo,
    monospace;
  letter-spacing: 0.12em;
}

.nav-edition i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(92, 230, 210, 0.9);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 930px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 80% 22%, rgba(73, 124, 96, 0.17), transparent 31%),
    linear-gradient(145deg, #080d0b 0%, #0a100d 52%, #07100c 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0 0 0 51%;
  opacity: 0.7;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 48%, black 10%, transparent 68%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-a {
  width: 680px;
  height: 680px;
  top: -460px;
  right: -120px;
  border: 1px solid rgba(92, 230, 210, 0.1);
  box-shadow:
    0 0 0 80px rgba(92, 230, 210, 0.018),
    0 0 0 180px rgba(92, 230, 210, 0.012);
}

.hero-orb-b {
  width: 460px;
  height: 460px;
  bottom: -390px;
  left: 35%;
  background: rgba(75, 181, 135, 0.16);
  filter: blur(100px);
}

.hero-grid {
  min-height: 930px;
  padding: 146px 0 102px;
  display: grid;
  grid-template-columns: minmax(410px, 0.84fr) minmax(660px, 1.16fr);
  align-items: center;
  gap: 66px;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow,
.feature-kicker {
  margin: 0;
  font:
    700 10px/1.4 ui-monospace,
    "SFMono-Regular",
    Menlo,
    monospace;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 27px;
  color: var(--lime);
}

.eyebrow i {
  width: 26px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(56px, 5.45vw, 82px);
  font-weight: 620;
  line-height: 1.04;
  letter-spacing: -0.065em;
}

.hero h1 em {
  position: relative;
  color: var(--lime);
  font-style: normal;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: 10px;
  width: 24px;
  height: 24px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  opacity: 0.44;
}

.hero-intro {
  max-width: 570px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 16px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 38px 0 54px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 21px;
  border: 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.button i {
  font-style: normal;
}

.button-primary {
  min-width: 188px;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(92, 230, 210, 0.12);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  transition: color 0.2s ease;
}

.text-link i {
  color: var(--lime);
  font-style: normal;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 560px;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-metrics > div {
  position: relative;
  min-width: 0;
}

.hero-metrics > div + div {
  padding-left: 23px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-metrics dt {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.hero-metrics dt span {
  font-size: 21px;
  font-weight: 640;
  letter-spacing: -0.04em;
}

.hero-metrics dt small {
  color: var(--lime);
  font:
    8px ui-monospace,
    monospace;
  letter-spacing: 0.1em;
}

.hero-metrics dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
}

.hero-stage {
  position: relative;
  z-index: 3;
  width: 790px;
  margin-right: -135px;
  perspective: 1400px;
}

.stage-caption {
  display: flex;
  justify-content: space-between;
  margin: 0 22px 13px 6px;
  color: rgba(255, 255, 255, 0.34);
  font:
    8px/1 ui-monospace,
    monospace;
  letter-spacing: 0.14em;
}

.stage-caption span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.stage-caption i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}

.stage-caption b {
  color: rgba(255, 255, 255, 0.22);
  font-weight: 400;
}

.sim-window {
  width: 790px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: #0b1210;
  box-shadow:
    0 70px 130px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(92, 230, 210, 0.025) inset;
  transform: rotateY(var(--ry, -5deg)) rotateX(var(--rx, 2deg));
  transform-origin: center left;
  transition: transform 0.35s ease-out;
  will-change: transform;
}

.sim-topbar {
  height: 46px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.018);
  color: rgba(255, 255, 255, 0.3);
  font:
    8px/1 ui-monospace,
    monospace;
  letter-spacing: 0.1em;
}

.window-dots {
  display: flex;
  gap: 5px;
  margin-right: 18px;
}

.window-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.sim-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sim-breadcrumb b {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
}

.sim-breadcrumb span {
  color: rgba(255, 255, 255, 0.16);
}

.sim-breadcrumb em,
.live-dot em,
.chart-head small em {
  font-style: normal;
}

.live-dot {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: var(--mint);
}

.live-dot i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 11px var(--lime);
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  50% {
    opacity: 0.35;
  }
}

.sim-body {
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 510px;
}

.sim-side {
  padding: 17px 0 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(255, 255, 255, 0.008);
}

.sim-side .sim-logo {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 6px;
  background: var(--lime);
  color: var(--night);
  font-size: 11px;
  font-weight: 900;
}

.sim-side > i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.22);
  font:
    normal 7px ui-monospace,
    monospace;
}

.sim-side > i.active {
  border-color: rgba(92, 230, 210, 0.26);
  background: rgba(92, 230, 210, 0.09);
  color: var(--lime);
}

.sim-side > b {
  margin-top: auto;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.18);
  font:
    7px ui-monospace,
    monospace;
  letter-spacing: 0.15em;
}

.sim-main {
  padding: 27px 28px 24px;
}

.sim-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.sim-heading small,
.sim-kpis small,
.decision-row small {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.27);
  font:
    7px ui-monospace,
    monospace;
  letter-spacing: 0.12em;
}

.sim-heading strong {
  font-size: 17px;
  font-weight: 600;
}

.sim-heading > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.42);
  font:
    8px ui-monospace,
    monospace;
}

.sim-heading > span i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
}

.sim-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 21px;
}

.sim-kpis > div {
  position: relative;
  min-height: 84px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
}

.sim-kpis b {
  font:
    17px ui-monospace,
    "SFMono-Regular",
    monospace;
  letter-spacing: -0.04em;
}

.sim-kpis span {
  position: absolute;
  right: 13px;
  bottom: 14px;
  color: var(--mint);
  font:
    8px ui-monospace,
    monospace;
}

.market-board {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 10px;
  margin-top: 10px;
}

.market-chart,
.rank-card {
  min-height: 217px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
}

.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
}

.chart-head small {
  color: rgba(255, 255, 255, 0.24);
  font:
    7px ui-monospace,
    monospace;
}

.chart-head small i {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--lime);
}

.bar-chart {
  height: 160px;
  display: flex;
  align-items: end;
  gap: 9px;
  margin-top: 16px;
  padding: 11px 8px 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background-image: linear-gradient(rgba(255, 255, 255, 0.043) 1px, transparent 1px);
  background-size: 100% 33.33%;
}

.bar-chart > span {
  position: relative;
  flex: 1;
  height: var(--height);
  min-height: 8px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, rgba(102, 203, 181, 0.12), rgba(102, 203, 181, 0.62));
  animation: barsIn 1.15s cubic-bezier(0.22, 1, 0.36, 1) both;
  transform-origin: bottom;
}

.bar-chart > span.current {
  background: linear-gradient(to top, rgba(92, 230, 210, 0.16), var(--lime));
  box-shadow: 0 0 18px rgba(92, 230, 210, 0.12);
}

.bar-chart > span i {
  position: absolute;
  top: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.2);
  font:
    normal 6px ui-monospace,
    monospace;
}

@keyframes barsIn {
  from {
    transform: scaleY(0.05);
  }
}

.rank-card ol {
  list-style: none;
  display: grid;
  gap: 6px;
  margin: 13px 0 0;
  padding: 0;
}

.rank-card li {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  min-height: 31px;
  padding: 0 9px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.37);
  font:
    7px ui-monospace,
    monospace;
}

.rank-card li b {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 400;
}

.rank-card li i {
  font-style: normal;
}

.rank-card li.self {
  border-color: rgba(92, 230, 210, 0.16);
  background: rgba(92, 230, 210, 0.075);
  color: white;
}

.rank-card li.self b,
.rank-card li.self i {
  color: var(--lime);
}

.decision-row {
  display: grid;
  grid-template-columns: 1fr 0.72fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.decision-row > div {
  min-height: 49px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
}

.decision-row strong {
  display: block;
  font-size: 10px;
}

.decision-row button {
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border: 0;
  border-radius: 7px;
  background: var(--lime);
  color: var(--night);
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.decision-row button i {
  font-style: normal;
}

.decision-row button.pulse {
  animation: buttonPulse 0.45s ease;
}

@keyframes buttonPulse {
  50% {
    transform: scale(0.97);
    background: white;
  }
}

.floating-note {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(14, 24, 19, 0.82);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.note-profit {
  bottom: 76px;
  left: -47px;
  width: 142px;
  padding: 14px 16px;
}

.note-profit span {
  display: block;
  color: rgba(255, 255, 255, 0.28);
  font:
    7px ui-monospace,
    monospace;
  letter-spacing: 0.09em;
}

.note-profit b {
  display: inline-block;
  margin-top: 7px;
  color: white;
  font:
    18px ui-monospace,
    monospace;
}

.note-profit > i {
  margin-left: 8px;
  color: var(--lime);
  font:
    normal 8px ui-monospace,
    monospace;
}

.note-settled {
  top: 92px;
  right: 69px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 8px;
  line-height: 1.55;
}

.note-settled > i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 17px var(--lime);
}

.note-settled b {
  color: white;
  font-size: 9px;
}

.stage-index {
  position: absolute;
  right: -1px;
  bottom: -34px;
  color: rgba(255, 255, 255, 0.16);
  font:
    8px ui-monospace,
    monospace;
  letter-spacing: 0.14em;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.24);
  font:
    7px ui-monospace,
    monospace;
  letter-spacing: 0.18em;
}

.scroll-cue i {
  width: 1px;
  height: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  background: var(--lime);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  from {
    transform: translateY(-13px);
  }
  to {
    transform: translateY(28px);
  }
}

/* Product signal strip */
.signal-strip {
  position: relative;
  z-index: 6;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(16, 23, 19, 0.12);
  background: var(--paper-bright);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-grid p {
  position: relative;
  min-height: 118px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 5px 13px;
  margin: 0;
  padding: 0 26px;
  border-right: 1px solid var(--line);
}

.signal-grid p:first-child {
  border-left: 1px solid var(--line);
}

.signal-grid p > span {
  grid-row: 1 / 3;
  align-self: center;
  color: #8b968f;
  font:
    8px ui-monospace,
    monospace;
}

.signal-grid p > b {
  font-size: 13px;
  font-weight: 650;
}

.signal-grid p > small {
  color: #8b968f;
  font:
    7px ui-monospace,
    monospace;
  letter-spacing: 0.11em;
}

/* Shared sections */
.section {
  position: relative;
  padding: 136px 0;
}

.section-heading {
  margin-bottom: 65px;
}

.heading-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  color: #7b8981;
  font:
    8px/1 ui-monospace,
    monospace;
  letter-spacing: 0.15em;
}

.heading-meta span {
  color: var(--ink);
}

.heading-meta i {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.heading-meta b {
  font-weight: 500;
}

.heading-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 70px;
}

.section-heading h2,
.scenario-copy h2,
.faq-wrap h2 {
  margin: 0;
  font-size: clamp(44px, 4.55vw, 66px);
  font-weight: 610;
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.heading-grid > p,
.scenario-copy > p {
  max-width: 460px;
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

/* Feature bento */
.highlights {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.45), transparent 32%),
    var(--paper);
}

.feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.33);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle 240px at var(--spot-x) var(--spot-y), rgba(92, 230, 210, 0.13), transparent 68%);
  transition: opacity 0.3s ease;
}

.card-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #89958e;
  font:
    8px ui-monospace,
    monospace;
  letter-spacing: 0.1em;
}

.card-topline i {
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.feature-large {
  grid-column: 1 / -1;
  min-height: 570px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  color: white;
  background:
    radial-gradient(circle at 78% 45%, rgba(88, 142, 111, 0.19), transparent 30%),
    var(--night-2);
}

.feature-large .card-topline {
  position: absolute;
  top: 32px;
  right: 32px;
  left: 32px;
  color: rgba(255, 255, 255, 0.3);
}

.feature-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 520px;
}

.feature-copy.compact {
  max-width: 450px;
  margin-top: 70px;
}

.feature-kicker {
  margin-bottom: 20px;
  color: #718077;
}

.feature-large .feature-kicker {
  color: var(--lime);
}

.feature-copy h3 {
  margin: 0;
  font-size: clamp(34px, 3.3vw, 49px);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -0.05em;
}

.feature-copy.compact h3 {
  font-size: clamp(31px, 2.7vw, 41px);
}

.feature-copy > p:not(.feature-kicker) {
  max-width: 470px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.feature-large .feature-copy > p:not(.feature-kicker) {
  color: rgba(255, 255, 255, 0.46);
}

.feature-tags {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
}

.feature-tags li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
}

.strategy-field {
  position: relative;
  width: min(92%, 520px);
  aspect-ratio: 1;
  align-self: center;
  justify-self: end;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 230, 210, 0.08), transparent 60%);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.orbit-a {
  inset: 10%;
}

.orbit-b {
  inset: 24%;
  border-style: dashed;
  animation: orbitSpin 28s linear infinite;
}

.orbit-c {
  inset: 39%;
  border-color: rgba(92, 230, 210, 0.24);
}

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

.orbit-a::before,
.orbit-a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.orbit-a::before {
  width: 1px;
  height: 116%;
  transform: translate(-50%, -50%);
}

.orbit-a::after {
  width: 116%;
  height: 1px;
  transform: translate(-50%, -50%);
}

.field-core {
  position: absolute;
  inset: 38%;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(92, 230, 210, 0.34);
  border-radius: 50%;
  background: rgba(92, 230, 210, 0.07);
  box-shadow: 0 0 65px rgba(92, 230, 210, 0.1);
}

.field-core small,
.field-core span {
  color: rgba(255, 255, 255, 0.28);
  font:
    6px ui-monospace,
    monospace;
  letter-spacing: 0.11em;
}

.field-core b {
  margin: 4px 0;
  color: var(--lime);
  font:
    25px ui-monospace,
    monospace;
}

.field-node {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid var(--night-2);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(92, 230, 210, 0.75);
}

.node-a {
  top: 20%;
  left: 28%;
}

.node-b {
  top: 35%;
  right: 14%;
}

.node-c {
  right: 31%;
  bottom: 11%;
}

.field-label {
  position: absolute;
  z-index: 3;
  min-width: 92px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  background: rgba(11, 19, 16, 0.72);
  color: rgba(255, 255, 255, 0.32);
  font:
    7px ui-monospace,
    monospace;
  backdrop-filter: blur(10px);
}

.field-label b {
  float: right;
  color: var(--lime);
  font-weight: 500;
}

.field-label-a {
  top: 9%;
  left: 4%;
}

.field-label-b {
  top: 14%;
  right: 0;
}

.field-label-c {
  right: 2%;
  bottom: 13%;
}

.field-label-d {
  bottom: 7%;
  left: 2%;
}

.competitor-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 7px;
  margin-top: 42px;
}

.competitor-list span {
  display: grid;
  grid-template-columns: 31px 1fr auto;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: rgba(16, 23, 19, 0.035);
  color: #76827b;
  font:
    9px ui-monospace,
    monospace;
}

.competitor-list i,
.competitor-list em {
  font-style: normal;
}

.competitor-list i {
  color: #a2aaa5;
}

.competitor-list b {
  font-weight: 500;
}

.competitor-list em {
  color: #728b7d;
}

.competitor-list .active {
  border-color: rgba(92, 230, 210, 0.25);
  background: var(--ink);
  color: white;
  transform: translateX(8px);
  box-shadow: 0 13px 26px rgba(16, 23, 19, 0.12);
}

.competitor-list .active i,
.competitor-list .active em {
  color: var(--lime);
}

.scale-visual {
  position: absolute;
  right: 32px;
  bottom: 31px;
  left: 32px;
}

.scale-number {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: #9ba49f;
  font:
    48px/1 ui-monospace,
    monospace;
  letter-spacing: -0.08em;
}

.scale-number i {
  flex: 1;
  margin: 0 20px;
  color: #c6cbc8;
  font-size: 15px;
  font-style: normal;
  text-align: center;
}

.scale-number b {
  color: var(--ink);
  font-weight: 500;
}

.scale-line {
  position: relative;
  height: 1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  background: #cfd2cd;
}

.scale-line i {
  width: 7px;
  height: 7px;
  border: 1px solid #979f9a;
  border-radius: 50%;
  background: var(--paper);
}

.scale-line i:nth-child(4) {
  width: 10px;
  height: 10px;
  border: 0;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(92, 230, 210, 0.23);
  animation: scalePoint 3.6s ease-in-out infinite alternate;
}

@keyframes scalePoint {
  to {
    transform: translateX(12px);
  }
}

.scale-caption {
  display: flex;
  justify-content: space-between;
  margin-top: 13px;
  color: #929b95;
  font:
    7px ui-monospace,
    monospace;
  letter-spacing: 0.12em;
}

.scale-caption b {
  color: #5e6962;
  font-weight: 500;
}

/* Experience */
.experience {
  overflow: hidden;
  color: white;
  background: var(--night);
}

.experience-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.65;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, transparent, black 13%, black 88%, transparent);
}

.experience .container {
  position: relative;
  z-index: 2;
}

.section-heading-light .heading-meta {
  color: rgba(255, 255, 255, 0.32);
}

.section-heading-light .heading-meta span {
  color: var(--lime);
}

.section-heading-light .heading-grid > p {
  color: rgba(255, 255, 255, 0.43);
}

.flow-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--line-dark);
}

.flow-card {
  position: relative;
  min-height: 330px;
  padding: 29px;
  background: #0a110e;
  transition: background 0.3s ease;
}

.flow-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--lime);
  transition: transform 0.35s ease;
}

.flow-card > span {
  position: absolute;
  top: 26px;
  right: 27px;
  color: rgba(255, 255, 255, 0.17);
  font:
    11px ui-monospace,
    monospace;
}

.flow-card > small {
  color: var(--lime);
  font:
    8px ui-monospace,
    monospace;
  letter-spacing: 0.14em;
}

.flow-card > b {
  display: block;
  margin-top: 103px;
  font-size: 22px;
  font-weight: 570;
}

.flow-card > p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  line-height: 1.75;
}

.flow-card > i {
  position: absolute;
  bottom: 26px;
  left: 29px;
  color: rgba(255, 255, 255, 0.19);
  font:
    normal 8px ui-monospace,
    monospace;
  letter-spacing: 0.12em;
}

.scenario-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 76px;
  margin-top: 154px;
  padding-top: 112px;
  border-top: 1px solid var(--line-dark);
}

.scenario-copy {
  align-self: start;
}

.scenario-copy .heading-meta span {
  color: var(--lime);
}

.scenario-copy > p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.42);
}

.scenario-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 38px;
}

.scenario-tabs button {
  min-height: 39px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  background: transparent;
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.scenario-tabs button[aria-selected="true"] {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--night);
}

.scenario-panel {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
}

.scenario-index {
  position: absolute;
  z-index: 5;
  top: 24px;
  right: 26px;
  color: rgba(8, 13, 11, 0.52);
  font:
    8px ui-monospace,
    monospace;
  letter-spacing: 0.1em;
}

.scenario-visual {
  position: relative;
  height: 310px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  color: var(--night);
  background: var(--lime);
  transition: background 0.35s ease;
}

.scenario-panel[data-mode="course"] .scenario-visual {
  background: #aeeccb;
}

.scenario-panel[data-mode="training"] .scenario-visual {
  background: #f0e77b;
}

.scenario-panel[data-mode="club"] .scenario-visual {
  background: #e0d8ff;
}

.matrix-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
}

.matrix-grid i {
  border-right: 1px solid rgba(8, 13, 11, 0.11);
  border-bottom: 1px solid rgba(8, 13, 11, 0.11);
}

.matrix-orbit {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(8, 13, 11, 0.2);
  border-radius: 50%;
  animation: orbitSpin 20s linear infinite;
}

.matrix-orbit::before,
.matrix-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(8, 13, 11, 0.16);
  border-radius: 50%;
}

.matrix-orbit::before {
  inset: 34px;
}

.matrix-orbit::after {
  inset: 74px;
}

.matrix-orbit > i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--night);
}

.matrix-orbit > i:nth-child(1) {
  top: -5px;
  left: 50%;
}

.matrix-orbit > i:nth-child(2) {
  right: 18px;
  bottom: 42px;
}

.matrix-orbit > i:nth-child(3) {
  bottom: 22px;
  left: 24px;
}

.matrix-core {
  position: relative;
  z-index: 2;
  text-align: center;
}

.matrix-core small {
  display: block;
  margin-bottom: 8px;
  font:
    7px ui-monospace,
    monospace;
  letter-spacing: 0.18em;
}

.matrix-core strong {
  font:
    700 clamp(40px, 5vw, 70px) / 1 ui-monospace,
    monospace;
  letter-spacing: -0.09em;
}

.matrix-code {
  position: absolute;
  right: 17px;
  bottom: 14px;
  font:
    6px/1.6 ui-monospace,
    monospace;
  letter-spacing: 0.1em;
  text-align: right;
}

.scenario-content {
  padding: 28px 5px 4px;
}

.scenario-content > small {
  color: var(--lime);
  font:
    8px ui-monospace,
    monospace;
  letter-spacing: 0.15em;
}

.scenario-content h3 {
  margin: 11px 0 13px;
  font-size: 25px;
  font-weight: 570;
  letter-spacing: -0.03em;
}

.scenario-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 13px;
  line-height: 1.75;
}

.scenario-content ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
}

.scenario-content li {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  line-height: 1.5;
}

/* Closing */
.closing {
  background:
    radial-gradient(circle at 85% 25%, rgba(255, 255, 255, 0.62), transparent 33%),
    var(--paper);
}

.closing-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 88px;
}

.faq-wrap .section-heading {
  margin-bottom: 39px;
}

.faq-wrap h2 {
  font-size: clamp(42px, 4vw, 57px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  list-style: none;
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  padding: 23px 43px 23px 0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  color: #909a94;
  font:
    8px/1.9 ui-monospace,
    monospace;
}

.faq-list summary > b {
  min-width: 0;
  font: inherit;
}

.faq-list summary > i::before,
.faq-list summary > i::after {
  content: "";
  position: absolute;
  top: 31px;
  right: 5px;
  width: 12px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.25s ease;
}

.faq-list summary > i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary > i::after {
  transform: rotate(0);
}

.faq-list details p {
  margin: -4px 42px 23px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.contact-card {
  position: sticky;
  top: 106px;
  overflow: hidden;
  padding: 48px;
  border-radius: var(--radius);
  background: var(--lime);
}

.contact-orbit {
  position: absolute;
  top: -160px;
  right: -130px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(8, 13, 11, 0.12);
  border-radius: 50%;
}

.contact-orbit::before,
.contact-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(8, 13, 11, 0.1);
  border-radius: 50%;
}

.contact-orbit::before {
  inset: 50px;
}

.contact-orbit::after {
  inset: 112px;
}

.contact-orbit > i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--night);
}

.contact-orbit > i:nth-child(1) {
  bottom: 50px;
  left: 52px;
}

.contact-orbit > i:nth-child(2) {
  bottom: 7px;
  left: 50%;
}

.contact-orbit > i:nth-child(3) {
  right: 26px;
  bottom: 92px;
}

.contact-head,
.contact-form {
  position: relative;
  z-index: 2;
}

.contact-head .feature-kicker {
  color: #4d691f;
}

.contact-head h2 {
  margin: 0;
  font-size: clamp(38px, 3.85vw, 53px);
  font-weight: 630;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.contact-head > p:last-child {
  margin: 19px 0 0;
  color: rgba(16, 23, 19, 0.62);
  font-size: 13px;
}

.contact-form {
  margin-top: 35px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form label {
  display: block;
  margin-bottom: 12px;
}

.contact-form label > span {
  display: block;
  margin: 0 0 7px 2px;
  color: rgba(16, 23, 19, 0.58);
  font:
    700 9px ui-monospace,
    monospace;
  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 23, 19, 0.16);
  border-radius: 8px;
  outline: none;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 47px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 89px;
  padding: 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(16, 23, 19, 0.08);
}

.contact-form ::placeholder {
  color: rgba(16, 23, 19, 0.35);
}

.button-dark {
  width: 100%;
  margin-top: 4px;
  background: var(--ink);
  color: white;
}

.button-dark i {
  color: var(--lime);
}

.form-note {
  margin: 13px 3px 0;
  color: rgba(16, 23, 19, 0.5);
  font-size: 9px;
  line-height: 1.65;
}

.form-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note em {
  font-style: normal;
}

.form-result {
  display: block;
  max-height: 180px;
  overflow: auto;
  margin-top: 12px;
  padding: 13px;
  border: 1px solid rgba(16, 23, 19, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  white-space: pre-wrap;
  color: rgba(16, 23, 19, 0.7);
  font-size: 10px;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  padding: 37px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  background: var(--night);
  color: rgba(255, 255, 255, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  font:
    8px ui-monospace,
    monospace;
  letter-spacing: 0.08em;
}

.brand-footer {
  justify-self: start;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.5);
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0;
}

.footer-grid > span {
  justify-self: end;
}

.toast {
  position: fixed;
  z-index: 400;
  bottom: 28px;
  left: 50%;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
  background: rgba(8, 13, 11, 0.92);
  color: white;
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
  font-size: 11px;
  transition: 0.28s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (hover: hover) and (pointer: fine) {
  .site-nav .nav-cta:hover {
    border-color: var(--lime);
    background: var(--lime);
    color: var(--ink);
  }

  .site-nav .nav-cta:hover i {
    color: var(--ink);
  }

  .button:hover {
    transform: translateY(-2px);
  }

  .button-primary:hover {
    background: var(--lime-bright);
    box-shadow: 0 15px 36px rgba(92, 230, 210, 0.2);
  }

  .text-link:hover {
    color: white;
  }

  .feature-card:hover::after {
    opacity: 1;
  }

  .flow-card:hover {
    background: #0e1813;
  }

  .flow-card:hover::after {
    transform: scaleX(1);
  }

  .scenario-tabs button:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: white;
  }

  .button-dark:hover {
    background: #19271f;
  }
}

@media (max-width: 1180px) {
  .nav-edition {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto 1fr;
  }

  .site-nav {
    justify-self: end;
  }

  .hero {
    min-height: 1210px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 62px;
    padding-top: 148px;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
    max-width: 740px;
  }

  .hero-stage {
    width: 790px;
    margin: 0 auto -160px;
  }

  .sim-window {
    transform: rotateY(-3deg) rotateX(1deg);
  }

  .scroll-cue {
    display: none;
  }

  .heading-grid {
    gap: 38px;
  }

  .scenario-shell {
    gap: 44px;
  }

  .closing-grid {
    gap: 48px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .site-header.scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-shell {
    height: 70px;
  }

  .menu-toggle {
    position: relative;
    z-index: 203;
    justify-self: end;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
  }

  .menu-toggle span {
    width: 23px;
    height: 1px;
    background: white;
    transition: transform 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .brand {
    position: relative;
    z-index: 203;
  }

  .site-nav {
    position: fixed;
    z-index: 202;
    inset: 0;
    justify-self: stretch;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
    padding: 80px 32px;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    background:
      radial-gradient(circle at 80% 20%, rgba(92, 230, 210, 0.09), transparent 30%),
      rgba(8, 13, 11, 0.985);
    font-size: 27px;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .site-nav .nav-cta {
    min-height: 48px;
    margin-top: 10px;
    padding: 0 18px;
    font-size: 15px;
  }

  .site-nav .numyra-locale-control-promo {
    width: min(100%, 260px);
  }

  .site-nav .numyra-locale-control-promo select {
    width: 100%;
    max-width: none;
    min-height: 42px;
    padding-inline: 14px 32px;
    font-size: 14px;
  }

  html[lang]:not([lang="zh-CN"]) .site-nav {
    gap: 21px;
    font-size: clamp(22px, 7vw, 27px);
  }

  .hero {
    min-height: 1080px;
  }

  .hero-grid {
    gap: 46px;
    padding: 126px 0 50px;
  }

  .hero h1 {
    font-size: clamp(48px, 10.7vw, 72px);
  }

  .hero-stage {
    width: 790px;
    margin-left: -10px;
    transform: scale(0.67);
    transform-origin: top left;
  }

  .hero-stage .sim-window {
    transform: none;
  }

  .signal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .signal-grid p:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .signal-grid p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 96px 0;
  }

  .heading-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .heading-grid > p {
    max-width: 580px;
  }

  .feature-layout {
    grid-template-columns: 1fr;
  }

  .feature-large {
    grid-column: auto;
    min-height: 850px;
    grid-template-columns: 1fr;
  }

  .feature-large .feature-copy {
    align-self: start;
    margin-top: 76px;
  }

  .strategy-field {
    width: min(100%, 500px);
    justify-self: center;
  }

  .flow-grid {
    grid-template-columns: 1fr 1fr;
  }

  .scenario-shell {
    grid-template-columns: 1fr;
    margin-top: 105px;
    padding-top: 88px;
  }

  .closing-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    text-align: center;
  }

  .brand-footer,
  .footer-grid > span {
    justify-self: center;
  }

  .footer-grid p {
    margin: 0;
  }
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: 70px;
  }

  .brand-type small {
    display: none;
  }

  .hero {
    min-height: 940px;
  }

  .hero-grid {
    gap: 38px;
    padding-top: 113px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 8px;
    letter-spacing: 0.11em;
  }

  .hero h1 {
    font-size: 43px;
    line-height: 1.08;
  }

  .hero h1 em::after {
    display: none;
  }

  .hero-intro {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.78;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    margin: 29px 0 38px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 20px 0;
  }

  .hero-metrics > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-stage {
    margin-left: -6px;
    transform: scale(0.445);
  }

  .note-profit {
    left: -24px;
  }

  .signal-grid p {
    min-height: 96px;
    padding: 0 14px;
  }

  .signal-grid p > span {
    display: none;
  }

  .signal-grid p > b {
    font-size: 12px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .scenario-copy h2,
  .faq-wrap h2 {
    font-size: 39px;
  }

  .feature-card {
    min-height: 430px;
    padding: 25px;
  }

  .feature-large {
    min-height: 730px;
  }

  .feature-large .card-topline {
    top: 25px;
    right: 25px;
    left: 25px;
  }

  .feature-large .feature-copy {
    margin-top: 65px;
  }

  .feature-copy h3,
  .feature-copy.compact h3 {
    font-size: 33px;
  }

  .feature-tags {
    flex-wrap: wrap;
  }

  .strategy-field {
    align-self: end;
    margin-bottom: 8px;
  }

  .field-label {
    min-width: 78px;
    padding: 8px;
    font-size: 6px;
  }

  .scale-visual {
    right: 25px;
    left: 25px;
  }

  .scale-number {
    font-size: 40px;
  }

  .flow-grid {
    grid-template-columns: 1fr;
  }

  .flow-card {
    min-height: 250px;
  }

  .flow-card > b {
    margin-top: 65px;
  }

  .scenario-shell {
    margin-top: 92px;
    padding-top: 74px;
  }

  .scenario-panel {
    min-height: 605px;
    padding: 17px;
  }

  .scenario-visual {
    height: 250px;
  }

  .scenario-content {
    padding-top: 24px;
  }

  .scenario-content ul {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .scenario-content li {
    padding-top: 8px;
  }

  .closing-grid {
    gap: 60px;
  }

  .faq-list summary {
    grid-template-columns: 27px 1fr;
    font-size: 14px;
  }

  .faq-list details p {
    margin-left: 35px;
  }

  .contact-card {
    margin-inline: -3px;
    padding: 31px 21px;
  }

  .contact-head h2 {
    font-size: 37px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .sim-window {
    transform: none !important;
  }
}

/* -----------------------------------------------------------------------
   NUMYRA layout × HYSKJ palette
   The original light/dark section rhythm and component geometry are kept.
   Only the color atmosphere is translated to teal, aqua, cyan-black and
   a restrained amber secondary accent.
   ----------------------------------------------------------------------- */

::selection {
  color: #020706;
  background: rgba(92, 230, 210, 0.42);
}

.page-progress i {
  background: linear-gradient(90deg, var(--lime), var(--amber));
  box-shadow: 0 0 18px rgba(92, 230, 210, 0.72);
}

.site-header.scrolled {
  border-color: rgba(210, 255, 244, 0.08);
  background: rgba(2, 8, 7, 0.82);
}

.brand-mark {
  border-color: rgba(92, 230, 210, 0.72);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.17), transparent 28%),
    linear-gradient(145deg, rgba(92, 230, 210, 0.14), rgba(232, 180, 90, 0.07));
  box-shadow: 0 0 26px rgba(92, 230, 210, 0.08);
}

.brand-mark::after {
  background: linear-gradient(90deg, var(--lime), var(--amber));
}

.nav-edition i {
  box-shadow: 0 0 14px rgba(92, 230, 210, 0.9);
}

.nav-cta i,
.text-link i {
  color: var(--amber);
}

.hero {
  background:
    radial-gradient(circle at 80% 22%, rgba(72, 222, 192, 0.14), transparent 31%),
    radial-gradient(circle at 88% 76%, rgba(232, 180, 90, 0.065), transparent 25%),
    linear-gradient(145deg, #020706 0%, #03100d 52%, #06231d 100%);
}

.hero::before {
  background: linear-gradient(90deg, rgba(210, 255, 244, 0.022) 1px, transparent 1px);
}

.hero-grid-pattern {
  background-image:
    linear-gradient(rgba(210, 255, 244, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210, 255, 244, 0.04) 1px, transparent 1px);
}

.hero-orb-b {
  background: rgba(73, 213, 185, 0.17);
}

.hero h1 em {
  color: transparent;
  background: linear-gradient(92deg, #75edd7 0%, #b7e5ae 54%, #efc873 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero h1 em::after {
  border-color: #d9bd72;
}

.button-primary {
  border: 1px solid rgba(92, 230, 210, 0.46);
  background: linear-gradient(112deg, #65e5cf 0%, #65cdb7 72%, #cdb66d 120%);
  color: #02100d;
  box-shadow: 0 12px 34px rgba(60, 199, 174, 0.17);
}

.sim-window {
  border-color: rgba(196, 255, 241, 0.17);
  background: #06120f;
  box-shadow:
    0 45px 90px rgba(0, 0, 0, 0.52),
    0 0 70px rgba(58, 211, 181, 0.06);
}

.sim-topbar,
.sim-side,
.market-chart,
.rank-card,
.decision-row {
  border-color: rgba(210, 255, 244, 0.09);
}

.sim-topbar,
.sim-side,
.market-chart,
.rank-card {
  background-color: rgba(2, 10, 8, 0.52);
}

.sim-kpis span,
.bar-chart > span.current,
.decision-row button {
  background: linear-gradient(135deg, #5ce6d2, #46bea9);
  color: #03120f;
}

.note-profit > i,
.note-settled > i,
.floating-note.note-profit i {
  color: var(--amber);
}

.signal-strip {
  border-color: rgba(8, 45, 37, 0.12);
  background: var(--paper-bright);
}

.signal-grid p > span,
.signal-grid p > small,
.heading-meta {
  color: #6f8982;
}

.highlights {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.72), transparent 34%),
    radial-gradient(circle at 88% 70%, rgba(92, 230, 210, 0.07), transparent 25%),
    var(--paper);
}

.feature-card {
  background: rgba(255, 255, 255, 0.46);
}

.feature-card::after {
  background: radial-gradient(circle 240px at var(--spot-x) var(--spot-y), rgba(92, 230, 210, 0.14), transparent 68%);
}

.feature-large {
  background:
    radial-gradient(circle at 78% 45%, rgba(73, 213, 185, 0.14), transparent 31%),
    linear-gradient(138deg, #071713, #03100d);
}

.feature-kicker,
.feature-large .feature-kicker {
  color: #36bca5;
}

.feature-large .feature-kicker {
  color: var(--lime);
}

.strategy-field {
  background: radial-gradient(circle, rgba(92, 230, 210, 0.09), transparent 60%);
}

.field-node {
  background: var(--amber);
  box-shadow: 0 0 14px rgba(232, 180, 90, 0.52);
}

.competitor-list .active {
  border-color: rgba(92, 230, 210, 0.32);
  background: #092019;
  box-shadow: 0 13px 26px rgba(3, 16, 13, 0.16);
}

.scale-line i:nth-child(4) {
  box-shadow: 0 0 0 6px rgba(92, 230, 210, 0.2);
}

.experience {
  background:
    radial-gradient(circle at 86% 28%, rgba(41, 149, 127, 0.1), transparent 27%),
    var(--night);
}

.flow-card {
  background: #06120f;
}

.flow-card::after {
  background: linear-gradient(90deg, var(--lime), var(--amber));
}

.scenario-tabs button[aria-selected="true"] {
  border-color: rgba(92, 230, 210, 0.72);
  background: linear-gradient(115deg, #5ce6d2, #66cbb5);
  color: #03120f;
}

.scenario-panel {
  background:
    radial-gradient(circle at 78% 16%, rgba(92, 230, 210, 0.07), transparent 33%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012));
}

.scenario-visual {
  background: #78e6d1;
}

.scenario-panel[data-mode="course"] .scenario-visual {
  background: #a8f5e3;
}

.scenario-panel[data-mode="training"] .scenario-visual {
  background: #efc873;
}

.scenario-panel[data-mode="club"] .scenario-visual {
  background: #e0d8ff;
}

.scenario-content > small,
.matrix-code {
  color: var(--amber);
}

.closing {
  background:
    radial-gradient(circle at 85% 25%, rgba(255, 255, 255, 0.8), transparent 34%),
    radial-gradient(circle at 18% 84%, rgba(92, 230, 210, 0.06), transparent 28%),
    var(--paper);
}

.contact-card {
  background:
    radial-gradient(circle at 88% 7%, rgba(232, 180, 90, 0.25), transparent 31%),
    linear-gradient(145deg, #78e6d1 0%, #66cbb5 64%, #55bfa9 100%);
  box-shadow: 0 28px 75px rgba(14, 87, 73, 0.18);
}

.contact-head .feature-kicker {
  color: #135f52;
}

.contact-orbit > i {
  background: #06231d;
}

.button-dark {
  background: linear-gradient(115deg, #03120f, #0a3028);
}

.button-dark i {
  color: var(--amber);
}

.site-footer {
  border-color: rgba(210, 255, 244, 0.08);
  background: #020706;
}

.toast {
  border: 1px solid rgba(92, 230, 210, 0.2);
  background: rgba(5, 25, 20, 0.95);
}

@media (hover: hover) and (pointer: fine) {
  .button-primary:hover,
  .site-nav .nav-cta:hover {
    box-shadow: 0 16px 42px rgba(60, 199, 174, 0.23);
  }

  .flow-card:hover {
    background:
      radial-gradient(circle at 50% 110%, rgba(92, 230, 210, 0.1), transparent 46%),
      #071713;
  }
}

@media (max-width: 860px) {
  .site-nav {
    background: rgba(2, 9, 7, 0.98);
  }
}
