:root {
  --navy: #07131F;
  --navy-2: #091827;
  --navy-3: #0C1C2D;
  --navy-4: #101F31;
  --navy-elev: #102033;
  --light: #F4F7FA;
  --light-2: #EEF3F7;
  --offwhite: #F8FAFC;
  --press-bg: #F3F6F9;
  --overview-bg: #F7F9FB;
  --red: #F04432;
  --red-hot: #FF5A42;
  --win-blue: #1688E8;
  --text-dark: #F7FAFC;
  --text-mute: #B4C1CE;
  --text-light: #172838;
  --footer: #050B12;
  --side-w: 248px;
  --banner-h: 78px;
  --max: 1360px;
  --max-hero: 1400px;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-light);
  background: var(--navy);
  font-size: 17.5px;
  line-height: 1.65;
}
h1, h2, h3, .font-display { font-family: var(--font-display); letter-spacing: -0.03em; }
img { max-width: 100%; height: auto; }
a { color: var(--win-blue); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--red); color: #fff; padding: 0.75rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ===== APP SHELL: sidebar + stage ===== */
.desk-frame {
  display: block;
  width: 100%;
  min-height: 100vh;
  background: var(--navy);
}
.side-dock {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--side-w);
  z-index: 60;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #050B12 0%, #07121D 45%, #0A1624 100%);
  border-right: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 1rem 1.5rem;
  transform: translateX(-105%);
  transition: transform 0.28s var(--ease);
}
.side-dock.is-open { transform: translateX(0); }
.side-dock__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.35rem 0.55rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.1rem;
  text-decoration: none;
  color: var(--text-dark);
}
.side-dock__brand img {
  width: 38px; height: 38px; border-radius: 9px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.side-dock__brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.1;
}
.side-dock__brand span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 0.15rem;
}
.side-dock__nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}
.side-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-mute);
  font-weight: 500;
  font-size: 0.94rem;
  border-left: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.side-link:hover { color: #fff; background: rgba(255,255,255,0.04); }
.side-link[aria-current="page"] {
  color: #fff;
  background: rgba(240,68,50,0.12);
  border-left-color: var(--red);
}
.side-dock__cta {
  margin-top: auto;
  padding-top: 1rem;
}
.side-dock__cta .btn-primary {
  width: 100%;
  justify-content: center;
}
.side-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,11,18,0.55);
  z-index: 55;
}
.side-backdrop.is-open { display: block; }

.desk-stage {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--light);
}

/* ===== TOP BANNER ===== */
.top-banner {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--banner-h);
  display: flex;
  align-items: center;
  background: rgba(7,19,31,0.86);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.top-banner__inner {
  width: min(var(--max-hero), calc(100% - 2.5rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}
.mast-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text-dark);
  min-width: 0;
}
.mast-brand img {
  width: 44px; height: 44px; border-radius: 11px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.mast-brand__text { min-width: 0; }
.mast-brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.mast-brand__tag {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(169,182,196,0.72);
  margin-top: 0.18rem;
  font-weight: 500;
}
.top-nav {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2rem 1.55rem;
}
.top-link {
  position: relative;
  color: var(--text-mute);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.96rem;
  padding: 0.4rem 0.1rem;
  transition: color 0.2s;
}
.top-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.5rem;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}
.top-link:hover { color: #fff; }
.top-link:hover::after { transform: scaleX(1); }
.top-link[aria-current="page"] { color: #fff; }
.top-link[aria-current="page"]::after { transform: scaleX(1); }
.banner-end {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  justify-self: end;
}
#menu-toggle {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text-dark);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
.banner-cta { display: none; }

@media (min-width: 960px) {
  .top-nav { display: flex; }
  #menu-toggle, .side-backdrop { display: none !important; }
  .side-dock { display: none !important; }
  .banner-cta { display: inline-flex; }
  .desk-stage {
    margin-left: 0;
    width: 100%;
  }
}

@media (min-width: 1100px) {
  /* legacy override — top nav layout, no sidebar offset */
  .side-dock { transform: translateX(-105%); display: none !important; }
  .desk-stage {
    margin-left: 0;
    width: 100%;
  }
  .mast-brand { display: flex; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--red); color: #fff; font-weight: 650; font-size: 0.95rem;
  padding: 16px 24px; border-radius: var(--radius); border: none; text-decoration: none;
  box-shadow: 0 10px 24px rgba(240,68,50,0.28); cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--red-hot);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(240,68,50,0.42);
  color: #fff;
}
.btn-primary:active { transform: translateY(0); }
.btn-primary svg { transition: transform 0.2s var(--ease); }
.btn-primary:hover svg { transform: translateY(1px); }
.banner-cta:hover { box-shadow: 0 10px 22px rgba(240,68,50,0.4); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  background: transparent; color: #fff; font-weight: 600; font-size: 0.95rem;
  padding: 15px 22px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.28); text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.04);
  color: #fff;
}
.btn-soft {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  background: transparent; color: var(--text-light); font-weight: 600; font-size: 0.92rem;
  padding: 0.75rem 1.15rem; border-radius: var(--radius);
  border: 1px solid #C5D0DC; text-decoration: none;
}
.btn-soft:hover { border-color: var(--win-blue); color: var(--win-blue); }
.btn-primary.sm, .banner-cta {
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
  box-shadow: 0 6px 16px rgba(240,68,50,0.25);
}

/* legacy aliases used across pages */
.btn-brand, .header-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--red); color: #fff; font-weight: 650; font-size: 0.95rem;
  padding: 16px 24px; border-radius: var(--radius); border: none; text-decoration: none;
  box-shadow: 0 10px 24px rgba(240,68,50,0.28); cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.btn-brand:hover, .header-cta:hover {
  background: var(--red-hot);
  transform: translateY(-2px);
  color: #fff;
}
.btn-pro, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  background: transparent; color: #fff; font-weight: 600; font-size: 0.95rem;
  padding: 15px 22px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.28); text-decoration: none;
}
.btn-pro:hover, .btn-outline:hover {
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
  color: #fff;
}
.section-light .btn-pro,
.section-light .btn-outline,
.band-light .btn-pro,
.band-light .btn-outline,
.product-band .btn-outline,
.reviews-band .btn-outline {
  color: var(--text-light);
  border-color: #C5D0DC;
}
.section-light .btn-pro:hover,
.section-light .btn-outline:hover,
.band-light .btn-pro:hover,
.band-light .btn-outline:hover {
  color: var(--win-blue);
  border-color: var(--win-blue);
}

.wrap { width: min(1280px, calc(100% - 2.5rem)); margin-inline: auto; }
.wrap-wide { width: min(var(--max), calc(100% - 2.5rem)); margin-inline: auto; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  max-height: none;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #07131F 0%, #091827 55%, #0C1C2D 100%);
  color: var(--text-dark);
  padding: 2.25rem 0 2.75rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 28%, transparent 72%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 48% 52% at 16% 48%, rgba(240,68,50,0.09), transparent 62%),
    radial-gradient(ellipse 46% 50% at 78% 44%, rgba(22,136,232,0.16), transparent 64%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max-hero), calc(100% - 2.5rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 46% 54%;
    gap: 1rem 1.75rem;
    min-height: calc(88vh - var(--banner-h) - 2.5rem);
  }
}
.hero-eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.1rem;
  margin: 0 0 1rem;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--win-blue);
  margin: 0;
}
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,250,252,0.78);
}
.hero-status::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--win-blue);
  box-shadow: 0 0 0 3px rgba(22,136,232,0.18);
}
.hero h1 {
  font-size: clamp(2.45rem, 5vw, 3.85rem);
  line-height: 1.02;
  font-weight: 800;
  margin: 0 0 1.15rem;
  max-width: 12ch;
  color: var(--text-dark);
  background: none;
  -webkit-text-fill-color: unset;
  filter: none;
  animation: none;
  display: block;
  text-align: left;
}
.hero h1::after { display: none; }
.hero h1 .hl { color: var(--red-hot); }
.hero p.lead {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: 1.1rem;
  color: #D5DEE8;
  line-height: 1.7;
  text-align: left;
}
.hero-copy { text-align: left; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  justify-content: flex-start;
}
.hero-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  max-width: 36rem;
}
.hero-rail__item {
  flex: 1 1 6.5rem;
  padding: 0 1.1rem;
  border-right: 1px solid rgba(255,255,255,0.12);
  min-width: 5.5rem;
}
.hero-rail__item:first-child { padding-left: 0; }
.hero-rail__item:last-child { border-right: none; padding-right: 0; }
.hero-rail__label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.hero-rail__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: #fff;
  letter-spacing: -0.02em;
}

/* artwork stage */
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 380px;
  align-self: center;
  margin-inline-start: -0.5rem;
}
.hero-art__glow {
  position: absolute;
  width: min(96%, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,136,232,0.32) 0%, rgba(22,136,232,0.08) 40%, transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-art__rings {
  position: absolute;
  width: min(94%, 600px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.055);
  pointer-events: none;
  opacity: 0.85;
}
.hero-art__rings::before,
.hero-art__rings::after {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  border: 1px solid rgba(22,136,232,0.1);
}
.hero-art__rings::after {
  inset: 20%;
  border-color: rgba(240,68,50,0.07);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(-18deg);
}
.hero-art__dust {
  position: absolute;
  inset: 8%;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.35) 1px, transparent 1.4px),
    radial-gradient(circle, rgba(22,136,232,0.4) 1px, transparent 1.4px);
  background-size: 56px 56px, 78px 78px;
  background-position: 12% 18%, 58% 42%;
  opacity: 0.14;
  animation: dust-drift 18s linear infinite;
}
.hero-art__scan {
  position: absolute;
  inset: 14% 20%;
  background: linear-gradient(180deg, transparent, rgba(22,136,232,0.06), transparent);
  background-size: 100% 36%;
  animation: scan-y 8s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.45;
}
.hero-art img,
.hero-circle img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  transform: scale(1.32);
  transform-origin: center;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,0.35));
  transition: transform 0.45s var(--ease);
}
.hero-art:hover img { transform: scale(1.35); }
.hero-circle {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes dust-drift {
  from { transform: translateY(0); }
  to { transform: translateY(-24px); }
}
@keyframes scan-y {
  0%, 100% { background-position: 0 -30%; }
  50% { background-position: 0 130%; }
}

/* clean sweep divider */
.clean-sweep {
  position: relative;
  height: 3px;
  overflow: hidden;
  background: var(--navy-4);
}
.clean-sweep__line {
  position: absolute;
  top: 0; left: -30%;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--red), var(--win-blue), transparent);
  animation: sweep-loop 6.5s linear infinite;
}
.clean-sweep__bits { display: none; }
.clean-sweep__label { display: none !important; }
@keyframes sweep-loop {
  0% { left: -35%; }
  100% { left: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .clean-sweep__line, .hero-art__dust, .hero-art__scan { animation: none; }
  .clean-sweep__line { left: 30%; width: 40%; opacity: 0.7; }
  .hero-art:hover img,
  .feature-shot:hover .window-chrome,
  .overview-shot .visual-frame:hover { transform: none; }
}

/* ===== SECTIONS ===== */
.band-press {
  background: var(--press-bg);
  padding: 28px 0 34px;
  text-align: center;
  border-top: 1px solid #E2E8EF;
  border-bottom: 1px solid #E2E8EF;
}
.band-press .label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B7A8C;
  font-weight: 700;
}
.featured-logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 1rem 1.85rem;
}
.featured-logos img {
  display: block; height: 20px; width: auto;
  filter: grayscale(1) brightness(0.55);
  opacity: 0.78;
}

.band-overview {
  background: var(--overview-bg);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.band-overview::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.65;
  box-shadow: 0 0 12px rgba(240,68,50,0.25);
}
.band-overview::after {
  content: "";
  position: absolute;
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  left: -8%;
  top: 18%;
  border-radius: 50%;
  border: 1px solid rgba(22,136,232,0.08);
  border-right-color: transparent;
  border-bottom-color: transparent;
  opacity: 0.55;
  pointer-events: none;
}
.overview-grid {
  display: grid;
  gap: 2.75rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 960px) {
  .overview-grid { grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr); gap: 3rem; }
}
.overview-shot {
  position: relative;
  border: 1px solid #D0DAE5;
  border-radius: 14px;
  overflow: hidden;
  background: #091827;
  box-shadow:
    0 28px 60px rgba(7,19,31,0.16),
    0 0 0 1px rgba(22,136,232,0.12);
  border-left: 3px solid var(--red);
  transform: scale(1.12);
  transform-origin: left center;
  margin-right: 0.5rem;
}
.overview-shot::before {
  content: "";
  position: absolute;
  inset: -18% -12%;
  background: radial-gradient(circle at 40% 45%, rgba(22,136,232,0.14), transparent 58%);
  z-index: 0;
  pointer-events: none;
}
.overview-shot .window-chrome { position: relative; z-index: 1; }
.overview-shot .window-chrome__bar { background: #152536; border-bottom-color: #1E3146; }
.overview-shot .window-chrome__dot { background: #3A5168; }
.overview-shot .visual-frame {
  transition: transform 0.35s var(--ease);
}
.overview-shot .visual-frame:hover { transform: scale(1.015); }
.overview-copy .eyebrow {
  color: var(--red);
  text-shadow: none;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
.stack-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.stack-list li {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.05rem;
  background: rgba(255,255,255,0.72);
  border: 1px solid #D8E1EB;
  border-radius: 10px;
  border-left: 2px solid var(--red);
  color: var(--text-light);
  transition: transform 0.22s var(--ease), border-color 0.22s, background 0.22s, box-shadow 0.22s;
}
.stack-list li:hover {
  transform: translateY(-2px);
  border-color: #C2CFDC;
  background: #fff;
  box-shadow: 0 10px 24px rgba(7,19,31,0.06);
}
.stack-list li::before { display: none; }
.stack-list .cap-icon {
  width: 1.85rem; height: 1.85rem;
  display: grid; place-items: center;
  color: var(--red);
  flex-shrink: 0;
}
.stack-list .cap-icon svg { width: 18px; height: 18px; }
.stack-list .cap-body { min-width: 0; }
.stack-list .cap-title {
  display: block;
  font-weight: 650;
  font-size: 0.98rem;
  line-height: 1.25;
}
.stack-list .cap-desc {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.86rem;
  font-weight: 450;
  color: #5C6B7A;
  line-height: 1.4;
}
.stack-list .cap-arrow {
  color: #8A9AAB;
  font-size: 1.1rem;
  transition: transform 0.22s var(--ease), color 0.22s;
}
.stack-list li:hover .cap-arrow {
  transform: translateX(3px);
  color: var(--red);
}
.stack-list li:hover { border-left-width: 3px; }

.band-features {
  background: linear-gradient(180deg, #07131F 0%, #091827 55%, #0C1C2D 100%);
  color: var(--text-dark);
  padding: 7.5rem 0;
  position: relative;
  overflow: hidden;
}
.band-features::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,68,50,0.55), rgba(22,136,232,0.3), transparent);
  box-shadow: 0 0 14px rgba(240,68,50,0.2);
}
.band-features::after {
  content: "";
  position: absolute;
  left: 6%;
  top: 18%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(240,68,50,0.4), rgba(240,68,50,0.12), transparent);
  opacity: 0.35;
  pointer-events: none;
  box-shadow:
    0 12% 0 0 rgba(240,68,50,0.45),
    0 48% 0 0 rgba(240,68,50,0.35),
    0 82% 0 0 rgba(240,68,50,0.3);
}
.band-features .wrap {
  width: min(1320px, calc(100% - 2.5rem));
  position: relative;
  z-index: 1;
}
.band-features .eyebrow {
  color: var(--red-hot);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
.band-features h2 { color: #fff; }
.band-features .section-head h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  max-width: 16ch;
}
.band-features .section-head p { color: var(--text-mute); max-width: 38rem; }
.band-features p { color: var(--text-mute); }

.feature-story {
  display: grid;
  gap: 5rem;
  margin-top: 3.25rem;
}
.feature-row {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  margin-top: 0;
  position: relative;
}
@media (min-width: 900px) {
  .feature-row.feat-a { grid-template-columns: 42% 58%; gap: 2.25rem; }
  .feature-row.feat-b { grid-template-columns: 58% 42%; gap: 2.25rem; }
  .feature-row.is-flip > :first-child { order: 0; }
}
.feature-shot {
  position: relative;
}
.feature-shot::before {
  content: "";
  position: absolute;
  inset: -8% -6%;
  border-radius: 50%;
  border: 1px solid rgba(22,136,232,0.12);
  border-left-color: transparent;
  opacity: 0.7;
  pointer-events: none;
}
.feature-shot .window-chrome {
  position: relative;
  z-index: 1;
  transform: scale(1.06);
  transform-origin: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.38);
  transition: transform 0.35s var(--ease);
}
.feature-shot:hover .window-chrome { transform: scale(1.08); }
.feature-wide {
  margin-top: 0;
  padding: 2rem 2.15rem;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  background: var(--navy-elev);
  border-left: 2px solid var(--red);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18), inset 0 1px rgba(255,255,255,0.04);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-wide::before {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  right: -6%;
  top: -40%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  border-left-color: transparent;
  opacity: 0.7;
  pointer-events: none;
}
.feature-wide:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 24px 58px rgba(0,0,0,0.26), inset 0 1px rgba(255,255,255,0.05);
}
.feature-wide__grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .feature-wide__grid { grid-template-columns: 1.35fr 0.9fr; gap: 2.5rem; }
}
.feature-wide__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.feature-wide__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(7,19,31,0.35);
  color: var(--text-mute);
  font-size: 0.92rem;
  line-height: 1.45;
}
.feature-wide__points li::before {
  content: "";
  width: 6px; height: 6px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(240,68,50,0.15);
}
.feature-panel {
  padding: 1.55rem 1.55rem;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  background: var(--navy-elev);
  border-left: 2px solid var(--red);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18), inset 0 1px rgba(255,255,255,0.04);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.feature-panel.is-tall { min-height: 11rem; }
.feature-panel.is-compact { padding: 1.25rem 1.35rem; }
.feature-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 24px 58px rgba(0,0,0,0.26), inset 0 1px rgba(255,255,255,0.05);
}
.feature-panel h3 { margin: 0 0 0.55rem; color: #fff; font-size: clamp(1.25rem, 2vw, 1.55rem); }
.feature-panel p { margin: 0; }
.feature-pair {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .feature-pair { grid-template-columns: 1fr 1fr; align-items: stretch; }
}

.band-usecases,
.band-usecases.ecosystem,
.ecosystem.band-usecases {
  background:
    radial-gradient(ellipse 50% 60% at 15% 20%, rgba(22,136,232,0.08), transparent 55%),
    linear-gradient(180deg, #0C1C2D 0%, #091827 55%, #07131F 100%);
  padding: 7rem 0;
  position: relative;
  color: var(--text-dark);
  overflow: hidden;
}
.band-usecases::before,
.ecosystem::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,68,50,0.45), rgba(22,136,232,0.25), transparent);
  box-shadow: 0 0 12px rgba(240,68,50,0.16);
}
.band-usecases::after {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  right: -8%;
  bottom: -30%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  border-left-color: transparent;
  pointer-events: none;
  opacity: 0.7;
}
.band-usecases .wrap,
.ecosystem .wrap { position: relative; z-index: 1; }
.eco-title {
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  margin: 0 0 2.25rem;
  color: #fff;
  background: none;
  -webkit-text-fill-color: unset;
  max-width: 16ch;
}
.eco-grid { display: grid; gap: 1.35rem; grid-template-columns: 1fr; }
@media (min-width: 800px) {
  .eco-grid { grid-template-columns: repeat(3, 1fr); }
  .eco-grid.eco-grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.eco-card {
  background: var(--navy-elev);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 1.85rem 1.5rem 1.6rem;
  box-shadow: 0 18px 46px rgba(0,0,0,0.22), inset 0 1px rgba(255,255,255,0.04);
  border-left: 2px solid var(--red);
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s,
    box-shadow 0.28s,
    background 0.28s;
  position: relative;
  overflow: hidden;
}
.eco-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: var(--red);
  transition: width 0.28s var(--ease);
}
.eco-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.16);
  background: #13263A;
  box-shadow:
    0 26px 58px rgba(0,0,0,0.32),
    0 0 0 1px rgba(240,68,50,0.12),
    inset 0 1px rgba(255,255,255,0.06);
}
.eco-card:hover::before { width: 4px; }
.eco-card img {
  height: 42px; width: auto; margin: 0 0 1.15rem; display: block;
  padding: 0.55rem 0.75rem;
  background: rgba(255,255,255,0.94);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  filter: none;
}
.eco-card:hover img {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
}
.eco-card h3 {
  color: #fff;
  margin: 0 0 0.55rem;
  font-size: 1.3rem;
  transition: color 0.2s;
}
.eco-card p {
  color: var(--text-mute);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
}
.eco-card .btn-soft,
.eco-card .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.28);
  background: transparent;
  transition: transform 0.22s, background 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.eco-card:hover .btn-soft,
.eco-card:hover .btn-outline {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 10px 22px rgba(240,68,50,0.35);
  transform: translateY(-1px);
}
.section-dark .eco-card {
  background: var(--navy-elev);
  border-color: rgba(255,255,255,0.09);
  box-shadow: 0 18px 40px rgba(0,0,0,0.2), inset 0 1px rgba(255,255,255,0.04);
}
.section-dark .eco-card h3 { color: #fff; }
.section-dark .eco-card p { color: var(--text-mute); }
.section-dark .eco-card:hover {
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-5px);
}
.section-dark .eco-card .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}

@media (prefers-reduced-motion: reduce) {
  .eco-card:hover,
  .eco-card:hover img,
  .eco-card:hover .btn-soft,
  .eco-card:hover .btn-outline { transform: none; }
}
.band-compare {
  background: var(--light-2);
  padding: 7rem 0;
  position: relative;
}
.band-compare::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent 10%, var(--red) 50%, transparent 90%);
  position: absolute;
  top: 0;
  opacity: 0.45;
}
.band-trust {
  background: linear-gradient(160deg, #07131F, #101F31);
  color: var(--text-dark);
  padding: 7rem 0;
}
.band-trust h2, .band-trust h3 { color: #fff; }
.band-trust p { color: var(--text-mute); }
.band-faq,
.band-faq.section {
  background: linear-gradient(180deg, #101F31 0%, #0C1C2D 100%);
  padding: 7rem 0;
  color: var(--text-dark);
  position: relative;
}
.band-faq::before,
.band-faq.section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,68,50,0.35), transparent);
}
.band-faq.section::after { display: none; }
.band-faq .section-head h2,
.band-faq h2,
.band-faq.section h2 { color: #fff; }
.band-faq .section-head p,
.band-faq p,
.band-faq.section p { color: var(--text-mute); }
.band-faq [data-accordion] {
  background: var(--navy-elev);
  border-color: rgba(255,255,255,0.09);
  box-shadow: 0 18px 50px rgba(0,0,0,0.2), inset 0 1px rgba(255,255,255,0.04);
}
.band-faq .acc-btn { color: #fff; }
.band-faq .acc-btn:hover { background: rgba(240,68,50,0.08); color: #fff; }
.band-faq .acc-panel { color: var(--text-mute); }
.band-faq [data-acc-item] { border-bottom-color: rgba(255,255,255,0.07); }
.band-faq [data-acc-item].is-open .acc-btn { color: #fff; }
.band-faq .btn-soft {
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}
.band-faq .btn-soft:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.band-cta {
  background: linear-gradient(135deg, #07131F, #0C1C2D);
  color: var(--text-dark);
  padding: 6.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.band-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), var(--win-blue), transparent);
}
.band-cta::after {
  content: "";
  position: absolute;
  width: 720px; height: 720px;
  right: -18%;
  bottom: -55%;
  border-radius: 50%;
  border: 1px solid rgba(240,68,50,0.08);
  border-left-color: transparent;
  opacity: 0.55;
  pointer-events: none;
}
.band-cta h2 { color: #fff; margin: 0.4rem 0 0.75rem; font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
.band-cta p { color: var(--text-mute); max-width: 36rem; margin: 0 auto 1.5rem; }

/* page heroes for inner pages — match home dark identity */
.page-hero {
  padding: 4.5rem 0 4rem;
  background:
    radial-gradient(ellipse 55% 70% at 88% 35%, rgba(22,136,232,0.1), transparent 58%),
    radial-gradient(ellipse 40% 55% at 8% 60%, rgba(240,68,50,0.06), transparent 55%),
    linear-gradient(135deg, #07131F 0%, #091827 55%, #0C1C2D 100%);
  color: var(--text-dark);
  border-bottom: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: min(56vw, 560px);
  height: min(56vw, 560px);
  right: -10%;
  top: -28%;
  border-radius: 50%;
  border: 1px solid rgba(240,68,50,0.1);
  border-left-color: transparent;
  border-bottom-color: transparent;
  opacity: 0.7;
  pointer-events: none;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.04) 0.7px, transparent 0.7px),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 18px 18px, 48px 48px, 48px 48px;
  opacity: 0.45;
  pointer-events: none;
}
.page-hero .wrap {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2.5rem));
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  font-weight: 800;
  margin: 0.55rem 0 1rem;
  max-width: 16ch;
  color: #fff;
  background: none;
  -webkit-text-fill-color: unset;
  filter: none;
  animation: none;
  display: block;
}
.page-hero h1::after {
  content: "";
  display: block;
  height: 3px;
  width: 4rem;
  margin: 0.9rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--red), var(--red-hot), var(--red), transparent);
  animation: title-underline 0.75s var(--ease) 0.28s both;
  box-shadow: 0 0 16px rgba(240,68,50,0.35);
}
.page-hero .eyebrow {
  color: var(--red-hot);
  text-shadow: none;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
.page-hero p {
  margin: 0;
  max-width: 38rem;
  color: #D5DEE8;
  font-size: 1.08rem;
  line-height: 1.7;
}
.page-hero .crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  margin: 0 0 1.1rem;
  font-size: 0.88rem;
  color: var(--text-mute);
}
.crumbs a { color: var(--win-blue); text-decoration: none; }
.page-hero .crumbs a:hover { color: #fff; }
.page-hero a:not(.btn-primary):not(.btn-ghost):not(.btn-pro):not(.btn-outline):not(.btn-soft) {
  color: #7EC4FF;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(126,196,255,0.35);
}
.page-hero a:not(.btn-primary):not(.btn-ghost):not(.btn-pro):not(.btn-outline):not(.btn-soft):hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.45);
}

.text-link {
  color: var(--win-blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(22,136,232,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.text-link:hover {
  color: var(--red);
  border-bottom-color: rgba(240,68,50,0.4);
}

.page-prose {
  color: #5C6B7A;
  margin: 0 0 1rem;
  max-width: 38rem;
  line-height: 1.7;
}
.page-prose:last-child { margin-bottom: 0; }

.inner-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.inner-list li {
  position: relative;
  padding-left: 1.15rem;
  color: #5C6B7A;
  line-height: 1.5;
}
.inner-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(240,68,50,0.12);
}
.section-dark .inner-list li { color: var(--text-mute); }

.eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--red); margin: 0;
}
.section {
  padding: 7rem 0;
  background: var(--offwhite);
  position: relative;
}
.section-alt { background: var(--light); }
.section-soft { background: var(--light-2); }
.section-dark {
  background: linear-gradient(180deg, #07131F 0%, #091827 55%, #0C1C2D 100%);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,68,50,0.5), rgba(22,136,232,0.25), transparent);
  box-shadow: 0 0 12px rgba(240,68,50,0.18);
  pointer-events: none;
}
.section:not(.section-dark)::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,68,50,0.28), transparent);
  opacity: 0.7;
  pointer-events: none;
}
.section .wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  position: relative;
  z-index: 1;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: var(--text-mute); }
.section-dark .page-prose { color: var(--text-mute); }
.section-centered { text-align: center; }
.section-head { margin-bottom: 2rem; }
.section-head h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(1.95rem, 3.8vw, 3.1rem);
  line-height: 1.08;
  font-weight: 750;
  color: var(--text-light);
  max-width: 18ch;
}
.section-dark .section-head h2,
.band-features .section-head h2,
.band-trust .section-head h2 { color: #fff; }
.section-head p { max-width: 40rem; color: #5C6B7A; margin: 0; }
.section-dark .section-head p { color: var(--text-mute); }
.section-centered .section-head { text-align: center; }
.section-centered .section-head p { margin-inline: auto; }
.section h2.font-display {
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  line-height: 1.12;
  max-width: 18ch;
}

.panel {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(213,222,232,0.95);
  border-radius: 14px;
  border-left: 2px solid var(--red);
  box-shadow:
    0 18px 44px rgba(7,19,31,0.08),
    inset 0 1px rgba(255,255,255,0.7);
  padding: 1.45rem 1.5rem;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.panel:hover {
  transform: translateY(-3px);
  border-color: #B8C7D8;
  box-shadow: 0 22px 48px rgba(7,19,31,0.12), inset 0 1px rgba(255,255,255,0.8);
}
.panel-quiet {
  background: var(--light);
  border: 1px solid #D5DEE8;
  border-radius: 14px;
  border-left: 2px solid var(--red);
  padding: 1.45rem 1.5rem;
  box-shadow: 0 12px 28px rgba(7,18,29,0.05);
}
.section-dark .panel,
.band-features .panel,
.band-trust .panel {
  background: var(--navy-elev);
  border: 1px solid rgba(255,255,255,0.09);
  border-left: 2px solid var(--red);
  color: var(--text-dark);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18), inset 0 1px rgba(255,255,255,0.04);
}
.section-dark .panel-quiet {
  background: rgba(16,32,51,0.72);
  border-color: rgba(255,255,255,0.09);
  color: var(--text-mute);
}

.window-chrome {
  border: 1px solid #2A3E55;
  border-radius: 12px;
  overflow: hidden;
  background: #0E1A28;
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}
.window-chrome__bar {
  display: flex; align-items: center; gap: 6px; padding: 0.55rem 0.75rem;
  background: #152536; border-bottom: 1px solid #1E3146;
}
.window-chrome__dot { width: 9px; height: 9px; border-radius: 50%; background: #3A5168; }
.window-chrome img { display: block; width: 100%; }

.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.check-list li { display: grid; grid-template-columns: 1.5rem 1fr; gap: 0.75rem; align-items: start; }
.check-list .mark {
  width: 1.35rem; height: 1.35rem; border-radius: 50%;
  background: rgba(240,68,50,0.15); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; margin-top: 0.15rem;
}
.check-list strong { display: block; margin-bottom: 0.2rem; color: inherit; }
.check-list p { margin: 0; color: #5C6B7A; font-size: 0.95rem; }
.band-features .check-list p,
.section-dark .check-list p { color: var(--text-mute); }

.product-band { padding: 4rem 0; background: #fff; }
.product-split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 960px) {
  .product-split { grid-template-columns: 45% 55%; }
}
.product-brand {
  display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.85rem;
}
.product-brand img { border-radius: 8px; }
.product-brand .font-display { font-weight: 700; font-size: 1.15rem; }
.product-title {
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
  line-height: 1.12;
  margin: 0 0 1.25rem;
  font-weight: 750;
  color: var(--text-light);
  background: none;
  -webkit-text-fill-color: unset;
  max-width: 16ch;
}
.pro-band { padding: 1rem 0 4rem; background: var(--navy); color: var(--text-dark); }
.pro-card {
  display: grid; gap: 2.25rem; align-items: center;
  background: var(--navy-3); border-radius: 14px; padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--red);
}
@media (min-width: 960px) {
  .pro-card { grid-template-columns: 1fr 1.05fr; padding: 2.5rem; }
}
.pro-label {
  display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red-hot); font-weight: 700; margin-top: 0.1rem;
}
.pro-note { margin: 0.85rem 0 0; font-size: 0.78rem; color: var(--text-mute); }
.product-visual { display: flex; justify-content: center; }
.visual-frame {
  border: none; padding: 0; background: transparent; cursor: zoom-in;
  border-radius: 12px; overflow: hidden; width: 100%; max-width: 36rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  transition: transform 0.35s;
}
.visual-frame:hover { transform: translateY(-4px); }
.visual-frame img { display: block; width: 100%; height: auto; }

/* .ecosystem shares .band-usecases styles */

.guides-layout {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 960px) {
  .guides-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    align-items: start;
    gap: 2.5rem;
  }
  .guides-toc {
    position: sticky;
    top: calc(var(--banner-h) + 1.25rem);
  }
}
.guides-stack { display: grid; gap: 1.25rem; }
.trust-stack {
  display: grid;
  gap: 1.15rem;
  max-width: 860px;
}
.faq-shell {
  display: grid;
  gap: 2rem;
  max-width: 52rem;
  margin-inline: auto;
}
.download-release { padding-bottom: 2.25rem; }
.download-os { padding-top: 0; }

.band-reviews,
.reviews-band {
  padding: 7rem 0;
  background:
    radial-gradient(ellipse 45% 50% at 80% 10%, rgba(240,68,50,0.06), transparent 55%),
    linear-gradient(180deg, #07131F 0%, #0C1C2D 50%, #101F31 100%);
  position: relative;
  color: var(--text-dark);
}
.band-reviews::before,
.reviews-band::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,68,50,0.4), transparent);
  box-shadow: 0 0 10px rgba(240,68,50,0.14);
}
.reviews-summary { text-align: left; margin-bottom: 1.85rem; position: relative; z-index: 1; }
.reviews-great {
  display: inline-block; font-size: 1.9rem; font-weight: 700; margin: 0 0.55rem 0 0;
  font-family: var(--font-display); color: #fff;
  background: none; -webkit-text-fill-color: unset;
}
.stars { display: inline-flex; gap: 0.1rem; color: var(--red); font-size: 1.25rem; }
.stars.small { font-size: 0.95rem; display: flex; margin-bottom: 0.35rem; }
.reviews-meta { color: var(--text-mute); margin: 0.55rem 0 0; font-size: 0.95rem; }
.reviews-grid {
  display: grid; gap: 0;
  grid-template-columns: 1fr;
  max-height: 28rem; overflow-y: auto;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  background: var(--navy-elev);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22), inset 0 1px rgba(255,255,255,0.04);
  position: relative;
  z-index: 1;
}
@media (min-width: 700px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .reviews-grid { grid-template-columns: repeat(4, 1fr); max-height: 22rem; } }
.tp-card {
  padding: 1.15rem 1.15rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-align: left;
  transition: background 0.22s, transform 0.22s;
}
@media (min-width: 700px) {
  .tp-card { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.07); }
}
.tp-meta { margin: 0 0 0.35rem; font-size: 0.78rem; color: #8A9AAB; }
.tp-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  font-family: var(--font-body);
  color: #fff;
}
.tp-card p { margin: 0; font-size: 0.88rem; color: var(--text-mute); line-height: 1.45; }
.tp-card:hover {
  background: rgba(255,255,255,0.04);
}
@media (prefers-reduced-motion: reduce) {
  .tp-card:hover { transform: none; }
}

table.compare {
  width: 100%; border-collapse: separate; border-spacing: 0;
  font-size: 0.95rem; overflow: hidden;
  border: 1px solid #D5DEE8; border-radius: 14px; background: #fff;
  box-shadow: 0 18px 44px rgba(7,19,31,0.07);
}
table.compare th, table.compare td {
  border-bottom: 1px solid #E4EAF1;
  border-right: 1px solid #E4EAF1;
  padding: 1rem 1.15rem; text-align: left;
}
table.compare th:last-child, table.compare td:last-child { border-right: none; }
table.compare tr:last-child th, table.compare tr:last-child td { border-bottom: none; }
table.compare thead th {
  background: var(--navy-2); color: #fff; font-family: var(--font-display); font-weight: 600;
}
table.compare tbody th { background: #fff; font-weight: 600; color: var(--text-light); }
table.compare td.yes { color: var(--red); font-weight: 700; }

.edition-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .edition-grid { grid-template-columns: 1fr 1fr; } }
.edition-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid #D5DEE8;
  border-radius: 14px;
  padding: 1.85rem 1.6rem;
  border-left: 2px solid var(--red);
  display: grid;
  gap: 0.85rem;
  box-shadow: 0 18px 44px rgba(7,19,31,0.08), inset 0 1px rgba(255,255,255,0.7);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.edition-card:hover {
  transform: translateY(-3px);
  border-color: #B8C7D8;
  box-shadow: 0 24px 52px rgba(7,19,31,0.12), inset 0 1px rgba(255,255,255,0.8);
}
.edition-card.is-pro {
  background: var(--navy-elev);
  color: var(--text-dark);
  border: 1px solid rgba(255,255,255,0.09);
  border-left: 2px solid var(--red);
  box-shadow: 0 18px 50px rgba(0,0,0,0.2), inset 0 1px rgba(255,255,255,0.04);
}
.edition-card.is-pro h3 { color: #fff; }
.edition-card.is-pro p { color: var(--text-mute); }
.edition-card h3 { margin: 0; font-size: 1.4rem; color: var(--text-light); }
.edition-card p { margin: 0; color: #5C6B7A; font-size: 0.95rem; }

.stat-grid { display: grid; gap: 0.85rem; grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); }
.stat-tile {
  background: var(--navy-3); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 0.95rem 1rem; border-left: 3px solid var(--red);
}
.stat-tile .label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-mute); font-weight: 600;
}
.stat-tile .value {
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  margin-top: 0.3rem; color: #fff;
}

.timeline {
  list-style: none; margin: 0; padding: 0;
  border-left: 2px solid #D5DEE8; max-width: 36rem;
}
.timeline li { padding: 0 0 1.5rem 1.25rem; position: relative; }
.timeline li::before {
  content: ""; position: absolute; left: -0.4rem; top: 0.35rem;
  width: 0.65rem; height: 0.65rem; border-radius: 50%;
  background: var(--red); border: 2px solid #fff;
}
html[dir="rtl"] .timeline { border-left: none; border-right: 2px solid #D5DEE8; text-align: right; }
html[dir="rtl"] .timeline li { padding: 0 1.25rem 1.5rem 0; }
html[dir="rtl"] .timeline li::before { left: auto; right: -0.4rem; }

.step-rail { counter-reset: step; list-style: none; margin: 0; padding: 0; }
.step-rail li {
  counter-increment: step; position: relative;
  padding: 1rem 1rem 1rem 3.25rem; margin-bottom: 0.75rem;
  background: #fff; border: 1px solid #D5DEE8; border-radius: 10px;
  border-left: 3px solid var(--red);
}
.step-rail li::before {
  content: counter(step); position: absolute; left: 0.85rem; top: 1rem;
  width: 1.65rem; height: 1.65rem; border-radius: 50%;
  background: var(--red); color: #fff; font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
}
.warn {
  border: 1px solid #F5D9A0; background: #FFF8EB;
  padding: 1rem 1.15rem; border-radius: 10px; color: #5C6B7A; font-size: 0.95rem;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  border: 1px solid rgba(240,68,50,0.25); background: rgba(240,68,50,0.08);
  border-radius: 999px; padding: 0.4rem 0.8rem; font-size: 0.82rem; font-weight: 600;
  color: var(--text-light);
}
.cta-band {
  background: var(--navy-elev);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.09);
  border-left: 2px solid var(--red);
  color: var(--text-dark);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18), inset 0 1px rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  right: -8%;
  top: -45%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  border-left-color: transparent;
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2, .cta-band .font-display { color: #fff; }
.cta-band p { color: var(--text-mute); }
.cta-band .eyebrow { color: var(--red-hot); }

.split-57 { display: grid; gap: 2.75rem; align-items: center; }
@media (min-width: 900px) {
  .split-57 { grid-template-columns: 5fr 7fr; }
  .split-57.reverse { grid-template-columns: 7fr 5fr; }
  .split-57.reverse > :first-child { order: 2; }
}

.faq-intro {
  display: grid; gap: 2rem; margin-bottom: 2rem;
}
@media (min-width: 900px) {
  .faq-intro { grid-template-columns: 1fr 1fr; align-items: end; }
}

[data-accordion] {
  background: rgba(255,255,255,0.9);
  border: 1px solid #D5DEE8;
  border-radius: 14px !important;
  border-left: 2px solid var(--red);
  box-shadow: 0 18px 44px rgba(7,19,31,0.07), inset 0 1px rgba(255,255,255,0.7);
  overflow: hidden;
}
.acc-btn {
  width: 100%; text-align: left; background: transparent; border: none;
  padding: 1.2rem 1.35rem; font: inherit; font-weight: 650; cursor: pointer;
  display: flex; justify-content: space-between; gap: 1rem; color: var(--text-light);
  font-size: 1.05rem;
  transition: background 0.2s, color 0.2s;
}
.acc-btn:hover { background: rgba(240,68,50,0.04); color: var(--navy); }
.acc-panel { padding: 0 1.35rem 1.3rem; color: #5C6B7A; }
[data-acc-item] { border-bottom: 1px solid #E4EAF1; }
[data-acc-item]:last-child { border-bottom: none; }
[data-acc-item].is-open .acc-btn { color: var(--navy); }

.dossier-grid {
  display: grid; gap: 1.25rem;
}
@media (min-width: 800px) {
  .dossier-grid { grid-template-columns: 1fr 1fr; }
}
.dossier-card {
  padding: 1.5rem; background: var(--navy-3);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  border-left: 3px solid var(--red);
}
.dossier-card h3 { margin: 0 0 0.55rem; color: #fff; font-size: 1.25rem; }
.dossier-card p { margin: 0; color: var(--text-mute); }

.guide-board {
  display: grid; gap: 1.25rem;
}
@media (min-width: 900px) {
  .guide-board { grid-template-columns: 240px 1fr; }
}
.guide-toc {
  background: var(--navy-3); color: var(--text-dark);
  border-radius: 10px; padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.08); border-left: 3px solid var(--red);
  height: fit-content; position: sticky; top: calc(var(--banner-h) + 1rem);
}
.guide-toc a { color: var(--text-mute); text-decoration: none; display: block; padding: 0.4rem 0; }
.guide-toc a:hover { color: #fff; }
.toc a { color: var(--win-blue); text-decoration: none; }
.toc li { margin: 0.35rem 0; }

.download-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
  margin-top: 1.75rem;
  max-width: 40rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.2rem;
}
.download-hero-meta span {
  flex: 1 1 7rem;
  padding: 0 1.1rem;
  border-right: 1px solid rgba(255,255,255,0.12);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
  line-height: 1.45;
}
.download-hero-meta span:first-child { padding-left: 0; }
.download-hero-meta span:last-child { border-right: none; padding-right: 0; }

footer.site-footer {
  background: var(--footer); color: #9AABB8; padding: 3rem 0 2rem; margin-top: 0;
}
footer.site-footer a { color: #E8EDF3; text-decoration: none; }
footer.site-footer a:hover { color: #fff; }

.float-dl {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.2rem !important;
  font-size: 0.9rem !important;
  border-radius: 999px;
  box-shadow:
    0 12px 30px rgba(240,68,50,0.38),
    0 0 0 1px rgba(255,255,255,0.08);
}
.float-dl svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.float-dl:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 36px rgba(240,68,50,0.48),
    0 0 0 1px rgba(255,255,255,0.1);
}
@media (prefers-reduced-motion: reduce) {
  .float-dl:hover { transform: none; }
}

#lightbox {
  position: fixed; inset: 0; z-index: 80; background: rgba(5,11,18,0.88);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
#lightbox[hidden] { display: none !important; }
#lightbox-img { max-width: min(96vw, 1100px); max-height: 88vh; border-radius: 8px; background: #0B1928; }
#lightbox-close {
  position: absolute; top: 1rem; right: 1rem; width: 2.5rem; height: 2.5rem;
  border: none; border-radius: 6px; background: #fff; color: var(--text-light);
  font-size: 1.35rem; cursor: pointer; line-height: 1;
}

/* language */
.lang-switch { position: relative; }
.lang-switch__btn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.04);
  border-radius: 8px; padding: 0.4rem 0.75rem;
  font: inherit; font-size: 0.82rem; font-weight: 600;
  color: var(--text-dark); cursor: pointer;
}
.lang-switch__btn:hover { border-color: rgba(255,255,255,0.35); }
.lang-switch__menu {
  position: absolute; top: calc(100% + 0.4rem); right: 0;
  min-width: 10.5rem; margin: 0; padding: 0.4rem;
  list-style: none; background: var(--navy-3);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.35); z-index: 60;
}
.lang-switch__menu a {
  display: block; padding: 0.55rem 0.75rem; border-radius: 8px;
  text-decoration: none; color: var(--text-dark); font-size: 0.9rem; font-weight: 500;
}
.lang-switch__menu a:hover,
.lang-switch__menu a[aria-current="true"] {
  background: rgba(240,68,50,0.15); color: #fff;
}
html[dir="rtl"] .lang-switch__menu { right: auto; left: 0; }

.mobile-lang {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  padding-top: 0.85rem; margin-top: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-lang a {
  display: inline-flex; padding: 0.4rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.14); border-radius: 999px;
  text-decoration: none; color: var(--text-mute); font-size: 0.85rem; font-weight: 600;
}

/* header scroll hook — top-banner IS #site-header */
#site-header.is-scrolled {
  background: rgba(7,18,29,0.92);
  border-bottom-color: rgba(255,255,255,0.1);
}
.header-bar, .desktop-nav, .site-brand, .header-end { /* unused in new shell */ }
#mobile-nav { display: none !important; }

.nav-link { color: var(--text-mute); text-decoration: none; }
.nav-link[aria-current="page"] { color: #fff; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.hero-copy.reveal-hero > * {
  opacity: 0; transform: translateY(18px);
  animation: hero-rise 0.75s var(--ease) forwards;
}
.hero-copy.reveal-hero > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy.reveal-hero > *:nth-child(2) { animation-delay: 0.12s; }
.hero-copy.reveal-hero > *:nth-child(3) { animation-delay: 0.18s; }
.hero-copy.reveal-hero > *:nth-child(4) { animation-delay: 0.24s; }
.hero-copy.reveal-hero > *:nth-child(5) { animation-delay: 0.3s; }
.hero-circle.reveal-hero, .hero-art.reveal-hero {
  opacity: 0; transform: scale(0.94);
  animation: hero-pop 0.9s var(--ease) 0.18s forwards;
}
@keyframes hero-rise { to { opacity: 1; transform: translateY(0); } }
@keyframes hero-pop { to { opacity: 1; transform: scale(1); } }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .hero-copy.reveal-hero > *, .hero-circle.reveal-hero, .hero-art.reveal-hero {
    opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important;
  }
}

html[lang="zh-CN"] .side-link { letter-spacing: 0.08em; }
html[lang="ru"] .btn-primary, html[lang="ru"] .btn-brand { padding-inline: 1.4rem; }

html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .hero-copy, html[dir="rtl"] .hero h1, html[dir="rtl"] .hero p.lead { text-align: right; }
html[dir="rtl"] .hero-actions { justify-content: flex-end; }
html[dir="rtl"] .page-hero,
html[dir="rtl"] .page-hero .crumbs,
html[dir="rtl"] .page-hero .wrap {
  text-align: center;
  justify-content: center;
  align-items: center;
}
html[dir="rtl"] .page-hero ~ .section,
html[dir="rtl"] .page-hero ~ .band-cta {
  text-align: center;
}
html[dir="rtl"] .side-dock { left: auto; right: 0; border-right: none; border-left: 1px solid rgba(255,255,255,0.07); transform: translateX(105%); }
html[dir="rtl"] .side-dock.is-open { transform: translateX(0); }
html[dir="rtl"] .side-link { border-left: none; border-right: 2px solid transparent; }
html[dir="rtl"] .side-link[aria-current="page"] { border-right-color: var(--red); }
@media (min-width: 1100px) {
  html[dir="rtl"] .side-dock { transform: translateX(105%); display: none !important; }
  html[dir="rtl"] .desk-stage {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
html[dir="rtl"] .acc-btn { text-align: right; }
html[dir="rtl"] .stack-list li { border-left: 1px solid #DDE5EE; border-right: 3px solid var(--red); }

.marquee { overflow: hidden; border-block: 1px solid #D5DEE8; background: var(--light); }
.marquee-track {
  display: flex; gap: 1rem; width: max-content;
  animation: marquee 48s linear infinite; padding: 1.25rem 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review-card {
  width: min(22rem, 80vw); flex: 0 0 auto; padding: 1.1rem 1.2rem;
  background: #fff; border: 1px solid #D5DEE8;
  border-top: 2px solid var(--red); border-radius: 10px;
}
.free-block { padding: 3.5rem 0 4rem; background: var(--light); }
.divider-scan {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  margin: 0 auto; max-width: 12rem;
}
.divider-step { border: none; border-top: 1px dashed #D5DEE8; margin: 0; }
#changelog .wrap { display: flex; flex-direction: column; align-items: flex-start; }

/* featured-in alias — layout owned by .band-press */
.featured-in { /* keep class for markup compatibility */ }
.featured-in .label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B7A8C;
  font-weight: 700;
}

/* ===== INNER PAGES: center content + title effects ===== */
@keyframes title-rise {
  from { opacity: 0; transform: translateY(14px); filter: blur(4px); }
  to { opacity: 1; transform: none; filter: none; }
}
@keyframes title-underline {
  from { width: 0; opacity: 0; }
  to { width: 4rem; opacity: 1; }
}
@keyframes title-glow {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 28px rgba(240,68,50,0.18); }
}

.page-hero {
  text-align: center;
}
.page-hero .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page-hero .crumbs {
  justify-content: center;
  margin-bottom: 1.25rem;
}
.page-hero .eyebrow {
  animation: title-rise 0.55s var(--ease) both;
}
.page-hero h1 {
  margin-inline: auto;
  max-width: 16ch;
  text-align: center;
  animation: title-rise 0.7s var(--ease) 0.06s both, title-glow 4.5s ease-in-out 1s infinite;
  transition: letter-spacing 0.35s var(--ease), transform 0.35s var(--ease);
}
.page-hero h1:hover {
  letter-spacing: -0.01em;
  transform: translateY(-2px);
}
.page-hero h1::after {
  content: "";
  display: block;
  height: 3px;
  width: 4rem;
  margin: 0.9rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--red), var(--red-hot), var(--red), transparent);
  animation: title-underline 0.75s var(--ease) 0.28s both;
  box-shadow: 0 0 16px rgba(240,68,50,0.35);
}
.page-hero p {
  margin-inline: auto;
  text-align: center;
  max-width: 40rem;
  animation: title-rise 0.7s var(--ease) 0.14s both;
}
.page-hero .download-hero-meta {
  margin-inline: auto;
  justify-content: center;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.page-hero .download-hero-meta span {
  border-right: none;
  padding: 0 0.85rem;
  position: relative;
}
.page-hero .download-hero-meta span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(255,255,255,0.14);
}
.page-hero .download-hero-meta span:first-child { padding-left: 0.85rem; }
.page-hero .hero-actions {
  justify-content: center;
}

/* Center all content blocks that follow a page hero */
.page-hero ~ .section,
.page-hero ~ .band-cta,
.page-hero ~ .clean-sweep ~ .section,
.page-hero ~ .clean-sweep ~ .band-cta {
  text-align: center;
}
.page-hero ~ .section .wrap,
.page-hero ~ .band-cta .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero ~ .section .section-head,
.page-hero ~ .section .eyebrow,
.page-hero ~ .section h2,
.page-hero ~ .section .page-prose,
.page-hero ~ .section > .wrap > p {
  text-align: center;
  margin-inline: auto;
}
.page-hero ~ .section .page-prose {
  max-width: 40rem;
}
.page-hero ~ .section h2.font-display,
.page-hero ~ .section .section-head h2,
.page-hero ~ .band-cta h2 {
  position: relative;
  display: inline-block;
  margin-inline: auto;
  max-width: 18ch;
  transition: transform 0.3s var(--ease), letter-spacing 0.3s var(--ease), text-shadow 0.3s;
  animation: title-rise 0.65s var(--ease) both;
}
.page-hero ~ .section h2.font-display:hover,
.page-hero ~ .section .section-head h2:hover,
.page-hero ~ .band-cta h2:hover {
  transform: translateY(-2px);
  letter-spacing: -0.015em;
  text-shadow: 0 0 24px rgba(240,68,50,0.2);
}
.page-hero ~ .section h2.font-display::after,
.page-hero ~ .section .section-head h2::after,
.page-hero ~ .band-cta h2::after {
  content: "";
  display: block;
  height: 2px;
  width: 3rem;
  margin: 0.7rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transition: width 0.3s var(--ease), box-shadow 0.3s;
}
.page-hero ~ .section h2.font-display:hover::after,
.page-hero ~ .section .section-head h2:hover::after,
.page-hero ~ .band-cta h2:hover::after {
  width: 4.5rem;
  box-shadow: 0 0 12px rgba(240,68,50,0.4);
}

.page-hero ~ .section .split-57,
.page-hero ~ .section .split-57.reverse {
  grid-template-columns: 1fr;
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  gap: 1.5rem;
}
.page-hero ~ .section .split-57.reverse > :first-child { order: 0; }
.page-hero ~ .section .split-57 .panel,
.page-hero ~ .section .split-57 .panel-quiet,
.page-hero ~ .section .panel,
.page-hero ~ .section .panel-quiet,
.page-hero ~ .section .cta-band {
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  text-align: left;
}
.page-hero ~ .section .inner-list {
  text-align: left;
  max-width: 28rem;
  margin-inline: auto;
}
.page-hero ~ .section .edition-grid,
.page-hero ~ .section .eco-grid,
.page-hero ~ .section .stat-grid {
  width: 100%;
  max-width: 56rem;
}
.page-hero ~ .section .edition-card,
.page-hero ~ .section .eco-card {
  text-align: left;
}
.page-hero ~ .section .badge {
  margin: 0.15rem;
}
.page-hero ~ .section .warn,
.page-hero ~ .section .timeline,
.page-hero ~ .section table.compare {
  margin-inline: auto;
  text-align: left;
  width: 100%;
  max-width: 44rem;
}
.page-hero ~ .section .hero-actions {
  justify-content: center;
}

.page-hero ~ .section .guides-layout {
  width: 100%;
  max-width: 52rem;
  grid-template-columns: 1fr;
  text-align: left;
}
.page-hero ~ .section .guides-toc {
  position: static;
  text-align: left;
  max-width: 52rem;
  margin-inline: auto;
}
.page-hero ~ .section .guides-stack {
  width: 100%;
  text-align: left;
}
.page-hero ~ .section .guides-stack .panel,
.page-hero ~ .section .guides-stack .panel-quiet {
  max-width: none;
}
.page-hero ~ .section .trust-stack,
.page-hero ~ .section .faq-shell {
  width: 100%;
  margin-inline: auto;
  text-align: left;
}
.page-hero ~ .section .faq-shell > div:first-child {
  text-align: center;
}
.page-hero ~ .section [data-accordion] {
  width: 100%;
  max-width: 44rem;
  margin-inline: auto;
  text-align: left;
}

#changelog .wrap {
  align-items: center;
  text-align: center;
}
#changelog .timeline {
  text-align: left;
}

@media (prefers-reduced-motion: reduce) {
  .page-hero .eyebrow,
  .page-hero h1,
  .page-hero p,
  .page-hero ~ .section h2.font-display,
  .page-hero ~ .section .section-head h2,
  .page-hero ~ .band-cta h2 {
    animation: none !important;
    filter: none !important;
  }
  .page-hero h1:hover,
  .page-hero ~ .section h2.font-display:hover,
  .page-hero ~ .section .section-head h2:hover,
  .page-hero ~ .band-cta h2:hover {
    transform: none;
    letter-spacing: inherit;
  }
}
