:root {
  color-scheme: light;
  --bg: #f5f7fa;
  --surface: #ffffff;
  --surface-2: #eef1f5;
  --surface-3: #e5e9ef;
  --text: #0a0d14;
  --muted: #647087;
  --muted-strong: #3f4a5e;
  --line: #dce2ea;
  --line-strong: #c5ceda;
  --primary: #b68a2d;
  --primary-strong: #6f5119;
  --primary-soft: #fff2cf;
  --primary-ink: #4d3508;
  --success: #14804a;
  --success-soft: #e5f6ec;
  --info: #2563eb;
  --info-soft: #e8efff;
  --danger: #d92d20;
  --danger-soft: #ffebe9;
  --black: #050505;
  --white: #ffffff;
  --header-height: 72px;
  --content-width: 1280px;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(12, 18, 28, 0.08);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #000000;
  --surface: #080808;
  --surface-2: #111111;
  --surface-3: #191919;
  --text: #f7f7f7;
  --muted: #9aa3b2;
  --muted-strong: #c7ccd5;
  --line: #252525;
  --line-strong: #383838;
  --primary: #d0aa58;
  --primary-strong: #b68a2d;
  --primary-soft: #2a2110;
  --primary-ink: #f7dfaa;
  --success: #35c778;
  --success-soft: #0c2819;
  --info: #6c9cff;
  --info-soft: #101c35;
  --danger: #ff6b61;
  --danger-soft: #34100e;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

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

button {
  border: 0;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

::selection {
  background: var(--primary);
  color: var(--white);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -70px;
  z-index: 200;
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: top 160ms ease;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(14px);
}

:root[data-theme="dark"] .site-header {
  background: rgba(0, 0, 0, 0.92);
}

.header-inner {
  width: min(var(--content-width), calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 158px;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
}

.brand-mark img {
  width: 22px;
  height: 22px;
}

.brand span:last-child {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.brand-version {
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 7px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 750;
}

.nav-link:hover {
  background: var(--surface-2);
  color: var(--text);
}

.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -16px;
  height: 2px;
  background: var(--primary);
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.menu-button {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.icon-button:hover,
.menu-button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.icon-button svg,
.menu-button svg,
.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle .moon-icon,
:root[data-theme="dark"] .theme-toggle .sun-icon {
  display: none;
}

:root[data-theme="dark"] .theme-toggle .moon-icon {
  display: block;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 17px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease, transform 140ms ease;
}

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

.button.primary {
  background: var(--primary);
  color: var(--white);
}

:root[data-theme="dark"] .button.primary {
  color: #0b0802;
}

.button.primary:hover {
  background: var(--primary-strong);
  color: var(--white);
}

.button.secondary {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--text);
}

.button.secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.button.on-dark {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.42);
  color: var(--white);
}

.button.on-dark:hover {
  border-color: var(--primary);
  background: var(--black);
}

.menu-button {
  display: none;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.56);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.mobile-menu {
  position: fixed;
  z-index: 151;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(110%);
  border-top: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  background: var(--surface);
  padding: 12px 18px calc(22px + env(safe-area-inset-bottom));
  transition: transform 220ms ease;
}

.mobile-menu-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu-handle {
  width: 40px;
  height: 4px;
  margin: 0 auto 16px;
  border-radius: 99px;
  background: var(--line-strong);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-head strong {
  font-size: 18px;
}

.mobile-menu nav {
  display: grid;
  padding: 12px 0;
}

.mobile-menu nav a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.mobile-menu nav a.active {
  color: var(--primary);
}

.mobile-menu .button {
  width: 100%;
  margin-top: 8px;
}

/* Home hero */
.home-hero {
  position: relative;
  height: calc(100svh - 96px);
  min-height: 620px;
  max-height: 780px;
  overflow: hidden;
  background: #050505;
  color: #ffffff;
}

.home-hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 58%;
  background: rgba(0, 0, 0, 0.84);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 4;
  width: min(var(--content-width), calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: 570px;
  padding-bottom: 16px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(208, 170, 88, 0.15);
}

.hero-copy h1 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy h1 span {
  display: block;
  color: #d0aa58;
}

.hero-copy > p {
  max-width: 530px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #35c778;
}

.product-stage {
  position: absolute;
  z-index: 1;
  top: 54px;
  left: 47%;
  width: 980px;
  transform: perspective(1700px) rotateY(-6deg) rotateX(1deg);
  transform-origin: center left;
}

.product-window {
  overflow: hidden;
  border: 1px solid #2d2d2d;
  border-radius: 8px;
  background: #060606;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58);
}

.window-bar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid #222222;
  background: #0a0a0a;
}

.window-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333333;
}

.window-url {
  width: 310px;
  height: 24px;
  margin-left: 12px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #252525;
  border-radius: 6px;
  color: #777777;
  font-size: 10px;
}

.product-topbar {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 16px;
  border-bottom: 1px solid #222222;
  color: #ffffff;
}

.product-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 900;
}

.product-brand img {
  width: 20px;
  height: 20px;
}

.product-search {
  width: 320px;
  height: 30px;
  display: flex;
  align-items: center;
  margin-left: auto;
  padding: 0 11px;
  border: 1px solid #282828;
  border-radius: 6px;
  background: #111111;
  color: #777777;
  font-size: 10px;
}

.product-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #d0aa58;
  color: #171009;
  font-size: 9px;
  font-weight: 900;
}

.product-body {
  height: 520px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 270px;
  background: #090909;
}

.product-sidebar {
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 16px 13px;
  border-right: 1px solid #222222;
}

.sidebar-logo,
.sidebar-item {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 7px;
}

.sidebar-logo {
  margin-bottom: 8px;
  background: #d0aa58;
  color: #090909;
  font-size: 12px;
  font-weight: 900;
}

.sidebar-item {
  color: #747474;
}

.sidebar-item.active {
  background: #241d0e;
  color: #d0aa58;
}

.sidebar-item svg,
.product-action svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.product-main {
  min-width: 0;
  padding: 16px;
}

.product-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: #ffffff;
}

.product-title-row strong {
  font-size: 13px;
}

.product-action {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border: 1px solid #333333;
  border-radius: 6px;
  color: #bbbbbb;
  font-size: 9px;
}

.product-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid #5f4614;
  border-radius: 7px;
  background: #000000;
}

.product-player > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-pill {
  position: absolute;
  left: 10px;
  top: 10px;
  min-height: 23px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 8px;
  border-radius: 6px;
  background: #e32636;
  color: #ffffff;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.viewer-pill {
  position: absolute;
  left: 54px;
  top: 10px;
  min-height: 23px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.68);
  color: #ffffff;
  font-size: 8px;
  font-weight: 800;
}

.player-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 42px 12px 10px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
}

.player-progress {
  height: 3px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.26);
}

.player-progress i {
  display: block;
  width: 62%;
  height: 100%;
  background: #d0aa58;
}

.player-controls-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 8px;
  font-weight: 700;
}

.player-controls-mini span:last-child {
  margin-left: auto;
}

.product-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.product-metric {
  min-width: 0;
  padding: 9px;
  border: 1px solid #242424;
  border-radius: 6px;
  background: #0d0d0d;
}

.product-metric span,
.product-metric strong {
  display: block;
}

.product-metric span {
  color: #777777;
  font-size: 7px;
}

.product-metric strong {
  margin-top: 4px;
  color: #ffffff;
  font-size: 13px;
}

.product-chat {
  display: flex;
  flex-direction: column;
  border-left: 1px solid #222222;
  background: #0b0b0b;
}

.chat-head {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  border-bottom: 1px solid #222222;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
}

.chat-head span {
  color: #777777;
  font-size: 8px;
}

.chat-log {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 14px 13px;
}

.chat-message {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  color: #b7b7b7;
  font-size: 8px;
  line-height: 1.4;
}

.chat-message i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #252525;
  color: #d0aa58;
  font-style: normal;
  font-weight: 900;
}

.chat-message strong {
  display: block;
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 8px;
}

.chat-message.contribution {
  margin: 0 -4px;
  padding: 8px;
  border: 1px solid #4c3a15;
  border-radius: 6px;
  background: #181306;
}

.chat-form-mini {
  margin: 10px;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 10px;
  border: 1px solid #292929;
  border-radius: 6px;
  background: #111111;
  color: #666666;
  font-size: 8px;
}

.chat-form-mini b {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d0aa58;
  color: #0b0802;
}

.trust-rail {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.trust-rail-inner {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1.35fr repeat(5, 1fr);
  align-items: stretch;
}

.trust-intro,
.trust-item {
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  padding: 20px;
}

.trust-intro {
  padding-left: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
}

.trust-item strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
}

.trust-item span {
  color: var(--muted);
  font-size: 11px;
}

/* Shared sections */
.section {
  padding: 96px 0;
}

.section.compact {
  padding: 72px 0;
}

.section.surface {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.section.dark-band {
  background: #050505;
  color: #ffffff;
}

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

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

.section-heading h2 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 48px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.dark-band .section-heading h2,
.dark-band .section-heading p {
  color: #ffffff;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 850;
}

.text-link:hover {
  color: var(--primary-strong);
}

.showcase-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.showcase-tabs {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}

.showcase-tabs::-webkit-scrollbar {
  display: none;
}

.showcase-tab {
  min-width: max-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: var(--muted-strong);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.showcase-tab svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.showcase-tab:hover {
  background: var(--surface-2);
}

.showcase-tab.active {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary);
}

.showcase-panel {
  display: none;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  min-height: 520px;
}

.showcase-panel.active {
  display: grid;
}

.showcase-visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: #080808;
}

.showcase-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 14px solid rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.visual-ui {
  position: absolute;
  inset: auto 24px 24px;
  display: grid;
  gap: 8px;
}

.visual-ui-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.visual-pill {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.72);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
}

.visual-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.28);
}

.visual-progress i {
  display: block;
  width: 68%;
  height: 100%;
  background: #d0aa58;
}

.showcase-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.showcase-admin-canvas {
  display: grid;
  place-items: center;
  padding: 42px;
  background: var(--surface-2);
}

.showcase-admin-canvas .admin-preview {
  width: min(680px, 100%);
}

.showcase-copy small {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-copy h3 {
  margin: 14px 0;
  font-size: 32px;
  line-height: 1.12;
  font-weight: 900;
}

.showcase-copy > p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--muted-strong);
  font-size: 14px;
}

.check-list li::before {
  content: "";
  width: 17px;
  height: 17px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--success-soft);
  box-shadow: inset 0 0 0 5px var(--success-soft), inset 0 0 0 8px var(--success);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-item {
  min-height: 330px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.audience-item:last-child {
  border-right: 0;
}

.audience-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 60px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.audience-item h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 900;
}

.audience-item p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

.live-story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 64px;
  align-items: center;
}

.live-story-copy h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 900;
}

.live-story-copy p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.live-story-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #292929;
  border-bottom: 1px solid #292929;
}

.live-story-metrics div {
  padding: 18px 10px 18px 0;
  border-right: 1px solid #292929;
}

.live-story-metrics div:last-child {
  border-right: 0;
  padding-left: 14px;
}

.live-story-metrics div:nth-child(2) {
  padding-left: 14px;
}

.live-story-metrics strong,
.live-story-metrics span {
  display: block;
}

.live-story-metrics strong {
  color: #ffffff;
  font-size: 24px;
}

.live-story-metrics span {
  margin-top: 4px;
  color: #777777;
  font-size: 10px;
}

.replay-showcase {
  border: 1px solid #303030;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0a0a0a;
}

.replay-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.replay-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.replay-label {
  position: absolute;
  left: 14px;
  top: 14px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 6px;
  background: #d0aa58;
  color: #0a0702;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.replay-controls {
  position: absolute;
  inset: auto 14px 12px;
  color: #ffffff;
  font-size: 11px;
}

.replay-track {
  height: 4px;
  margin-bottom: 9px;
  background: rgba(255, 255, 255, 0.28);
}

.replay-track i {
  display: block;
  width: 44%;
  height: 100%;
  background: #d0aa58;
}

.replay-events {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #242424;
}

.replay-events div {
  padding: 14px;
  border-right: 1px solid #242424;
}

.replay-events div:last-child {
  border-right: 0;
}

.replay-events strong,
.replay-events span {
  display: block;
}

.replay-events strong {
  color: #ffffff;
  font-size: 11px;
}

.replay-events span {
  margin-top: 3px;
  color: #777777;
  font-size: 9px;
}

.operator-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.operator-copy h2 {
  margin-bottom: 18px;
  font-size: 46px;
  line-height: 1.1;
  font-weight: 900;
}

.operator-copy > p {
  color: var(--muted);
  line-height: 1.7;
}

.operator-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--line);
}

.operator-list span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: var(--surface);
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 750;
}

.admin-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.admin-preview-head {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

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

.admin-preview-head span {
  color: var(--success);
  font-size: 10px;
  font-weight: 800;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.admin-stat-grid div {
  padding: 16px;
  border-right: 1px solid var(--line);
}

.admin-stat-grid div:last-child {
  border-right: 0;
}

.admin-stat-grid span,
.admin-stat-grid strong {
  display: block;
}

.admin-stat-grid span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-stat-grid strong {
  margin-top: 7px;
  font-size: 21px;
}

.admin-chart {
  position: relative;
  height: 240px;
  padding: 24px;
  background-image: linear-gradient(var(--line) 1px, transparent 1px);
  background-size: 100% 48px;
}

.admin-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.admin-chart path {
  fill: none;
  stroke: var(--primary);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.admin-chart circle {
  fill: var(--surface);
  stroke: var(--primary);
  stroke-width: 3;
}

.admin-legend {
  position: absolute;
  right: 18px;
  top: 16px;
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 9px;
}

.cta-band {
  padding: 76px 0;
  background: #b68a2d;
  color: #ffffff;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band h2 {
  max-width: 720px;
  margin: 0;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 900;
}

.cta-band p {
  max-width: 640px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.cta-band .button {
  flex: 0 0 auto;
  background: #050505;
  color: #ffffff;
}

.cta-band .button:hover {
  background: #ffffff;
  color: #050505;
}

/* Interior page hero */
.page-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #050505;
  color: #ffffff;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.67);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--content-width), calc(100% - 48px));
  margin-inline: auto;
  padding: 78px 0 64px;
}

.page-hero .eyebrow {
  margin-bottom: 14px;
}

.page-hero h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: 58px;
  line-height: 1.02;
  font-weight: 900;
}

.page-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.7;
}

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.page-hero-meta span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.34);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
}

/* Features */
.feature-toolbar-wrap {
  position: sticky;
  top: var(--header-height);
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.feature-toolbar {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 12px;
  align-items: center;
}

.search-control {
  position: relative;
  min-width: 0;
}

.search-control svg {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  stroke: var(--muted);
  fill: none;
  stroke-width: 2;
}

.search-control input,
.select-control {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: var(--surface);
  color: var(--text);
}

.search-control input {
  padding: 0 14px 0 44px;
}

.select-control {
  min-width: 160px;
  padding: 0 38px 0 13px;
}

.search-control input:focus,
.select-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.category-filters {
  display: flex;
  gap: 7px;
}

.filter-chip {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--muted-strong);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.filter-chip:hover,
.filter-chip.active {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary);
}

.feature-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 34px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.feature-summary p {
  margin: 0;
  color: var(--muted);
}

.feature-summary strong {
  color: var(--text);
}

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

.feature-release {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 42px;
  scroll-margin-top: 178px;
}

.feature-version {
  align-self: start;
  position: sticky;
  top: 174px;
}

.version-number {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border-radius: 7px;
  background: var(--text);
  color: var(--bg);
  font-size: 12px;
  font-weight: 900;
}

.feature-version.current .version-number {
  background: var(--primary);
  color: #ffffff;
}

.feature-version h2 {
  margin: 14px 0 7px;
  font-size: 19px;
  line-height: 1.25;
}

.feature-version p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.feature-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.feature-card:hover {
  border-color: var(--primary);
}

.feature-category {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 23px;
  padding: 0 7px;
  border-radius: 6px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-category.live {
  background: var(--danger-soft);
  color: var(--danger);
}

.feature-category.admin {
  background: var(--info-soft);
  color: var(--info);
}

.feature-category.community {
  background: var(--success-soft);
  color: var(--success);
}

.feature-card h3 {
  margin: 14px 0 7px;
  font-size: 16px;
  font-weight: 900;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.feature-empty {
  display: none;
  min-height: 260px;
  place-items: center;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.feature-empty.visible {
  display: grid;
}

/* Changelog */
.changelog-toolbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.changelog-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.changelog-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.changelog-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 60px;
  padding: 64px 0 96px;
}

.release-nav-wrap {
  align-self: start;
  position: sticky;
  top: 102px;
}

.release-nav-wrap h2 {
  margin-bottom: 14px;
  font-size: 13px;
  text-transform: uppercase;
}

.release-nav {
  display: grid;
  max-height: calc(100vh - 170px);
  overflow-y: auto;
  border-left: 1px solid var(--line);
  scrollbar-width: thin;
}

.release-nav a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.release-nav a:hover,
.release-nav a.active {
  border-left: 2px solid var(--primary);
  margin-left: -1px;
  color: var(--primary);
}

.release-nav a span {
  margin-right: 10px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.release-feed {
  min-width: 0;
  display: grid;
  gap: 76px;
}

.release-entry {
  scroll-margin-top: 104px;
}

.release-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.release-head-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.release-head h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.release-badge {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 6px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.release-head p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.release-copy-link {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
}

.release-copy-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.release-copy-link svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.change-groups {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.change-group {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 24px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.change-group:last-child {
  border-bottom: 0;
}

.change-type {
  align-self: start;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.change-type.added {
  background: var(--success-soft);
  color: var(--success);
}

.change-type.improved {
  background: var(--info-soft);
  color: var(--info);
}

.change-type.fixed {
  background: var(--primary-soft);
  color: var(--primary);
}

.change-type.security {
  background: var(--danger-soft);
  color: var(--danger);
}

.change-group ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.change-group li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-strong);
  line-height: 1.6;
}

.change-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

.copy-toast {
  position: fixed;
  z-index: 180;
  right: 20px;
  bottom: 20px;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.copy-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-main {
  min-height: 240px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 52px;
  padding: 54px 0 42px;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.footer-column h2 {
  margin-bottom: 14px;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;
  gap: 11px;
}

.footer-column a {
  color: var(--muted);
  font-size: 13px;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom span:last-child {
  color: var(--primary);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

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

  .menu-button {
    display: grid;
  }

  .product-stage {
    left: 51%;
    width: 890px;
  }

  .home-hero::before {
    width: 66%;
  }

  .trust-rail-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-intro {
    grid-column: 1 / -1;
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
  }

  .trust-item:nth-last-child(-n + 2) {
    border-top: 1px solid var(--line);
  }

  .showcase-panel {
    grid-template-columns: 1fr;
  }

  .showcase-copy {
    padding: 34px;
  }

  .live-story-grid,
  .operator-grid {
    gap: 36px;
  }

  .feature-toolbar {
    grid-template-columns: minmax(220px, 1fr) auto;
    padding: 12px 0;
  }

  .category-filters {
    grid-column: 1 / -1;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .footer-main {
    grid-template-columns: 1.5fr repeat(3, 0.75fr);
    gap: 28px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
  }

  .container,
  .header-inner,
  .hero-inner,
  .page-hero-inner {
    width: min(100% - 28px, var(--content-width));
  }

  .header-actions > .button {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .home-hero {
    height: calc(100svh - 78px);
    min-height: 580px;
    max-height: 720px;
  }

  .home-hero::before {
    width: 100%;
    background: rgba(0, 0, 0, 0.76);
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 74px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy h1 {
    max-width: 560px;
    font-size: 52px;
  }

  .hero-copy > p {
    max-width: 500px;
    font-size: 16px;
  }

  .hero-proof {
    display: none;
  }

  .product-stage {
    top: auto;
    bottom: -266px;
    left: 34px;
    width: 790px;
    opacity: 0.54;
    transform: perspective(1600px) rotateY(-5deg) rotateX(1deg);
  }

  .section {
    padding: 72px 0;
  }

  .section.compact {
    padding: 54px 0;
  }

  .section-heading h2,
  .operator-copy h2,
  .live-story-copy h2 {
    font-size: 38px;
  }

  .trust-rail-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    min-height: 78px;
  }

  .trust-item:nth-child(even) {
    border-right: 0;
  }

  .showcase-visual {
    min-height: 390px;
  }

  .showcase-panel {
    min-height: 0;
  }

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

  .audience-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .audience-item:last-child {
    border-bottom: 0;
  }

  .audience-index {
    margin-bottom: 34px;
  }

  .live-story-grid,
  .operator-grid {
    grid-template-columns: 1fr;
  }

  .replay-showcase {
    order: -1;
  }

  .admin-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .admin-stat-grid div:nth-child(2) {
    border-right: 0;
  }

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

  .cta-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band h2 {
    font-size: 36px;
  }

  .page-hero {
    min-height: 390px;
  }

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

  .feature-toolbar-wrap {
    position: relative;
    top: auto;
  }

  .feature-release {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-version {
    position: static;
  }

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

  .changelog-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 36px;
  }

  .release-nav-wrap,
  .release-feed {
    min-width: 0;
  }

  .release-nav-wrap {
    position: static;
  }

  .release-nav-wrap h2 {
    display: none;
  }

  .release-nav {
    display: flex;
    max-height: none;
    overflow-x: auto;
    border-left: 0;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .release-nav a {
    min-width: 82px;
    min-height: 38px;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--surface);
  }

  .release-nav a:hover,
  .release-nav a.active {
    margin-left: 0;
    border: 1px solid var(--primary);
    background: var(--primary-soft);
  }

  .release-nav a span {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .brand-version {
    display: none;
  }

  .hero-inner {
    padding-top: 54px;
  }

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

  .hero-copy > p {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button {
    padding-inline: 10px;
  }

  .hero-actions .button:last-child {
    grid-column: 1 / -1;
  }

  .product-stage {
    bottom: -330px;
    left: 16px;
    width: 720px;
  }

  .trust-rail-inner {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    padding: 14px;
  }

  .trust-item strong {
    font-size: 13px;
  }

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

  .section-heading h2,
  .operator-copy h2,
  .live-story-copy h2 {
    font-size: 32px;
  }

  .showcase-tabs {
    min-height: 60px;
    padding: 8px;
  }

  .showcase-tab {
    min-height: 40px;
  }

  .showcase-visual {
    min-height: 260px;
  }

  .showcase-copy {
    padding: 24px 18px;
  }

  .showcase-copy h3 {
    font-size: 26px;
  }

  .audience-item {
    padding: 26px 18px;
  }

  .live-story-metrics {
    grid-template-columns: 1fr;
  }

  .live-story-metrics div,
  .live-story-metrics div:nth-child(2),
  .live-story-metrics div:last-child {
    border-right: 0;
    border-bottom: 1px solid #292929;
    padding: 14px 0;
  }

  .live-story-metrics div:last-child {
    border-bottom: 0;
  }

  .replay-events {
    grid-template-columns: 1fr 1fr;
  }

  .replay-events div:nth-child(2) {
    border-right: 0;
  }

  .replay-events div:nth-child(-n + 2) {
    border-bottom: 1px solid #242424;
  }

  .operator-list {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 56px 0;
  }

  .cta-band h2 {
    font-size: 30px;
  }

  .cta-band .button {
    width: 100%;
  }

  .page-hero {
    min-height: 360px;
  }

  .page-hero-inner {
    padding: 56px 0 44px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .page-hero p {
    font-size: 15px;
  }

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

  .select-control {
    min-width: 0;
  }

  .feature-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-card {
    min-height: 0;
  }

  .changelog-toolbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .release-feed {
    gap: 58px;
  }

  .release-head h2 {
    font-size: 28px;
  }

  .change-group {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .change-type {
    justify-self: start;
    min-width: 90px;
    padding: 0 10px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 0;
  }

  .copy-toast {
    left: 12px;
    right: 12px;
    top: 12px;
    bottom: auto;
    width: auto;
  }
}

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

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

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