:root {
  --bg: #080a0f;
  --deep: #0d0d1a;
  --panel: #111827;
  --panel-2: #0b1b25;
  --lime: #b6ff2e;
  --purple: #7b4fff;
  --gold: #f5a623;
  --text: #e8eaf0;
  --muted: #8b90a7;
  --border: #252c3a;
  --cyan: #42c8ff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 10%, rgba(123, 79, 255, 0.24), transparent 32rem),
    radial-gradient(circle at 12% 35%, rgba(182, 255, 46, 0.12), transparent 24rem),
    linear-gradient(180deg, #080a0f 0%, #090b13 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(8, 10, 15, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  box-shadow: 0 0 0 1px rgba(182, 255, 46, 0.16), 0 12px 32px rgba(123, 79, 255, 0.18);
  animation: logoBreath 4.4s ease-in-out infinite;
}
.brand span { display: grid; gap: 0; line-height: 1.1; }
.brand small { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }

.nav {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 760;
}

.nav a:hover { color: var(--lime); }

.menu-toggle { display: none !important; }

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-trigger,
.lang-pill,
.menu-button {
  min-width: 44px;
  min-height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(245, 166, 35, 0.22);
  background: rgba(245, 166, 35, 0.08);
  color: #ffe6ad;
}

.search-trigger {
  display: grid;
  place-items: center;
  font-size: 26px;
  line-height: 1;
}

.lang-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  font: inherit;
  font-weight: 900;
}

.lang-pill i { color: var(--muted); font-style: normal; }

.language-menu {
  position: relative;
}

.language-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  display: grid;
  width: 220px;
  padding: 8px;
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 0%, rgba(123, 79, 255, 0.2), transparent 8rem),
    rgba(9, 10, 15, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.language-menu:hover .language-options,
.language-menu:focus-within .language-options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.language-options a {
  padding: 9px 10px;
  border-radius: 12px;
  color: #d8dcea;
  font-size: 13px;
  font-weight: 850;
}

.language-options a:hover,
.language-options a.active {
  color: #fff4c8;
  background: rgba(245, 166, 35, 0.12);
}

.menu-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--lime);
}

.mobile-drawer { display: none !important; }

main { overflow: hidden; }

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: 64px clamp(20px, 5vw, 72px) 46px;
}

.hero-copy h1 {
  max-width: 880px;
  margin: 10px 0 22px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1.04;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead {
  max-width: 720px;
  color: #c9cede;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(123, 79, 255, 0.32);
  background: linear-gradient(135deg, rgba(123, 79, 255, 0.18), rgba(8, 10, 15, 0.64));
  color: #f0ebff;
  font-size: 13px;
  font-weight: 900;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 900;
}

.button.primary { background: var(--lime); color: #06100a; box-shadow: 0 18px 50px rgba(182, 255, 46, 0.18); }
.button.ghost { border: 1px solid rgba(182, 255, 46, 0.32); color: var(--lime); background: rgba(182, 255, 46, 0.06); }

.download-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: clamp(20px, 5vw, 48px);
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(123, 79, 255, 0.22), transparent 20rem),
    linear-gradient(135deg, rgba(9, 18, 31, 0.95), rgba(17, 24, 39, 0.84));
}

.download-actions {
  display: grid;
  gap: 14px;
}

.store-button {
  display: grid;
  gap: 3px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(182, 255, 46, 0.24);
  background: linear-gradient(135deg, rgba(182, 255, 46, 0.16), rgba(123, 79, 255, 0.12));
}

.store-button strong { font-size: 22px; color: var(--lime); }
.store-button span { color: #cbd1de; }
.store-button.muted { border-color: rgba(245, 166, 35, 0.28); background: rgba(245, 166, 35, 0.08); }
.store-button.muted strong { color: #ffd36f; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
}

.trust-row strong, .trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.agent-stage {
  position: relative;
  width: min(92vw, 560px);
  min-height: 560px;
  display: grid;
  place-items: center;
  border-radius: 46px;
  background:
    radial-gradient(circle at 50% 22%, rgba(245, 166, 35, 0.18), transparent 22rem),
    radial-gradient(circle at 18% 84%, rgba(123, 79, 255, 0.2), transparent 18rem),
    linear-gradient(180deg, rgba(14, 17, 29, 0.72), rgba(8, 10, 15, 0.4));
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(245, 166, 35, 0.12), 0 34px 100px rgba(0, 0, 0, 0.36);
  animation: stageBreath 6.8s ease-in-out infinite;
}

.agent-stage::before,
.agent-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.agent-stage::before {
  inset: 9%;
  border-radius: 50%;
  background:
    conic-gradient(from 150deg, transparent 0 24%, rgba(255, 215, 98, 0.84) 31%, transparent 39% 67%, rgba(123, 79, 255, 0.52) 76%, transparent 85%),
    radial-gradient(circle, transparent 58%, rgba(255, 215, 98, 0.34) 59%, transparent 62%);
  filter: drop-shadow(0 0 28px rgba(245, 166, 35, 0.32));
  animation: scanRotate 13s linear infinite;
}

.agent-stage::after {
  inset: 0;
  background: linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.13) 49%, transparent 56%);
  transform: translateX(-120%);
  animation: stageSweep 6.2s ease-in-out infinite;
}

.stage-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.orbit-one {
  width: min(82vw, 540px);
  aspect-ratio: 1;
  border: 1px solid rgba(245, 166, 35, 0.35);
  box-shadow: inset 0 0 60px rgba(245, 166, 35, 0.06), 0 0 50px rgba(245, 166, 35, 0.08);
}

.orbit-two {
  width: min(58vw, 380px);
  aspect-ratio: 1;
  border: 1px dashed rgba(123, 79, 255, 0.38);
  animation: scanRotate 16s linear infinite reverse;
}

.stage-scan {
  position: absolute;
  inset: auto 34px 78px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(182, 255, 46, 0.78), transparent);
  opacity: 0.72;
  z-index: 5;
  animation: railScan 2.8s ease-in-out infinite;
}

.pulse-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 22px rgba(182, 255, 46, 0.85);
  z-index: 3;
  animation: dotPulse 1.8s ease-in-out infinite;
}

.dot-one { top: 24%; right: 16%; }
.dot-two { bottom: 24%; left: 17%; animation-delay: 0.65s; background: #ffd166; }

.single-agent-portrait {
  position: relative;
  z-index: 4;
  width: min(80vw, 410px);
  margin: 0;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 42px 86px rgba(0, 0, 0, 0.56)) drop-shadow(0 0 34px rgba(245, 166, 35, 0.18));
  animation: agentFloat 5.8s ease-in-out infinite, agentFocus 6.4s ease-in-out infinite;
}

.single-agent-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 44px;
  background: rgba(8, 10, 15, 0.82);
  border: 1px solid rgba(245, 166, 35, 0.2);
  box-shadow: inset 0 0 0 1px rgba(182, 255, 46, 0.1);
}

.single-agent-portrait figcaption {
  margin-top: 12px;
  color: #f3f5ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
}

.agent-status-chip {
  position: absolute;
  left: 50%;
  bottom: 84px;
  z-index: 6;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  min-width: 250px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(8, 10, 15, 0.78);
  border: 1px solid rgba(182, 255, 46, 0.26);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  animation: chipLift 4.2s ease-in-out infinite;
}

.agent-status-chip strong { color: var(--lime); font-size: 17px; line-height: 1.1; }
.agent-status-chip span { color: #d9ddea; font-size: 12px; font-weight: 800; }

.agent-bottom-bar {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 20px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.18), rgba(8, 10, 15, 0.78));
  border: 1px solid rgba(245, 166, 35, 0.24);
  color: #ffe6ad;
  backdrop-filter: blur(16px);
}

.agent-bottom-bar strong {
  color: var(--lime);
  font-size: 15px;
}

.agent-bottom-bar span {
  color: #cbd1de;
  font-size: 12px;
  font-weight: 800;
}

@keyframes agentFloat {
  0%, 100% { transform: translateY(0) rotateX(0deg) scale(1); }
  50% { transform: translateY(-12px) rotateX(1.6deg) scale(1.014); }
}

@keyframes agentFocus {
  0%, 100% { filter: drop-shadow(0 42px 86px rgba(0, 0, 0, 0.58)) drop-shadow(0 0 24px rgba(245, 166, 35, 0.12)); }
  45% { filter: drop-shadow(0 48px 92px rgba(0, 0, 0, 0.62)) drop-shadow(0 0 42px rgba(182, 255, 46, 0.18)); }
}

@keyframes chipLift {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}

@keyframes logoBreath {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 0 0 1px rgba(182, 255, 46, 0.16), 0 12px 32px rgba(123, 79, 255, 0.18); }
  50% { transform: translateY(-1px) scale(1.035); box-shadow: 0 0 0 1px rgba(182, 255, 46, 0.28), 0 16px 42px rgba(182, 255, 46, 0.18); }
}

@keyframes stageBreath {
  0%, 100% { transform: translateY(0) rotateX(0deg); }
  50% { transform: translateY(-4px) rotateX(1.2deg); }
}

@keyframes stageSweep {
  0%, 38% { transform: translateX(-120%); opacity: 0; }
  52% { opacity: 1; }
  74%, 100% { transform: translateX(120%); opacity: 0; }
}

@keyframes railScan {
  0%, 100% { transform: scaleX(0.32); opacity: 0.28; }
  50% { transform: scaleX(1); opacity: 0.85; }
}

@keyframes selectorPulse {
  0%, 100% { transform: scaleX(1); opacity: 0.75; }
  50% { transform: scaleX(1.18); opacity: 1; }
}

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

@keyframes heroGlow {
  0%, 100% { opacity: 0.72; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.035); }
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.45; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.28); }
}

.section {
  margin: 24px clamp(20px, 5vw, 72px);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 30px;
  background: rgba(17, 24, 39, 0.7);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.22);
}

.section h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
}

.section p { color: #c8cdd9; font-size: 17px; }

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

.stat-card {
  min-height: 210px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(13, 27, 37, 0.94), rgba(16, 18, 35, 0.92));
  border: 1px solid rgba(182, 255, 46, 0.14);
}

.stat-card span { color: var(--lime); font-weight: 900; }
.stat-card h2 { font-size: 24px; margin-top: 26px; }
.stat-card p { margin-bottom: 0; font-size: 15px; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(22px, 5vw, 60px);
  align-items: center;
}

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

.category-grid span {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(123, 79, 255, 0.22), rgba(8, 10, 15, 0.85));
  border: 1px solid rgba(123, 79, 255, 0.36);
  color: #f4f1ff;
  font-weight: 900;
}

.agent-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(20px, 5vw, 56px);
  align-items: center;
}

.agent-card img {
  width: 100%;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article, .compliance-grid div {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(8, 10, 15, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.feature-list strong, .compliance-grid strong { color: var(--lime); font-size: 20px; }
.feature-list span, .compliance-grid span { color: var(--muted); }

.section-head {
  max-width: 820px;
}

.social-auth-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(123, 79, 255, 0.22), transparent 20rem),
    radial-gradient(circle at 8% 92%, rgba(66, 200, 255, 0.1), transparent 16rem),
    linear-gradient(145deg, rgba(13, 22, 36, 0.92), rgba(10, 11, 22, 0.86));
}

.auth-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.auth-flow article,
.auth-rules article,
.level-grid article {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 15, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.auth-flow article {
  min-height: 186px;
  padding: 22px;
  border-radius: 22px;
}

.auth-flow span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #06100b;
  background: var(--lime);
  font-weight: 1000;
}

.auth-flow strong,
.auth-rules strong {
  display: block;
  color: #f7f8ff;
  font-size: 22px;
  line-height: 1.2;
}

.auth-flow p {
  margin: 10px 0 0;
  font-size: 15px;
}

.auth-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.auth-rules article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
}

.auth-rules article:nth-child(1) {
  border-color: rgba(52, 211, 153, 0.22);
  background: rgba(52, 211, 153, 0.08);
}

.auth-rules article:nth-child(2) {
  border-color: rgba(245, 166, 35, 0.24);
  background: rgba(245, 166, 35, 0.08);
}

.auth-rules article:nth-child(3) {
  border-color: rgba(251, 113, 133, 0.24);
  background: rgba(251, 113, 133, 0.07);
}

.auth-rules span {
  color: #cbd1df;
  font-size: 14px;
}

.levels-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(182, 255, 46, 0.1), transparent 18rem),
    radial-gradient(circle at 86% 72%, rgba(123, 79, 255, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(10, 17, 29, 0.92), rgba(10, 10, 18, 0.88));
}

.level-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.level-grid article {
  min-height: 168px;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(123, 79, 255, 0.13), rgba(8, 10, 15, 0.55));
}

.level-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(182, 255, 46, 0.22);
  background: rgba(182, 255, 46, 0.08);
  color: var(--lime);
  font-size: 13px;
  font-weight: 1000;
}

.level-grid strong {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
}

.level-grid p {
  margin: 8px 0 0;
  color: #aeb5c8;
  font-size: 13px;
  line-height: 1.55;
}

.level-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.level-note span {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(245, 166, 35, 0.22);
  background: rgba(245, 166, 35, 0.08);
  color: #ffe6ad;
  font-size: 12px;
  font-weight: 900;
}

.project-section {
  background:
    radial-gradient(circle at 88% 24%, rgba(245, 166, 35, 0.14), transparent 20rem),
    linear-gradient(145deg, rgba(17, 24, 39, 0.8), rgba(17, 12, 28, 0.7));
}

.project-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.project-card {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(245, 166, 35, 0.3);
  background: rgba(245, 166, 35, 0.08);
  color: #ffe1a2;
  font-weight: 900;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.operating-map {
  background:
    radial-gradient(circle at 18% 0%, rgba(66, 200, 255, 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(10, 17, 29, 0.92), rgba(9, 11, 19, 0.82));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.timeline article {
  padding: 20px;
  min-height: 190px;
  border-radius: 22px;
  background: rgba(8, 10, 15, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #07100b;
  background: var(--lime);
  font-weight: 1000;
}

.timeline strong {
  display: block;
  margin-top: 18px;
  font-size: 20px;
}

.timeline p { margin-bottom: 0; font-size: 15px; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 36px clamp(20px, 5vw, 72px) 48px;
  color: var(--muted);
}

.footer div { display: flex; gap: 12px; flex-wrap: wrap; }
.footer strong { color: var(--text); }
.footer-links a { color: var(--muted); }

.legal-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 20px 80px;
}

.legal-page h1 { font-size: clamp(38px, 7vw, 64px); line-height: 1.08; }
.legal-page h2 { margin-top: 36px; color: var(--lime); }
.legal-page p, .legal-page li { color: #c8cdd9; }
.legal-page a { color: var(--lime); }

.app-page {
  max-width: 1120px;
}

.download-page {
  padding-top: 42px;
}

.app-hero {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(20px, 5vw, 48px);
  align-items: center;
  padding: clamp(22px, 4vw, 40px);
  border-radius: 30px;
  border: 1px solid rgba(182, 255, 46, 0.14);
  background:
    radial-gradient(circle at 12% 25%, rgba(245, 166, 35, 0.16), transparent 16rem),
    linear-gradient(145deg, rgba(12, 18, 31, 0.96), rgba(15, 12, 28, 0.92));
}

.app-hero img {
  width: 100%;
  border-radius: 28px;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.42));
}

.download-hero {
  position: relative;
  overflow: hidden;
}

.download-hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -38% 42%;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(123, 79, 255, 0.22), transparent 68%);
  pointer-events: none;
}

.download-hero-art {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.download-hero-art span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(182, 255, 46, 0.18);
  background: rgba(182, 255, 46, 0.08);
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

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

.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.app-status-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  margin: 24px 0 10px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(123, 79, 255, 0.25);
  background: rgba(123, 79, 255, 0.08);
}

.app-status-card strong { color: var(--lime); }
.app-status-card span { color: #d6dae8; }

@media (max-width: 1100px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 14px 20px;
  }

  .site-header > .nav { display: none; }
  .search-trigger { display: grid; }
  .menu-button { display: flex; }

  .menu-toggle:checked ~ .mobile-drawer {
    display: block !important;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    z-index: 30;
    overflow-y: auto;
    padding: 16px 20px 28px;
    background:
      radial-gradient(circle at 80% 18%, rgba(245, 166, 35, 0.12), transparent 16rem),
      linear-gradient(180deg, rgba(6, 7, 10, 0.98), rgba(4, 5, 8, 0.98));
  }

  .mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
  }

  .drawer-close {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    font-size: 28px;
    cursor: pointer;
  }

  .mobile-menu-list {
    display: grid;
    gap: 6px;
  }

  .mobile-menu-list a {
    padding: 13px 16px;
    border-radius: 12px;
    color: #d9dce8;
    font-size: 15px;
    font-weight: 800;
  }

  .mobile-menu-list a.active {
    color: #ffd166;
    border: 1px solid rgba(245, 166, 35, 0.28);
    background: rgba(245, 166, 35, 0.09);
  }

  .mobile-drawer-locale {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 24px 0 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-drawer-locale a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 10px;
    border-radius: 14px;
    border: 1px solid rgba(245, 166, 35, 0.22);
    background: rgba(245, 166, 35, 0.08);
    color: #ffe6ad;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
  }

  .mobile-drawer-locale a.active {
    background: rgba(182, 255, 46, 0.12);
    border-color: rgba(182, 255, 46, 0.26);
    color: var(--lime);
  }

  .drawer-cta {
    display: grid;
    place-items: center;
    min-height: 50px;
    margin: 14px 0 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffd84d, #f5a623);
    color: #130d00;
    font-size: 18px;
    font-weight: 1000;
  }

  .drawer-brand-card {
    display: grid;
    grid-template-columns: 78px 1fr;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(245, 166, 35, 0.08);
    border: 1px solid rgba(245, 166, 35, 0.18);
  }

  .drawer-brand-card img {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 18px;
  }

  .drawer-brand-card span {
    color: #d2ad55;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
  }

  .drawer-brand-card strong {
    display: block;
    color: var(--text);
    font-size: 22px;
    line-height: 1.2;
  }

  .hero, .split, .agent-card { grid-template-columns: 1fr; }
  .hero {
    min-height: auto;
    padding: 18px 20px 44px;
    gap: 20px;
  }
  .hero-art {
    order: -1;
    min-height: 390px;
    margin-top: 4px;
  }
  .agent-stage {
    width: 100%;
    min-height: 430px;
    border-radius: 34px;
  }
  .single-agent-portrait {
    width: min(82vw, 330px);
  }
  .single-agent-portrait img {
    border-radius: 32px;
  }
  .single-agent-portrait figcaption {
    font-size: 12px;
    margin-top: 10px;
  }
  .grid-4, .compliance-grid, .project-cards, .download-band, .timeline, .auth-flow, .auth-rules { grid-template-columns: 1fr; }
  .level-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand img { width: 38px; height: 38px; }
  .brand small { display: none; }
  .hero-copy {
    padding: 22px 18px 20px;
    border: 1px solid rgba(123, 79, 255, 0.22);
    border-radius: 26px;
    background:
      radial-gradient(circle at 92% 8%, rgba(123, 79, 255, 0.22), transparent 12rem),
      linear-gradient(180deg, rgba(14, 18, 32, 0.82), rgba(8, 10, 15, 0.42));
  }
  .hero-copy h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.16;
    margin: 4px 0 12px;
  }
  .lead { font-size: 14.5px; line-height: 1.68; }
  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
  }
  .hero-badges span {
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 12px;
  }
  .hero-actions { margin: 20px 0 2px; }
  .button { min-height: 52px; flex: 1 1 150px; border-radius: 18px; }
  .trust-row { display: none; }
  .agent-status-chip { bottom: 70px; min-width: 230px; padding: 11px 16px; }
  .agent-status-chip strong { font-size: 16px; }
  .agent-bottom-bar {
    left: 14px;
    right: 14px;
    min-height: 48px;
    padding: 8px 12px;
  }
  .agent-bottom-bar strong { font-size: 13px; }
  .agent-bottom-bar span { font-size: 11px; }
  .orbit-one { width: 88vw; }
  .orbit-two { width: 64vw; }
  .dot-one { top: 22%; right: 18%; }
  .dot-two { bottom: 27%; left: 17%; }
  .section { border-radius: 24px; }
  .section h2 { font-size: 28px; }
  .section p { font-size: 15px; }
  .auth-flow article { min-height: auto; }
  .level-grid article { min-height: 154px; padding: 16px; }
  .level-grid strong { font-size: 15px; }
  .level-grid p { font-size: 12px; }
  .download-page { padding: 26px 18px 64px; }
  .app-hero { grid-template-columns: 1fr; }
  .download-hero {
    gap: 18px;
    padding: 20px;
    border-radius: 28px;
  }
  .app-hero img {
    width: min(70vw, 230px);
    max-width: 230px;
    margin: 0 auto;
    border-radius: 28px;
  }
  .download-hero-copy h1 {
    font-size: 30px;
    line-height: 1.12;
  }
  .download-hero-copy p {
    font-size: 14px;
    line-height: 1.72;
  }
  .app-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .app-actions .button {
    width: 100%;
  }
  .app-status-card { grid-template-columns: 1fr; }
}

/* BullX official site P96 brain upgrade */
.brain-site .site-header {
  background: rgba(6, 8, 14, 0.84);
}

.brain-hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: 74px clamp(20px, 5vw, 72px) 42px;
  position: relative;
}

.brain-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(182, 255, 46, 0.16), transparent 26rem),
    radial-gradient(circle at 82% 22%, rgba(123, 79, 255, 0.26), transparent 32rem);
  pointer-events: none;
}

.brain-hero-copy,
.brain-hero-visual { position: relative; z-index: 1; }

.brain-hero h1 {
  max-width: 920px;
  margin: 10px 0 22px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: 0;
}

.brain-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.brain-metrics span {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(182, 255, 46, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: #cfd5e6;
}

.brain-metrics strong { color: #faffd7; }

.brain-orbit-panel {
  position: relative;
  min-height: 560px;
  border-radius: 42px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(182, 255, 46, 0.18), transparent 16rem),
    linear-gradient(145deg, rgba(13, 20, 34, 0.92), rgba(8, 10, 15, 0.66));
  background-size: 42px 42px, 42px 42px, auto, auto;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(182, 255, 46, 0.16), 0 40px 110px rgba(0, 0, 0, 0.42);
}

.brain-orbit-panel::before,
.brain-orbit-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(250, 238, 19, 0.36);
}

.brain-orbit-panel::before { width: 430px; height: 430px; }
.brain-orbit-panel::after { width: 300px; height: 300px; border-color: rgba(123, 79, 255, 0.5); }

.brain-orbit-panel img {
  width: min(72%, 390px);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.38));
}

.brain-chip {
  position: absolute;
  z-index: 3;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(250, 238, 19, 0.28);
  background: rgba(9, 13, 24, 0.78);
  color: #fff56b;
  font-size: 13px;
  font-weight: 950;
}

.chip-top { top: 34px; left: 50%; transform: translateX(-50%); }
.chip-left { left: 26px; top: 48%; }
.chip-right { right: 26px; top: 48%; }
.chip-bottom { bottom: 34px; left: 50%; transform: translateX(-50%); }

.brain-strip {
  margin: 0 clamp(20px, 5vw, 72px) 24px;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  border: 1px solid rgba(182, 255, 46, 0.18);
  border-radius: 24px;
  background: rgba(255,255,255,.045);
}

.brain-strip span {
  padding: 12px 10px;
  border-radius: 15px;
  text-align: center;
  color: #eef8d3;
  background: rgba(182,255,46,.08);
  font-weight: 900;
  font-size: 13px;
}

.brain-section .section-head,
.project-section .section-head {
  max-width: 920px;
  margin-bottom: 26px;
}

.brain-grid,
.project-row,
.download-grid,
.download-release-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.brain-grid article,
.project-row article,
.download-card,
.download-release-grid article,
.download-device-card {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(18, 28, 45, .9), rgba(9, 12, 20, .78));
  padding: 22px;
}

.brain-grid article span,
.project-row article span,
.download-release-grid span {
  color: var(--lime);
  font-weight: 950;
  font-size: 13px;
}

.brain-grid h3,
.project-row h3 {
  margin: 10px 0 8px;
  font-size: 26px;
}

.brain-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(20px, 5vw, 48px);
  align-items: center;
}

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

.operating-cards article {
  min-height: 122px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(182,255,46,.18);
  background: rgba(182,255,46,.055);
}

.operating-cards strong { color: #f9ffd8; font-size: 20px; }
.operating-cards span { color: #c7cedd; }

.project-row article:nth-child(1) { border-color: rgba(66, 200, 255, .28); }
.project-row article:nth-child(2) { border-color: rgba(250, 238, 19, .28); }
.project-row article:nth-child(3) { border-color: rgba(182, 255, 46, .28); }

.compact-agent-card {
  min-height: auto;
  align-items: center;
}

.compact-agent-card img {
  max-width: 220px;
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.capability-list span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(123,79,255,.26);
  background: rgba(123,79,255,.11);
  color: #f0ebff;
  font-weight: 900;
}

.download-center {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1.25fr);
  gap: 28px;
  align-items: center;
}

.download-card {
  display: grid;
  gap: 6px;
  min-height: 132px;
  color: #d7deea;
}

.download-card strong {
  color: #fff;
  font-size: 22px;
}

.download-card.active {
  border-color: rgba(250,238,19,.42);
  background: linear-gradient(145deg, rgba(250,238,19,.22), rgba(16, 21, 31, .82));
}

.download-card.hold {
  opacity: .82;
}

.guard-band {
  border-color: rgba(250,238,19,.22);
  background: linear-gradient(145deg, rgba(250,238,19,.1), rgba(14,18,29,.86));
}

.guard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.guard-grid span {
  padding: 12px;
  text-align: center;
  border-radius: 14px;
  border: 1px solid rgba(250,238,19,.22);
  color: #fff77b;
  background: rgba(250,238,19,.07);
  font-weight: 900;
}

.download-landing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(16,25,40,.95), rgba(8,10,15,.88));
}

.download-landing h1 {
  margin: 8px 0 18px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
}

.download-device-card {
  display: grid;
  justify-items: center;
  text-align: center;
}

.download-device-card img {
  width: min(100%, 250px);
  border-radius: 50%;
}

.download-device-card strong {
  margin-top: 14px;
  font-size: 24px;
}

.download-release-grid {
  margin: 28px 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.download-release-grid .hash {
  display: block;
  overflow-wrap: anywhere;
  font-size: 13px;
  color: #fff77b;
}

.download-next { margin-top: 28px; }

@media (max-width: 980px) {
  .brain-hero,
  .brain-split,
  .download-center,
  .download-landing {
    grid-template-columns: 1fr;
  }

  .brain-metrics,
  .brain-grid,
  .project-row,
  .download-grid,
  .download-release-grid,
  .guard-grid {
    grid-template-columns: 1fr;
  }

  .brain-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brain-orbit-panel {
    min-height: 460px;
  }

  .brain-orbit-panel::before { width: 330px; height: 330px; }
  .brain-orbit-panel::after { width: 230px; height: 230px; }
}

@media (max-width: 640px) {
  .brain-hero {
    min-height: auto;
    padding-top: 46px;
  }

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

  .chip-left,
  .chip-right {
    top: auto;
    bottom: 82px;
  }
}

/* BullX official site P97: company brain homepage */
.p97-site {
  background:
    radial-gradient(circle at 78% 12%, rgba(250, 238, 19, 0.18), transparent 28rem),
    radial-gradient(circle at 15% 20%, rgba(88, 108, 255, 0.2), transparent 30rem),
    linear-gradient(180deg, #080a0f 0%, #0b0f18 48%, #07090d 100%);
}

.p97-header {
  border-bottom-color: rgba(250, 238, 19, 0.14);
}

.p97-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(52px, 7vw, 92px) clamp(20px, 5vw, 76px) 48px;
}

.p97-hero-copy h1 {
  max-width: 920px;
  margin: 10px 0 22px;
  font-size: clamp(46px, 7.4vw, 98px);
  line-height: 0.98;
  letter-spacing: 0;
}

.p97-proofbar,
.p97-strip {
  display: grid;
  gap: 10px;
}

.p97-proofbar {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 780px;
  margin-top: 28px;
}

.p97-proofbar span,
.p97-strip span {
  border: 1px solid rgba(250, 238, 19, 0.2);
  border-radius: 16px;
  background: rgba(250, 238, 19, 0.055);
  color: #f8fad7;
  font-size: 13px;
  font-weight: 850;
  padding: 12px 14px;
}

.p97-brain-board {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(250, 238, 19, 0.18);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 50% 38%, rgba(250, 238, 19, 0.13), transparent 17rem),
    rgba(8, 12, 20, 0.72);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.p97-brain-board::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 26px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
  pointer-events: none;
}

.p97-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.p97-orbit::before,
.p97-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(250, 238, 19, 0.28);
}

.p97-orbit::before {
  width: min(86%, 470px);
  aspect-ratio: 1;
}

.p97-orbit::after {
  width: min(64%, 340px);
  aspect-ratio: 1;
  border-color: rgba(120, 160, 255, 0.28);
}

.p97-orbit img {
  position: relative;
  z-index: 2;
  width: min(66%, 380px);
  border-radius: 50%;
  filter: drop-shadow(0 28px 70px rgba(250, 238, 19, 0.18));
}

.p97-orbit .node {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(250, 238, 19, 0.28);
  border-radius: 999px;
  background: rgba(11, 15, 24, 0.88);
  color: #fff987;
  font-size: 13px;
  font-weight: 900;
  padding: 10px 14px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.p97-orbit .n1 { top: 8%; left: 50%; transform: translateX(-50%); }
.p97-orbit .n2 { right: 5%; top: 44%; }
.p97-orbit .n3 { bottom: 9%; left: 50%; transform: translateX(-50%); }
.p97-orbit .n4 { left: 5%; top: 44%; }

.p97-command {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.p97-command strong {
  color: #faee13;
  font-size: 18px;
}

.p97-command p {
  margin: 0;
  color: #cbd1e0;
}

.p97-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 clamp(20px, 5vw, 76px) 42px;
}

.p97-strip strong {
  display: block;
  color: #faee13;
  font-size: 12px;
}

.p97-section,
.p97-split,
.p97-download {
  padding: 72px clamp(20px, 5vw, 76px);
}

.p97-loop-grid,
.p97-projects,
.p97-stack,
.p97-capabilities,
.download-grid {
  display: grid;
  gap: 16px;
}

.p97-loop-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.p97-loop-grid article,
.p97-projects article,
.p97-stack article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(12, 16, 25, 0.82);
  padding: 22px;
}

.p97-loop-grid span {
  color: #faee13;
  font-weight: 950;
}

.p97-loop-grid h3,
.p97-projects h3,
.p97-stack strong {
  margin: 8px 0;
  color: #ffffff;
}

.p97-loop-grid p,
.p97-projects p,
.p97-stack span {
  margin: 0;
  color: #b8c0d2;
}

.p97-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.p97-split h2,
.p97-section h2,
.p97-download h2 {
  max-width: 840px;
  margin: 8px 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.p97-split p,
.p97-section .section-head p,
.p97-download p {
  color: #c6ccda;
  font-size: 17px;
}

.p97-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.p97-projects {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.p97-projects small {
  color: #8fd8ff;
  font-weight: 900;
}

.p97-agent-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(250, 238, 19, 0.16);
  border-radius: 28px;
  background: rgba(250, 238, 19, 0.045);
  padding: 24px;
}

.p97-agent-card img {
  width: 100%;
  border-radius: 28px;
}

.p97-capabilities {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.p97-capabilities span {
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: #f1f4ff;
  font-weight: 850;
}

.p97-download {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  .p97-hero,
  .p97-split,
  .p97-download {
    grid-template-columns: 1fr;
  }

  .p97-proofbar,
  .p97-strip,
  .p97-loop-grid,
  .p97-projects,
  .p97-stack,
  .p97-capabilities {
    grid-template-columns: 1fr;
  }

  .p97-orbit {
    min-height: 460px;
  }
}

@media (max-width: 640px) {
  .p97-hero {
    min-height: auto;
    padding-top: 42px;
  }

  .p97-hero-copy h1 {
    font-size: 44px;
  }

  .p97-agent-card {
    grid-template-columns: 1fr;
  }

  .p97-orbit .node {
    position: relative;
    inset: auto;
    transform: none;
    margin: 3px;
  }
}
