:root {
  --bg: #080b13;
  --bg-soft: #0d111d;
  --panel: rgba(18, 23, 38, 0.78);
  --panel-solid: #121726;
  --panel-raised: #171d2e;
  --line: rgba(175, 185, 218, 0.14);
  --line-strong: rgba(175, 185, 218, 0.25);
  --text: #f5f7ff;
  --text-soft: #c3c9dc;
  --muted: #858da5;
  --violet: #8275ff;
  --violet-light: #a89fff;
  --cyan: #42d5ca;
  --amber: #e7ba66;
  --rose: #f07f9e;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shell: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -20%, rgba(102, 93, 255, 0.13), transparent 42%),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

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

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #0a0d16;
  background: white;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

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

.ambient,
.page-grid {
  position: fixed;
  z-index: -1;
  pointer-events: none;
}

.ambient {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}

.ambient-one {
  top: 12vh;
  left: -260px;
  background: #6058ff;
}

.ambient-two {
  top: 52vh;
  right: -280px;
  background: #24bdc3;
}

.page-grid {
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(143, 152, 187, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 152, 187, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 76px;
  border-bottom: 1px solid transparent;
  background: rgba(8, 11, 19, 0.6);
  backdrop-filter: blur(20px) saturate(130%);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(8, 11, 19, 0.88);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(94, 84, 255, 0.2);
}

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

.brand-copy strong {
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-inline: auto;
}

.site-nav a {
  position: relative;
  padding-block: 10px;
  color: var(--text-soft);
  font-size: 14px;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--violet-light);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
.text-link:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible,
.modal-close:focus-visible,
input:focus-visible {
  outline: 2px solid var(--violet-light);
  outline-offset: 3px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #7568ff, #8a74ff 58%, #7771ff);
  box-shadow: 0 16px 38px rgba(102, 88, 255, 0.27), inset 0 1px rgba(255, 255, 255, 0.18);
}

.button-primary:hover {
  box-shadow: 0 20px 46px rgba(102, 88, 255, 0.34), inset 0 1px rgba(255, 255, 255, 0.18);
}

.button-secondary,
.button-quiet {
  border-color: var(--line-strong);
  background: rgba(18, 23, 38, 0.66);
}

.button-secondary:hover,
.button-quiet:hover {
  border-color: rgba(167, 157, 255, 0.45);
  background: rgba(30, 35, 55, 0.84);
}

.button-quiet {
  min-height: 42px;
  padding-inline: 15px;
  color: var(--text-soft);
  font-weight: 600;
}

.button-note {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 600;
}

.button-full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  align-items: center;
  min-height: 760px;
  padding-block: 76px 100px;
  gap: 68px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-state {
  margin-left: 4px;
  padding-left: 13px;
  border-left: 1px solid var(--line-strong);
  color: var(--violet-light);
  font-weight: 600;
  letter-spacing: 0;
}

.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(66, 213, 202, 0.72);
}

.live-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(66, 213, 202, 0.42);
  border-radius: inherit;
  content: "";
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% { opacity: 0.9; transform: scale(0.65); }
  70%, 100% { opacity: 0; transform: scale(1.6); }
}

.hero h1 {
  max-width: 710px;
  text-wrap: balance;
  margin: 0;
  font-size: clamp(46px, 4.6vw, 70px);
  font-weight: 720;
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.mobile-break {
  display: none;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(95deg, #fff 0%, #c7c1ff 44%, #63dfd6 112%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 54px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.hero-proof > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--violet-light);
  background: rgba(128, 116, 255, 0.06);
}

.hero-proof p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.hero-proof strong {
  font-size: 12px;
}

.hero-proof small {
  color: var(--muted);
  font-size: 10px;
}

.hero-visual {
  position: relative;
  min-height: 550px;
}

.core-card {
  position: absolute;
  inset: 20px 14px 20px 14px;
  overflow: hidden;
  border: 1px solid rgba(165, 156, 255, 0.24);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 40%, rgba(112, 95, 255, 0.18), transparent 45%),
    linear-gradient(145deg, rgba(25, 31, 51, 0.96), rgba(10, 14, 25, 0.96));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.04);
}

.core-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(139, 147, 181, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 147, 181, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.core-card-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 60px;
  padding-inline: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ee7180;
}

.terminal-dots i:nth-child(2) { background: #e7b85e; }
.terminal-dots i:nth-child(3) { background: #4bd0a8; }

.encrypted {
  justify-self: end;
  color: rgba(66, 213, 202, 0.68);
}

.core-stage {
  position: relative;
  display: grid;
  height: 355px;
  place-items: center;
}

.core-sphere {
  position: relative;
  z-index: 3;
  display: grid;
  width: 126px;
  height: 126px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  text-align: center;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.42), transparent 22%),
    linear-gradient(145deg, #9b8cff, #655dff 55%, #3ccfc4);
  box-shadow: 0 0 60px rgba(110, 94, 255, 0.36), inset -18px -20px 44px rgba(30, 18, 94, 0.28);
}

.core-sphere::after {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: inherit;
  content: "";
}

.core-sphere span {
  font-size: 23px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.core-sphere small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(160, 151, 255, 0.17);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.orbit-outer {
  width: 315px;
  height: 210px;
  animation: orbitTurn 22s linear infinite;
}

.orbit-inner {
  width: 230px;
  height: 154px;
  border-color: rgba(66, 213, 202, 0.18);
  transform: rotate(34deg);
  animation: orbitTurnReverse 16s linear infinite;
}

.orbit i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet-light);
  box-shadow: 0 0 15px currentColor;
}

.orbit-outer i:nth-child(1) { top: 16%; left: 7%; }
.orbit-outer i:nth-child(2) { right: 4%; bottom: 34%; color: var(--cyan); background: var(--cyan); }
.orbit-outer i:nth-child(3) { bottom: 3%; left: 38%; width: 4px; height: 4px; }
.orbit-inner i:nth-child(1) { top: 4%; right: 31%; width: 5px; height: 5px; color: var(--cyan); background: var(--cyan); }
.orbit-inner i:nth-child(2) { bottom: 10%; left: 20%; }

@keyframes orbitTurn {
  to { transform: rotate(346deg); }
}

@keyframes orbitTurnReverse {
  to { transform: rotate(-326deg); }
}

.signal {
  position: absolute;
  z-index: 3;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted);
  background: rgba(10, 14, 25, 0.78);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.signal-one { top: 90px; left: 48px; }
.signal-two { top: 92px; right: 50px; }
.signal-three { right: 60px; bottom: 53px; }

.core-status {
  position: relative;
  z-index: 2;
  display: grid;
  padding: 0 22px 18px;
}

.core-status > div {
  display: flex;
  justify-content: space-between;
  padding-block: 11px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 11px;
}

.core-status strong {
  font-size: 10px;
}

.status-ready { color: var(--cyan); }
.status-beta { color: var(--violet-light); }

.floating-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--text-soft);
  background: rgba(14, 18, 30, 0.84);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  font-size: 10px;
}

.floating-chip span {
  color: var(--violet-light);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.chip-one { top: 92px; left: -18px; }
.chip-two { top: 251px; right: -15px; }
.chip-three { bottom: 58px; left: -13px; }

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(17, 22, 36, 0.58);
}

.trust-inner {
  padding-block: 17px;
}

.trust-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  text-align: center;
}

.trust-inner span {
  margin-right: 10px;
  color: var(--amber);
  font-weight: 700;
}

.section {
  padding-block: 120px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading > p {
  max-width: 455px;
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.kicker {
  margin: 0 0 14px;
  color: var(--violet-light);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.section h2,
.closing h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 11px;
}

.status-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.status-legend strong {
  color: var(--text-soft);
}

.status-legend i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.dot-ready { background: var(--cyan); box-shadow: 0 0 8px rgba(66, 213, 202, 0.55); }
.dot-beta { background: var(--violet-light); box-shadow: 0 0 8px rgba(168, 159, 255, 0.5); }
.dot-research { background: var(--amber); box-shadow: 0 0 8px rgba(231, 186, 102, 0.45); }

.agent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.agent-card {
  position: relative;
  display: flex;
  min-height: 390px;
  overflow: hidden;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(20, 25, 41, 0.84), rgba(12, 16, 27, 0.9));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
}

.agent-card:hover {
  border-color: rgba(159, 150, 255, 0.31);
  background: linear-gradient(145deg, rgba(24, 29, 47, 0.9), rgba(13, 17, 29, 0.94));
  transform: translateY(-3px);
}

.agent-featured {
  min-height: 540px;
  grid-row: span 2;
  background:
    radial-gradient(circle at 78% 26%, rgba(109, 96, 255, 0.19), transparent 34%),
    linear-gradient(145deg, rgba(25, 30, 51, 0.94), rgba(12, 16, 28, 0.94));
}

.agent-coming {
  min-height: 220px;
  opacity: 0.7;
}

.agent-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.agent-number {
  color: rgba(199, 205, 226, 0.35);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 9px;
  font-weight: 700;
}

.status-pill-beta {
  border-color: rgba(158, 147, 255, 0.2);
  color: var(--violet-light);
  background: rgba(130, 117, 255, 0.08);
}

.status-pill-research {
  border-color: rgba(231, 186, 102, 0.18);
  color: var(--amber);
  background: rgba(231, 186, 102, 0.06);
}

.agent-symbol {
  position: absolute;
  top: 76px;
  right: 32px;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: rgba(15, 19, 32, 0.7);
}

.nightlab-symbol {
  width: 112px;
  height: 112px;
  border-radius: 36px;
  box-shadow: 0 20px 50px rgba(89, 76, 255, 0.16);
}

.nightlab-symbol span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 25%, rgba(255, 255, 255, 0.62), transparent 20%),
    linear-gradient(145deg, var(--violet-light), #625aff 60%, var(--cyan));
  box-shadow: 0 0 30px rgba(117, 104, 255, 0.5);
}

.sports-symbol {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 5px;
  padding-bottom: 20px;
}

.sports-symbol span {
  width: 7px;
  border-radius: 4px;
  background: linear-gradient(to top, var(--violet), var(--cyan));
}

.sports-symbol span:nth-child(1) { height: 20px; opacity: 0.55; }
.sports-symbol span:nth-child(2) { height: 35px; }
.sports-symbol span:nth-child(3) { height: 27px; opacity: 0.75; }

.copy-symbol span {
  position: absolute;
  width: 34px;
  height: 25px;
  border: 1px solid var(--violet-light);
  border-radius: 8px;
}

.copy-symbol span:first-child { transform: translate(-8px, -7px); opacity: 0.45; }
.copy-symbol span:last-child { transform: translate(7px, 7px); }

.new-symbol {
  position: static;
  margin: 24px 0 8px;
  color: var(--muted);
  font-size: 30px;
  font-weight: 200;
}

.agent-type {
  margin: 92px 0 10px;
  color: var(--violet-light);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.agent-featured .agent-type {
  margin-top: 145px;
}

.agent-coming .agent-type {
  margin-top: 8px;
}

.agent-card h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.025em;
}

.agent-featured h3 {
  font-size: 32px;
}

.agent-card h3 small {
  margin-left: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.agent-card > p:not(.agent-type) {
  max-width: 440px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.capability-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
  font-size: 11px;
}

.capability-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mini-state {
  min-width: 42px;
  padding: 3px 5px;
  border-radius: 5px;
  font-size: 8px;
  font-weight: 700;
  text-align: center;
}

.mini-state.ready { color: var(--cyan); background: rgba(66, 213, 202, 0.08); }
.mini-state.beta { color: var(--violet-light); background: rgba(130, 117, 255, 0.1); }
.mini-state.research { color: var(--amber); background: rgba(231, 186, 102, 0.08); }

.agent-card-foot {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.agent-card-foot p {
  display: grid;
  gap: 5px;
  margin: 0;
}

.agent-card-foot small {
  color: var(--muted);
  font-size: 9px;
}

.agent-card-foot strong {
  font-size: 24px;
}

.agent-card-foot strong span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
}

.text-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  padding: 0;
  border: 0;
  color: var(--violet-light);
  background: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.text-link-button {
  padding-top: 20px;
}

.text-link-muted {
  color: var(--muted);
  cursor: default;
}

.product-section {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 55%, rgba(107, 95, 255, 0.11), transparent 32%),
    rgba(13, 17, 29, 0.63);
}

.product-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 86px;
}

.product-lead {
  margin: 24px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.8;
}

.system-loop {
  display: grid;
  gap: 0;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.system-loop li {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding-bottom: 25px;
}

.system-loop li:not(:last-child)::before {
  position: absolute;
  top: 35px;
  bottom: 3px;
  left: 15px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--violet), rgba(130, 117, 255, 0.05));
}

.system-loop li > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(153, 142, 255, 0.25);
  border-radius: 9px;
  color: var(--violet-light);
  background: rgba(130, 117, 255, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.system-loop strong {
  font-size: 14px;
}

.system-loop p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.manager-panel {
  overflow: hidden;
  border: 1px solid rgba(165, 156, 255, 0.23);
  border-radius: var(--radius-lg);
  background: rgba(11, 15, 26, 0.88);
  box-shadow: var(--shadow);
}

.manager-head {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.manager-avatar {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 23%, rgba(255, 255, 255, 0.55), transparent 19%),
    linear-gradient(145deg, #9e91ff, #675dff 58%, #3accc2);
  box-shadow: 0 0 20px rgba(113, 98, 255, 0.35);
}

.manager-head > div:nth-child(2) {
  display: grid;
  gap: 4px;
}

.manager-head small {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.manager-head strong {
  font-size: 13px;
}

.manager-head .status-pill {
  margin-left: auto;
}

.conversation {
  display: grid;
  min-height: 300px;
  align-content: center;
  gap: 18px;
  padding: 32px;
  background:
    linear-gradient(rgba(138, 146, 177, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 146, 177, 0.035) 1px, transparent 1px);
  background-size: 30px 30px;
}

.message {
  display: grid;
  max-width: 82%;
  gap: 6px;
}

.message span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.message p {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text-soft);
  background: rgba(21, 26, 42, 0.82);
  font-size: 12px;
  line-height: 1.7;
}

.user-message {
  justify-self: end;
}

.user-message span {
  text-align: right;
}

.user-message p {
  border-color: rgba(149, 138, 255, 0.22);
  background: rgba(106, 92, 255, 0.12);
}

.manager-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 22px 20px;
}

.manager-capabilities span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 9px;
}

.panel-boundary {
  margin: 0;
  padding: 16px 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(231, 186, 102, 0.04);
  font-size: 10px;
  line-height: 1.6;
}

.panel-boundary span {
  margin-right: 7px;
  color: var(--amber);
}

.control-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.control-card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(18, 23, 38, 0.68);
}

.control-large {
  grid-row: span 2;
  min-height: 536px;
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(153, 142, 255, 0.23);
  border-radius: 13px;
  color: var(--violet-light);
  background: rgba(130, 117, 255, 0.08);
}

.control-card h3 {
  margin: 24px 0 0;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.control-card > p {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.78;
}

.boundary-diagram {
  display: grid;
  grid-template-columns: 1fr 94px 1fr;
  align-items: center;
  margin-top: 52px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(8, 11, 19, 0.55);
}

.boundary-diagram > div {
  display: grid;
  min-height: 110px;
  place-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  background: rgba(23, 29, 47, 0.72);
}

.boundary-diagram small {
  color: var(--muted);
  font-size: 9px;
}

.boundary-diagram strong {
  font-size: 12px;
}

.boundary-line {
  position: relative;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 8px;
  text-align: center;
}

.boundary-line i {
  position: relative;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet-light), transparent);
}

.boundary-line i::after {
  position: absolute;
  top: -3px;
  left: 48%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--violet-light);
  box-shadow: 0 0 10px var(--violet);
}

.source-tags,
.gate-line {
  display: flex;
  gap: 7px;
  margin-top: 25px;
}

.source-tags span,
.gate-line span,
.gate-line strong {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(8, 11, 19, 0.45);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.source-tags span:nth-child(2) { color: var(--violet-light); }
.source-tags span:nth-child(3) { color: var(--cyan); opacity: 0.5; }
.gate-line strong { margin-left: auto; color: var(--cyan); }

.purchase-section {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 43%, rgba(117, 103, 255, 0.14), transparent 32%),
    rgba(13, 17, 29, 0.68);
}

.purchase-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 70px;
}

.purchase-steps {
  display: grid;
}

.purchase-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 17px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.purchase-steps article:first-child {
  border-top: 1px solid var(--line);
}

.purchase-steps article > span {
  padding-top: 3px;
  color: var(--violet-light);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.purchase-steps strong {
  font-size: 15px;
}

.purchase-steps p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.price-card {
  padding: 30px;
  border: 1px solid rgba(164, 153, 255, 0.27);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(27, 32, 54, 0.96), rgba(12, 16, 27, 0.98));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.05);
}

.price-card-top,
.commission-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.price-card-top > div,
.commission-head > div {
  display: grid;
  gap: 5px;
}

.price-card-top small,
.commission-head small {
  color: var(--violet-light);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.price-card-top strong,
.commission-head strong {
  font-size: 13px;
}

.price {
  margin: 37px 0 0;
  font-size: 51px;
  font-weight: 740;
  letter-spacing: -0.05em;
}

.price > span {
  margin-right: 3px;
  color: var(--muted);
  font-size: 19px;
  vertical-align: top;
}

.price small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}

.price-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.asset-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 30px;
}

.asset-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text-soft);
  background: rgba(7, 10, 17, 0.36);
  font-size: 10px;
  font-weight: 700;
}

.asset-row i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #111724;
  background: var(--cyan);
  font-style: normal;
  font-size: 11px;
}

.asset-row span:nth-child(2) i { color: white; background: #4e92e6; }
.asset-row span:nth-child(3) i { color: white; background: var(--violet); }

.network-note {
  margin: 14px 0 25px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.network-note span {
  margin-right: 7px;
  color: var(--violet-light);
}

.microcopy {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.6;
  text-align: center;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.guide-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(18, 23, 38, 0.65);
}

.guide-index {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(194, 201, 222, 0.28);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.guide-visual {
  position: relative;
  display: grid;
  height: 165px;
  margin: -8px -8px 22px;
  place-items: center;
  border-radius: 15px;
  background:
    radial-gradient(circle at 50% 40%, rgba(125, 111, 255, 0.22), transparent 40%),
    rgba(8, 11, 19, 0.48);
}

.visual-download i:first-child {
  width: 59px;
  height: 46px;
  border: 1px solid var(--violet-light);
  border-radius: 9px 9px 5px 5px;
  box-shadow: 0 12px 28px rgba(105, 91, 255, 0.18);
}

.visual-download i:first-child::after {
  display: block;
  width: 6px;
  height: 6px;
  margin: 19px auto;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.visual-download i:last-child {
  position: absolute;
  bottom: 49px;
  width: 76px;
  height: 5px;
  border-radius: 2px 2px 7px 7px;
  background: rgba(167, 158, 255, 0.38);
}

.visual-license i:first-child {
  width: 64px;
  height: 45px;
  border: 1px solid rgba(168, 159, 255, 0.58);
  border-radius: 10px;
  transform: rotate(-6deg);
}

.visual-license i:last-child {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(66, 213, 202, 0.22);
  transform: translate(35px, 25px);
}

.visual-license i:last-child::after {
  position: absolute;
  top: 8px;
  left: 9px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
  content: "";
  transform: rotate(-45deg);
}

.visual-wallet i:first-child {
  width: 70px;
  height: 50px;
  border: 1px solid rgba(168, 159, 255, 0.58);
  border-radius: 12px;
}

.visual-wallet i:last-child {
  position: absolute;
  width: 31px;
  height: 20px;
  border: 1px solid var(--cyan);
  border-radius: 7px;
  background: rgba(8, 11, 19, 0.9);
  transform: translate(29px, 2px);
}

.visual-wallet i:last-child::after {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
}

.guide-card > small {
  color: var(--violet-light);
  font-size: 9px;
  font-weight: 700;
}

.guide-card h3 {
  margin: 10px 0 0;
  font-size: 20px;
}

.guide-card > p {
  min-height: 62px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.account-preview {
  border-block: 1px solid var(--line);
  background: rgba(13, 17, 29, 0.68);
}

.account-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 76px;
}

.account-copy > p:not(.kicker) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.account-copy ul {
  display: grid;
  gap: 12px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
  font-size: 12px;
}

.account-copy li {
  display: flex;
  gap: 10px;
}

.account-copy li span {
  color: var(--cyan);
}

.account-window {
  position: relative;
  display: grid;
  grid-template-columns: 152px 1fr;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(159, 150, 255, 0.22);
  border-radius: var(--radius-lg);
  background: #101522;
  box-shadow: var(--shadow);
}

.preview-label {
  position: absolute;
  z-index: 3;
  top: 13px;
  right: 14px;
  padding: 6px 9px;
  border: 1px solid rgba(231, 186, 102, 0.18);
  border-radius: 7px;
  color: var(--amber);
  background: rgba(17, 22, 36, 0.82);
  font-size: 8px;
}

.window-sidebar {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 20px 14px;
  border-right: 1px solid var(--line);
  background: rgba(8, 11, 19, 0.46);
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.window-brand strong {
  font-size: 13px;
}

.window-sidebar > span {
  padding: 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 9px;
}

.window-sidebar > span.active {
  color: var(--violet-light);
  background: rgba(130, 117, 255, 0.09);
}

.window-main {
  padding: 63px 28px 28px;
}

.window-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.window-title > div {
  display: grid;
  gap: 6px;
}

.window-title small {
  color: var(--muted);
  font-size: 8px;
}

.window-title strong {
  font-size: 20px;
}

.window-title > span {
  color: rgba(199, 204, 225, 0.25);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.license-tile {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(23, 29, 47, 0.62);
}

.tile-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.45), transparent 18%),
    linear-gradient(145deg, #9e91ff, #655bff 58%, #3ccfc4);
}

.license-tile > div:nth-child(2) {
  display: grid;
  gap: 4px;
}

.license-tile small {
  color: var(--violet-light);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
}

.license-tile strong {
  font-size: 15px;
}

.license-tile p {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 8px;
}

.license-tile button {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  font-size: 8px;
}

.window-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.window-stats > div {
  display: grid;
  min-height: 88px;
  align-content: space-between;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(8, 11, 19, 0.32);
}

.window-stats span {
  color: var(--muted);
  font-size: 8px;
}

.window-stats strong {
  color: var(--text-soft);
  font-size: 12px;
}

.referral-section {
  background:
    radial-gradient(circle at 25% 50%, rgba(66, 213, 202, 0.07), transparent 28%);
}

.referral-layout {
  display: grid;
  grid-template-columns: 1fr 430px;
  align-items: center;
  gap: 90px;
}

.referral-copy > p:not(.kicker) {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.rate-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 31px;
}

.rate-cards > div {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(18, 23, 38, 0.56);
}

.rate-cards small,
.rate-cards span {
  color: var(--muted);
  font-size: 9px;
}

.rate-cards strong {
  color: var(--violet-light);
  font-size: 34px;
  letter-spacing: -0.04em;
}

.rate-cards > div:nth-child(2) strong {
  color: var(--cyan);
}

.referral-rule {
  font-size: 10px !important;
}

.commission-card {
  padding: 30px;
  border: 1px solid rgba(66, 213, 202, 0.2);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(23, 31, 46, 0.96), rgba(11, 15, 25, 0.98));
  box-shadow: var(--shadow);
}

.commission-head > span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  font-size: 8px;
}

.commission-card > label {
  display: block;
  margin-top: 28px;
  color: var(--muted);
  font-size: 9px;
}

.amount-input {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: rgba(7, 10, 17, 0.45);
}

.amount-input > span {
  color: var(--muted);
}

.amount-input input {
  width: 100%;
  height: 52px;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: 22px;
  font-weight: 700;
}

.amount-input small {
  color: var(--muted);
  font-size: 8px;
}

.amount-input.invalid {
  border-color: rgba(240, 127, 158, 0.46);
}

.commission-result {
  display: grid;
  gap: 0;
  margin-block: 21px 25px;
}

.commission-result > div {
  display: flex;
  justify-content: space-between;
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.commission-result strong {
  color: var(--text-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.commission-result .commission-total {
  padding-top: 17px;
  border-bottom: 0;
  color: var(--text-soft);
}

.commission-total strong {
  color: var(--cyan);
  font-size: 14px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
}

.faq-heading h2 {
  font-size: clamp(32px, 3.6vw, 46px);
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--violet-light);
  font-size: 20px;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -6px 0 24px;
  padding-right: 40px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 100px;
  padding: 55px;
  border: 1px solid rgba(162, 151, 255, 0.23);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 50%, rgba(72, 211, 202, 0.1), transparent 26%),
    radial-gradient(circle at 25% 50%, rgba(116, 103, 255, 0.16), transparent 34%),
    rgba(18, 23, 38, 0.82);
  box-shadow: var(--shadow);
}

.closing h2 {
  max-width: 680px;
  font-size: clamp(31px, 3.5vw, 48px);
}

.closing > div > p:not(.kicker) {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.closing-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(6, 9, 15, 0.75);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-block: 58px 48px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 130px);
  gap: 32px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 4px;
  font-size: 11px;
}

.footer-links a,
.footer-links button {
  padding: 0;
  border: 0;
  color: var(--muted);
  background: none;
  cursor: pointer;
  font-size: 10px;
  text-align: left;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--text-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
}

.footer-bottom p {
  margin: 0;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 5, 9, 0.76);
  cursor: default;
  backdrop-filter: blur(12px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  padding: 34px;
  border: 1px solid rgba(162, 151, 255, 0.27);
  border-radius: 24px;
  background: linear-gradient(150deg, #1a2034, #0f1421);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.6);
  animation: modalIn 180ms ease-out both;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(8, 11, 19, 0.4);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.modal-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(157, 146, 255, 0.26);
  border-radius: 15px;
  color: var(--violet-light);
  background: rgba(130, 117, 255, 0.09);
  font-size: 20px;
}

.modal-card h2 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.modal-card > p:not(.kicker) {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.modal-boundary {
  display: flex;
  justify-content: space-between;
  margin-block: 24px;
  padding: 13px 0;
  border-block: 1px solid var(--line);
  font-size: 9px;
}

.modal-boundary span {
  color: var(--muted);
}

.modal-boundary strong {
  color: var(--amber);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 94px;
  }

  .hero-copy {
    max-width: 760px;
    text-align: center;
    justify-self: center;
  }

  .eyebrow,
  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-visual {
    width: min(100%, 590px);
    justify-self: center;
  }

  .product-layout,
  .account-layout,
  .referral-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .product-copy,
  .account-copy,
  .referral-copy {
    max-width: 700px;
  }

  .purchase-grid {
    grid-template-columns: 1fr 380px;
    gap: 38px;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 68px;
  }

  .header-inner {
    position: relative;
  }

  .header-account {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    margin-left: auto;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(18, 23, 38, 0.7);
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 17px;
    height: 1px;
    background: var(--text-soft);
    transition: transform 160ms ease;
  }

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

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

  .site-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 24px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 11, 19, 0.97);
    backdrop-filter: blur(20px);
    transform: translateY(-120%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 200ms ease, visibility 0s linear 200ms;
  }

  .site-nav.open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .section {
    padding-block: 90px;
  }

  .section-heading {
    display: grid;
    align-items: start;
    gap: 20px;
  }

  .agent-grid,
  .control-grid,
  .guide-grid,
  .purchase-grid,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .agent-featured,
  .control-large {
    grid-row: auto;
  }

  .agent-featured {
    min-height: 530px;
  }

  .control-large {
    min-height: 520px;
  }

  .price-card {
    width: min(100%, 470px);
  }

  .faq-section {
    gap: 44px;
  }

  .closing {
    display: grid;
  }

  .footer-top {
    display: grid;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .hero {
    min-height: auto;
    padding-block: 72px 75px;
    gap: 50px;
  }

  .eyebrow {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 20px;
  }

  .eyebrow-state {
    width: 100%;
    margin: 3px 0 0 17px;
    padding-left: 0;
    border-left: 0;
  }

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

  .hero h1 {
    font-size: clamp(37px, 11.5vw, 52px);
  }

  .mobile-break {
    display: initial;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.78;
  }

  .hero-actions {
    display: grid;
    justify-content: stretch;
  }

  .hero-proof {
    display: grid;
    justify-content: start;
    gap: 14px;
    margin-top: 38px;
  }

  .hero-visual {
    min-height: 450px;
  }

  .core-card {
    inset: 0;
    border-radius: 23px;
  }

  .core-stage {
    height: 295px;
    transform: scale(0.83);
  }

  .core-card-head {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .core-card-head > span:nth-child(2) {
    text-align: right;
  }

  .encrypted {
    display: none;
  }

  .core-status {
    padding-inline: 17px;
  }

  .floating-chip {
    display: none;
  }

  .trust-inner p {
    text-align: left;
  }

  .section {
    padding-block: 76px;
  }

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

  .section h2,
  .closing h2 {
    font-size: 34px;
  }

  .status-legend {
    display: grid;
    gap: 11px;
  }

  .agent-card {
    min-height: 420px;
    padding: 23px;
  }

  .agent-featured {
    min-height: 560px;
  }

  .agent-symbol {
    top: 72px;
    right: 23px;
    transform: scale(0.8);
    transform-origin: top right;
  }

  .agent-card-foot {
    display: grid;
    gap: 18px;
  }

  .product-layout,
  .account-layout,
  .referral-layout {
    gap: 45px;
  }

  .conversation {
    min-height: 330px;
    padding: 23px 18px;
  }

  .message {
    max-width: 92%;
  }

  .control-card,
  .price-card,
  .commission-card {
    padding: 23px;
  }

  .control-large {
    min-height: auto;
  }

  .boundary-diagram {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
    padding: 17px;
  }

  .boundary-line {
    padding-block: 5px;
  }

  .boundary-line i {
    width: 1px;
    height: 32px;
    margin-inline: auto;
    background: linear-gradient(transparent, var(--violet-light), transparent);
  }

  .boundary-line i::after {
    top: 42%;
    left: -3px;
  }

  .gate-line {
    flex-wrap: wrap;
  }

  .gate-line strong {
    margin-left: 0;
  }

  .purchase-section .section-heading > p {
    font-size: 12px;
  }

  .price {
    font-size: 43px;
  }

  .account-window {
    grid-template-columns: 1fr;
    min-height: 400px;
  }

  .window-sidebar {
    display: none;
  }

  .window-main {
    padding: 65px 17px 22px;
  }

  .license-tile {
    grid-template-columns: 43px 1fr;
  }

  .license-tile button {
    display: none;
  }

  .window-stats {
    grid-template-columns: 1fr;
  }

  .window-stats > div {
    min-height: 62px;
  }

  .rate-cards {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    gap: 18px;
    font-size: 13px;
    line-height: 1.5;
  }

  .faq-list details p {
    padding-right: 10px;
  }

  .closing {
    margin-bottom: 70px;
    padding: 34px 24px;
  }

  .closing-actions {
    display: grid;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
  }

  .footer-bottom {
    display: grid;
    line-height: 1.6;
  }

  .modal-card {
    padding: 30px 23px 23px;
  }
}

@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;
  }

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