:root {
  --bg: #05070b;
  --surface: #0b111a;
  --surface-2: #101823;
  --line: rgba(255,255,255,.1);
  --line-soft: rgba(255,255,255,.06);
  --text: #f7fbff;
  --muted: #9aa9bd;
  --faint: #66758a;
  --cyan: #00dff5;
  --blue: #3b82f6;
  --paper: #f6f8fb;
  --ink: #0b1220;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Satoshi, Geist, "Space Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.shell { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 80% 0%, rgba(0,223,245,.11), transparent 28%),
    linear-gradient(180deg, #05070b, #07101a 44%, #05070b);
}
.top {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 7, 11, .78);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.mark {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,223,245,.24);
  background: linear-gradient(145deg, rgba(0,223,245,.12), rgba(59,130,246,.08));
  color: var(--cyan);
}
.bot-logo { width: 100%; height: 100%; display: block; }
.bot-logo .orbit-a, .bot-logo .orbit-b { transform-origin: 50% 50%; animation: spin 14s linear infinite; }
.bot-logo .orbit-b { animation-duration: 9s; animation-direction: reverse; }
.bot-logo .eye { animation: blink 4.5s ease-in-out infinite; transform-origin: center; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes blink { 0%, 92%, 100% { transform: scaleY(1); opacity: 1; } 95% { transform: scaleY(.18); opacity: .72; } }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: 17px; letter-spacing: 0; }
.brand-copy span { color: var(--muted); font-size: 12px; font-weight: 760; }
.nav { display: flex; gap: 4px; align-items: center; color: rgba(255,255,255,.68); font-size: 14px; font-weight: 780; }
.nav a { padding: 9px 11px; border-radius: 999px; }
.nav a:hover { background: rgba(255,255,255,.07); color: #fff; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-weight: 820;
}
.btn.primary { background: #fff; color: var(--ink); border-color: #fff; }
.btn.blue { background: var(--cyan); color: #031014; border-color: var(--cyan); }

.hero { padding: 92px 0 72px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .7fr);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .02em;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px rgba(0,223,245,.7); }
h1 {
  max-width: 860px;
  margin: 18px 0 20px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .92;
  letter-spacing: 0;
}
.lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-panel {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  padding: 22px;
}
.panel-head { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.panel-title { margin: 56px 0; font-size: clamp(34px, 5vw, 58px); line-height: .95; font-weight: 900; }
.panel-list { display: grid; gap: 10px; }
.panel-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  border: 1px solid var(--line-soft);
}
.panel-row i { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); }
.panel-row strong { display: block; font-size: 14px; }
.panel-row span { display: block; color: var(--faint); font-size: 12px; font-weight: 760; }

.section { padding: 78px 0; }
.section.light { background: var(--paper); color: var(--ink); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .96;
}
.section-head p { margin: 0; color: var(--muted); }
.light .section-head p { color: #667085; }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.card {
  min-height: 220px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.light .card { background: #fff; border-color: rgba(11,18,32,.1); }
.card h3 { margin: 0 0 10px; font-size: 24px; line-height: 1.05; }
.card p { margin: 0; color: var(--muted); }
.light .card p { color: #667085; }
.tag {
  width: max-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(0,223,245,.12);
  border: 1px solid rgba(0,223,245,.24);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.light .tag { color: #0369a1; background: #e0f7ff; border-color: #b7ecf7; }
.meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.meta span {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}
.light .meta span { background: #f2f5f9; border-color: rgba(11,18,32,.08); color: #667085; }

.list {
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}
.item {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--line-soft);
}
.item:last-child { border-bottom: 0; }
.item small { color: var(--cyan); font-weight: 850; text-transform: uppercase; }
.item h3 { margin: 0 0 6px; font-size: 22px; }
.item p { margin: 0; color: var(--muted); }

.filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin: 28px 0;
}
.search {
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: 0 18px;
  outline: none;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  min-height: 40px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-weight: 760;
}

.detail-grid { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 22px; align-items: start; }
.side {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  padding: 12px;
}
.side a { display: block; padding: 12px; border-radius: 14px; color: var(--muted); font-weight: 780; }
.side a:hover { background: rgba(255,255,255,.06); color: #fff; }
.content { display: grid; gap: 16px; }
.block {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.045);
}
.block h2 { margin: 12px 0 14px; font-size: clamp(30px, 4vw, 52px); line-height: .98; }
.mini-grid, .step-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.mini {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,.045);
}
.mini strong { display: block; margin-bottom: 6px; font-size: 18px; }
.mini p, .mini span { margin: 0; color: var(--muted); }
pre {
  overflow: auto;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(0,223,245,.18);
  background: rgba(2,8,18,.82);
  color: #d8f7ff;
  white-space: pre-wrap;
}
footer { padding: 40px 0; border-top: 1px solid var(--line-soft); color: var(--muted); }
.footer-grid { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.home-page {
  min-height: 100svh;
  color: #07111f;
  background-color: #fbfcff;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(0, 229, 255, .12), transparent 30%),
    radial-gradient(rgba(125, 139, 161, .34) 1px, transparent 1px);
  background-size: auto, 22px 22px;
}
.home-page .home-top {
  background: rgba(255,255,255,.82);
  border-color: rgba(15, 23, 42, .1);
  box-shadow: 0 18px 50px rgba(15, 23, 42, .08);
}
.home-page .brand-copy strong,
.home-page .nav,
.home-page .nav a,
.home-page footer { color: #0b1220; }
.home-page .brand-copy span { color: #64748b; }
.home-page .nav a:hover { background: rgba(15, 23, 42, .06); color: #03111f; }
.home-page .btn { color: #0b1220; background: #fff; border-color: rgba(15, 23, 42, .12); }
.home-page .btn.primary { background: #07111f; color: #fff; border-color: #07111f; }
.home-page .btn.blue { background: #0066ff; color: #fff; border-color: #0066ff; }
.home-page footer {
  background: #fbfcff;
  border-top-color: rgba(15, 23, 42, .08);
}

.home-hero {
  min-height: 580px;
  display: grid;
  place-items: center;
  padding: 46px 0 54px;
}
.home-lockup {
  width: 100%;
  text-align: center;
}
.home-title-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 100%;
}
.home-title-row h1 {
  margin: 0;
  color: #050b14;
  font-size: clamp(62px, 10vw, 132px);
  line-height: .82;
  letter-spacing: 0;
}
.home-title-row h1 span { color: #00cde8; }
.mascot-chip {
  width: clamp(86px, 10vw, 132px);
  height: clamp(86px, 10vw, 132px);
  border: 1px solid rgba(15, 23, 42, .14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 70% 30%, rgba(0,229,255,.3), transparent 36%),
    linear-gradient(145deg, #07111f, #111827);
  box-shadow: 0 24px 70px rgba(15, 23, 42, .18);
  overflow: hidden;
  transform: rotate(2deg);
}
.mascot-chip img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
}
.home-subtitle {
  max-width: 820px;
  margin: 26px auto 18px;
  color: #5d6879;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.42;
}
.edition-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  min-width: 246px;
  margin-top: 2px;
  padding: 9px 20px 10px;
  border-radius: 12px;
  border: 1px solid rgba(138, 105, 18, .22);
  background:
    linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,.25)),
    linear-gradient(90deg, #f8e7a5, #f3d073 48%, #d9a627);
  color: #7c5a10;
  box-shadow: 0 10px 22px rgba(160, 119, 20, .16);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.edition-badge strong {
  color: #473307;
  font-size: 15px;
  text-transform: none;
}
.home-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.pill {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .12);
  background: rgba(255,255,255,.84);
  color: #101827;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .06);
  font-size: 14px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pill:hover { transform: translateY(-1px); box-shadow: 0 18px 34px rgba(15, 23, 42, .1); border-color: rgba(0, 102, 255, .24); }
.pill:active { transform: translateY(0); }
.pill svg { width: 17px; height: 17px; }
.pill.orange { background: #ff7a18; color: #fff; border-color: #ff7a18; }
.pill.blue-solid { background: #005eff; color: #fff; border-color: #005eff; }
.pill.black { background: #050b14; color: #fff; border-color: #050b14; }
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4b55;
  box-shadow: 0 0 0 6px rgba(255, 75, 85, .1);
}
.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: 38px;
  color: #a0a7b4;
  font-size: 12px;
  font-weight: 780;
}
.scroll-cue span {
  width: 9px;
  height: 9px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
}

.home-section {
  padding: 72px 0;
  background: #fbfcff;
}
.narrow { width: min(900px, calc(100% - 32px)); }
.center-head {
  text-align: center;
  margin-bottom: 30px;
}
.center-head span,
.section-copy span,
.dark-final span {
  color: #0066ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.center-head h2 {
  max-width: 690px;
  margin: 8px auto 0;
  color: #111827;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.03;
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.resource-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}
.resource-card.wide { grid-column: span 2; }
.resource-cover {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  background: #0b1220;
}
.cover-blue { background: radial-gradient(circle at 70% 30%, rgba(0,229,255,.45), transparent 28%), linear-gradient(135deg, #07111f, #12315f 62%, #0d1727); }
.cover-cyan { background: radial-gradient(circle at 30% 28%, rgba(0,229,255,.5), transparent 32%), linear-gradient(135deg, #0c1b2a, #182337 64%, #07111f); }
.cover-slate { background: radial-gradient(circle at 70% 20%, rgba(59,130,246,.48), transparent 35%), linear-gradient(135deg, #050b14, #172033 68%, #101827); }
.cover-chip {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #03111f;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.cover-orbit {
  position: absolute;
  inset: 22px auto auto 46%;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(0,229,255,.28);
  border-radius: 50%;
}
.cover-orbit::before,
.cover-orbit::after {
  content: "";
  position: absolute;
  inset: 42px -24px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.cover-orbit::after {
  inset: 70px -56px;
  border-color: rgba(0,229,255,.18);
  transform: rotate(22deg);
}
.resource-cover img {
  position: absolute;
  right: 18px;
  bottom: -24px;
  width: min(230px, 42%);
  height: auto;
  border-radius: 26px;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.3));
}
.cover-icon {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #fff;
  color: #0066ff;
  font-size: 18px;
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(0,0,0,.26);
}
.resource-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 18px;
}
.resource-meta {
  display: block;
  margin-bottom: 8px;
  color: #7a8595;
  font-size: 12px;
  font-weight: 800;
}
.resource-body h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 22px;
  line-height: 1.08;
}
.resource-body p {
  margin: 0;
  color: #596579;
  font-size: 14px;
}
.resource-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, .08);
}
.resource-foot strong { color: #07111f; }
.mini-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  background: #ff7a18;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.center-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.light-btn {
  min-height: 42px;
  color: #07111f !important;
  background: #fff !important;
}
.soft-band {
  background: linear-gradient(180deg, #fbfcff, #eef6ff);
}
.community-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(380px, 1fr);
  gap: 44px;
  align-items: start;
}
.section-copy h2 {
  margin: 9px 0 16px;
  color: #07111f;
  font-size: clamp(36px, 6vw, 72px);
  line-height: .94;
}
.section-copy p {
  max-width: 560px;
  margin: 0;
  color: #5d6879;
  font-size: 18px;
}
.system-list {
  display: grid;
  gap: 10px;
}
.system-list a {
  display: grid;
  grid-template-columns: 48px 160px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, .1);
  background: rgba(255,255,255,.8);
}
.system-list small {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dffaff;
  color: #0066ff;
  font-weight: 950;
}
.system-list strong { color: #101827; font-size: 18px; }
.system-list span { color: #637083; font-size: 14px; }
.dark-final {
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 229, 255, .18), transparent 26%),
    linear-gradient(180deg, #07111f, #030508);
  color: #fff;
}
.access-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  padding: 46px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: rgba(255,255,255,.045);
}
.access-panel h2 {
  max-width: 800px;
  margin: 10px 0 14px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: .96;
}
.access-panel p {
  max-width: 650px;
  margin: 0;
  color: #aeb9c8;
  font-size: 17px;
}
.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.platform-hero {
  padding-bottom: 42px;
}
.platform-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.platform-stats span {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  color: var(--muted);
  font-weight: 780;
}
.platform-stats strong {
  color: #fff;
  font-size: 24px;
}
.trend-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}
.trend-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
}
.trend-side span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.trend-side a {
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 780;
}
.trend-side a:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}
.trend-feed {
  display: grid;
  gap: 12px;
}
.trend-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
}
.trend-rank {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,223,245,.13);
  color: var(--cyan);
  font-weight: 950;
}
.trend-meta,
.trend-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.trend-meta span,
.trend-tags span {
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,.055);
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
}
.trend-meta span:first-child {
  color: var(--cyan);
  border-color: rgba(0,223,245,.22);
  background: rgba(0,223,245,.1);
}
.trend-card h2 {
  margin: 12px 0 8px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.02;
}
.trend-card p {
  margin: 0 0 14px;
  color: var(--muted);
}
.trend-use {
  margin-top: 10px;
  color: #c8d3e3;
  font-size: 14px;
}
.trend-use strong {
  color: #fff;
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.tool-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
}
.tool-card h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.05;
}
.tool-card p {
  margin: 0;
  color: var(--muted);
}
.skill-card {
  gap: 18px;
}
.skill-card .btn {
  width: max-content;
}

.engine-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 54% 21%, rgba(0, 229, 255, .18), transparent 18%),
    radial-gradient(circle at 88% 28%, rgba(59, 130, 246, .16), transparent 24%),
    radial-gradient(circle at 15% 82%, rgba(0, 102, 255, .14), transparent 28%),
    linear-gradient(180deg, #020712 0%, #040912 54%, #030508 100%);
}
.engine-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,.9), transparent 78%);
}
.engine-top {
  border-radius: 20px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, .28);
}
.mark.small {
  width: 44px;
  height: 44px;
  border-radius: 16px;
}
.engine-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .78fr) minmax(260px, .58fr);
  gap: 28px;
  align-items: center;
  min-height: calc(100svh - 100px);
  padding: 42px 0 26px;
}
.engine-copy h1 {
  max-width: 760px;
  margin: 18px 0 18px;
  font-size: clamp(72px, 9vw, 132px);
  line-height: .84;
}
.engine-copy h1 span {
  color: var(--cyan);
  text-shadow: 0 0 24px rgba(0, 229, 255, .75);
}
.engine-copy p {
  max-width: 560px;
  margin: 0;
  color: #cfdaea;
  font-size: clamp(17px, 1.5vw, 21px);
}
.engine-status {
  width: min(100%, 370px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding: 14px;
  border: 1px solid rgba(0, 229, 255, .28);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(59,130,246,.075));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09);
}
.engine-status small {
  display: block;
  color: #9fb0c5;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.engine-status strong {
  display: block;
  margin-top: 2px;
}
.engine-status i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00f0b5;
  box-shadow: 0 0 18px rgba(0, 240, 181, .8);
}
.engine-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.engine-pill {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  color: #fff;
  font-weight: 880;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.engine-pill.hot {
  border-color: rgba(255, 132, 40, .56);
  background: linear-gradient(135deg, rgba(255,132,40,.24), rgba(255,132,40,.06));
}
.engine-pill.blue {
  border-color: rgba(59,130,246,.54);
  background: linear-gradient(135deg, rgba(0,102,255,.24), rgba(0,229,255,.06));
}
.engine-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}
.engine-visual img {
  position: relative;
  z-index: 2;
  width: min(100%, 380px);
  filter: drop-shadow(0 32px 70px rgba(0, 102, 255, .35));
  animation: floatBot 5.8s ease-in-out infinite;
}
.bot-aura {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,.34), rgba(0,102,255,.12) 52%, transparent 70%);
  filter: blur(10px);
}
.orbit-ring {
  position: absolute;
  border: 1px solid rgba(0,229,255,.32);
  border-radius: 50%;
  transform: rotate(-12deg);
}
.ring-one {
  width: 380px;
  height: 128px;
  animation: orbitPulse 7s linear infinite;
}
.ring-two {
  width: 300px;
  height: 520px;
  border-color: rgba(59,130,246,.28);
  animation: orbitPulse 10s linear infinite reverse;
}
@keyframes floatBot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes orbitPulse {
  0% { opacity: .36; transform: rotate(-12deg) scale(1); }
  50% { opacity: .75; transform: rotate(8deg) scale(1.04); }
  100% { opacity: .36; transform: rotate(-12deg) scale(1); }
}
.engine-side {
  padding: 20px;
  border-left: 1px solid rgba(255,255,255,.08);
}
.engine-side > span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.engine-side h2 {
  margin: 12px 0 14px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: .98;
}
.engine-side p {
  margin: 0 0 22px;
  color: #9fb0c5;
}
.engine-mini-list {
  display: grid;
  gap: 10px;
}
.engine-mini-list a {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 8px 12px;
  align-items: center;
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
}
.engine-mini-list small {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #031014;
  font-weight: 950;
}
.engine-mini-list span {
  color: #93a3b8;
  font-size: 12px;
}
.engine-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, .8fr) minmax(240px, .8fr);
  gap: 16px;
  padding: 8px 0 80px;
}
.engine-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 10% 8%, rgba(0,229,255,.12), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
}
.engine-card.wide {
  background:
    radial-gradient(circle at 75% 0%, rgba(0,102,255,.18), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}
.engine-card h2,
.engine-card h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.02;
}
.engine-card p {
  margin: 0;
  color: #b9c6d8;
}
.engine-card-foot {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.engine-card-foot strong::before {
  content: "";
  width: 9px;
  height: 9px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: #00f0b5;
  box-shadow: 0 0 18px rgba(0, 240, 181, .8);
}
.engine-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  align-self: center;
  border: 1px solid rgba(0,229,255,.36);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0,102,255,.34), rgba(0,229,255,.1));
  color: #fff;
  font-size: 28px;
  font-weight: 950;
  box-shadow: 0 0 34px rgba(0,102,255,.34);
}

.wt-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 74% 8%, rgba(0, 102, 255, .22), transparent 20%),
    radial-gradient(circle at 94% 44%, rgba(124, 58, 237, .16), transparent 24%),
    radial-gradient(circle at 6% 78%, rgba(0, 229, 255, .10), transparent 24%),
    linear-gradient(180deg, #020713 0%, #030711 48%, #02050d 100%);
}
.wt-page .shell {
  width: min(1520px, calc(100% - 56px));
}
.wt-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(55, 131, 255, .35) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 96px 96px, 56px 56px, 56px 56px;
  mask-image: radial-gradient(circle at 52% 18%, rgba(0,0,0,.95), transparent 82%);
  opacity: .42;
}
.wt-top {
  width: min(1520px, calc(100% - 56px));
  min-height: 76px;
  padding: 12px 18px;
  border-radius: 22px;
  background: rgba(3, 8, 20, .78);
  box-shadow: 0 20px 80px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.06);
}
.wt-nav {
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.wt-cta {
  border: 0;
  background: linear-gradient(135deg, #40c8ff, #7c3aed);
  box-shadow: 0 16px 44px rgba(55, 119, 255, .35), inset 0 1px 0 rgba(255,255,255,.24);
}
.wt-cta.large {
  min-height: 56px;
  padding-inline: 28px;
}
.wt-ghost {
  gap: 12px;
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.045);
}
.wt-ghost.bright {
  border-color: rgba(0,229,255,.42);
}
.play-dot {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  font-size: 9px;
  text-transform: uppercase;
}
.wt-hero {
  display: grid;
  grid-template-columns: minmax(560px, .92fr) minmax(520px, 1fr);
  gap: clamp(34px, 5vw, 88px);
  align-items: center;
  min-height: min(820px, calc(100svh - 98px));
  padding: 64px 0 42px;
}
.wt-badge {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: #dfeaff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.wt-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00f0b5;
  box-shadow: 0 0 18px rgba(0,240,181,.78);
}
.wt-hero h1 {
  max-width: 840px;
  margin: 26px 0 20px;
  font-size: clamp(44px, 5.9vw, 88px);
  line-height: .98;
  letter-spacing: 0;
}
.wt-hero-internal h1 {
  font-size: clamp(54px, 5.6vw, 92px);
  line-height: .94;
}
.wt-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #78d9ff, #9772ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.wt-hero-copy p {
  max-width: 720px;
  margin: 0;
  color: #c5d0df;
  font-size: 18px;
}
.wt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}
.wt-proof {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 12px;
  align-items: center;
  margin-top: 34px;
  color: #fff;
}
.wt-proof small {
  grid-column: 2;
  color: #93a3b8;
}
.wt-avatars {
  grid-row: span 2;
  display: flex;
}
.wt-avatars span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-left: -7px;
  border: 2px solid #061026;
  border-radius: 50%;
  background: linear-gradient(135deg, #10c7ff, #8c5cff);
  font-size: 10px;
  font-weight: 950;
}
.wt-avatars span:first-child {
  margin-left: 0;
}
.wt-bot-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.wt-bot-stage img {
  position: relative;
  z-index: 3;
  width: min(92%, 540px);
  filter: drop-shadow(0 34px 80px rgba(0,102,255,.38));
  animation: floatBot 6s ease-in-out infinite;
}
.wt-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,.30), rgba(0,102,255,.10) 54%, transparent 72%);
  filter: blur(6px);
}
.wt-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(0,229,255,.28);
  border-radius: 50%;
}
.wt-orbit.one {
  width: min(760px, 100%);
  height: 240px;
  transform: rotate(-14deg);
}
.wt-orbit.two {
  width: 440px;
  height: 650px;
  transform: rotate(18deg);
  border-color: rgba(93,140,255,.22);
}
.wt-float-card {
  position: absolute;
  z-index: 2;
  width: 122px;
  min-height: 74px;
  padding: 14px;
  border: 1px solid rgba(84,154,255,.26);
  border-radius: 14px;
  background: rgba(6, 18, 42, .68);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.wt-float-card strong,
.wt-float-card span {
  display: block;
}
.wt-float-card strong {
  color: #88dfff;
  font-size: 12px;
}
.wt-float-card span {
  margin-top: 4px;
  color: #fff;
  font-weight: 950;
}
.fc-1 { left: 8%; top: 18%; }
.fc-2 { right: 8%; top: 20%; }
.fc-3 { right: 2%; bottom: 26%; }
.fc-4 { left: 2%; bottom: 28%; }
.wt-feature-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 18px;
  padding: 20px 0 56px;
}
.wt-feature-row-internal {
  grid-template-columns: repeat(4, minmax(210px, 1fr));
}
.wt-feature,
.wt-mini-card,
.wt-segment,
.wt-dashboard,
.wt-final-cta,
.wt-footer,
.wt-trusted {
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.wt-feature {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 20px;
  border-radius: 18px;
  min-width: 0;
}
.mark.mini,
.wt-line-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(0,229,255,.08);
  color: var(--cyan);
  border: 1px solid rgba(0,229,255,.18);
  font-weight: 950;
}
.wt-feature strong {
  font-size: 17px;
  overflow-wrap: normal;
  word-break: normal;
}
.wt-feature small {
  color: #8fa1b8;
  line-height: 1.45;
  overflow-wrap: normal;
  word-break: normal;
}
.wt-dashboard {
  display: grid;
  grid-template-columns: minmax(360px, .38fr) minmax(720px, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  margin-top: 2px;
  padding: clamp(34px, 4vw, 64px);
  border-radius: 26px;
}
.wt-dashboard-copy h2 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 1;
}
.wt-dashboard-copy p {
  color: #b7c4d7;
}
.wt-dashboard-copy ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
  color: #dce8f8;
}
.wt-dashboard-copy li::before {
  content: "";
  width: 9px;
  height: 9px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  background: #00f0b5;
}
.wt-dashboard-ui {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 164px;
  gap: 18px;
  min-height: 460px;
  padding: 20px;
  border: 1px solid rgba(0,229,255,.22);
  border-radius: 22px;
  background: radial-gradient(circle at 82% 0, rgba(0,102,255,.20), transparent 36%), rgba(3, 10, 25, .76);
}
.wt-dashboard-ui aside {
  display: grid;
  align-content: start;
  gap: 16px;
  padding-top: 8px;
}
.wt-dashboard-ui aside span {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.045);
}
.wt-dashboard-ui aside span:first-child {
  background: rgba(0,229,255,.14);
}
.wt-dashboard-main {
  display: grid;
  gap: 18px;
}
.wt-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.wt-stats div,
.wt-table div,
.wt-score {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
}
.wt-stats div {
  min-height: 82px;
  padding: 14px;
}
.wt-stats small,
.wt-score small {
  display: block;
  color: #8fa1b8;
  font-size: 11px;
}
.wt-stats strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
}
.wt-stats em {
  color: #00f0b5;
  font-style: normal;
  font-size: 12px;
}
.wt-chart {
  width: 100%;
  min-height: 130px;
}
.wt-table {
  display: grid;
  gap: 8px;
}
.wt-table div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  color: #cad7e8;
  font-size: 13px;
}
.wt-table b {
  color: #00f0b5;
}
.wt-score {
  display: grid;
  place-items: center;
  align-content: center;
  padding: 18px;
  text-align: center;
}
.wt-score strong {
  display: block;
  margin-top: 18px;
  color: #00f0b5;
  font-size: 54px;
  line-height: .9;
}
.wt-score span {
  color: #8fa1b8;
}
.wt-section {
  padding: 94px 0 0;
}
.wt-center {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}
.wt-center span {
  color: #8d7bff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.wt-center h2 {
  margin: 14px 0 0;
  font-size: clamp(42px, 4.6vw, 72px);
  line-height: 1.02;
}
.wt-center.compact h2 {
  font-size: clamp(26px, 3vw, 36px);
}
.wt-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  gap: 20px;
}
.wt-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: 20px;
}
.wt-mini-card,
.wt-segment {
  min-height: 220px;
  padding: 28px;
  border-radius: 18px;
}
.wt-mini-card span,
.wt-segment span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(0,229,255,.08);
  color: var(--cyan);
  border: 1px solid rgba(0,229,255,.16);
}
.wt-mini-card h3,
.wt-segment h3 {
  margin: 30px 0 12px;
  font-size: 22px;
  line-height: 1.15;
}
.wt-mini-card p,
.wt-segment p {
  margin: 0;
  color: #9fb0c5;
}
.wt-trusted {
  margin-top: 62px;
  padding: 28px 32px;
  border-radius: 20px;
  text-align: center;
}
.wt-trusted > span {
  color: #8d7bff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.wt-trusted div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
  color: rgba(255,255,255,.58);
  font-size: clamp(18px, 2vw, 28px);
}
.wt-segment small {
  display: inline-flex;
  margin-top: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0,229,255,.08);
  color: var(--cyan);
}
.wt-final-cta {
  display: grid;
  grid-template-columns: minmax(620px, 1fr) minmax(420px, .48fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  margin-top: 62px;
  padding: clamp(44px, 5vw, 76px);
  border-radius: 24px;
}
.wt-final-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(42px, 4.6vw, 72px);
  line-height: .98;
}
.wt-final-cta p {
  margin: 0 0 34px;
  color: #b8c5d7;
}
.wt-mini-dashboard {
  min-height: 300px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(0,229,255,.16);
  border-radius: 22px;
  background: radial-gradient(circle at 88% 20%, rgba(124,58,237,.18), transparent 40%), rgba(3,10,25,.72);
}
.wt-mini-dashboard div {
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,229,255,.14), rgba(255,255,255,.035));
}
.wt-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(150px, .7fr) minmax(170px, .75fr) minmax(250px, 1fr);
  gap: clamp(28px, 4vw, 64px);
  margin-top: 34px;
  margin-bottom: 32px;
  padding: clamp(34px, 4vw, 58px);
  border-radius: 24px;
}
.wt-footer-brand p,
.wt-newsletter p {
  color: #94a6bd;
}
.wt-social {
  display: flex;
  gap: 10px;
}
.wt-social span {
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  color: #dbe8f8;
  font-size: 11px;
}
.wt-footer-col {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}
.wt-footer-col strong,
.wt-newsletter strong {
  color: #8d7bff;
  font-size: 12px;
  text-transform: uppercase;
}
.wt-footer-col a {
  color: #c5d0df;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}
.wt-newsletter {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
}
.wt-newsletter label {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
  min-height: 48px;
  margin-top: 20px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(0,0,0,.18);
}
.wt-newsletter input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding-left: 14px;
  background: transparent;
  color: #fff;
}
.wt-newsletter button {
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #40c8ff, #7c3aed);
  color: #fff;
  font-weight: 950;
}
.wt-footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #90a1b7;
  font-size: 13px;
}
.wt-footer-bottom i {
  width: 9px;
  height: 9px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: #00f0b5;
}

@media (max-width: 1180px) {
  .wt-hero,
  .wt-dashboard,
  .wt-final-cta {
    grid-template-columns: 1fr;
  }
  .wt-bot-stage {
    min-height: 540px;
  }
  .wt-feature-row,
  .wt-feature-row-internal,
  .wt-grid-4,
  .wt-grid-3 {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
  .wt-dashboard-ui {
    grid-template-columns: 54px minmax(0, 1fr) 160px;
  }
}

@media (max-width: 960px) {
  .nav { display: none; }
  .hero-grid, .section-head, .detail-grid { grid-template-columns: 1fr; }
  .side { position: static; }
  .grid-3, .grid-2, .mini-grid, .step-grid, .tool-grid { grid-template-columns: 1fr; }
  .item { grid-template-columns: 1fr; }
  .item .btn { width: max-content; }
  .home-hero { min-height: auto; padding-top: 54px; }
  .community-grid, .access-panel, .trend-layout { grid-template-columns: 1fr; }
  .system-list a { grid-template-columns: 42px 1fr; }
  .system-list span { grid-column: 2; }
  .access-actions { justify-content: flex-start; }
  .trend-side { position: static; }
  .trend-card { grid-template-columns: 1fr; }
  .trend-card .btn { width: max-content; }
  .engine-hero, .engine-panel, .wt-footer { grid-template-columns: 1fr; }
  .engine-visual { min-height: 420px; }
  .engine-side { border-left: 0; padding: 0 0 20px; }
  .wt-feature-row, .wt-feature-row-internal, .wt-grid-4, .wt-grid-3 { grid-template-columns: repeat(2, minmax(260px, 1fr)); }
  .wt-dashboard-ui { grid-template-columns: 42px minmax(0, 1fr); }
  .wt-score { grid-column: 2; }
  .wt-trusted div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wt-footer-bottom { flex-direction: column; }
}
@media (max-width: 680px) {
  .shell, .wt-page .shell { width: min(100% - 22px, 1120px); }
  .top { border-radius: 22px; }
  .brand-copy span { display: none; }
  h1 { font-size: clamp(42px, 14vw, 68px); }
  .section { padding: 58px 0; }
  .filters { grid-template-columns: 1fr; }
  .actions .btn { width: 100%; }
  .home-top .btn.primary { display: none; }
  .home-title-row { flex-direction: column-reverse; gap: 14px; }
  .home-title-row h1 { font-size: clamp(46px, 14vw, 62px); line-height: .9; }
  .mascot-chip { width: 84px; height: 84px; border-radius: 24px; transform: rotate(1deg); }
  .home-subtitle { max-width: 34ch; font-size: 17px; }
  .home-actions .pill { width: 100%; justify-content: center; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-card.wide { grid-column: auto; }
  .resource-cover img { width: 46%; right: 10px; }
  .community-grid { gap: 24px; }
  .system-list a { grid-template-columns: 1fr; }
  .system-list span { grid-column: auto; }
  .access-panel { padding: 24px; }
  .access-actions .btn { width: 100%; }
  .engine-copy h1 { font-size: clamp(58px, 20vw, 82px); }
  .engine-actions .engine-pill { width: 100%; justify-content: center; }
  .engine-visual { min-height: 360px; }
  .engine-visual img { width: min(92%, 300px); }
  .ring-one { width: 300px; height: 100px; }
  .ring-two { width: 230px; height: 400px; }
  .engine-card-foot { align-items: flex-start; flex-direction: column; }
  .wt-top { width: min(100% - 22px, 1120px); }
  .wt-hero { min-height: auto; padding-top: 42px; }
  .wt-hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .wt-hero-copy p { font-size: 16px; }
  .wt-bot-stage { min-height: 410px; }
  .wt-bot-stage img { width: min(88%, 320px); }
  .wt-orbit.one { width: 320px; height: 110px; }
  .wt-orbit.two { width: 230px; height: 340px; }
  .wt-float-card { width: 96px; min-height: 58px; padding: 10px; }
  .fc-1 { left: 0; top: 14%; }
  .fc-2 { right: 0; top: 16%; }
  .fc-3 { right: 0; bottom: 18%; }
  .fc-4 { left: 0; bottom: 20%; }
  .wt-feature-row, .wt-feature-row-internal, .wt-grid-4, .wt-grid-3 { grid-template-columns: 1fr; }
  .wt-dashboard, .wt-final-cta, .wt-footer { padding: 22px; }
  .wt-dashboard-ui { grid-template-columns: 1fr; }
  .wt-dashboard-ui aside { display: none; }
  .wt-stats { grid-template-columns: 1fr; }
  .wt-score { grid-column: auto; }
  .wt-trusted div { grid-template-columns: 1fr; }
  .wt-actions .btn { width: 100%; }
}
