:root {
  color-scheme: dark;
  --bg: #070812;
  --bg-2: #0a0d18;
  --surface: #111426;
  --surface-2: #15192b;
  --surface-3: #181c31;
  --line: rgba(139, 150, 255, 0.16);
  --line-strong: rgba(151, 126, 255, 0.34);
  --text: #f5f7ff;
  --text-soft: #c7cde3;
  --muted: #8f98b8;
  --muted-2: #697391;
  --accent: #7c8cff;
  --accent-2: #9b6dff;
  --accent-3: #4f6dff;
  --success: #7fe3b2;
  --warning: #e7b96c;
  --danger: #ed7d9a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 18px;
  --radius-sm: 12px;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f7f8ff;
  --bg-2: #eef2ff;
  --surface: #ffffff;
  --surface-2: #f4f6ff;
  --surface-3: #eef2ff;
  --line: rgba(79, 109, 255, 0.18);
  --line-strong: rgba(126, 88, 255, 0.34);
  --text: #111426;
  --text-soft: #2f3652;
  --muted: #687293;
  --muted-2: #858ead;
  --accent: #5368ff;
  --accent-2: #7b52ff;
  --accent-3: #315cff;
  --success: #1f9f6d;
  --warning: #a97822;
  --danger: #c93d67;
  --shadow: 0 24px 80px rgba(50, 61, 120, 0.16);
}

* {
  box-sizing: border-box;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(124, 140, 255, 0.72) rgba(8, 11, 24, 0.74);
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: rgba(8, 11, 24, 0.72);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
  border: 2px solid rgba(8, 11, 24, 0.92);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(124, 140, 255, 0.82), rgba(155, 109, 255, 0.76));
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(151, 163, 255, 0.95), rgba(172, 132, 255, 0.9));
}

:root[data-theme="light"] * {
  scrollbar-color: rgba(83, 104, 255, 0.68) rgba(226, 231, 249, 0.9);
}

:root[data-theme="light"] *::-webkit-scrollbar-track {
  background: rgba(226, 231, 249, 0.9);
}

:root[data-theme="light"] *::-webkit-scrollbar-thumb {
  border-color: rgba(246, 248, 255, 0.95);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(76, 100, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 86% 4%, rgba(126, 72, 255, 0.16), transparent 32rem),
    linear-gradient(180deg, #070812 0%, #090b16 42%, #070812 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 70%);
}

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

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

code,
pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", ui-monospace, monospace;
}

code {
  border: 1px solid rgba(139, 150, 255, 0.18);
  border-radius: 7px;
  background: rgba(139, 150, 255, 0.1);
  color: #dfe4ff;
  padding: 0.08rem 0.3rem;
  font-size: 0.92em;
}

.skip-link {
  position: absolute;
  top: -56px;
  left: 18px;
  z-index: 50;
  border-radius: var(--radius-sm);
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  font-weight: 800;
}

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

.shell {
  width: min(1560px, calc(100% - clamp(32px, 4vw, 80px)));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(139, 150, 255, 0.12);
  background: rgba(7, 8, 18, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: block;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-text {
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  padding: 9px 12px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(139, 150, 255, 0.1);
  color: var(--text);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1;
  padding: 0 11px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: rgba(139, 150, 255, 0.1);
  color: var(--text);
}

.theme-toggle-icon {
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c8cff, #9b6dff);
  box-shadow: inset -4px -2px 0 rgba(7, 8, 18, 0.86);
}

:root[data-theme="light"] .theme-toggle-icon {
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.72);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-cta {
  border: 1px solid rgba(151, 126, 255, 0.36);
  background: rgba(139, 150, 255, 0.1);
  color: var(--text);
  padding: 0 16px;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  font-weight: 850;
  padding: 0 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 82px;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.75;
}

.hero-glow-one {
  width: 44rem;
  height: 44rem;
  top: -18rem;
  right: -14rem;
  background: radial-gradient(circle, rgba(127, 94, 255, 0.2), transparent 68%);
}

.hero-glow-two {
  width: 38rem;
  height: 38rem;
  left: -18rem;
  bottom: -16rem;
  background: radial-gradient(circle, rgba(64, 98, 255, 0.16), transparent 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 950;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.6vw, 4.5rem);
  font-weight: 930;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  font-weight: 880;
}

.hero-lead {
  width: min(720px, 100%);
  color: var(--text-soft);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

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

.button {
  border: 1px solid transparent;
  padding: 0 18px;
}

.button-primary {
  background: linear-gradient(135deg, #4f6dff, #8b5cff 58%, #6f46ff);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(86, 93, 255, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 42px rgba(86, 93, 255, 0.36);
}

.button-secondary {
  border-color: rgba(151, 126, 255, 0.32);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(151, 126, 255, 0.62);
  background: rgba(139, 150, 255, 0.1);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  padding: 8px 12px;
}

.hero-visual {
  min-width: 0;
}

.product-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(151, 126, 255, 0.28);
  border-radius: 26px;
  background:
    radial-gradient(circle at 78% 6%, rgba(125, 104, 255, 0.23), transparent 18rem),
    linear-gradient(145deg, rgba(24, 28, 49, 0.92), rgba(12, 15, 29, 0.96));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.product-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 34%, transparent 72%, rgba(139, 150, 255, 0.07));
}

.frame-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(139, 150, 255, 0.14);
  padding: 0 0 16px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(199, 205, 227, 0.32);
}

.frame-title {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.dashboard-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.72fr;
  gap: 14px;
  padding-top: 18px;
}

.chat-console,
.mini-card,
.network-card,
.item-card {
  border: 1px solid rgba(139, 150, 255, 0.14);
  border-radius: 18px;
  background: rgba(8, 11, 24, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.chat-console {
  min-height: 278px;
  padding: 18px;
}

.console-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.console-head strong {
  color: var(--accent);
}

.message-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(139, 150, 255, 0.11);
  padding: 14px 0;
}

.message-row:first-of-type {
  border-top: 0;
}

.message-row p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.message-row strong {
  color: #dde2ff;
}

.rank {
  align-self: start;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  padding: 4px 8px;
  text-align: center;
}

.rank.owner {
  background: rgba(155, 109, 255, 0.18);
  color: #d8cbff;
}

.rank.staff {
  background: rgba(127, 227, 178, 0.14);
  color: #b9f2d4;
}

.rank.player {
  background: rgba(79, 109, 255, 0.16);
  color: #c8d1ff;
}

.status-column {
  display: grid;
  gap: 12px;
}

.mini-card,
.item-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.mini-card strong,
.item-card strong {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
}

.mini-card small,
.item-card small {
  color: var(--muted);
}

.mini-icon,
.card-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -2 28 28'%3E%3Cpath d='M4 6.5A3.5 3.5 0 0 1 7.5 3h9A3.5 3.5 0 0 1 20 6.5v5A3.5 3.5 0 0 1 16.5 15H11l-5 4v-4.35A3.5 3.5 0 0 1 4 11.5v-5Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M8 8h8M8 11h5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  position: relative;
  flex: 0 0 auto;
  display: inline-block;
  border: 1px solid rgba(151, 126, 255, 0.28);
  background: linear-gradient(135deg, rgba(79, 109, 255, 0.2), rgba(155, 109, 255, 0.16));
}

.mini-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.mini-icon::after,
.card-icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: linear-gradient(135deg, #94a0ff, #9b6dff);
  opacity: 0.95;
  -webkit-mask: var(--icon) center / 92% 92% no-repeat;
  mask: var(--icon) center / 92% 92% no-repeat;
}

.network-card {
  grid-column: 1 / 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 15px;
}

.network-node {
  border: 1px solid rgba(139, 150, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  padding: 7px 8px;
  text-align: center;
}

.network-node.active {
  border-color: rgba(151, 126, 255, 0.42);
  background: rgba(139, 150, 255, 0.14);
  color: var(--text);
}

.network-line {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(79, 109, 255, 0.2), rgba(155, 109, 255, 0.64));
}

.item-card {
  grid-column: 2 / 3;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 28px 0 74px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
}

.stat-strip article {
  background: rgba(17, 20, 38, 0.82);
  padding: 22px;
}

.stat-strip strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 1.18rem;
}

.stat-strip span {
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 36px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-grid {
  display: grid;
  gap: 16px;
}

.main-feature-grid {
  grid-template-columns: repeat(6, 1fr);
}

.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(24, 28, 49, 0.92), rgba(17, 20, 38, 0.92)),
    var(--surface);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 150, 255, 0.5), transparent);
  opacity: 0.65;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.feature-large {
  grid-column: span 2;
  min-height: 310px;
  padding: 26px;
}

.feature-large:nth-child(4),
.feature-large:nth-child(5) {
  grid-column: span 3;
}

.feature-small {
  min-height: 230px;
  padding: 22px;
}

.feature-card p,
.value-card p,
.setup-card p,
.resource-card p,
.faq-list p,
.final-cta p,
.page-card p,
.doc-note p {
  color: var(--muted);
  margin-bottom: 0;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 24px;
}

.card-icon::after {
  inset: 10px;
}

.chat-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -2 28 28'%3E%3Cpath d='M4 6.5A3.5 3.5 0 0 1 7.5 3h9A3.5 3.5 0 0 1 20 6.5v5A3.5 3.5 0 0 1 16.5 15H11l-5 4v-4.35A3.5 3.5 0 0 1 4 11.5v-5Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M8 8h8M8 11h5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.channel-icon,
.channels-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -2 28 28'%3E%3Cpath d='M6 8h12M6 16h12M9 4 7 20M17 4l-2 16' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ping-card-icon,
.ping-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -2 28 28'%3E%3Cpath d='M16 8.5a4 4 0 1 0-1.15 2.8L17.5 14' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18 4.5a8 8 0 0 1 0 11.3M20.5 2a11.5 11.5 0 0 1 0 16.3' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.item-icon,
.item-preview-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -2 28 28'%3E%3Cpath d='m12 3 8 4.5v9L12 21l-8-4.5v-9L12 3Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='m4.5 8 7.5 4.2L19.5 8M12 12.2V21M8 5.2l8 4.5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.bridge-card-icon,
.bridge-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -2 28 28'%3E%3Ccircle cx='6' cy='12' r='3' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='18' cy='6' r='3' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='18' cy='18' r='3' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='m8.7 10.7 6.6-3.4M8.7 13.3l6.6 3.4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.format-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -2 28 28'%3E%3Cpath d='M5 17h14M7 13h10M9 9h6M7 5h10' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='m18 3 .7 1.8L20.5 5l-1.8.7L18 7.5l-.7-1.8L15.5 5l1.8-.7L18 3Z' fill='black'/%3E%3C/svg%3E");
}

.privacy-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -2 28 28'%3E%3Cpath d='M4 7h16v10a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3V7Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='m5 8 7 5 7-5M9 7V5a3 3 0 0 1 6 0v2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.moderation-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -2 28 28'%3E%3Cpath d='M12 3 19 6v5c0 4.4-2.6 7.7-7 10-4.4-2.3-7-5.6-7-10V6l7-3Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='m9 12 2 2 4-5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.keyword-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -2 28 28'%3E%3Cpath d='M7 7H5a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2M17 7h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2M10 16l4-8' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='m9 10-2 2 2 2M15 10l2 2-2 2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.bubble-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -2 28 28'%3E%3Cpath d='M4 7a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v3a4 4 0 0 1-4 4h-4l-5 4v-4.2A4 4 0 0 1 4 10V7Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M8 8h8M8 11h5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.controls-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -2 28 28'%3E%3Cpath d='M5 7h14M5 12h14M5 17h14' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='9' cy='7' r='2' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='15' cy='12' r='2' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='11' cy='17' r='2' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}

.locale-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -2 28 28'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M3.5 12h17M12 3c2.2 2.5 3.2 5.5 3.2 9S14.2 18.5 12 21M12 3C9.8 5.5 8.8 8.5 8.8 12S9.8 18.5 12 21' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.velocity-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -2 28 28'%3E%3Ccircle cx='6' cy='6' r='3' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='18' cy='6' r='3' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='12' cy='18' r='3' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='m8.5 7.4 2.3 7.8M15.5 7.4l-2.3 7.8M9 6h6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.platform-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -2 28 28'%3E%3Cpath d='M5 6h14v5H5V6ZM5 14h14v5H5v-5Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M8 8.5h.1M8 16.5h.1M13 8.5h3M13 16.5h3' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.placeholder-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -2 28 28'%3E%3Cpath d='m8 7-4 5 4 5M16 7l4 5-4 5M10 17l4-10' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='12' r='2' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}

.more-features {
  margin-top: 28px;
  text-align: center;
}

.more-toggle {
  cursor: pointer;
}

.secondary-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 28px;
  text-align: left;
}

.secondary-feature-grid .feature-small {
  grid-column: span 2;
  min-height: 280px;
}

.secondary-feature-grid .feature-small:nth-child(1),
.secondary-feature-grid .feature-small:nth-child(2),
.secondary-feature-grid .feature-small:nth-child(6),
.secondary-feature-grid .feature-small:nth-child(7) {
  grid-column: span 3;
}

.secondary-feature-grid .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  margin-bottom: 20px;
}

.secondary-feature-grid .card-icon::after {
  inset: 9px;
}

.secondary-feature-grid[hidden] {
  display: none;
}

.secondary-feature-grid.is-open {
  animation: reveal 260ms ease both;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.why-section {
  background:
    radial-gradient(circle at 82% 26%, rgba(155, 109, 255, 0.11), transparent 24rem),
    linear-gradient(180deg, rgba(17, 20, 38, 0.72), rgba(10, 13, 24, 0.6));
  border-block: 1px solid rgba(139, 150, 255, 0.1);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 108px;
}

.value-stack {
  display: grid;
  gap: 16px;
}

.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 20, 38, 0.74);
  padding: 28px;
}

.value-card span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--accent);
  font-weight: 950;
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.setup-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 0%, rgba(79, 109, 255, 0.1), transparent 18rem),
    rgba(17, 20, 38, 0.82);
  padding: 30px;
}

.featured-setup {
  border-color: rgba(151, 126, 255, 0.36);
  background:
    radial-gradient(circle at 82% 0%, rgba(155, 109, 255, 0.16), transparent 18rem),
    rgba(17, 20, 38, 0.88);
}

.setup-kicker {
  width: fit-content;
  border: 1px solid rgba(151, 126, 255, 0.3);
  border-radius: 999px;
  background: rgba(139, 150, 255, 0.1);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  padding: 6px 10px;
  text-transform: uppercase;
}

.setup-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.setup-card li {
  position: relative;
  color: var(--text-soft);
  padding-left: 22px;
}

.setup-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
}

.compat-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.compat-line span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  padding: 9px 13px;
}

.compat-line strong {
  color: var(--text-soft);
}

.docs-section {
  background: rgba(10, 13, 24, 0.58);
  border-block: 1px solid rgba(139, 150, 255, 0.1);
}

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

.resource-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 20, 38, 0.78);
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: rgba(24, 28, 49, 0.86);
}

.resource-card span {
  width: fit-content;
  border: 1px solid rgba(151, 126, 255, 0.3);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 5px 9px;
}

.resource-card h3 {
  margin-top: 30px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(17, 20, 38, 0.74);
  overflow: hidden;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-weight: 850;
  padding: 18px 20px;
}

details:hover,
details:focus-within {
  border-color: rgba(151, 126, 255, 0.36);
  background: rgba(20, 24, 43, 0.86);
}

details[open] {
  border-color: rgba(151, 126, 255, 0.42);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.animated-details.is-animating {
  overflow: hidden;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--accent);
  font-weight: 950;
  transition: transform 180ms ease, color 180ms ease;
}

details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
  color: #aeb8ff;
}

details p {
  animation: detailsReveal 220ms ease both;
  padding: 0 20px 20px;
}

@keyframes detailsReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.final-section {
  padding-top: 54px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(151, 126, 255, 0.36);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 18%, rgba(155, 109, 255, 0.26), transparent 22rem),
    linear-gradient(135deg, rgba(24, 28, 49, 0.95), rgba(11, 14, 28, 0.98));
  box-shadow: var(--shadow);
  padding: 46px;
}

.final-cta h2 {
  width: min(760px, 100%);
}

.final-cta p {
  width: min(620px, 100%);
}

.site-footer {
  border-top: 1px solid rgba(139, 150, 255, 0.12);
  background: rgba(7, 8, 18, 0.9);
  padding: 34px 0 28px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 10px;
}

.site-footer p,
.footer-bottom {
  color: var(--muted-2);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-weight: 800;
}

.footer-links a {
  color: var(--muted);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(139, 150, 255, 0.1);
  margin-top: 28px;
  padding-top: 18px;
  font-size: 0.86rem;
}

.page-hero {
  padding: 88px 0 54px;
}

.page-hero .section-heading {
  margin-bottom: 0;
}

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

.page-card,
.doc-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 20, 38, 0.78);
  padding: 24px;
}

.page-card h3 {
  margin-bottom: 14px;
}

.doc-note {
  margin-top: 18px;
}

.docs-resource-row {
  margin-top: 18px;
}

.doc-page {
  padding-top: 58px;
}

.doc-page .shell {
  width: min(1840px, calc(100% - clamp(40px, 4vw, 96px)));
}

.doc-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(24px, 2vw, 46px);
  align-items: start;
}

.doc-sidebar,
.resource-sidebar {
  position: sticky;
  top: 98px;
  max-height: calc(100svh - 120px);
  overflow: auto;
  scrollbar-gutter: stable;
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 20, 38, 0.82);
  padding: 14px;
}

.doc-sidebar strong,
.resource-sidebar > strong {
  color: var(--text);
  margin: 2px 8px 8px;
}

.doc-sidebar a {
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.25;
  padding: 9px 10px;
}

.doc-sidebar a:hover,
.doc-sidebar a:focus-visible {
  background: rgba(139, 150, 255, 0.1);
  color: var(--text);
}

.resource-sidebar {
  gap: 10px;
}

.side-resource-card {
  display: block;
  border: 1px solid rgba(139, 150, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(8, 11, 24, 0.34);
  padding: 14px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.side-resource-card:hover,
.side-resource-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(24, 28, 49, 0.7);
}

.side-resource-card.is-current {
  border-color: rgba(151, 126, 255, 0.46);
  background: rgba(139, 150, 255, 0.1);
}

.side-resource-card span {
  display: inline-block;
  width: fit-content;
  border: 1px solid rgba(151, 126, 255, 0.3);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
  padding: 5px 8px;
}

.side-resource-card h3 {
  margin-bottom: 7px;
  font-size: 0.96rem;
}

.side-resource-card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  margin: 0;
}

.markdown-body {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(17, 20, 38, 0.76);
  padding: 34px;
}

.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
  scroll-margin-top: 96px;
}

.markdown-body h2 {
  margin-top: 44px;
  padding-top: 8px;
  font-size: clamp(1.85rem, 3.4vw, 3.2rem);
}

.markdown-body h2:first-child {
  margin-top: 0;
}

.markdown-body h3 {
  margin-top: 34px;
  font-size: 1.38rem;
}

.markdown-body h4 {
  margin-top: 28px;
  font-size: 1.08rem;
}

.markdown-body p,
.markdown-body li {
  color: var(--text-soft);
}

.markdown-body p {
  margin-bottom: 16px;
}

.markdown-body ul,
.markdown-body ol {
  display: grid;
  gap: 8px;
  margin: 14px 0 22px;
  padding-left: 1.25rem;
}

.markdown-body li::marker {
  color: var(--accent);
}

.markdown-body hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 34px 0;
}

.markdown-body a {
  color: #dfe4ff;
  text-decoration: underline;
  text-decoration-color: rgba(139, 150, 255, 0.5);
  text-underline-offset: 3px;
}

.config-jump {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: -2px 0 18px;
  color: var(--muted);
}

.config-jump span {
  color: var(--muted-2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.markdown-body .config-jump a {
  border: 1px solid rgba(151, 126, 255, 0.28);
  border-radius: 999px;
  background: rgba(139, 150, 255, 0.09);
  color: #dfe4ff;
  font-size: 0.84rem;
  font-weight: 820;
  line-height: 1;
  padding: 8px 10px;
  text-decoration: none;
}

.markdown-body .config-jump a:hover,
.markdown-body .config-jump a:focus-visible {
  border-color: rgba(151, 126, 255, 0.58);
  background: rgba(139, 150, 255, 0.15);
}

.code-block {
  overflow-x: auto;
  max-width: 100%;
  scrollbar-gutter: stable;
  border: 1px solid rgba(139, 150, 255, 0.18);
  border-radius: var(--radius-sm);
  background: #090c18;
  color: #e9ecff;
  line-height: 1.55;
  padding: 18px;
  white-space: pre;
}

.code-block code {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
}

:root[data-theme="light"] body {
  background:
    radial-gradient(circle at 12% 8%, rgba(79, 109, 255, 0.13), transparent 30rem),
    radial-gradient(circle at 86% 4%, rgba(126, 82, 255, 0.12), transparent 32rem),
    linear-gradient(180deg, #f8faff 0%, #eef2ff 48%, #f7f8ff 100%);
}

:root[data-theme="light"] body::before {
  background:
    linear-gradient(rgba(79, 109, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 109, 255, 0.045) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.24), transparent 74%);
}

:root[data-theme="light"] code {
  border-color: rgba(79, 109, 255, 0.18);
  background: rgba(79, 109, 255, 0.08);
  color: #26316d;
}

:root[data-theme="light"] .skip-link {
  background: var(--text);
  color: #ffffff;
}

:root[data-theme="light"] .site-header {
  border-bottom-color: rgba(79, 109, 255, 0.14);
  background: rgba(248, 250, 255, 0.82);
}

:root[data-theme="light"] .nav-links a:hover,
:root[data-theme="light"] .nav-links a:focus-visible,
:root[data-theme="light"] .nav-cta,
:root[data-theme="light"] .theme-toggle,
:root[data-theme="light"] .button-secondary,
:root[data-theme="light"] .hero-facts li,
:root[data-theme="light"] .compat-line span {
  background: rgba(79, 109, 255, 0.07);
}

:root[data-theme="light"] .nav-toggle,
:root[data-theme="light"] .nav-links {
  background: rgba(248, 250, 255, 0.98);
}

:root[data-theme="light"] .button-primary {
  box-shadow: 0 16px 38px rgba(79, 92, 220, 0.24);
}

:root[data-theme="light"] .product-frame,
:root[data-theme="light"] .final-cta {
  background:
    radial-gradient(circle at 78% 6%, rgba(126, 82, 255, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(239, 243, 255, 0.98));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

:root[data-theme="light"] .product-frame::after {
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.72), transparent 34%, transparent 72%, rgba(79, 109, 255, 0.1));
}

:root[data-theme="light"] .dot {
  background: rgba(74, 84, 120, 0.28);
}

:root[data-theme="light"] .chat-console,
:root[data-theme="light"] .mini-card,
:root[data-theme="light"] .network-card,
:root[data-theme="light"] .item-card,
:root[data-theme="light"] .stat-strip article,
:root[data-theme="light"] .feature-card,
:root[data-theme="light"] .value-card,
:root[data-theme="light"] .setup-card,
:root[data-theme="light"] .resource-card,
:root[data-theme="light"] details,
:root[data-theme="light"] .page-card,
:root[data-theme="light"] .doc-note,
:root[data-theme="light"] .markdown-body,
:root[data-theme="light"] .doc-sidebar,
:root[data-theme="light"] .resource-sidebar,
:root[data-theme="light"] .side-resource-card {
  background: rgba(255, 255, 255, 0.78);
}

:root[data-theme="light"] .feature-card,
:root[data-theme="light"] .setup-card,
:root[data-theme="light"] .resource-card,
:root[data-theme="light"] .value-card,
:root[data-theme="light"] .page-card,
:root[data-theme="light"] .doc-note,
:root[data-theme="light"] .markdown-body,
:root[data-theme="light"] .doc-sidebar,
:root[data-theme="light"] .resource-sidebar,
:root[data-theme="light"] details {
  box-shadow: 0 16px 46px rgba(51, 61, 120, 0.08);
}

:root[data-theme="light"] .feature-card::before {
  background: linear-gradient(90deg, transparent, rgba(79, 109, 255, 0.34), transparent);
}

:root[data-theme="light"] .feature-card:hover,
:root[data-theme="light"] .resource-card:hover,
:root[data-theme="light"] .resource-card:focus-visible,
:root[data-theme="light"] details:hover,
:root[data-theme="light"] details:focus-within,
:root[data-theme="light"] .side-resource-card:hover,
:root[data-theme="light"] .side-resource-card:focus-visible {
  background: rgba(249, 251, 255, 0.94);
}

:root[data-theme="light"] .why-section,
:root[data-theme="light"] .docs-section {
  background:
    radial-gradient(circle at 82% 26%, rgba(126, 82, 255, 0.08), transparent 24rem),
    linear-gradient(180deg, rgba(248, 250, 255, 0.78), rgba(238, 242, 255, 0.68));
  border-block-color: rgba(79, 109, 255, 0.12);
}

:root[data-theme="light"] .stat-strip {
  background: rgba(79, 109, 255, 0.16);
}

:root[data-theme="light"] .setup-card li::before {
  background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
}

:root[data-theme="light"] .network-node {
  background: rgba(79, 109, 255, 0.06);
}

:root[data-theme="light"] .network-node.active,
:root[data-theme="light"] .side-resource-card.is-current {
  background: rgba(83, 104, 255, 0.11);
}

:root[data-theme="light"] .rank.owner,
:root[data-theme="light"] .rank.player {
  background: rgba(83, 104, 255, 0.11);
  color: #3341a8;
}

:root[data-theme="light"] .rank.staff {
  background: rgba(31, 159, 109, 0.12);
  color: #14694c;
}

:root[data-theme="light"] .markdown-body a {
  color: #3240ad;
  text-decoration-color: rgba(83, 104, 255, 0.45);
}

:root[data-theme="light"] .markdown-body .config-jump a,
:root[data-theme="light"] .resource-card span,
:root[data-theme="light"] .side-resource-card span,
:root[data-theme="light"] .setup-kicker {
  background: rgba(83, 104, 255, 0.08);
}

:root[data-theme="light"] .code-block {
  border-color: rgba(79, 109, 255, 0.18);
  background: #f4f6ff;
  color: #17203e;
}

:root[data-theme="light"] .site-footer {
  border-top-color: rgba(79, 109, 255, 0.14);
  background: rgba(248, 250, 255, 0.92);
}

@media (max-width: 1120px) {
  .resource-grid,
  .page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .nav {
    grid-template-columns: auto auto auto;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(10, 13, 24, 0.98);
    box-shadow: var(--shadow);
    padding: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: var(--radius-sm);
    padding: 12px;
  }

  .nav-links .theme-toggle {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    border-radius: var(--radius-sm);
    padding: 0 12px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

  .hero-grid,
  .why-grid,
  .faq-grid,
  .doc-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .sticky-heading {
    position: static;
  }

  .doc-sidebar,
  .resource-sidebar {
    position: static;
    max-height: none;
  }

  .stat-strip,
  .setup-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .secondary-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .secondary-feature-grid .feature-small,
  .secondary-feature-grid .feature-small:nth-child(1),
  .secondary-feature-grid .feature-small:nth-child(2),
  .secondary-feature-grid .feature-small:nth-child(6),
  .secondary-feature-grid .feature-small:nth-child(7) {
    grid-column: span 1;
  }

  .feature-large,
  .feature-large:nth-child(4),
  .feature-large:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: sticky;
  }

  .nav {
    min-height: 68px;
    gap: 10px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 66px 0 58px;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .product-frame {
    border-radius: 20px;
    padding: 14px;
  }

  .dashboard-grid,
  .stat-strip,
  .main-feature-grid,
  .secondary-feature-grid,
  .setup-grid,
  .resource-grid,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .network-card,
  .item-card {
    grid-column: auto;
  }

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

  .network-line {
    width: 1px;
    height: 16px;
    margin-inline: auto;
  }

  .message-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .section-tight {
    padding-top: 12px;
  }

  .feature-large,
  .feature-small,
  .setup-card,
  .resource-card,
  .value-card,
  .final-cta,
  .markdown-body {
    padding: 22px;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
