:root {
  color-scheme: dark;
  --ink-deep: #030507;
  --ink: #070b12;
  --surface: #101925;
  --surface-strong: #172436;
  --surface-soft: #1e2c40;
  --glass: rgba(12, 21, 32, 0.9);
  --glass-soft: rgba(21, 34, 50, 0.8);
  --white: #f5f7fb;
  --muted: #a7b3c5;
  --muted-strong: #c7d0dc;
  --cyan: #69d7ff;
  --cyan-strong: #22b8f0;
  --gold: #f2c85b;
  --gold-deep: #c99b2c;
  --coral: #ef6b5a;
  --line: rgba(163, 188, 218, 0.2);
  --line-strong: rgba(105, 215, 255, 0.48);
  --max-width: 1240px;
  --header-height: 72px;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink-deep);
  color: var(--white);
  line-height: 1.55;
}

body,
button,
a {
  letter-spacing: 0;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

h2 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: 44px;
  font-weight: 760;
}

h3 {
  margin-bottom: 12px;
  font-size: 27px;
}

p {
  color: var(--muted-strong);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0 5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 5, 7, 0.72);
  backdrop-filter: blur(18px);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 5, 7, 0.96);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-size: 23px;
  font-weight: 790;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
}

.brand > span > span,
.brand-word > span,
#hero-title > span {
  color: var(--gold);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted-strong);
  font-size: 15px;
  font-weight: 650;
}

.primary-nav > a:not(.nav-cta) {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.primary-nav > a:not(.nav-cta):hover {
  color: var(--white);
  border-color: var(--cyan);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--ink-deep);
  background: var(--gold);
}

.nav-cta:hover {
  background: #ffe080;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--white);
  background: var(--surface);
}

.nav-toggle svg,
.button svg,
.text-link svg,
.hero-next svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button svg use[href="#icon-play"] {
  fill: currentColor;
  stroke: none;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 92vh;
  max-height: 920px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.hero-media,
.hero-scrim {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  z-index: -1;
  background: rgba(2, 5, 9, 0.72);
}

.hero-content {
  width: min(90%, var(--max-width));
  margin: 0 auto;
  padding: calc(var(--header-height) + 72px) 0 112px;
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

#hero-title {
  max-width: 800px;
  margin-bottom: 14px;
  font-size: 86px;
  font-weight: 820;
  letter-spacing: 0;
}

.hero-lead {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 28px;
  font-weight: 680;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 760;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

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

.button-primary {
  color: var(--ink-deep);
  background: var(--gold);
  border-color: var(--gold);
}

.button-primary:hover {
  background: #ffe080;
}

.button-secondary {
  color: var(--white);
  background: rgba(15, 26, 40, 0.72);
  border-color: var(--line-strong);
}

.button-secondary:hover {
  background: rgba(28, 46, 67, 0.94);
}

.content-notice {
  max-width: 680px;
  margin-bottom: 0;
  color: #bcc7d6;
  font-size: 13px;
}

.content-notice strong {
  color: var(--coral);
}

.hero-next {
  position: absolute;
  right: 5vw;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
}

.hero-next svg {
  transform: rotate(90deg);
}

.section-band {
  padding: 96px 5vw;
  background: #0b111a;
}

.section-dark {
  background: #07101a;
}

.section-black {
  background: #030507;
}

.section-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.overview {
  padding-top: 70px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
  background: #111a27;
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 80px;
  align-items: center;
}

.overview h2 {
  margin-bottom: 0;
  font-size: 36px;
}

.overview-copy > p {
  margin-bottom: 22px;
  font-size: 17px;
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.source-list span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted-strong);
  background: rgba(7, 13, 21, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 730px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 400px;
  margin-bottom: 7px;
}

.feature-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.feature-tab {
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted-strong);
  background: var(--surface);
  font-weight: 720;
  cursor: pointer;
}

.feature-tab:hover,
.feature-tab.is-active {
  color: var(--white);
  border-color: var(--cyan);
  background: var(--surface-strong);
}

.feature-tab.is-active {
  box-shadow: inset 0 -3px 0 var(--cyan);
}

.feature-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(300px, 0.72fr);
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
}

.feature-visual {
  min-width: 0;
  min-height: 0;
  aspect-ratio: 16 / 9;
  margin: 0;
  border-right: 1px solid var(--line);
  background: var(--ink);
}

.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--cyan);
  background: #0b1622;
}

.feature-icon svg,
.capability-list article > svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-kicker {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-detail h3 {
  font-size: 31px;
}

.feature-detail > p:not(.feature-kicker) {
  margin-bottom: 20px;
}

.feature-detail ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-detail li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-top: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 14px;
}

.feature-detail li::before {
  position: absolute;
  left: 2px;
  color: var(--cyan);
  content: "+";
  font-weight: 900;
}

.comparison {
  background: #101925;
}

.comparison-heading {
  align-items: start;
}

.edition-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  gap: 18px;
}

.edition-grid-lite {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
}

.lite-visual,
.fullscreen-visual {
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--ink);
}

.lite-visual img,
.fullscreen-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fullscreen-showcase {
  background: #080d14;
}

.fullscreen-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.58fr);
  gap: 48px;
  align-items: center;
}

.fullscreen-copy > p:not(.eyebrow) {
  max-width: 520px;
  font-size: 17px;
}

.edition {
  min-width: 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0a111b;
}

.edition-premium {
  border-color: rgba(242, 200, 91, 0.58);
  background: #121b28;
}

.edition-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.edition-label {
  margin-bottom: 7px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.edition h3 {
  margin-bottom: 0;
  font-size: 34px;
}

.edition h3 span {
  display: block;
  margin-top: 7px;
  color: var(--muted-strong);
  font-size: 17px;
  font-weight: 620;
}

.edition-badge {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.edition-badge-premium {
  color: var(--gold);
  border-color: rgba(242, 200, 91, 0.65);
}

.edition > p {
  min-height: 52px;
}

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

.check-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 14px;
}

.check-list svg {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-list .muted {
  color: #7e8998;
}

.check-list .muted svg {
  stroke: var(--coral);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  color: var(--gold);
  font-weight: 760;
}

.text-link:hover {
  color: #ffe080;
}

.pricing-note {
  margin: 18px 0 0;
  color: #8491a2;
  font-size: 12px;
}

.premium-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 52px;
  align-items: center;
}

.premium-copy {
  min-width: 0;
}

.premium-lead {
  max-width: 720px;
  color: var(--muted-strong);
  font-size: 17px;
}

.premium-price {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
  padding: 18px 0;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.premium-price strong {
  color: var(--gold);
  font-size: 28px;
}

.premium-price span {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
}

.premium-price small {
  flex-basis: 100%;
  color: var(--muted);
}

.premium-copy > .button {
  margin-top: 28px;
}

.premium-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(242, 200, 91, 0.48);
  border-radius: 8px;
  background: var(--ink);
}

.premium-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.theme-intro {
  max-width: 860px;
  margin-bottom: 30px;
}

.theme-intro > div:first-child {
  max-width: none;
}

.theme-intro h2 {
  margin-bottom: 18px;
}

.theme-intro p:last-child {
  margin-bottom: 0;
  font-size: 17px;
}

.theme-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(350px, 0.75fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 64px;
}

.theme-cinema {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--ink);
}

.theme-cinema video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.theme-browser {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 14px;
}

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

.theme-option {
  position: relative;
  min-height: 54px;
  padding: 12px 34px 12px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted-strong);
  text-align: left;
  background: var(--surface);
  cursor: pointer;
}

.theme-option::after {
  position: absolute;
  right: 13px;
  color: var(--cyan);
  content: "+";
  font-size: 20px;
}

.theme-option:hover,
.theme-option.is-active {
  color: var(--white);
  border-color: var(--cyan);
  background: var(--surface-strong);
}

.theme-option.is-active::after {
  display: none;
}

.theme-detail {
  flex: 1;
  min-height: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0b121c;
}

.theme-detail h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.theme-detail > p:not(.eyebrow) {
  margin-bottom: 20px;
  color: var(--muted-strong);
  font-size: 14px;
}

.theme-price-row {
  display: grid;
  gap: 4px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.theme-price-row strong {
  color: var(--gold);
  font-size: 20px;
}

.theme-price-row span {
  color: var(--muted);
  font-size: 12px;
}

.pack-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 24px;
}

.pack-heading h3 {
  margin-bottom: 0;
  font-size: 32px;
}

.pack-heading > p {
  margin-bottom: 3px;
}

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

.pack-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.pack-card.pack-wide {
  grid-column: auto;
  aspect-ratio: 16 / 9;
}

.pack-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 300ms ease;
}

.pack-card:hover img {
  transform: scale(1.025);
}

.pack-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 42px 15px 14px;
  background: rgba(2, 5, 9, 0.82);
}

.pack-card figcaption strong,
.pack-card figcaption span {
  display: block;
}

.pack-card figcaption strong {
  color: var(--white);
  font-size: 15px;
}

.pack-card figcaption span {
  color: var(--muted-strong);
  font-size: 12px;
}

.pack-note {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted-strong);
  font-size: 15px;
  text-align: center;
}

.capabilities {
  background: #101925;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-list article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 17px;
  min-width: 0;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d1622;
}

.capability-list article > svg {
  color: var(--cyan);
}

.capability-list h3 {
  font-size: 19px;
}

.capability-list p {
  margin-bottom: 0;
  font-size: 14px;
}

.home-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.66fr) minmax(0, 1.34fr);
  gap: 64px;
  align-items: center;
}

.home-copy > p:not(.eyebrow) {
  font-size: 17px;
}

.home-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 30px;
}

.home-stats > div {
  padding: 15px 10px;
  border-top: 2px solid var(--cyan);
  background: #101925;
}

.home-stats strong,
.home-stats span {
  display: block;
}

.home-stats strong {
  color: var(--gold);
  font-size: 27px;
}

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

.home-visual {
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--ink);
}

.home-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.support {
  background: #0b111a;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 76px;
  align-items: start;
}

.support-copy {
  position: sticky;
  top: 105px;
}

.support-copy .button {
  margin-top: 10px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 44px 23px 0;
  color: var(--white);
  font-size: 17px;
  font-weight: 720;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 8px;
  color: var(--cyan);
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  padding: 0 44px 23px 0;
  margin-bottom: 0;
}

.final-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #111925;
}

.final-cta > img {
  position: absolute;
  z-index: -1;
  right: 5vw;
  width: 440px;
  opacity: 0.13;
}

.final-cta > div {
  max-width: 780px;
}

.final-cta h2 {
  margin-bottom: 15px;
}

.final-cta p:last-child {
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px 50px;
  padding: 48px 5vw 30px;
  background: var(--ink-deep);
}

.footer-brand {
  max-width: 560px;
}

.brand-word {
  font-size: 23px;
  font-weight: 820;
}

.footer-brand p {
  margin: 10px 0 0;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 700;
}

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

.copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  margin-bottom: 0;
  border-top: 1px solid var(--line);
  color: #788596;
  font-size: 11px;
}

@media (max-width: 1040px) {
  h2 {
    font-size: 38px;
  }

  .site-header {
    padding-inline: 4vw;
  }

  .primary-nav {
    gap: 18px;
  }

  #hero-title {
    font-size: 72px;
  }

  .section-band {
    padding: 80px 4vw;
  }

  .feature-stage {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
    min-height: 440px;
  }

  .feature-detail {
    padding: 28px;
  }

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

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

  .fullscreen-copy {
    max-width: 720px;
  }

  .edition > p {
    min-height: 0;
  }

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

  .home-grid {
    gap: 38px;
  }
}

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

  h2 {
    font-size: 34px;
  }

  .site-header {
    padding-inline: 20px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    inset: var(--header-height) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(3, 5, 7, 0.98);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a:not(.nav-cta) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 12px;
    text-align: center;
  }

  .hero {
    min-height: 780px;
    max-height: none;
  }

  .hero-content {
    width: calc(100% - 40px);
    padding-top: 128px;
  }

  #hero-title {
    font-size: 58px;
  }

  .hero-lead {
    font-size: 24px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-next {
    right: 20px;
  }

  .section-band {
    padding: 68px 20px;
  }

  .overview-grid,
  .section-heading,
  .pack-heading,
  .fullscreen-grid,
  .premium-showcase,
  .theme-showcase,
  .home-grid,
  .support-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .overview-grid,
  .support-grid {
    gap: 30px;
  }

  .section-heading {
    display: grid;
    gap: 14px;
  }

  .section-heading > p {
    max-width: 620px;
  }

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

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

  .feature-visual {
    aspect-ratio: 16 / 9;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-detail {
    min-height: 360px;
  }

  .premium-showcase {
    gap: 34px;
  }

  .pack-heading {
    gap: 16px;
  }

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

  .theme-browser {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
  }

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

  .home-copy {
    max-width: 650px;
  }

  .support-copy {
    position: static;
  }

  .final-cta {
    display: grid;
    gap: 24px;
  }

  .final-cta .button {
    justify-self: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 20px;
  }

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

@media (max-width: 560px) {
  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 23px;
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 740px;
  }

  .hero-content {
    padding-top: 118px;
  }

  #hero-title {
    font-size: 47px;
  }

  .hero-lead {
    font-size: 21px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-next {
    left: 20px;
    right: auto;
  }

  .overview h2 {
    font-size: 30px;
  }

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

  .feature-detail {
    min-height: 0;
    padding: 26px 22px;
  }

  .feature-detail h3 {
    font-size: 26px;
  }

  .edition {
    padding: 24px 20px;
  }

  .edition-topline {
    display: grid;
  }

  .edition-badge {
    justify-self: start;
  }

  .edition h3 {
    font-size: 30px;
  }

  .premium-columns,
  .pack-grid {
    grid-template-columns: 1fr;
  }

  .pack-card,
  .pack-card.pack-wide {
    grid-column: auto;
    aspect-ratio: 16 / 9;
  }

  .theme-showcase {
    margin-bottom: 48px;
  }

  .theme-browser {
    grid-template-columns: 1fr;
  }

  .home-stats {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    font-size: 15px;
  }

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

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

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

  .hero-media {
    display: none;
  }
}
