:root {
  --bg: #03050a;
  --bg-soft: #070c16;
  --panel: rgba(10, 18, 31, 0.82);
  --panel-strong: rgba(11, 21, 37, 0.96);
  --text: #f7fbff;
  --muted: #9eacbd;
  --cyan: #20e7ff;
  --blue: #168cff;
  --magenta: #d83cff;
  --violet: #8b5dff;
  --green: #44f2a1;
  --amber: #ffbf5b;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --max: 1180px;
  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 34px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 6%, rgba(32, 231, 255, 0.12), transparent 27%),
    radial-gradient(circle at 84% 11%, rgba(216, 60, 255, 0.1), transparent 25%),
    linear-gradient(180deg, #050914 0%, var(--bg) 45%, #020308 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

body::after {
  inset: -15%;
  opacity: 0.2;
  background-image: radial-gradient(rgba(222, 250, 255, 0.8) 0.55px, transparent 0.7px);
  background-size: 37px 37px;
  transform: rotate(7deg);
}

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

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

button,
summary {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 76px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(3, 5, 10, 0.74);
  backdrop-filter: blur(20px) saturate(140%);
}

.topbar-inner {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(32, 231, 255, 0.42);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(32, 231, 255, 0.07);
  box-shadow: 0 0 24px rgba(32, 231, 255, 0.12);
  font-size: 0.64rem;
  letter-spacing: 0.04em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(247, 251, 255, 0.68);
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 100% 4px 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  transition: right 0.24s ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  right: 0;
}

.nav-shop {
  padding: 9px 15px !important;
  border: 1px solid rgba(32, 231, 255, 0.26);
  border-radius: 999px;
  background: rgba(32, 231, 255, 0.06);
}

.nav-shop::after {
  display: none;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  list-style: none;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary::before {
  content: "☰";
}

.mobile-menu[open] summary::before {
  content: "×";
  font-size: 1.4rem;
}

.mobile-menu nav {
  position: absolute;
  top: 52px;
  right: 0;
  width: min(270px, calc(100vw - 32px));
  padding: 12px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7, 12, 22, 0.98);
  box-shadow: var(--shadow);
}

.mobile-menu a {
  padding: 12px 13px;
  border-radius: 11px;
  color: #c3cfdb;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu a:hover,
.mobile-menu a[aria-current="page"] {
  color: #fff;
  background: rgba(32, 231, 255, 0.08);
}

.mobile-menu a.mobile-dj-link {
  color: #effdff;
  border: 1px solid rgba(32, 231, 255, 0.34);
  background: linear-gradient(105deg, rgba(32, 231, 255, 0.14), rgba(216, 60, 255, 0.09));
}

.site-sidebar {
  display: none;
}

main {
  overflow: clip;
}

.eyebrow,
.kicker {
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(3.3rem, 7.4vw, 7.2rem);
  line-height: 0.89;
  letter-spacing: -0.068em;
}

h1 .gradient,
h2 .gradient {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #fff 3%, #c7f7ff 35%, var(--cyan) 62%, #cf7dff 100%);
  background-clip: text;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.052em;
}

h3 {
  margin-bottom: 0;
  letter-spacing: -0.025em;
}

.home-hero {
  min-height: 100svh;
  padding: 132px 0 86px;
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.hero-lede {
  max-width: 660px;
  margin: 28px 0 0;
  color: #b4c0ce;
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button,
.button-ghost {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.button {
  border: 1px solid rgba(32, 231, 255, 0.38);
  color: #effeff;
  background: linear-gradient(100deg, rgba(32, 231, 255, 0.16), rgba(22, 140, 255, 0.1));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.button::after {
  content: "→";
  color: var(--cyan);
  font-size: 1rem;
}

.button-ghost {
  border: 1px solid var(--line);
  color: #c0ccd9;
  background: rgba(255, 255, 255, 0.025);
}

.button:hover,
.button-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(32, 231, 255, 0.72);
}

.hero-proof {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #8797a9;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-proof span::before {
  content: "•";
  margin-right: 8px;
  color: var(--cyan);
}

.logo-stage {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.logo-stage::before,
.logo-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.logo-stage::before {
  width: min(430px, 86vw);
  aspect-ratio: 1;
  border: 1px solid rgba(32, 231, 255, 0.16);
  box-shadow:
    inset 0 0 90px rgba(32, 231, 255, 0.05),
    0 0 90px rgba(139, 93, 255, 0.09);
}

.logo-stage::after {
  width: 280px;
  height: 280px;
  background: linear-gradient(140deg, rgba(32, 231, 255, 0.2), rgba(216, 60, 255, 0.14));
  filter: blur(72px);
}

.hero-logo {
  width: min(430px, 86vw);
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.42));
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: 36px;
  width: min(270px, 70%);
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(6, 11, 20, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-note span {
  display: block;
  color: var(--cyan);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  margin-top: 5px;
  font-size: 0.9rem;
}

.pillar-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pillar {
  min-height: 180px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  transition: background 0.22s ease;
}

.pillar:last-child {
  border-right: 0;
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.025);
}

.pillar-number {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.pillar h2 {
  margin-top: 34px;
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  letter-spacing: -0.035em;
}

.pillar p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: clamp(82px, 10vw, 126px) 0;
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: end;
  gap: 40px;
}

.section-head .kicker {
  display: block;
  margin-bottom: 15px;
}

.section-head > p {
  max-width: 560px;
  margin: 0;
  justify-self: end;
  color: var(--muted);
  font-size: 1rem;
}

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

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(13, 23, 40, 0.96), rgba(6, 11, 20, 0.82));
  box-shadow: var(--shadow);
}

.product-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--product-glow, var(--cyan));
  filter: blur(95px);
  opacity: 0.16;
}

.product-card.journal {
  --product-glow: var(--magenta);
}

.product-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #050912;
}

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

.product-status {
  position: absolute;
  top: 17px;
  left: 17px;
  min-height: 31px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(68, 242, 161, 0.32);
  border-radius: 999px;
  background: rgba(3, 8, 14, 0.88);
  color: #d4ffe8;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.product-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.product-body {
  flex: 1;
  padding: clamp(24px, 4vw, 38px);
  display: flex;
  flex-direction: column;
}

.product-label {
  color: var(--cyan);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-body h3 {
  margin-top: 14px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.02;
}

.product-body > p {
  margin: 15px 0 0;
  color: #aab8c8;
  font-size: 0.94rem;
}

.feature-pills {
  margin-top: 23px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-pills span {
  min-height: 31px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #d2deea;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.67rem;
  font-weight: 720;
}

.product-footer {
  margin-top: auto;
  padding-top: 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price {
  display: flex;
  flex-direction: column;
}

.price strong {
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price small {
  margin-top: 5px;
  color: #7f90a4;
  font-size: 0.66rem;
}

.buy-link {
  min-height: 48px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(32, 231, 255, 0.36);
  border-radius: 999px;
  color: #effeff;
  background: rgba(32, 231, 255, 0.09);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

.buy-link::after {
  content: "↗";
  color: var(--cyan);
}

.buy-link:hover {
  transform: translateY(-2px);
  background: rgba(32, 231, 255, 0.15);
}

.trust-bar {
  margin-top: 22px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: #8fa0b4;
  background: rgba(255, 255, 255, 0.018);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.trust-bar span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
}

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

.content-card {
  min-height: 285px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 16, 28, 0.72);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.content-card:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 231, 255, 0.3);
  background: rgba(12, 21, 36, 0.88);
}

.content-card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #6f8298;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.content-card .meta span:first-child {
  color: var(--cyan);
}

.content-card h3 {
  margin-top: 42px;
  font-size: 1.55rem;
  line-height: 1.08;
}

.content-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.open-row {
  margin-top: auto;
  padding-top: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #dbe8f3;
  font-size: 0.72rem;
  font-weight: 800;
}

.open-row b {
  color: var(--cyan);
  font-size: 1.05rem;
}

.manifest {
  padding: clamp(30px, 5vw, 58px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(32, 231, 255, 0.055), rgba(216, 60, 255, 0.045)),
    rgba(8, 14, 25, 0.86);
  box-shadow: var(--shadow);
}

.manifest blockquote {
  margin: 22px 0 0;
  font-size: clamp(1.75rem, 3.4vw, 3.2rem);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.manifest-copy p {
  margin: 0;
  color: #a8b6c7;
}

.manifest-copy p + p {
  margin-top: 18px;
}

.page-hero {
  padding: 154px 0 84px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 7vw, 88px);
  align-items: end;
}

.page-hero h1 {
  margin-top: 24px;
}

.page-hero-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 16, 28, 0.78);
  box-shadow: var(--shadow);
}

.page-hero-card p {
  margin: 0;
  color: #adbac9;
  font-size: 1rem;
}

.page-hero-card strong {
  display: block;
  margin-top: 22px;
  color: var(--cyan);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-stack {
  display: grid;
  gap: 28px;
}

.product-showcase {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(12, 22, 39, 0.97), rgba(5, 10, 18, 0.92));
  box-shadow: var(--shadow);
}

.product-showcase:nth-child(even) {
  grid-template-columns: 1.12fr 0.88fr;
}

.product-showcase:nth-child(even) .showcase-media {
  order: 2;
}

.showcase-media {
  min-height: 480px;
  position: relative;
  overflow: hidden;
  background: #050912;
}

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

.showcase-body {
  padding: clamp(31px, 5vw, 62px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-body h2 {
  margin-top: 14px;
  font-size: clamp(2.25rem, 4.5vw, 4.35rem);
}

.showcase-body > p {
  max-width: 610px;
  margin: 20px 0 0;
  color: #aab8c8;
}

.feature-list {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 10px;
  color: #d9e4ef;
  font-size: 0.9rem;
}

.feature-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(32, 231, 255, 0.26);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(32, 231, 255, 0.055);
  font-size: 0.65rem;
  font-weight: 900;
}

.showcase-buy {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.showcase-buy .price strong {
  font-size: 2.25rem;
}

.faq {
  max-width: 920px;
  margin-inline: auto;
  display: grid;
  gap: 10px;
}

.faq details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(9, 16, 28, 0.7);
}

.faq summary {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  cursor: pointer;
  font-weight: 760;
}

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

.faq summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(32, 231, 255, 0.07);
}

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

.faq .answer {
  max-width: 790px;
  padding: 0 22px 22px;
  color: var(--muted);
}

.footer {
  padding: 42px 0 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  color: #7f8fa2;
  font-size: 0.75rem;
}

.footer-brand strong {
  display: block;
  color: #dce8f2;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.footer-brand span {
  display: block;
  margin-top: 5px;
}

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

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

@media (min-width: 1240px) {
  body {
    padding-left: 212px;
  }

  .site-sidebar {
    position: fixed;
    z-index: 60;
    inset: 16px auto 16px 14px;
    width: 180px;
    padding: 17px 13px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(5, 9, 16, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
  }

  .sidebar-title {
    padding: 0 8px 14px;
    color: var(--cyan);
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.17em;
  }

  .sidebar-link,
  .sidebar-group-label,
  .sidebar-sub a {
    display: block;
    padding: 9px 10px;
    border-radius: 10px;
    color: #b7c4d2;
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.055em;
  }

  .sidebar-link:hover,
  .sidebar-link.active,
  .sidebar-group-label.active,
  .sidebar-sub a:hover {
    color: #effeff;
    background: rgba(32, 231, 255, 0.08);
  }

  .sidebar-group {
    margin: 4px 0;
    padding: 5px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .sidebar-sub {
    padding-left: 8px;
    display: grid;
    gap: 1px;
  }

  .sidebar-sub a {
    padding: 7px 10px;
    color: #8293a7;
    font-size: 0.64rem;
    font-weight: 650;
  }

  .sidebar-foot {
    margin-top: auto;
    padding: 16px 8px 2px;
    color: #607084;
    font-size: 0.59rem;
    line-height: 1.45;
  }
}

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

  .mobile-menu {
    display: block;
  }

  .hero-grid,
  .page-hero-grid,
  .section-head,
  .manifest {
    grid-template-columns: 1fr;
  }

  .logo-stage {
    min-height: 430px;
  }

  .hero-note {
    right: 4%;
  }

  .section-head > p {
    justify-self: start;
  }

  .product-showcase,
  .product-showcase:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .product-showcase:nth-child(even) .showcase-media {
    order: 0;
  }

  .showcase-media {
    min-height: 380px;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 720px) {
  .wrap,
  .topbar-inner {
    width: min(100% - 28px, var(--max));
  }

  .topbar {
    min-height: 68px;
  }

  .brand {
    font-size: 0.7rem;
  }

  .home-hero {
    min-height: auto;
    padding: 112px 0 68px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .hero-grid {
    gap: 22px;
  }

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

  .logo-stage {
    min-height: 360px;
  }

  .hero-logo {
    width: min(340px, 88vw);
  }

  .hero-note {
    bottom: 10px;
  }

  .pillar-grid,
  .product-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

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

  .pillar:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 74px 0;
  }

  .product-media {
    aspect-ratio: 1 / 1;
  }

  .product-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .buy-link {
    width: 100%;
  }

  .page-hero {
    padding: 118px 0 65px;
  }

  .showcase-media {
    min-height: auto;
    aspect-ratio: 1 / 1;
  }

  .showcase-buy,
  .showcase-buy .buy-link {
    width: 100%;
  }

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

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

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

/* AQ approved Home & Shop layout 2026-08-05 */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.home-hero-approved {
  min-height: 100svh;
  padding: 116px 0 74px;
  display: grid;
  place-items: center;
}

.home-hero-approved .home-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-hero-approved .hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.home-hero-approved .hero-overline::before,
.home-hero-approved .hero-overline::after {
  content: "";
  width: clamp(28px, 5vw, 56px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
  box-shadow: none;
}

.home-hero-approved .hero-overline::after {
  transform: rotate(180deg);
}

.home-hero-approved .logo-stage {
  position: relative;
  width: min(630px, 88vw);
  min-height: 0;
  margin: 10px auto 0;
  display: block;
  isolation: isolate;
}

.home-hero-approved .logo-stage::before {
  width: auto;
  height: auto;
  aspect-ratio: auto;
  inset: 16%;
  border: 0;
  background: linear-gradient(140deg, rgba(32, 231, 255, 0.14), rgba(216, 60, 255, 0.1));
  box-shadow: none;
  filter: blur(72px);
}

.home-hero-approved .logo-stage::after {
  display: none;
}

.home-hero-approved .hero-logo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.42));
}

.home-hero-approved .hero-lede {
  max-width: 680px;
  margin: -26px auto 0;
  color: #b4c0ce;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.home-hero-approved .hero-actions {
  margin-top: 31px;
  justify-content: center;
}

.product-card > .product-status,
.product-showcase > .product-status {
  position: static;
  width: 100%;
  min-height: 50px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: #d9ffea;
  background: linear-gradient(90deg, rgba(68, 242, 161, 0.08), rgba(68, 242, 161, 0.015));
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: none;
}

.product-media {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(32, 231, 255, 0.08), transparent 56%),
    #050912;
}

.product-card.journal .product-media {
  background:
    radial-gradient(circle at 50% 40%, rgba(216, 60, 255, 0.09), transparent 56%),
    #050912;
}

.product-media img,
.showcase-media img {
  position: static;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.product-showcase,
.product-showcase:nth-child(even) {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.product-showcase > .product-status {
  grid-column: 1 / -1;
  order: -1;
  min-height: 54px;
  padding-inline: clamp(22px, 4vw, 38px);
}

.product-showcase:nth-child(even) .showcase-media {
  order: 0;
}

.showcase-media {
  min-width: 0;
  min-height: 520px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 42%, rgba(32, 231, 255, 0.08), transparent 58%),
    #050912;
}

.product-showcase:nth-of-type(2) .showcase-media {
  background:
    radial-gradient(circle at 50% 42%, rgba(216, 60, 255, 0.09), transparent 58%),
    #050912;
}

@media (max-width: 900px) {
  .product-showcase,
  .product-showcase:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .showcase-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .home-hero-approved {
    min-height: auto;
    padding: 100px 0 70px;
  }

  .home-hero-approved .logo-stage {
    width: min(520px, 96vw);
    margin-top: 3px;
  }

  .home-hero-approved .hero-lede {
    margin-top: -18px;
  }

  .product-media {
    aspect-ratio: 1 / 1;
  }

  .showcase-media {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 480px) {
  .home-hero-approved .hero-overline {
    font-size: 0.59rem;
    letter-spacing: 0.13em;
  }

  .home-hero-approved .logo-stage {
    width: calc(100vw - 22px);
  }

  .home-hero-approved .hero-lede {
    margin-top: -10px;
    font-size: 0.95rem;
  }

  .product-card > .product-status,
  .product-showcase > .product-status {
    min-height: 47px;
    padding-inline: 17px;
  }
}

/* Shop revenue funnel */
.bundle-offer{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:28px;align-items:center;margin-top:34px;padding:clamp(28px,5vw,54px);border:1px solid rgba(36,214,255,.3);border-radius:26px;background:radial-gradient(circle at 85% 15%,rgba(141,85,255,.26),transparent 34%),linear-gradient(135deg,#07101f,#111735 58%,#101225);box-shadow:0 28px 80px rgba(0,0,0,.3)}
.bundle-offer h2{margin:8px 0 12px}
.bundle-offer p{max-width:760px;color:var(--muted)}
.bundle-math{display:flex;flex-wrap:wrap;gap:10px 18px;align-items:baseline;margin-top:20px}
.bundle-math span{text-decoration:line-through;color:var(--muted)}
.bundle-math strong{font-size:1.55rem;color:#fff}
.bundle-math em{color:#24d6ff;font-style:normal;font-weight:800}
.bundle-buy,.free-check-offer>a{display:inline-flex;justify-content:center;align-items:center;min-height:50px;padding:13px 22px;border-radius:999px;text-decoration:none;font-weight:900}
.bundle-buy{color:#04101a;background:linear-gradient(90deg,#24d6ff,#65e4ff)}
.free-check-offer{display:flex;justify-content:space-between;gap:24px;align-items:center;margin-top:22px;padding:24px 28px;border:1px solid var(--line);border-radius:20px;background:rgba(255,255,255,.035)}
.free-check-offer h3{margin:5px 0 7px}
.free-check-offer p{margin:0;color:var(--muted)}
.free-check-offer>a{white-space:nowrap;color:#fff;border:1px solid rgba(255,255,255,.25);background:rgba(255,255,255,.06)}
@media(max-width:820px){.bundle-offer{grid-template-columns:1fr}.bundle-buy{width:100%}.free-check-offer{align-items:flex-start;flex-direction:column}.free-check-offer>a{width:100%}}


/* General blog landing card */
.content-grid-four{grid-template-columns:repeat(2,minmax(0,1fr))}
@media(max-width:720px){.content-grid-four{grid-template-columns:1fr}}

/* Desktop typography: keep descenders clear of following copy. */
@media (min-width: 901px) {
  h1 {
    line-height: 1.02;
  }

  h2 {
    line-height: 1.08;
  }

  h1 .gradient,
  h2 .gradient {
    padding-bottom: 0.08em;
  }
}


/* AQ cosmic home hero 2026-08-25 */
.home-hero-approved {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 -90px 110px -90px rgba(32, 231, 255, 0.12);
}

.home-hero-approved::before,
.home-hero-approved::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.home-hero-approved::before {
  inset: -8%;
  opacity: 0.72;
  background-image:
    radial-gradient(circle at 3% 9%, rgba(255,255,255,.85) 0 1px, transparent 1.5px),
    radial-gradient(circle at 11% 27%, rgba(173,237,255,.72) 0 .8px, transparent 1.35px),
    radial-gradient(circle at 18% 6%, rgba(255,255,255,.55) 0 .65px, transparent 1.1px),
    radial-gradient(circle at 24% 43%, rgba(255,255,255,.9) 0 1.15px, transparent 1.7px),
    radial-gradient(circle at 29% 18%, rgba(216,60,255,.62) 0 .75px, transparent 1.3px),
    radial-gradient(circle at 34% 71%, rgba(191,242,255,.7) 0 .9px, transparent 1.4px),
    radial-gradient(circle at 39% 33%, rgba(255,255,255,.52) 0 .65px, transparent 1.15px),
    radial-gradient(circle at 44% 87%, rgba(255,255,255,.82) 0 1px, transparent 1.55px),
    radial-gradient(circle at 49% 12%, rgba(32,231,255,.7) 0 .8px, transparent 1.35px),
    radial-gradient(circle at 53% 56%, rgba(255,255,255,.58) 0 .7px, transparent 1.2px),
    radial-gradient(circle at 58% 24%, rgba(255,255,255,.88) 0 1.05px, transparent 1.6px),
    radial-gradient(circle at 63% 79%, rgba(173,237,255,.68) 0 .85px, transparent 1.35px),
    radial-gradient(circle at 69% 39%, rgba(255,255,255,.52) 0 .65px, transparent 1.1px),
    radial-gradient(circle at 74% 8%, rgba(216,60,255,.6) 0 .75px, transparent 1.25px),
    radial-gradient(circle at 79% 66%, rgba(255,255,255,.82) 0 1px, transparent 1.55px),
    radial-gradient(circle at 84% 29%, rgba(191,242,255,.65) 0 .8px, transparent 1.3px),
    radial-gradient(circle at 89% 91%, rgba(255,255,255,.55) 0 .65px, transparent 1.1px),
    radial-gradient(circle at 94% 51%, rgba(255,255,255,.9) 0 1.1px, transparent 1.65px),
    radial-gradient(circle at 97% 16%, rgba(32,231,255,.68) 0 .8px, transparent 1.3px),
    radial-gradient(circle at 7% 82%, rgba(255,255,255,.58) 0 .7px, transparent 1.2px),
    radial-gradient(circle at 16% 61%, rgba(255,255,255,.75) 0 .9px, transparent 1.4px),
    radial-gradient(circle at 37% 5%, rgba(191,242,255,.62) 0 .75px, transparent 1.25px),
    radial-gradient(circle at 47% 68%, rgba(216,60,255,.54) 0 .7px, transparent 1.2px),
    radial-gradient(circle at 56% 94%, rgba(255,255,255,.75) 0 .9px, transparent 1.45px),
    radial-gradient(circle at 66% 14%, rgba(255,255,255,.54) 0 .65px, transparent 1.1px),
    radial-gradient(circle at 72% 52%, rgba(173,237,255,.72) 0 .85px, transparent 1.4px),
    radial-gradient(circle at 87% 5%, rgba(255,255,255,.82) 0 1px, transparent 1.5px),
    radial-gradient(circle at 92% 73%, rgba(255,255,255,.56) 0 .7px, transparent 1.15px);
  animation: aq-stars-drift 42s ease-in-out infinite alternate;
}

.home-hero-approved::after {
  inset: 0;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 8% 37%, rgba(32,231,255,.92) 0 1.15px, transparent 1.9px),
    radial-gradient(circle at 21% 76%, rgba(255,255,255,.92) 0 1.35px, transparent 2.1px),
    radial-gradient(circle at 31% 52%, rgba(216,60,255,.74) 0 1px, transparent 1.75px),
    radial-gradient(circle at 46% 22%, rgba(255,255,255,.9) 0 1.25px, transparent 2px),
    radial-gradient(circle at 61% 63%, rgba(32,231,255,.88) 0 1.1px, transparent 1.85px),
    radial-gradient(circle at 76% 19%, rgba(255,255,255,.86) 0 1.2px, transparent 1.95px),
    radial-gradient(circle at 86% 48%, rgba(216,60,255,.7) 0 1px, transparent 1.75px),
    radial-gradient(circle at 96% 84%, rgba(255,255,255,.94) 0 1.35px, transparent 2.1px);
  animation: aq-stars-twinkle 7s ease-in-out infinite alternate;
}

.home-hero-approved .home-hero-inner {
  position: relative;
  z-index: 1;
}

.home-hero-approved .constellation {
  position: absolute;
  top: 42%;
  z-index: 0;
  width: clamp(150px, 15vw, 230px);
  height: clamp(190px, 22vw, 290px);
  pointer-events: none;
  user-select: none;
  opacity: 0.78;
}

.home-hero-approved .constellation-gemini {
  left: clamp(4px, 2.8vw, 48px);
  transform: translateY(-50%) rotate(-7deg);
}

.home-hero-approved .constellation-cancer {
  right: clamp(4px, 2.8vw, 48px);
  transform: translateY(-50%) rotate(8deg);
}

.home-hero-approved .constellation i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s, 4px);
  height: var(--s, 4px);
  border-radius: 50%;
  background: rgba(246, 253, 255, 0.98);
  box-shadow:
    0 0 4px 1px rgba(255, 255, 255, 0.78),
    0 0 12px 3px rgba(32, 231, 255, 0.36);
  transform: translate(-50%, -50%);
  animation: aq-constellation-twinkle var(--d, 5.8s) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
}

.home-hero-approved .constellation-cancer i {
  box-shadow:
    0 0 4px 1px rgba(255, 255, 255, 0.74),
    0 0 13px 3px rgba(216, 60, 255, 0.3);
}

.home-hero-approved .constellation i::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: calc(var(--s, 4px) * 3.1);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.54), transparent);
  transform: translate(-50%, -50%);
  opacity: 0.5;
}

.home-hero-approved .hero-logo {
  transform-origin: 50% 52%;
  will-change: transform, filter;
  animation: aq-logo-float 7.5s ease-in-out infinite;
}

@keyframes aq-logo-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.48));
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.008);
    filter:
      drop-shadow(0 35px 58px rgba(0, 0, 0, 0.5))
      drop-shadow(0 0 17px rgba(32, 231, 255, 0.11));
  }
}

@keyframes aq-stars-drift {
  from { transform: translate3d(-5px, 2px, 0) scale(1.01); }
  to { transform: translate3d(18px, -11px, 0) scale(1.025); }
}

@keyframes aq-stars-twinkle {
  0% { opacity: 0.28; }
  48% { opacity: 0.54; }
  100% { opacity: 0.36; }
}

@keyframes aq-constellation-twinkle {
  0%, 20% { opacity: 0.42; filter: brightness(.86); }
  62% { opacity: 1; filter: brightness(1.18); }
  100% { opacity: 0.66; filter: brightness(1); }
}

@media (max-width: 720px) {
  .home-hero-approved .constellation {
    top: 48%;
    width: 112px;
    height: 154px;
    opacity: 0.56;
  }

  .home-hero-approved .constellation-gemini { left: -18px; }
  .home-hero-approved .constellation-cancer { right: -18px; }

  .home-hero-approved .constellation i::after {
    opacity: 0.34;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-approved::before,
  .home-hero-approved::after,
  .home-hero-approved .hero-logo,
  .home-hero-approved .constellation i {
    animation: none !important;
  }
}
/* AQ fixed sitewide starfield 2026-08-25 */
html {
  background: #000;
}

body {
  position: relative;
  isolation: isolate;
  background: #000;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: auto;
  mask-image: none;
  transform: none;
}

body::before {
  opacity: 0.66;
  background-image:
    radial-gradient(circle at 2% 13%, rgba(255,255,255,.78) 0 .8px, transparent 1.35px),
    radial-gradient(circle at 7% 42%, rgba(178,239,255,.7) 0 1px, transparent 1.5px),
    radial-gradient(circle at 12% 79%, rgba(255,255,255,.52) 0 .65px, transparent 1.1px),
    radial-gradient(circle at 17% 24%, rgba(255,255,255,.86) 0 1.05px, transparent 1.6px),
    radial-gradient(circle at 21% 91%, rgba(216,60,255,.55) 0 .75px, transparent 1.25px),
    radial-gradient(circle at 25% 57%, rgba(255,255,255,.58) 0 .7px, transparent 1.2px),
    radial-gradient(circle at 30% 7%, rgba(32,231,255,.65) 0 .85px, transparent 1.4px),
    radial-gradient(circle at 34% 35%, rgba(255,255,255,.8) 0 1px, transparent 1.5px),
    radial-gradient(circle at 38% 73%, rgba(190,242,255,.66) 0 .8px, transparent 1.35px),
    radial-gradient(circle at 43% 18%, rgba(255,255,255,.48) 0 .65px, transparent 1.1px),
    radial-gradient(circle at 47% 88%, rgba(255,255,255,.84) 0 1.05px, transparent 1.6px),
    radial-gradient(circle at 52% 49%, rgba(216,60,255,.5) 0 .7px, transparent 1.2px),
    radial-gradient(circle at 56% 11%, rgba(255,255,255,.7) 0 .85px, transparent 1.4px),
    radial-gradient(circle at 61% 67%, rgba(32,231,255,.63) 0 .8px, transparent 1.35px),
    radial-gradient(circle at 65% 29%, rgba(255,255,255,.88) 0 1.1px, transparent 1.65px),
    radial-gradient(circle at 70% 83%, rgba(255,255,255,.5) 0 .65px, transparent 1.1px),
    radial-gradient(circle at 74% 5%, rgba(190,242,255,.72) 0 .9px, transparent 1.4px),
    radial-gradient(circle at 79% 46%, rgba(255,255,255,.78) 0 1px, transparent 1.5px),
    radial-gradient(circle at 83% 94%, rgba(216,60,255,.54) 0 .75px, transparent 1.25px),
    radial-gradient(circle at 87% 21%, rgba(255,255,255,.56) 0 .7px, transparent 1.15px),
    radial-gradient(circle at 91% 63%, rgba(32,231,255,.68) 0 .85px, transparent 1.4px),
    radial-gradient(circle at 96% 34%, rgba(255,255,255,.9) 0 1.1px, transparent 1.65px),
    radial-gradient(circle at 98% 81%, rgba(255,255,255,.52) 0 .65px, transparent 1.1px),
    radial-gradient(circle at 10% 4%, rgba(255,255,255,.55) 0 .7px, transparent 1.2px),
    radial-gradient(circle at 28% 68%, rgba(255,255,255,.75) 0 .9px, transparent 1.45px),
    radial-gradient(circle at 41% 52%, rgba(178,239,255,.64) 0 .8px, transparent 1.3px),
    radial-gradient(circle at 59% 92%, rgba(255,255,255,.72) 0 .9px, transparent 1.4px),
    radial-gradient(circle at 72% 38%, rgba(255,255,255,.54) 0 .65px, transparent 1.1px),
    radial-gradient(circle at 89% 8%, rgba(255,255,255,.82) 0 1px, transparent 1.55px);
}

body::after {
  opacity: 0.34;
  background-image:
    radial-gradient(circle at 5% 67%, rgba(32,231,255,.9) 0 1.15px, transparent 1.9px),
    radial-gradient(circle at 14% 32%, rgba(255,255,255,.9) 0 1.25px, transparent 2px),
    radial-gradient(circle at 24% 84%, rgba(216,60,255,.7) 0 1px, transparent 1.75px),
    radial-gradient(circle at 36% 14%, rgba(255,255,255,.86) 0 1.2px, transparent 1.95px),
    radial-gradient(circle at 49% 62%, rgba(32,231,255,.85) 0 1.1px, transparent 1.85px),
    radial-gradient(circle at 63% 41%, rgba(255,255,255,.92) 0 1.3px, transparent 2.05px),
    radial-gradient(circle at 77% 76%, rgba(216,60,255,.68) 0 1px, transparent 1.7px),
    radial-gradient(circle at 85% 16%, rgba(255,255,255,.88) 0 1.2px, transparent 1.95px),
    radial-gradient(circle at 94% 53%, rgba(32,231,255,.86) 0 1.1px, transparent 1.85px);
  animation: aq-global-stars-twinkle 8.5s ease-in-out infinite alternate;
}

@keyframes aq-global-stars-twinkle {
  from { opacity: 0.22; }
  55% { opacity: 0.42; }
  to { opacity: 0.3; }
}

@media (max-width: 720px) {
  body::before { opacity: 0.52; }
  body::after { opacity: 0.24; }
}

@media (prefers-reduced-motion: reduce) {
  body::after {
    animation: none !important;
  }
}
