@font-face {
  font-family: "Blender Pro";
  src: url("../fonts/BlenderPro-Book.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Blender Pro";
  src: url("../fonts/BlenderPro-Bold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

:root {
  --cream: #faebd1;
  --blue: #257da7;
  --brown: #815f3d;
  --dark: #3d2d24;
  --black: #000000;
  --bronze: #c29f73;
  --ink: #100d0b;
  --paper: #fff8ec;
  --mist: rgba(250, 235, 209, 0.74);
  --line: rgba(250, 235, 209, 0.2);
  --blue-soft: rgba(37, 125, 167, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --font-primary: "JetBrains Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;
  --font-secondary: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-tech: "Orbitron", var(--font-primary);
  --font-cyber: "Blender Pro", "JetBrains Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-gutter: stable both-edges;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  position: relative;
  overflow-x: hidden;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(37, 125, 167, 0.16);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 20% 0%, rgba(37, 125, 167, 0.12), transparent 26rem),
    radial-gradient(circle at 95% 20%, rgba(194, 159, 115, 0.08), transparent 22rem);
  pointer-events: none;
}

body.menu-open,
body.auth-open {
  overflow: hidden;
}

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

.nav-shell > *,
.section-inner > *,
.footer-layout > *,
.hero-content > *,
.shop-hero-layout > *,
.legal-layout > *,
.topic-hero-layout > *,
.article-hero-layout > *,
.article-layout > * {
  min-width: 0;
}

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

p,
li,
h1,
h2,
h3,
h4,
a,
button,
span,
strong,
time,
figcaption {
  overflow-wrap: break-word;
}

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

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 2px solid rgba(99, 208, 255, 0.88);
  outline-offset: 2px;
}

.bot-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 999;
  transform: translateY(-140%);
  border: 1px solid var(--cream);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--cream);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-color: rgba(250, 235, 209, 0.12);
  background: rgba(16, 13, 11, 0.88);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 2rem));
  min-height: 5rem;
  margin: 0 auto;
  gap: 1rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.68rem;
  font-family: var(--font-primary);
  color: var(--cream);
}

.brand-avatar {
  position: relative;
  flex: 0 0 auto;
  width: 2.55rem;
  height: 2.55rem;
  overflow: hidden;
  border: 1px solid rgba(250, 235, 209, 0.46);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 0 0 1px rgba(37, 125, 167, 0.58), 0 0 22px rgba(37, 125, 167, 0.48);
  animation: logoFloat 4.8s ease-in-out infinite;
  isolation: isolate;
}

.brand-avatar::before {
  position: absolute;
  inset: -34%;
  z-index: 2;
  content: "";
  background: conic-gradient(from 120deg, transparent, rgba(37, 125, 167, 0.62), transparent 34%);
  opacity: 0.72;
  animation: logoSweep 3.8s linear infinite;
  pointer-events: none;
}

.brand-avatar::after {
  position: absolute;
  inset: 2px;
  z-index: 3;
  content: "";
  border: 1px solid rgba(250, 235, 209, 0.58);
  border-radius: 6px;
  box-shadow: inset 0 0 16px rgba(37, 125, 167, 0.2);
  pointer-events: none;
}

.brand-avatar img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 53% 37%;
  transform: scale(1.82);
  transform-origin: 54% 38%;
  filter: saturate(1.08) contrast(1.06);
}

.brand-name {
  display: inline-flex;
  max-width: min(56vw, 18rem);
  overflow: hidden;
  color: var(--cream);
  font-family: var(--font-primary);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  text-overflow: ellipsis;
  text-shadow: 0 0 14px rgba(37, 125, 167, 0.42);
  white-space: nowrap;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.brand-mark:hover .brand-name,
.brand-mark:focus-visible .brand-name {
  color: var(--blue);
  text-shadow: 0 0 18px rgba(37, 125, 167, 0.78);
}

.menu-toggle {
  display: none;
}

.site-menu {
  display: grid;
  justify-items: end;
  gap: 0.28rem;
}

.site-menu-backdrop[hidden] {
  display: none;
}

.site-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(6px);
  opacity: 0;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.site-menu-backdrop.is-visible {
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a,
.nav-links button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.72rem 0.9rem;
  color: rgba(250, 235, 209, 0.84);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"],
.nav-links button:hover,
.nav-links button:focus-visible {
  border-color: rgba(37, 125, 167, 0.48);
  color: var(--cream);
  background: rgba(37, 125, 167, 0.14);
  box-shadow: 0 0 18px rgba(37, 125, 167, 0.24);
  outline: none;
}

.nav-socials {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 2.1rem;
  border: 1px solid rgba(250, 235, 209, 0.16);
  border-radius: 8px;
  padding: 0.34rem 0.58rem;
  color: rgba(250, 235, 209, 0.88);
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(250, 235, 209, 0.05);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-social:hover,
.nav-social:focus-visible {
  border-color: rgba(37, 125, 167, 0.64);
  color: var(--cream);
  background: rgba(37, 125, 167, 0.16);
  box-shadow: 0 0 18px rgba(37, 125, 167, 0.2);
  outline: none;
}

.nav-social .social-icon {
  width: 1.28rem;
  height: 1.28rem;
}

.nav-auth-button {
  border-color: rgba(37, 125, 167, 0.4);
  color: var(--cream);
  background: rgba(37, 125, 167, 0.1);
  box-shadow: inset 0 0 18px rgba(37, 125, 167, 0.08), 0 0 14px rgba(37, 125, 167, 0.12);
}

.nav-share-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  min-width: 2.55rem;
  min-height: 2.55rem;
  border: 1px solid rgba(250, 235, 209, 0.18);
  border-radius: 8px;
  padding: 0;
  color: var(--cream);
  font-family: var(--font-primary);
  cursor: pointer;
  background: rgba(250, 235, 209, 0.055);
  box-shadow: inset 0 0 16px rgba(37, 125, 167, 0.08);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-share-button:hover,
.nav-share-button:focus-visible {
  border-color: rgba(37, 125, 167, 0.48);
  color: var(--cream);
  background: rgba(37, 125, 167, 0.14);
  box-shadow: 0 0 18px rgba(37, 125, 167, 0.24);
  outline: none;
}

.nav-links .nav-share-button {
  order: -1;
}

.nav-share-button-mobile {
  display: none;
}

.nav-share-icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
}

.nav-share-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.nav-share-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.nav-share-button.is-copied {
  border-color: rgba(194, 159, 115, 0.72);
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 0 24px rgba(37, 125, 167, 0.26);
}

.section {
  position: relative;
  padding: 6.5rem 0;
}

.feature-band,
.editorial-section,
.community-section,
.about-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 920px;
}

.section-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero-section {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 86svh;
  overflow: hidden;
  padding: 7.5rem 0 4rem;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(16, 13, 11, 0.98), rgba(16, 13, 11, 0.76) 52%, rgba(16, 13, 11, 0.38)),
    var(--ink);
}

.space-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250, 235, 209, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 235, 209, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 24% 28%, rgba(250, 235, 209, 0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 36%, rgba(37, 125, 167, 0.34) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 72%, rgba(194, 159, 115, 0.28) 0 1px, transparent 2px);
  background-size: 4rem 4rem, 4rem 4rem, 13rem 13rem, 17rem 17rem, 11rem 11rem;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.78), transparent);
  opacity: 0.82;
  animation: gridDrift 18s linear infinite;
}

.hero-media {
  position: absolute;
  top: 8.15rem;
  right: clamp(1rem, 5vw, 5.5rem);
  z-index: 1;
  width: min(31rem, 40vw);
  aspect-ratio: 1;
  opacity: 0.94;
  filter: drop-shadow(0 28px 54px rgba(0, 0, 0, 0.42));
  transform-origin: center;
  animation: astronautFloat 5.8s ease-in-out infinite;
  isolation: isolate;
  pointer-events: none;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 10%, rgba(250, 235, 209, 0.28) 12%, transparent 15% 45%, rgba(37, 125, 167, 0.32) 47%, transparent 52% 100%),
    repeating-linear-gradient(0deg, rgba(250, 235, 209, 0.28) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(37, 125, 167, 0.18) 0 2px, transparent 2px 12px);
  -webkit-mask-image: url("../img/astro001-cutout.png");
  mask-image: url("../img/astro001-cutout.png");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  mix-blend-mode: screen;
  opacity: 0.42;
  animation: tvNoise 0.22s steps(2, end) infinite;
}

.hero-astronaut {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 0 8px rgba(250, 235, 209, 0.38))
    drop-shadow(0 0 18px rgba(250, 235, 209, 0.2))
    drop-shadow(3px 0 0 rgba(37, 125, 167, 0.22))
    drop-shadow(-3px 0 0 rgba(250, 235, 209, 0.18))
    saturate(1.04)
    contrast(1.04)
    brightness(0.95);
  animation: tvSignal 2.35s steps(1, end) infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--bronze);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-primary);
  line-height: 1.06;
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.2rem;
  font-family: var(--font-tech);
  font-size: 5.75rem;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 26px rgba(37, 125, 167, 0.5), 0 2px 0 rgba(0, 0, 0, 0.3);
}

h2 {
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 800;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.45rem;
}

h4 {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 40rem;
  margin-bottom: 2rem;
  color: rgba(250, 235, 209, 0.84);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.85rem 1.15rem;
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 0 34px rgba(37, 125, 167, 0.35);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--cream);
  background: var(--blue);
  box-shadow: 0 0 32px rgba(37, 125, 167, 0.58);
}

.button-secondary {
  border-color: rgba(250, 235, 209, 0.28);
  color: var(--cream);
  background: rgba(250, 235, 209, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(37, 125, 167, 0.64);
  background: rgba(37, 125, 167, 0.18);
}

.maintenance-page {
  min-height: 100svh;
  color: var(--cream);
  background: #080706;
}

.maintenance-page .site-header {
  border-color: rgba(250, 235, 209, 0.12);
  background: rgba(16, 13, 11, 0.88);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.maintenance-page .nav-shell {
  justify-content: space-between;
}

.maintenance-header-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  border: 1px solid rgba(37, 125, 167, 0.42);
  border-radius: 8px;
  padding: 0.48rem 0.72rem;
  color: var(--cream);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(37, 125, 167, 0.12);
  box-shadow: inset 0 0 18px rgba(37, 125, 167, 0.08), 0 0 16px rgba(37, 125, 167, 0.12);
}

.maintenance-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: 7.5rem 0 4rem;
  background:
    linear-gradient(90deg, rgba(16, 13, 11, 0.98), rgba(16, 13, 11, 0.78) 52%, rgba(16, 13, 11, 0.42)),
    var(--ink);
}

.maintenance-content {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1180px, calc(100% - 2rem));
  max-width: 48rem;
  margin: 0 auto;
}

.maintenance-title {
  max-width: 15ch;
  margin-bottom: 1.45rem;
  font-size: 4.85rem;
  text-transform: none;
}

.maintenance-title span {
  display: block;
}

.maintenance-title span + span {
  max-width: 18ch;
  margin-top: 0.65rem;
  color: var(--bronze);
  font-family: var(--font-primary);
  font-size: 0.42em;
  line-height: 1.18;
  text-shadow: 0 0 18px rgba(194, 159, 115, 0.24);
}

.maintenance-signal {
  width: min(100%, 22rem);
  height: 0.3rem;
  overflow: hidden;
  border: 1px solid rgba(250, 235, 209, 0.14);
  border-radius: 999px;
  background: rgba(250, 235, 209, 0.08);
  box-shadow: 0 0 24px rgba(37, 125, 167, 0.2);
}

.maintenance-signal span {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cream), transparent);
  animation: maintenanceSignal 2.6s ease-in-out infinite;
}

.maintenance-media {
  right: max(1rem, calc((100% - 1180px) / 2));
  width: 30rem;
}

.maintenance-footer {
  margin-top: 0;
}

.mission-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(250, 235, 209, 0.14);
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
}

.mission-strip span {
  min-width: 0;
  padding: 1rem;
  color: rgba(250, 235, 209, 0.78);
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.mission-strip span + span {
  border-left: 1px solid rgba(250, 235, 209, 0.14);
}

.intro-band {
  color: var(--ink);
  background: var(--cream);
}

.intro-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(37, 125, 167, 0.12), transparent 38%),
    repeating-linear-gradient(90deg, rgba(61, 45, 36, 0.08) 0 1px, transparent 1px 5.5rem);
  pointer-events: none;
}

.intro-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: end;
}

.intro-layout p:last-child {
  margin-bottom: 0;
  color: rgba(16, 13, 11, 0.76);
  font-size: 1.08rem;
}

.editorial-section {
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, #050606 0%, #100d0b 52%, #1a1410 100%);
}

.editorial-section::before,
.products-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(37, 125, 167, 0.16), transparent 1px),
    linear-gradient(rgba(250, 235, 209, 0.06), transparent 1px);
  background-size: 5.5rem 5.5rem;
  opacity: 0.48;
  pointer-events: none;
}

.editorial-section::before {
  z-index: 2;
  opacity: 0.34;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.16), #000 42%, rgba(0, 0, 0, 0.72));
}

.editorial-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background-image:
    radial-gradient(circle at 78% 42%, rgba(37, 125, 167, 0.24), transparent 29rem),
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(8, 7, 6, 0.86) 32%, rgba(8, 7, 6, 0.28) 62%, rgba(8, 7, 6, 0.66) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.14), rgba(26, 20, 16, 0.62));
  pointer-events: none;
}

.editorial-section .section-inner {
  position: relative;
  z-index: 3;
}

.editorial-section .section-heading {
  max-width: 36rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.section-heading {
  position: relative;
  max-width: 50rem;
  margin-bottom: 2.4rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.editorial-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.editorial-section .editorial-grid {
  grid-template-columns: 1fr;
  max-width: 28rem;
}

.topic-card,
.product-card,
.affiliate-note {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(250, 235, 209, 0.18);
  border-radius: 8px;
  background: rgba(250, 235, 209, 0.055);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.topic-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  min-height: 18rem;
  padding: 1.4rem;
}

.editorial-section .topic-card {
  border-color: rgba(250, 235, 209, 0.2);
  background:
    linear-gradient(180deg, rgba(10, 14, 16, 0.82), rgba(12, 9, 7, 0.72)),
    rgba(0, 0, 0, 0.4);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(37, 125, 167, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.topic-card::before,
.product-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(37, 125, 167, 0.18), transparent 45%, rgba(194, 159, 115, 0.08));
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.topic-card:hover,
.topic-card:focus-within,
.product-card:hover,
.product-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(37, 125, 167, 0.72);
  background: rgba(250, 235, 209, 0.08);
  box-shadow: 0 24px 70px rgba(37, 125, 167, 0.18), 0 20px 55px rgba(0, 0, 0, 0.28);
}

.editorial-section .topic-card:hover,
.editorial-section .topic-card:focus-within {
  background:
    linear-gradient(180deg, rgba(13, 19, 22, 0.9), rgba(15, 11, 8, 0.76)),
    rgba(0, 0, 0, 0.5);
}

.topic-card:hover::before,
.topic-card:focus-within::before,
.product-card:hover::before,
.product-card:focus-within::before {
  opacity: 1;
}

.topic-large {
  grid-column: span 2;
  min-height: 22rem;
  background:
    linear-gradient(135deg, rgba(37, 125, 167, 0.28), rgba(250, 235, 209, 0.08)),
    rgba(250, 235, 209, 0.055);
}

.editorial-section .topic-large {
  grid-column: 1;
  min-height: auto;
  background:
    linear-gradient(135deg, rgba(37, 125, 167, 0.36), rgba(250, 235, 209, 0.08) 46%, rgba(0, 0, 0, 0.54)),
    rgba(0, 0, 0, 0.42);
}

.editorial-section .topic-card[data-editorial-feature="noticias"] {
  gap: 0.58rem;
  padding: 0.85rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(37, 125, 167, 0.08);
}

.editorial-section .topic-card[data-editorial-feature="noticias"] .topic-kicker {
  width: 1.85rem;
  height: 1.85rem;
  margin-bottom: 0.18rem;
  border-radius: 6px;
  font-size: 0.66rem;
}

.editorial-section .topic-card[data-editorial-feature="noticias"] h3 {
  margin-bottom: 0.12rem;
  font-size: 1.04rem;
}

.editorial-section .topic-card[data-editorial-feature="noticias"] .topic-card-preview {
  margin: 0;
  border-radius: 6px;
}

.editorial-section .topic-card[data-editorial-feature="noticias"] .topic-card-preview img {
  height: 8.8rem;
  aspect-ratio: auto;
}

.editorial-section .topic-card[data-editorial-feature="noticias"] .topic-card-preview-copy {
  gap: 0.24rem;
  padding: 0.58rem 0.65rem 0.62rem;
}

.editorial-section .topic-card[data-editorial-feature="noticias"] .topic-card-preview-copy span {
  font-size: 0.54rem;
}

.editorial-section .topic-card[data-editorial-feature="noticias"] .topic-card-preview-copy strong {
  font-size: 0.78rem;
  line-height: 1.28;
}

.editorial-section .topic-card[data-editorial-feature="noticias"] p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.42;
}

.editorial-section .topic-card[data-editorial-feature="noticias"] a {
  min-height: 2.18rem;
  margin-top: 0.06rem;
  padding: 0.48rem 0.66rem;
  border-radius: 6px;
  font-size: 0.66rem;
}

.topic-alert {
  border-color: rgba(194, 159, 115, 0.42);
}

.topic-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(250, 235, 209, 0.28);
  border-radius: 8px;
  color: var(--cream);
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.22);
}

.topic-card h3,
.product-card h4 {
  position: relative;
  color: var(--cream);
}

.topic-card p,
.product-card p {
  position: relative;
  color: rgba(250, 235, 209, 0.76);
}

.topic-card-preview {
  position: relative;
  display: grid;
  width: 100%;
  overflow: hidden;
  margin: 0.15rem 0 1rem;
  border: 1px solid rgba(37, 125, 167, 0.34);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 0 24px rgba(37, 125, 167, 0.08);
}

.editorial-section .topic-card-preview {
  border-color: rgba(37, 125, 167, 0.42);
  background: rgba(0, 0, 0, 0.44);
  box-shadow: inset 0 0 28px rgba(37, 125, 167, 0.12), 0 16px 32px rgba(0, 0, 0, 0.24);
}

.topic-card-preview img {
  width: 100%;
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

.topic-card-preview-copy {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem;
}

.topic-card-preview-copy span {
  color: var(--bronze);
  font-family: var(--font-primary);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.topic-card-preview-copy strong {
  color: var(--cream);
  font-family: var(--font-primary);
  font-size: 0.98rem;
  line-height: 1.35;
}

.topic-feature {
  position: relative;
  width: 100%;
  min-height: 6.4rem;
  margin: auto 0 1rem;
  border: 1px solid rgba(37, 125, 167, 0.28);
  border-radius: 8px;
  padding: 0.78rem;
  background: rgba(0, 0, 0, 0.24);
  box-shadow: inset 0 0 20px rgba(37, 125, 167, 0.08);
}

.topic-feature-label,
.content-tag,
.content-meta {
  display: inline-flex;
  color: var(--bronze);
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.topic-feature-title {
  display: block;
  margin: 0.35rem 0;
  color: var(--cream);
  font-family: var(--font-primary);
  font-size: 0.86rem;
  line-height: 1.35;
}

.topic-feature-meta {
  display: block;
  color: rgba(250, 235, 209, 0.58);
  font-size: 0.76rem;
}

.topic-card a,
.product-card a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  margin-top: 0.5rem;
  border: 1px solid rgba(37, 125, 167, 0.46);
  border-radius: 8px;
  padding: 0.65rem 0.8rem;
  color: var(--cream);
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(37, 125, 167, 0.12);
}

.topic-card a {
  margin-top: auto;
}

.topic-card a:hover,
.topic-card a:focus-visible,
.product-card a:hover,
.product-card a:focus-visible {
  color: var(--ink);
  background: var(--cream);
  outline: none;
}

.world-cup-section {
  scroll-margin-top: 5rem;
  overflow: hidden;
  isolation: isolate;
  color: #050505;
  background:
    linear-gradient(180deg, #ffffff 0%, #fffdf8 52%, #fff8ec 100%);
}

.world-cup-section::before,
.world-cup-section::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.world-cup-section::before {
  background:
    repeating-linear-gradient(90deg, rgba(0, 94, 184, 0.12) 0 0.24rem, transparent 0.24rem 4.2rem),
    repeating-linear-gradient(0deg, rgba(240, 83, 95, 0.11) 0 0.24rem, transparent 0.24rem 4.2rem),
    linear-gradient(135deg, rgba(255, 221, 0, 0.38), transparent 30%, rgba(0, 171, 102, 0.16) 66%, transparent);
  opacity: 0.74;
}

.world-cup-section::after {
  bottom: auto;
  height: 0.58rem;
  background: linear-gradient(90deg, #e30613, #ffdd00 18%, #009a44 36%, #005baa 54%, #7b2cbf 72%, #f37021 88%, #e30613);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.world-cup-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: center;
}

.world-cup-copy {
  display: grid;
  align-content: center;
}

.world-cup-copy .eyebrow {
  color: #005baa;
}

.world-cup-copy h2 {
  scroll-margin-top: 6rem;
  max-width: 12ch;
  color: #050505;
  font-family: var(--font-tech);
  text-transform: uppercase;
  text-shadow: 0 4px 0 rgba(255, 221, 0, 0.42);
}

.world-cup-copy p:not(.eyebrow) {
  max-width: 36rem;
  color: rgba(5, 5, 5, 0.76);
  font-size: 1.05rem;
}

.world-cup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  align-items: center;
  margin-top: 0.75rem;
}

.world-cup-button {
  border-color: #e30613;
  color: #050505;
  text-transform: uppercase;
  background: #ffdd00;
  box-shadow: 0 14px 28px rgba(227, 6, 19, 0.18), inset 0 -0.18rem 0 rgba(5, 5, 5, 0.18);
}

.world-cup-button:hover,
.world-cup-button:focus-visible {
  color: #ffffff;
  background: #005baa;
  box-shadow: 0 16px 34px rgba(0, 91, 170, 0.28), inset 0 -0.18rem 0 rgba(5, 5, 5, 0.18);
}

.world-cup-actions span {
  max-width: 20rem;
  color: rgba(5, 5, 5, 0.66);
  font-size: 0.84rem;
  line-height: 1.45;
}

.world-cup-media {
  position: relative;
  min-width: 0;
  min-height: 13.6rem;
  aspect-ratio: 1920 / 500;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.18);
}

.world-cup-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  border: 0.55rem solid rgba(255, 255, 255, 0.84);
  pointer-events: none;
}

.world-cup-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-band {
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--cream), #fff8ec);
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.feature-copy p:not(.eyebrow) {
  max-width: 42rem;
  color: rgba(16, 13, 11, 0.72);
}

.tech-picks-panel {
  position: relative;
  isolation: isolate;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(14rem, 1.08fr) repeat(2, minmax(0, 0.74fr));
  grid-template-rows: repeat(2, minmax(10.4rem, 1fr));
  gap: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(37, 125, 167, 0.38);
  border-radius: 8px;
  padding: 0.9rem;
  background:
    linear-gradient(90deg, rgba(37, 125, 167, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(37, 125, 167, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #050708 0%, #101820 46%, #070707 100%);
  background-size: 3.2rem 3.2rem, 3.2rem 3.2rem, auto;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(37, 125, 167, 0.22),
    inset 0 0 42px rgba(37, 125, 167, 0.12);
}

.tech-picks-panel::before,
.tech-picks-panel::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.tech-picks-panel::before {
  border: 1px solid rgba(0, 240, 255, 0.22);
  box-shadow: inset 0 0 34px rgba(0, 240, 255, 0.14);
  animation: techPanelLed 4.8s ease-in-out infinite;
}

.tech-picks-panel::after {
  background: linear-gradient(110deg, transparent 0 42%, rgba(0, 240, 255, 0.12) 48%, transparent 56% 100%);
  transform: translateX(-120%);
  animation: techPanelSweep 7s ease-in-out infinite;
}

.tech-pick-card {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  min-height: 10.4rem;
  overflow: hidden;
  border: 1px solid rgba(250, 235, 209, 0.13);
  border-radius: 8px;
  padding: 0.72rem;
  color: var(--cream);
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(250, 235, 209, 0.075), rgba(37, 125, 167, 0.055)),
    rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 24px rgba(37, 125, 167, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.tech-pick-card::before {
  position: absolute;
  top: 0.72rem;
  right: 0.72rem;
  left: 0.72rem;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.72), transparent);
  opacity: 0.66;
}

.tech-pick-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 0.2rem;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.72), transparent);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.32);
  opacity: 0.72;
}

.tech-pick-card:hover,
.tech-pick-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(0, 240, 255, 0.62);
  background:
    linear-gradient(180deg, rgba(0, 240, 255, 0.12), rgba(250, 235, 209, 0.06)),
    rgba(0, 0, 0, 0.38);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28), 0 0 28px rgba(0, 240, 255, 0.2), inset 0 0 28px rgba(0, 240, 255, 0.12);
  outline: none;
}

.tech-pick-featured {
  grid-row: span 2;
  align-content: end;
  min-height: 21.55rem;
}

.tech-pick-category {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin-bottom: 0.35rem;
  border: 1px solid rgba(0, 240, 255, 0.26);
  border-radius: 8px;
  padding: 0.28rem 0.45rem;
  color: #8ff8ff;
  font-family: var(--font-primary);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  background: rgba(0, 240, 255, 0.07);
}

.tech-pick-card img {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(100%, 8.2rem);
  height: 5.25rem;
  margin: 0.25rem 0 0.45rem;
  object-fit: contain;
  filter: saturate(1.05) contrast(1.08) drop-shadow(0 16px 22px rgba(0, 0, 0, 0.4));
}

.tech-pick-featured img {
  width: min(100%, 15.5rem);
  height: 12.6rem;
  margin: auto 0 0.75rem;
}

.tech-pick-card strong {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  overflow: hidden;
  min-height: 2.35rem;
  margin-bottom: 0.48rem;
  color: var(--cream);
  font-family: var(--font-primary);
  font-size: 0.84rem;
  line-height: 1.3;
  text-transform: uppercase;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tech-pick-featured strong {
  font-size: 1.05rem;
}

.tech-pick-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.18rem;
  border: 1px solid rgba(0, 240, 255, 0.32);
  border-radius: 8px;
  color: #07100f;
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(180deg, #bffbff, #5af0ff);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.2);
}

.community-section {
  overflow: hidden;
  padding: 3.35rem 0;
  background:
    linear-gradient(90deg, rgba(37, 125, 167, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(37, 125, 167, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, #100d0b 0%, #070605 100%);
  background-size: 3.7rem 3.7rem, 3.7rem 3.7rem, auto;
}

.community-section .section-heading {
  max-width: 38rem;
  margin-bottom: 0.85rem;
}

.community-section .section-heading .eyebrow {
  margin-bottom: 0.48rem;
}

.community-section .section-heading h2 {
  font-size: 2.45rem;
  letter-spacing: 0;
}

.community-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(37, 125, 167, 0.12), transparent 1px),
    linear-gradient(rgba(250, 235, 209, 0.05), transparent 1px);
  background-size: 5rem 5rem;
  opacity: 0.35;
  pointer-events: none;
}

.community-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.72fr);
  gap: 0.75rem;
  align-items: start;
}

.feedback-form,
.comment-stream {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(250, 235, 209, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(37, 125, 167, 0.08), rgba(250, 235, 209, 0.025)),
    rgba(0, 0, 0, 0.24);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(37, 125, 167, 0.18);
}

.feedback-form::before,
.comment-stream::before {
  position: absolute;
  top: 0;
  right: 0.75rem;
  left: 0.75rem;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(37, 125, 167, 0.86), transparent);
  opacity: 0.78;
  pointer-events: none;
}

.feedback-form {
  display: grid;
  gap: 0.5rem;
  padding: 0.74rem;
}

.feedback-compact-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
  align-items: end;
}

.feedback-form label,
.rating-field {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
}

.feedback-form span,
.rating-field legend {
  color: var(--bronze);
  font-family: var(--font-primary);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.rating-field {
  margin: 0;
  border: 0;
  padding: 0;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  border: 1px solid rgba(250, 235, 209, 0.18);
  border-radius: 8px;
  padding: 0.58rem 0.68rem;
  color: var(--cream);
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.28);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.feedback-form textarea {
  resize: vertical;
  min-height: 4.8rem;
}

.feedback-form input::placeholder,
.feedback-form textarea::placeholder {
  color: rgba(250, 235, 209, 0.44);
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  border-color: rgba(37, 125, 167, 0.72);
  background: rgba(0, 0, 0, 0.38);
  box-shadow: 0 0 0 3px rgba(37, 125, 167, 0.18), 0 0 24px rgba(37, 125, 167, 0.16);
}

.star-picker {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.2rem;
}

.star-picker input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.star-picker label {
  display: inline-flex;
  width: 1.78rem;
  height: 1.78rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(250, 235, 209, 0.16);
  border-radius: 8px;
  color: rgba(250, 235, 209, 0.34);
  font-size: 1.02rem;
  line-height: 1;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.22);
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.star-picker label:hover,
.star-picker label:hover ~ label,
.star-picker input:checked ~ label {
  border-color: rgba(194, 159, 115, 0.62);
  color: var(--bronze);
  background: rgba(194, 159, 115, 0.12);
  box-shadow: 0 0 18px rgba(194, 159, 115, 0.2);
}

.star-picker input:focus-visible + label {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.star-picker label:hover {
  transform: translateY(-2px);
}

.form-note {
  margin: -0.2rem 0 0;
  color: rgba(250, 235, 209, 0.62);
  font-size: 0.78rem;
}

.form-note:empty {
  display: none;
}

.character-count {
  margin: 0;
  color: rgba(250, 235, 209, 0.58);
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 800;
}

.character-count.is-near-limit {
  color: var(--bronze);
}

.feedback-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.feedback-actions-row .button {
  min-height: 2.38rem;
  padding: 0.58rem 0.92rem;
  font-size: 0.78rem;
}

.feedback-actions-row .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.comment-stream {
  padding: 0.74rem;
}

.comment-stream-heading {
  margin-bottom: 0.5rem;
}

.comment-stream-heading h3 {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.comment-list {
  position: relative;
  display: grid;
  gap: 0.45rem;
  min-height: 2.65rem;
  max-height: 12rem;
  overflow: auto;
}

.comment-list.is-empty {
  border: 1px dashed rgba(37, 125, 167, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent, rgba(37, 125, 167, 0.13), transparent),
    rgba(0, 0, 0, 0.16);
}

.comment-list.is-empty::before {
  position: absolute;
  top: 50%;
  left: 0.85rem;
  width: min(8rem, calc(100% - 1.7rem));
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(37, 125, 167, 0.86), rgba(194, 159, 115, 0.72), transparent);
  transform: translateY(-50%);
  pointer-events: none;
}

.comment-card {
  border: 1px solid rgba(250, 235, 209, 0.12);
  border-radius: 8px;
  padding: 0.58rem;
  background: rgba(0, 0, 0, 0.18);
}

.comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.comment-meta strong {
  color: var(--cream);
  font-family: var(--font-primary);
  font-size: 0.9rem;
}

.comment-stars {
  color: var(--bronze);
  font-size: 0.92rem;
  line-height: 1;
  text-shadow: 0 0 12px rgba(194, 159, 115, 0.28);
}

.comment-card p {
  margin-bottom: 0;
  color: rgba(250, 235, 209, 0.76);
  font-size: 0.86rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.about-section {
  padding: 4rem 0;
  background: var(--black);
}

.about-section .section-inner {
  width: min(1040px, calc(100% - 2rem));
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(10rem, 12.25rem) minmax(0, 1fr);
  gap: 1.2rem 1.45rem;
  align-items: start;
}

.portrait-wrap {
  position: relative;
  width: min(100%, 13rem);
  aspect-ratio: 1 / 1;
  margin: 0;
  justify-self: start;
  border: 1px solid rgba(250, 235, 209, 0.18);
  border-radius: 14px;
  padding: 0.42rem;
  background:
    linear-gradient(145deg, rgba(37, 125, 167, 0.18), rgba(8, 7, 6, 0) 52%, rgba(194, 159, 115, 0.1)),
    rgba(250, 235, 209, 0.05);
  box-shadow:
    inset 0 0 0 1px rgba(250, 235, 209, 0.04),
    0 20px 42px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(37, 125, 167, 0.12);
  isolation: isolate;
}

.portrait-wrap::before {
  position: absolute;
  inset: 0.4rem;
  z-index: 2;
  content: "";
  border: 1px solid rgba(250, 235, 209, 0.09);
  border-radius: 11px;
  pointer-events: none;
}

.portrait-wrap::after {
  position: absolute;
  right: -0.55rem;
  bottom: -0.55rem;
  width: 42%;
  height: 34%;
  z-index: 1;
  content: "";
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  border-radius: 0 0 10px 0;
  box-shadow: 10px 10px 24px rgba(37, 125, 167, 0.14);
}

.portrait-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 11px;
  object-fit: cover;
  object-position: 50% 16%;
}

.about-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.25rem 0.95rem;
  align-content: start;
  align-items: end;
  padding-top: 0.1rem;
}

.about-copy .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0.05rem;
}

.about-copy h2 {
  grid-column: 1;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 0.94;
}

.about-story-card {
  overflow: visible;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  justify-self: start;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.about-story-card[open] {
  overflow: hidden;
  grid-column: 1 / -1;
  grid-row: 3;
  width: 100%;
  margin-top: 0.35rem;
  border-color: rgba(37, 125, 167, 0.34);
  border: 1px solid rgba(250, 235, 209, 0.13);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(37, 125, 167, 0.16), transparent 52%, rgba(194, 159, 115, 0.08)),
    rgba(250, 235, 209, 0.045);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.about-story-summary {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  cursor: pointer;
  list-style: none;
}

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

.about-story-summary::marker {
  content: "";
}

.about-story-summary::-moz-list-bullet {
  font-size: 0;
}

.about-story-summary:focus-visible {
  outline: none;
}

.about-story-action {
  display: flex;
  align-self: flex-start;
  justify-self: start;
  padding-top: 0;
}

.about-story-card[open] .about-story-summary {
  display: none;
}

.about-story-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 10.4rem;
  min-height: 2.45rem;
  align-self: start;
  border: 1px solid rgba(37, 125, 167, 0.52);
  border-radius: 10px;
  padding: 0.62rem 0.88rem;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(17, 21, 25, 0.96), rgba(10, 10, 10, 0.98)),
    rgba(8, 7, 6, 0.98);
  box-shadow:
    inset 0 0 0 1px rgba(250, 235, 209, 0.02),
    0 12px 24px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(37, 125, 167, 0.06);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  white-space: nowrap;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.about-story-summary:hover .about-story-toggle,
.about-story-summary:focus-visible .about-story-toggle {
  border-color: rgba(37, 125, 167, 0.78);
  background:
    linear-gradient(180deg, rgba(20, 28, 34, 0.98), rgba(10, 10, 10, 0.99)),
    rgba(8, 7, 6, 0.99);
  box-shadow:
    inset 0 0 0 1px rgba(250, 235, 209, 0.03),
    0 0 0 1px rgba(37, 125, 167, 0.14),
    0 0 22px rgba(37, 125, 167, 0.14),
    0 16px 32px rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
}

.about-story-toggle-label {
  display: inline-flex;
  align-items: center;
}

.about-story-body {
  display: grid;
  gap: 0.82rem;
  padding: 0.95rem 1rem 1rem;
}

.about-story-body p {
  max-width: 68ch;
  margin: 0;
  color: rgba(250, 235, 209, 0.76);
  font-size: 0.92rem;
  line-height: 1.58;
}

.about-story-signature {
  align-self: start;
  color: var(--cream);
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.about-story-close-row {
  display: flex;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  padding-top: 0.05rem;
}

.about-story-toggle-collapse {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}

.about-story-toggle-collapse:hover,
.about-story-toggle-collapse:focus-visible {
  border-color: rgba(37, 125, 167, 0.78);
  background:
    linear-gradient(180deg, rgba(20, 28, 34, 0.98), rgba(10, 10, 10, 0.99)),
    rgba(8, 7, 6, 0.99);
  box-shadow:
    inset 0 0 0 1px rgba(250, 235, 209, 0.03),
    0 0 0 1px rgba(37, 125, 167, 0.14),
    0 0 22px rgba(37, 125, 167, 0.14),
    0 16px 32px rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
  outline: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.9rem;
  border: 1px solid rgba(250, 235, 209, 0.18);
  border-radius: 8px;
  padding: 0.65rem 0.9rem 0.65rem 0.68rem;
  color: var(--cream);
  font-family: var(--font-primary);
  font-size: 0.84rem;
  font-weight: 800;
  background: rgba(250, 235, 209, 0.06);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(37, 125, 167, 0.72);
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 0 24px rgba(37, 125, 167, 0.26);
  outline: none;
}

.social-icon {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 1.95rem;
  height: 1.95rem;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.telegram-icon,
.instagram-icon,
.youtube-icon {
  animation: telegramFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(37, 125, 167, 0.55));
}

.telegram-icon circle {
  fill: #257da7;
}

.telegram-icon path,
.instagram-icon .instagram-backdrop,
.instagram-icon .instagram-camera,
.instagram-icon .instagram-lens,
.instagram-icon .instagram-flash,
.youtube-icon .youtube-frame,
.youtube-icon .youtube-play {
  transform-origin: 50% 50%;
  animation: telegramPlane 3s ease-in-out infinite;
}

.telegram-icon path {
  fill: var(--cream);
}

.instagram-icon .instagram-backdrop {
  stroke: none;
}

.instagram-icon .instagram-camera,
.instagram-icon .instagram-lens {
  fill: none;
  stroke: #ffffff;
  stroke-width: 3;
}

.instagram-icon .instagram-flash {
  fill: #ffffff;
  stroke: none;
}

.youtube-icon .youtube-frame {
  fill: #ff0000;
}

.youtube-icon .youtube-play {
  fill: #ffffff;
}

.social-link:hover .telegram-icon,
.social-link:focus-visible .telegram-icon,
.social-link:hover .instagram-icon,
.social-link:focus-visible .instagram-icon,
.social-link:hover .youtube-icon,
.social-link:focus-visible .youtube-icon,
.nav-social:hover .telegram-icon,
.nav-social:focus-visible .telegram-icon,
.nav-social:hover .instagram-icon,
.nav-social:focus-visible .instagram-icon,
.nav-social:hover .youtube-icon,
.nav-social:focus-visible .youtube-icon {
  filter: drop-shadow(0 0 16px rgba(37, 125, 167, 0.82));
}

.auth-modal-shell[hidden],
.auth-form[hidden],
.auth-connected[hidden],
.auth-access[hidden],
.auth-recovery-card[hidden] {
  display: none;
}

.auth-modal-shell {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.auth-dialog {
  position: relative;
  width: min(100%, 27.5rem);
  max-height: min(92svh, 43rem);
  overflow: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(37, 125, 167, 0.82);
  border-radius: 8px;
  padding: 1rem;
  color: var(--cream);
  background:
    linear-gradient(145deg, rgba(37, 125, 167, 0.2), transparent 38%, rgba(194, 159, 115, 0.07)),
    linear-gradient(180deg, rgba(250, 235, 209, 0.045), transparent),
    rgba(8, 7, 6, 0.98);
  box-shadow:
    0 0 0 1px rgba(99, 208, 255, 0.16),
    0 0 34px rgba(37, 125, 167, 0.58),
    0 24px 80px rgba(0, 0, 0, 0.54);
  animation: authPanelIn 180ms ease-out;
  scrollbar-width: thin;
}

.auth-dialog::before {
  position: absolute;
  top: 0;
  right: 1rem;
  left: 1rem;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(99, 208, 255, 0.95), transparent);
  pointer-events: none;
}

.auth-dialog.has-legal-panel {
  overflow: hidden;
}

.auth-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  border: 1px solid rgba(250, 235, 209, 0.16);
  border-radius: 8px;
  padding: 0.38rem 0.54rem;
  color: rgba(250, 235, 209, 0.74);
  font-family: var(--font-primary);
  font-size: 0.62rem;
  font-weight: 800;
  cursor: pointer;
  background: rgba(250, 235, 209, 0.055);
}

.auth-close:hover,
.auth-close:focus-visible {
  border-color: rgba(37, 125, 167, 0.72);
  color: var(--cream);
  outline: none;
}

.auth-dialog-heading {
  padding-right: 4rem;
}

.auth-kicker {
  margin: 0 0 0.36rem;
  color: var(--bronze);
  font-family: var(--font-primary);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.auth-dialog h2 {
  margin-bottom: 0.42rem;
  font-size: 1.24rem;
}

.auth-dialog-heading p:not(.auth-kicker),
.auth-connected p,
.auth-password-hint,
.auth-switch,
.auth-reset-intro p,
.auth-recovery-card p {
  color: rgba(250, 235, 209, 0.68);
  font-size: 0.8rem;
  line-height: 1.45;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  margin: 0.9rem 0 0.7rem;
  padding: 0.3rem;
  border: 1px solid rgba(250, 235, 209, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
}

.auth-tab {
  min-height: 2.32rem;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(250, 235, 209, 0.72);
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 800;
  cursor: pointer;
  background: transparent;
}

.auth-tab.is-active {
  border-color: rgba(37, 125, 167, 0.74);
  color: var(--cream);
  background: rgba(37, 125, 167, 0.18);
  box-shadow: 0 0 22px rgba(37, 125, 167, 0.24);
}

.auth-form {
  display: grid;
  gap: 0.58rem;
}

.auth-form label {
  display: grid;
  gap: 0.22rem;
}

.auth-form label > span,
.auth-check span {
  color: var(--bronze);
  font-family: var(--font-primary);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.auth-form input {
  width: 100%;
  border: 1px solid rgba(250, 235, 209, 0.18);
  border-radius: 8px;
  min-height: 2.62rem;
  padding: 0.58rem 0.68rem;
  color: var(--cream);
  font-size: 0.86rem;
  background: rgba(0, 0, 0, 0.3);
  outline: none;
}

.auth-form input:focus {
  border-color: rgba(37, 125, 167, 0.76);
  box-shadow: 0 0 0 3px rgba(37, 125, 167, 0.18), 0 0 20px rgba(37, 125, 167, 0.16);
}

.auth-password-field {
  position: relative;
  display: grid;
}

.auth-password-field input {
  padding-right: 5.2rem;
}

.auth-password-toggle {
  position: absolute;
  top: 50%;
  right: 0.38rem;
  min-height: 1.9rem;
  transform: translateY(-50%);
  border: 1px solid rgba(37, 125, 167, 0.42);
  border-radius: 8px;
  padding: 0.34rem 0.52rem;
  color: rgba(250, 235, 209, 0.8);
  font-family: var(--font-primary);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  background: rgba(37, 125, 167, 0.12);
}

.auth-password-toggle:hover,
.auth-password-toggle:focus-visible {
  border-color: rgba(37, 125, 167, 0.82);
  color: var(--cream);
  background: rgba(37, 125, 167, 0.2);
  box-shadow: 0 0 14px rgba(37, 125, 167, 0.2);
  outline: none;
}

.auth-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.48rem;
  align-items: start;
  margin-top: 0.1rem;
}

.auth-check input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.16rem;
  accent-color: var(--blue);
}

.auth-check span {
  color: rgba(250, 235, 209, 0.72);
  line-height: 1.45;
  text-transform: none;
}

.auth-check a,
.auth-inline-legal {
  border: 0;
  padding: 0;
  color: var(--cream);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  background: transparent;
  text-decoration: underline;
  text-decoration-color: rgba(37, 125, 167, 0.72);
  text-underline-offset: 0.18rem;
}

.auth-check a:hover,
.auth-check a:focus-visible,
.auth-inline-legal:hover,
.auth-inline-legal:focus-visible {
  color: #63d0ff;
  outline: none;
}

.auth-field-error {
  min-height: 0.7rem;
  color: #ffb4a8;
  font-size: 0.68rem;
}

.auth-form-row {
  display: flex;
  justify-content: flex-end;
  margin-top: -0.14rem;
}

.auth-link-button,
.auth-recovery-card button {
  border: 0;
  padding: 0;
  color: #63d0ff;
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  background: transparent;
}

.auth-link-button:hover,
.auth-link-button:focus-visible,
.auth-recovery-card button:hover,
.auth-recovery-card button:focus-visible {
  color: var(--cream);
  outline: none;
  text-decoration: underline;
  text-decoration-color: rgba(37, 125, 167, 0.82);
  text-underline-offset: 0.2rem;
}

.auth-reset-intro,
.auth-recovery-card {
  border: 1px solid rgba(37, 125, 167, 0.34);
  border-radius: 8px;
  padding: 0.72rem;
  background: rgba(37, 125, 167, 0.08);
}

.auth-reset-intro strong,
.auth-recovery-card strong {
  color: var(--cream);
  font-family: var(--font-primary);
  font-size: 0.76rem;
}

.auth-reset-intro p,
.auth-recovery-card p {
  margin: 0.26rem 0 0;
}

.auth-recovery-card {
  display: grid;
  gap: 0.36rem;
  border-color: rgba(255, 180, 168, 0.24);
  background: rgba(255, 180, 168, 0.06);
}

.auth-password-hint,
.auth-switch {
  margin: -0.18rem 0 0;
}

.auth-switch button {
  border: 0;
  padding: 0;
  color: var(--cream);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  background: transparent;
}

.auth-status {
  min-height: 1.05rem;
  margin: 0.65rem 0 0;
  color: rgba(250, 235, 209, 0.72);
  font-size: 0.78rem;
}

.auth-status[data-status-type="success"] {
  color: #a8f0c6;
}

.auth-status[data-status-type="error"] {
  color: #ffb4a8;
}

.auth-status[data-status-type="loading"] {
  color: rgba(99, 208, 255, 0.92);
}

.auth-connected {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.85rem;
  border: 1px solid rgba(37, 125, 167, 0.32);
  border-radius: 8px;
  padding: 0.82rem;
  background: rgba(37, 125, 167, 0.08);
}

.auth-connected-badge {
  width: max-content;
  border: 1px solid rgba(37, 125, 167, 0.52);
  border-radius: 8px;
  padding: 0.28rem 0.44rem;
  color: var(--bronze);
  font-family: var(--font-primary);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.auth-connected strong {
  overflow-wrap: anywhere;
  color: var(--cream);
  font-family: var(--font-primary);
}

.auth-form .button:disabled,
.auth-connected .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.auth-submit,
.auth-connected .button {
  min-height: 2.65rem;
  padding: 0.68rem 0.85rem;
  font-size: 0.76rem;
}

.auth-legal-panel[hidden] {
  display: none;
}

.auth-legal-panel {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  padding: 0.72rem;
  background:
    linear-gradient(145deg, rgba(37, 125, 167, 0.16), transparent 42%, rgba(194, 159, 115, 0.08)),
    rgba(8, 7, 6, 0.96);
  backdrop-filter: blur(14px);
}

.auth-legal-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(37, 125, 167, 0.56);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(250, 235, 209, 0.055), transparent),
    rgba(0, 0, 0, 0.34);
  box-shadow: inset 0 0 26px rgba(37, 125, 167, 0.08), 0 18px 54px rgba(0, 0, 0, 0.34);
}

.auth-legal-toolbar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: start;
  border-bottom: 1px solid rgba(250, 235, 209, 0.11);
  padding: 0.78rem;
  background: rgba(0, 0, 0, 0.26);
}

.auth-legal-toolbar::before {
  position: absolute;
  top: 0;
  right: 0.75rem;
  left: 0.75rem;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(99, 208, 255, 0.82), transparent);
  pointer-events: none;
}

.auth-legal-toolbar span {
  color: var(--bronze);
  font-family: var(--font-primary);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.auth-legal-toolbar h3 {
  margin: 0.22rem 0 0.2rem;
  color: var(--cream);
  font-size: 1.08rem;
  line-height: 1.1;
}

.auth-legal-toolbar p {
  margin: 0;
  color: rgba(250, 235, 209, 0.58);
  font-family: var(--font-primary);
  font-size: 0.64rem;
  font-weight: 800;
}

.auth-legal-close {
  border: 1px solid rgba(250, 235, 209, 0.16);
  border-radius: 8px;
  padding: 0.42rem 0.58rem;
  color: rgba(250, 235, 209, 0.78);
  font-family: var(--font-primary);
  font-size: 0.62rem;
  font-weight: 800;
  cursor: pointer;
  background: rgba(250, 235, 209, 0.055);
}

.auth-legal-close:hover,
.auth-legal-close:focus-visible {
  border-color: rgba(37, 125, 167, 0.72);
  color: var(--cream);
  background: rgba(37, 125, 167, 0.16);
  outline: none;
}

.auth-legal-scroll {
  min-height: 0;
  overflow: auto;
  padding: 0.82rem;
  scrollbar-width: thin;
  outline: none;
}

.auth-legal-scroll section {
  border: 1px solid rgba(250, 235, 209, 0.09);
  border-radius: 8px;
  padding: 0.78rem;
  background: rgba(0, 0, 0, 0.18);
}

.auth-legal-scroll section + section {
  margin-top: 0.58rem;
}

.auth-legal-scroll h4 {
  margin: 0 0 0.42rem;
  color: var(--cream);
  font-size: 0.92rem;
  line-height: 1.25;
}

.auth-legal-scroll p,
.auth-legal-scroll li {
  color: rgba(250, 235, 209, 0.72);
  font-size: 0.8rem;
  line-height: 1.52;
}

.auth-legal-scroll p {
  margin: 0 0 0.52rem;
}

.auth-legal-scroll p:last-child,
.auth-legal-scroll ul:last-child {
  margin-bottom: 0;
}

.auth-legal-scroll ul {
  display: grid;
  gap: 0.36rem;
  margin: 0.2rem 0 0.52rem;
  padding-left: 1.05rem;
}

.reset-page {
  min-height: 100svh;
  background:
    linear-gradient(135deg, rgba(37, 125, 167, 0.12), transparent 34%, rgba(194, 159, 115, 0.08)),
    #100d0b;
}

.reset-page-main {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 2rem 1rem;
}

.reset-shell {
  width: min(100%, 32rem);
}

.reset-brand {
  width: max-content;
  margin: 0 0 1rem;
}

.reset-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(37, 125, 167, 0.82);
  border-radius: 8px;
  padding: 1.15rem;
  color: var(--cream);
  background:
    linear-gradient(145deg, rgba(37, 125, 167, 0.2), transparent 42%, rgba(194, 159, 115, 0.08)),
    linear-gradient(180deg, rgba(250, 235, 209, 0.045), transparent),
    rgba(8, 7, 6, 0.98);
  box-shadow:
    0 0 0 1px rgba(99, 208, 255, 0.16),
    0 0 34px rgba(37, 125, 167, 0.52),
    0 24px 80px rgba(0, 0, 0, 0.54);
}

.reset-card::before {
  position: absolute;
  top: 0;
  right: 1rem;
  left: 1rem;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(99, 208, 255, 0.95), transparent);
}

.reset-card h1 {
  margin: 0 0 0.42rem;
  font-size: 1.55rem;
  line-height: 1.18;
}

.reset-form {
  margin-top: 1rem;
}

.reset-feedback-panel[hidden] {
  display: none;
}

.reset-feedback-panel {
  margin-top: 1rem;
}

.reset-inline-link {
  display: inline-flex;
  width: max-content;
  margin-top: 0.72rem;
  border: 0;
  padding: 0;
  color: #63d0ff;
  font-family: var(--font-primary);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-color: rgba(37, 125, 167, 0.82);
  text-underline-offset: 0.2rem;
  cursor: pointer;
  background: transparent;
}

.reset-inline-link:hover,
.reset-inline-link:focus-visible {
  color: var(--cream);
  outline: none;
}

.legal-page {
  background: #070605;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 3.8rem;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(16, 13, 11, 0.98), rgba(16, 13, 11, 0.82), rgba(16, 13, 11, 0.56)),
    linear-gradient(rgba(37, 125, 167, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 235, 209, 0.07) 1px, transparent 1px),
    #070605;
  background-size: auto, 4rem 4rem, 4rem 4rem, auto;
}

.legal-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, rgba(37, 125, 167, 0.2), transparent 38%, rgba(194, 159, 115, 0.12));
  pointer-events: none;
}

.legal-hero .section-inner {
  position: relative;
  z-index: 1;
  max-width: 54rem;
}

.legal-hero h1 {
  max-width: 13ch;
  margin-bottom: 0.9rem;
  font-size: 4rem;
}

.legal-hero p:not(.eyebrow) {
  max-width: 46rem;
  margin-bottom: 0;
  color: rgba(250, 235, 209, 0.78);
  font-size: 1.06rem;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.legal-meta span {
  border: 1px solid rgba(37, 125, 167, 0.38);
  border-radius: 8px;
  padding: 0.4rem 0.55rem;
  color: var(--bronze);
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(37, 125, 167, 0.1);
}

.legal-section {
  background: var(--ink);
}

.legal-layout {
  display: grid;
  grid-template-columns: 17rem minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 6rem;
  border: 1px solid rgba(250, 235, 209, 0.14);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.24);
  box-shadow: inset 0 0 20px rgba(37, 125, 167, 0.08);
}

.legal-toc strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--bronze);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  border-top: 1px solid rgba(250, 235, 209, 0.08);
  padding: 0.52rem 0;
  color: rgba(250, 235, 209, 0.72);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 800;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: #63d0ff;
  outline: none;
}

.legal-document {
  display: grid;
  gap: 1rem;
}

.legal-block {
  border: 1px solid rgba(250, 235, 209, 0.14);
  border-radius: 8px;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(37, 125, 167, 0.08), rgba(250, 235, 209, 0.025)),
    rgba(0, 0, 0, 0.22);
}

.legal-block h2 {
  margin-bottom: 0.7rem;
  font-size: 1.55rem;
}

.legal-block p,
.legal-block li {
  color: rgba(250, 235, 209, 0.78);
}

.legal-block p:last-child,
.legal-block ul:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.legal-note {
  border-left: 3px solid var(--blue);
  padding: 0.85rem 1rem;
  color: rgba(250, 235, 209, 0.78);
  background: rgba(37, 125, 167, 0.12);
}

.legal-contact-link {
  color: var(--cream);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(37, 125, 167, 0.72);
  text-underline-offset: 0.18rem;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.site-footer {
  border-top: 1px solid rgba(250, 235, 209, 0.12);
  color: rgba(250, 235, 209, 0.78);
  background: #080706;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
}

.footer-layout p {
  margin: 0;
}

.footer-layout p:nth-child(2) {
  justify-self: center;
  text-align: center;
}

.footer-layout p:first-child {
  color: var(--cream);
  font-family: var(--font-primary);
  font-weight: 800;
}

.topic-page {
  background: #070605;
}

.topic-hero {
  position: relative;
  display: grid;
  min-height: 72svh;
  align-items: center;
  overflow: hidden;
  padding: 7.5rem 0 4.5rem;
  background:
    linear-gradient(90deg, rgba(16, 13, 11, 0.98), rgba(16, 13, 11, 0.8) 50%, rgba(16, 13, 11, 0.42)),
    linear-gradient(rgba(37, 125, 167, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 235, 209, 0.07) 1px, transparent 1px),
    #070605;
  background-size: auto, 4rem 4rem, 4rem 4rem, auto;
}

.topic-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, rgba(37, 125, 167, 0.2), transparent 36%, rgba(194, 159, 115, 0.12));
  opacity: 0.72;
  pointer-events: none;
}

.topic-hero-alert::before {
  background: linear-gradient(120deg, rgba(194, 159, 115, 0.2), transparent 38%, rgba(37, 125, 167, 0.16));
}

.topic-hero-layout {
  position: relative;
  z-index: 2;
  max-width: 54rem;
}

.topic-hero h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: 4.4rem;
}

.topic-hero p:not(.eyebrow) {
  max-width: 44rem;
  margin-bottom: 0;
  color: rgba(250, 235, 209, 0.82);
  font-size: 1.1rem;
}

.topic-hero-media {
  position: absolute;
  right: clamp(1rem, 6vw, 6rem);
  bottom: -4rem;
  z-index: 1;
  width: min(30rem, 42vw);
  opacity: 0.46;
  filter: drop-shadow(0 0 42px rgba(37, 125, 167, 0.28));
}

.topic-hero-media img {
  width: 100%;
  max-height: 31rem;
  object-fit: contain;
}

.back-link {
  display: inline-flex;
  min-height: 2.45rem;
  align-items: center;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(250, 235, 209, 0.18);
  border-radius: 8px;
  padding: 0.55rem 0.72rem;
  color: rgba(250, 235, 209, 0.78);
  font-family: var(--font-primary);
  font-size: 0.76rem;
  font-weight: 800;
  background: rgba(250, 235, 209, 0.05);
}

.back-link:hover,
.back-link:focus-visible {
  border-color: rgba(37, 125, 167, 0.62);
  color: var(--cream);
  background: rgba(37, 125, 167, 0.16);
  outline: none;
}

.article-hero {
  position: relative;
  display: grid;
  min-height: 72svh;
  align-items: center;
  overflow: hidden;
  padding: 6.6rem 0 3.8rem;
  background: #070605;
}

.article-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.article-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  filter: saturate(0.95) contrast(1.08);
}

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

.article-hero::before {
  background:
    linear-gradient(90deg, rgba(7, 6, 5, 0.98), rgba(7, 6, 5, 0.82) 46%, rgba(7, 6, 5, 0.44)),
    radial-gradient(circle at 70% 30%, rgba(37, 125, 167, 0.2), transparent 28rem),
    linear-gradient(180deg, rgba(7, 6, 5, 0.18), rgba(7, 6, 5, 0.92));
}

.article-hero::after {
  background-image:
    linear-gradient(90deg, rgba(37, 125, 167, 0.12), transparent 1px),
    linear-gradient(rgba(250, 235, 209, 0.045), transparent 1px);
  background-size: 4.75rem 4.75rem;
  opacity: 0.34;
}

.article-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.52fr);
  gap: 1.6rem;
  align-items: center;
}

.article-hero-copy {
  max-width: 54rem;
}

.article-hero h1 {
  max-width: 13ch;
  margin-bottom: 0.85rem;
  font-size: 3.92rem;
}

.article-lead {
  max-width: 44rem;
  margin-bottom: 1rem;
  color: rgba(250, 235, 209, 0.82);
  font-size: 1.02rem;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.article-meta-row span,
.article-meta-row time {
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  border: 1px solid rgba(250, 235, 209, 0.14);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  color: rgba(250, 235, 209, 0.76);
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.26);
}

.article-hero-figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(37, 125, 167, 0.42);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.42), 0 0 38px rgba(37, 125, 167, 0.2);
}

.article-hero-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 0.9;
  filter: saturate(0.94) contrast(1.04);
}

.article-hero-figure figcaption {
  border-top: 1px solid rgba(250, 235, 209, 0.1);
  padding: 0.78rem 0.85rem;
  color: rgba(250, 235, 209, 0.68);
  font-size: 0.78rem;
  line-height: 1.45;
}

.article-body-section {
  padding: 4.4rem 0;
  background:
    linear-gradient(180deg, #070605, #100d0b 44%, #070605);
}

.article-body-section-featured {
  padding: 4.4rem 0 3rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.32fr);
  gap: 2rem;
  align-items: start;
}

.article-main-column {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.article-content {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(250, 235, 209, 0.12);
  border-radius: 8px;
  padding: clamp(1rem, 2.4vw, 1.65rem);
  background:
    linear-gradient(135deg, rgba(37, 125, 167, 0.1), transparent 42%, rgba(194, 159, 115, 0.08)),
    rgba(250, 235, 209, 0.045);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.24);
}

.article-body-section-featured .article-content {
  border-color: rgba(37, 125, 167, 0.38);
  background:
    linear-gradient(135deg, rgba(37, 125, 167, 0.15), transparent 44%, rgba(194, 159, 115, 0.1)),
    rgba(250, 235, 209, 0.055);
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.28),
    inset 0 0 44px rgba(37, 125, 167, 0.08);
}

.article-body-section-featured .article-content::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), rgba(250, 235, 209, 0.7), transparent);
  box-shadow: 0 0 18px rgba(37, 125, 167, 0.7);
}

.article-content p {
  max-width: 72ch;
  margin: 0 0 0.98rem;
  color: rgba(250, 235, 209, 0.82);
  font-size: 0.98rem;
  line-height: 1.72;
}

.article-content p:first-child {
  color: rgba(250, 235, 209, 0.9);
  font-size: 1.04rem;
}

.article-content p:last-child {
  margin-bottom: 0;
}

.article-content h2 {
  max-width: 28ch;
  margin: 1.4rem 0 0.75rem;
  color: var(--cream);
  font-size: 1.32rem;
  line-height: 1.2;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content strong {
  color: var(--cream);
  font-weight: 800;
}

.article-content ol {
  display: grid;
  gap: 0.65rem;
  max-width: 72ch;
  margin: 0;
  padding-left: 1.3rem;
  color: rgba(250, 235, 209, 0.82);
}

.article-content li {
  padding-left: 0.3rem;
  line-height: 1.65;
}

.article-source-card {
  display: grid;
  gap: 0.45rem;
  max-width: 72ch;
  margin: 1rem 0 1.35rem;
  border: 1px solid rgba(37, 125, 167, 0.32);
  border-radius: 8px;
  padding: 0.85rem;
  background: rgba(0, 0, 0, 0.24);
  box-shadow: inset 0 0 22px rgba(37, 125, 167, 0.08);
}

.article-source-card span {
  color: var(--bronze);
  font-family: var(--font-primary);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-source-card a {
  color: var(--cream);
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.45;
  text-decoration: underline;
  text-decoration-color: rgba(37, 125, 167, 0.72);
  text-underline-offset: 0.22rem;
}

.article-source-card a:hover,
.article-source-card a:focus-visible {
  color: var(--blue);
  outline: none;
}

.article-aside {
  position: sticky;
  top: 6.25rem;
  border: 1px solid rgba(37, 125, 167, 0.34);
  border-radius: 8px;
  padding: 0.95rem;
  background:
    linear-gradient(180deg, rgba(37, 125, 167, 0.14), rgba(250, 235, 209, 0.035)),
    rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 24px rgba(37, 125, 167, 0.08), 0 18px 48px rgba(0, 0, 0, 0.24);
}

.article-comment-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(37, 125, 167, 0.18);
  border-radius: 8px;
  padding: 0.5rem;
  background:
    linear-gradient(135deg, rgba(37, 125, 167, 0.08), transparent 48%, rgba(194, 159, 115, 0.04)),
    rgba(0, 0, 0, 0.16);
  box-shadow: inset 0 0 22px rgba(37, 125, 167, 0.045);
}

.article-comment-panel::before {
  position: absolute;
  top: 0;
  right: 0.8rem;
  left: 0.8rem;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(37, 125, 167, 0.8), transparent);
  pointer-events: none;
}

.article-comment-heading {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.article-comment-heading span {
  color: var(--bronze);
  font-family: var(--font-primary);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-comment-heading h2 {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.article-comment-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  align-items: start;
}

.article-comment-panel .feedback-form,
.article-comment-panel .comment-stream {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.article-comment-panel .feedback-form::before,
.article-comment-panel .comment-stream::before {
  display: none;
}

.article-comment-panel .feedback-form {
  padding: 0;
}

.article-comment-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.4rem;
  align-items: stretch;
}

.article-comment-form label {
  min-width: 0;
}

.article-comment-form label:has(input[name="name"]) {
  display: none;
}

.article-comment-form label:has(textarea) {
  grid-column: 1;
}

.article-comment-form label:has(textarea) span {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.article-comment-form textarea {
  min-height: 2.42rem;
  height: 2.42rem;
  padding: 0.58rem 0.68rem;
  font-size: 0.86rem;
  line-height: 1.35;
}

.article-comment-form .feedback-actions-row {
  grid-column: 2;
  align-items: stretch;
  justify-content: stretch;
}

.article-comment-form .character-count {
  display: none;
}

.article-comment-form .button {
  min-height: 2.42rem;
  padding: 0.5rem 0.72rem;
  font-size: 0;
  white-space: nowrap;
}

.article-comment-form .button::before {
  content: "Publicar";
  font-size: 0.72rem;
}

.article-comment-form .form-note {
  grid-column: 1 / -1;
  margin: -0.15rem 0 0;
}

.article-comment-panel .comment-stream {
  padding: 0;
}

.article-comment-panel .comment-stream-heading {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.article-comment-panel .comment-stream-heading h3 {
  font-size: 0.88rem;
}

.article-comment-panel .comment-list {
  min-height: 1.55rem;
  max-height: 6rem;
  gap: 0.3rem;
}

.article-comment-panel .comment-list.is-empty {
  min-height: 1.55rem;
  border-color: rgba(37, 125, 167, 0.18);
  background: rgba(0, 0, 0, 0.08);
}

.article-comment-panel .comment-list.is-empty::before {
  left: 0.55rem;
  width: min(6rem, calc(100% - 1.1rem));
}

.article-comment-panel .comment-card {
  padding: 0.42rem;
}

.article-comment-panel .comment-card p {
  font-size: 0.8rem;
  line-height: 1.38;
}

.article-comment-panel-compact {
  margin-top: 0.65rem;
  border: 0;
  border-top: 1px solid rgba(250, 235, 209, 0.12);
  border-radius: 0;
  padding: 1rem 0 0;
  background: transparent;
  box-shadow: none;
}

.article-comment-panel-compact::before {
  display: none;
}

.article-comment-panel-compact .article-comment-layout {
  grid-template-columns: 1fr;
}

.article-comment-card time {
  color: rgba(250, 235, 209, 0.48);
  font-family: var(--font-primary);
  font-size: 0.64rem;
  font-weight: 800;
}

.article-archive-section {
  padding: 2.4rem 0 4.2rem;
  background:
    radial-gradient(circle at 84% 16%, rgba(37, 125, 167, 0.14), transparent 20rem),
    linear-gradient(180deg, #070605, #0e0b09 52%, #070605);
}

.article-archive-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.article-archive-heading h2 {
  max-width: 18ch;
  margin-bottom: 0;
  font-size: 1.6rem;
}

.article-archive-heading p {
  max-width: 42rem;
  margin-bottom: 0;
  color: rgba(250, 235, 209, 0.68);
  font-size: 0.92rem;
}

.article-archive-grid {
  display: grid;
  gap: 0.75rem;
}

.article-archive-card {
  overflow: hidden;
  border: 1px solid rgba(250, 235, 209, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(37, 125, 167, 0.1), transparent 48%, rgba(194, 159, 115, 0.08)),
    rgba(250, 235, 209, 0.035);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.article-archive-card[open] {
  border-color: rgba(37, 125, 167, 0.32);
  background:
    linear-gradient(135deg, rgba(37, 125, 167, 0.15), transparent 48%, rgba(194, 159, 115, 0.1)),
    rgba(250, 235, 209, 0.045);
}

.article-archive-card summary {
  display: grid;
  grid-template-columns: minmax(10rem, 0.34fr) minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 9rem;
  padding: 0.78rem;
  cursor: pointer;
  list-style: none;
}

.article-archive-card summary::-webkit-details-marker {
  display: none;
}

.article-archive-thumb {
  overflow: hidden;
  border: 1px solid rgba(37, 125, 167, 0.3);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
}

.article-archive-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.84;
  filter: saturate(1.02) contrast(1.04);
}

.article-archive-summary-copy {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.article-archive-date {
  color: var(--bronze);
  font-family: var(--font-primary);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-archive-card h3 {
  max-width: 36ch;
  margin-bottom: 0;
  font-size: 1.18rem;
  line-height: 1.18;
}

.article-archive-card summary p {
  max-width: 58rem;
  margin-bottom: 0;
  color: rgba(250, 235, 209, 0.68);
  font-size: 0.9rem;
  line-height: 1.52;
}

.article-archive-toggle {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 125, 167, 0.38);
  border-radius: 8px;
  color: var(--cream);
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 800;
  background: rgba(37, 125, 167, 0.12);
}

.article-archive-toggle::before {
  content: "+";
}

.article-archive-card[open] .article-archive-toggle::before {
  content: "-";
}

.article-archive-body {
  border-top: 1px solid rgba(250, 235, 209, 0.1);
  padding: 1rem;
}

.article-archive-body p {
  max-width: 72ch;
  margin: 0 0 0.85rem;
  color: rgba(250, 235, 209, 0.76);
  font-size: 0.92rem;
  line-height: 1.62;
}

.article-archive-body p:last-child {
  margin-bottom: 0;
}

.article-archive-source {
  display: inline-flex;
  margin: 0.35rem 0 0.65rem;
  color: var(--blue);
  font-family: var(--font-primary);
  font-size: 0.74rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(37, 125, 167, 0.68);
  text-underline-offset: 0.22rem;
}

.article-archive-source:hover,
.article-archive-source:focus-visible {
  color: var(--cream);
  outline: none;
}

.article-aside-kicker {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--bronze);
  font-family: var(--font-primary);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-aside h2 {
  margin-bottom: 0.85rem;
  font-size: 1.35rem;
}

.article-aside ul {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-aside li {
  position: relative;
  padding-left: 1rem;
  color: rgba(250, 235, 209, 0.76);
  font-size: 0.92rem;
  line-height: 1.55;
}

.article-aside li::before {
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  content: "";
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(37, 125, 167, 0.72);
}

.topic-focus-section {
  background: var(--ink);
}

.topic-content-section {
  background:
    linear-gradient(180deg, #100d0b, #070605);
}

.topic-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.focus-panel {
  position: relative;
  overflow: hidden;
  min-height: 16rem;
  border: 1px solid rgba(250, 235, 209, 0.16);
  border-radius: 8px;
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(37, 125, 167, 0.1), rgba(250, 235, 209, 0.035)),
    rgba(0, 0, 0, 0.24);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.focus-panel::before {
  position: absolute;
  top: 0;
  right: 0.75rem;
  left: 0.75rem;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(37, 125, 167, 0.78), transparent);
}

.focus-panel span {
  display: inline-flex;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(37, 125, 167, 0.42);
  border-radius: 8px;
  padding: 0.35rem 0.5rem;
  color: var(--bronze);
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(37, 125, 167, 0.1);
}

.focus-panel h2 {
  margin-bottom: 0.75rem;
  font-size: 1.6rem;
}

.focus-panel p {
  margin-bottom: 0;
  color: rgba(250, 235, 209, 0.76);
}

.topic-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.content-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(11rem, 0.45fr) minmax(0, 1fr);
  overflow: hidden;
  min-height: 17rem;
  border: 1px solid rgba(250, 235, 209, 0.16);
  border-radius: 8px;
  background: rgba(250, 235, 209, 0.055);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.content-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(37, 125, 167, 0.16), transparent 48%, rgba(194, 159, 115, 0.1));
  pointer-events: none;
}

.content-card-media {
  position: relative;
  min-height: 100%;
  background: rgba(0, 0, 0, 0.24);
}

.content-card-media img {
  width: 100%;
  height: 100%;
  min-height: 17rem;
  object-fit: cover;
  opacity: 0.76;
  filter: saturate(1.04) contrast(1.04);
}

.content-card-body {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 1.2rem;
}

.content-card h3 {
  margin: 0.75rem 0 0.7rem;
  color: var(--cream);
  font-size: 1.28rem;
}

.content-card p {
  margin: 0 0 1rem;
  color: rgba(250, 235, 209, 0.76);
}

.content-meta {
  margin-top: auto;
  color: rgba(250, 235, 209, 0.56);
}

.content-card a {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  margin-top: 0.8rem;
  border: 1px solid rgba(37, 125, 167, 0.46);
  border-radius: 8px;
  padding: 0.65rem 0.8rem;
  color: var(--cream);
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(37, 125, 167, 0.12);
}

.content-card a:hover,
.content-card a:focus-visible {
  color: var(--ink);
  background: var(--cream);
  outline: none;
}

.shop-hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4.5rem;
  color: var(--cream);
  background: var(--ink);
}

.shop-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.23;
}

.shop-hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(16, 13, 11, 0.95), rgba(16, 13, 11, 0.82), rgba(16, 13, 11, 0.5));
}

.shop-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.shop-hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 24rem;
  gap: 2rem;
  align-items: end;
}

.shop-hero h1 {
  max-width: 11ch;
  font-size: 4.4rem;
}

.shop-hero p {
  max-width: 42rem;
  color: rgba(250, 235, 209, 0.78);
  font-size: 1.1rem;
}

.affiliate-note {
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.3);
}

.affiliate-note strong {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--bronze);
  font-family: var(--font-primary);
  text-transform: uppercase;
}

.affiliate-note p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.products-section {
  overflow: hidden;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
  background: #100d0b;
}

.product-category {
  position: relative;
  display: grid;
  grid-template-columns: 17rem 1fr;
  gap: 1.25rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(250, 235, 209, 0.12);
}

.product-category:first-of-type {
  border-top: 0;
}

.category-heading {
  position: sticky;
  top: 6.5rem;
  align-self: start;
}

.category-heading span {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--blue);
  font-family: var(--font-tech);
  font-size: 1.5rem;
  font-weight: 800;
  text-shadow: 0 0 20px rgba(37, 125, 167, 0.46);
}

.category-heading p {
  color: rgba(250, 235, 209, 0.68);
}

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

.category-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.68rem;
}

.category-card,
.empty-category-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(250, 235, 209, 0.14);
  border-radius: 8px;
  padding: 0.82rem;
  background:
    linear-gradient(180deg, rgba(37, 125, 167, 0.1), rgba(250, 235, 209, 0.035)),
    rgba(0, 0, 0, 0.24);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(37, 125, 167, 0.16);
}

.category-card::before,
.empty-category-panel::before {
  position: absolute;
  top: 0;
  right: 0.75rem;
  left: 0.75rem;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(37, 125, 167, 0.78), transparent);
}

.category-card {
  display: grid;
  min-height: 7.8rem;
  align-content: center;
  gap: 0.55rem;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.category-card:hover,
.category-card:focus-visible {
  border-color: rgba(37, 125, 167, 0.74);
  background:
    linear-gradient(180deg, rgba(37, 125, 167, 0.18), rgba(250, 235, 209, 0.055)),
    rgba(0, 0, 0, 0.28);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.24), 0 0 28px rgba(37, 125, 167, 0.22);
  outline: none;
  transform: translateY(-3px);
}

.category-card span,
.empty-category-panel span {
  display: inline-flex;
  width: max-content;
  border: 1px solid rgba(37, 125, 167, 0.42);
  border-radius: 8px;
  padding: 0.35rem 0.5rem;
  color: var(--bronze);
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(37, 125, 167, 0.1);
}

.category-card .category-icon {
  position: relative;
  display: inline-grid;
  width: 2.45rem;
  height: 2.45rem;
  min-width: 2.45rem;
  place-items: center;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(37, 125, 167, 0.46);
  background:
    radial-gradient(circle at 50% 24%, rgba(250, 235, 209, 0.22), transparent 44%),
    linear-gradient(145deg, rgba(37, 125, 167, 0.26), rgba(7, 6, 5, 0.24));
  box-shadow: inset 0 0 20px rgba(37, 125, 167, 0.16), 0 0 18px rgba(37, 125, 167, 0.18);
  animation: categoryIconFloat 3.4s ease-in-out infinite;
}

.category-card .category-icon::before {
  position: absolute;
  inset: 1px;
  content: "";
  border: 1px solid rgba(250, 235, 209, 0.09);
  border-radius: 7px;
  pointer-events: none;
}

.category-card .category-icon::after {
  position: absolute;
  inset: -40%;
  content: "";
  background: linear-gradient(115deg, transparent 32%, rgba(250, 235, 209, 0.32), transparent 58%);
  transform: translateX(-68%) rotate(8deg);
  animation: categoryIconSweep 4.2s ease-in-out infinite;
  pointer-events: none;
}

.category-card .category-icon img {
  position: relative;
  z-index: 1;
  display: block;
  width: 84%;
  height: 84%;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 0 12px rgba(37, 125, 167, 0.28));
  animation: categoryIconArtFloat 4.4s ease-in-out infinite;
}

.category-card:nth-child(2n) .category-icon {
  animation-delay: 180ms;
}

.category-card:nth-child(2n) .category-icon img {
  animation-delay: 320ms;
}

.category-card:nth-child(3n) .category-icon {
  animation-delay: 360ms;
}

.category-card:nth-child(3n) .category-icon img {
  animation-delay: 480ms;
}

.category-card:nth-child(4n) .category-icon {
  animation-delay: 540ms;
}

.category-card:nth-child(4n) .category-icon img {
  animation-delay: 640ms;
}

.category-card:nth-child(5n) .category-icon {
  animation-delay: 720ms;
}

.category-card:nth-child(5n) .category-icon img {
  animation-delay: 800ms;
}

.category-card:hover .category-icon,
.category-card:focus-visible .category-icon {
  border-color: rgba(250, 235, 209, 0.42);
  background:
    radial-gradient(circle at 50% 26%, rgba(250, 235, 209, 0.3), transparent 44%),
    linear-gradient(145deg, rgba(37, 125, 167, 0.42), rgba(194, 159, 115, 0.16));
  box-shadow: inset 0 0 22px rgba(37, 125, 167, 0.22), 0 0 26px rgba(37, 125, 167, 0.38);
}

.category-card:hover .category-icon img,
.category-card:focus-visible .category-icon img {
  filter: drop-shadow(0 0 16px rgba(37, 125, 167, 0.52));
}

.category-card strong {
  color: var(--cream);
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.25;
}

.category-card p,
.empty-category-panel p {
  margin-bottom: 0;
  color: rgba(250, 235, 209, 0.68);
  font-size: 0.88rem;
  line-height: 1.55;
}

.empty-category-panel {
  display: grid;
  gap: 0.85rem;
  max-width: 46rem;
}

.empty-category-panel h2 {
  margin-bottom: 0;
  font-size: 2rem;
}

.empty-category-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.product-card {
  min-height: 18rem;
  padding: 1.2rem;
}

.affiliate-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 24.5rem;
  padding: 1rem;
  gap: 0.95rem;
}

.affiliate-product-card .product-tag {
  margin-bottom: 0;
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 15.8rem;
  overflow: hidden;
  border: 1px solid rgba(250, 235, 209, 0.14);
  border-radius: 8px;
  padding: 0.62rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(250, 235, 209, 0.18), transparent 42%),
    radial-gradient(circle at 48% 72%, rgba(37, 125, 167, 0.28), transparent 52%),
    linear-gradient(145deg, rgba(250, 235, 209, 0.12), rgba(37, 125, 167, 0.12)),
    rgba(8, 7, 6, 0.2);
  box-shadow:
    inset 0 0 34px rgba(37, 125, 167, 0.12),
    0 18px 36px rgba(0, 0, 0, 0.18);
}

.product-media::after {
  position: absolute;
  inset: auto 12% 0.7rem;
  height: 0.7rem;
  content: "";
  border-radius: 999px;
  background: rgba(16, 13, 11, 0.14);
  filter: blur(10px);
}

.product-media img {
  position: relative;
  z-index: 1;
  width: min(100%, 17.8rem);
  height: 14.2rem;
  object-fit: contain;
  transform: scale(1.02);
  filter: saturate(1.03) contrast(1.06) drop-shadow(0 18px 24px rgba(0, 0, 0, 0.36));
}

.product-info {
  position: relative;
  display: grid;
  grid-template-rows: minmax(3rem, auto) auto;
  align-content: end;
  gap: 0.82rem;
  height: 100%;
}

.product-info h4 {
  display: -webkit-box;
  min-height: 2.7rem;
  overflow: hidden;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid rgba(250, 235, 209, 0.12);
  border-bottom: 1px solid rgba(250, 235, 209, 0.12);
  padding: 0.62rem 0;
}

.product-price-row span,
.product-price-row strong {
  font-family: var(--font-primary);
  font-size: 0.72rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-price-row span {
  color: rgba(250, 235, 209, 0.58);
  font-weight: 700;
}

.product-price-row strong {
  color: var(--bronze);
  font-weight: 800;
  text-align: right;
}

.product-card .product-buy-link {
  justify-content: center;
  width: 100%;
  margin-top: 0;
  border-color: rgba(250, 235, 209, 0.32);
  color: var(--ink);
  background: var(--cream);
}

.product-card .product-buy-link:hover,
.product-card .product-buy-link:focus-visible {
  border-color: var(--blue);
  color: var(--cream);
  background: var(--blue);
}

.product-tag {
  position: relative;
  display: inline-flex;
  margin-bottom: 2rem;
  border: 1px solid rgba(194, 159, 115, 0.35);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  color: var(--bronze);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(194, 159, 115, 0.08);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes astronautFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-0.8rem, -1.25rem, 0) rotate(-1.6deg);
  }
}

@keyframes tvSignal {
  0%,
  62%,
  70%,
  82%,
  100% {
    transform: translate3d(0, 0, 0);
    filter:
      drop-shadow(0 0 8px rgba(250, 235, 209, 0.38))
      drop-shadow(0 0 18px rgba(250, 235, 209, 0.2))
      drop-shadow(3px 0 0 rgba(37, 125, 167, 0.22))
      drop-shadow(-3px 0 0 rgba(250, 235, 209, 0.18))
      saturate(1.04)
      contrast(1.04)
      brightness(0.95);
  }

  64% {
    transform: translate3d(-7px, 1px, 0) skewX(-1deg);
    filter:
      drop-shadow(7px 0 0 rgba(37, 125, 167, 0.42))
      drop-shadow(-7px 0 0 rgba(250, 235, 209, 0.34))
      saturate(1.18)
      contrast(1.18)
      brightness(1.04);
  }

  66% {
    transform: translate3d(9px, -2px, 0) skewX(1.4deg);
    filter:
      drop-shadow(-8px 0 0 rgba(37, 125, 167, 0.48))
      drop-shadow(8px 0 0 rgba(250, 235, 209, 0.3))
      saturate(1.24)
      contrast(1.24)
      brightness(1.08);
  }

  68% {
    transform: translate3d(-5px, 3px, 0);
  }

  84% {
    transform: translate3d(4px, -1px, 0);
  }

  86% {
    transform: translate3d(-4px, 1px, 0);
  }
}

@keyframes techPanelLed {
  0%,
  100% {
    opacity: 0.72;
    box-shadow: inset 0 0 24px rgba(0, 240, 255, 0.12);
  }

  50% {
    opacity: 1;
    box-shadow: inset 0 0 42px rgba(0, 240, 255, 0.24), 0 0 28px rgba(0, 240, 255, 0.16);
  }
}

@keyframes techPanelSweep {
  0%,
  34% {
    transform: translateX(-120%);
    opacity: 0;
  }

  48% {
    opacity: 1;
  }

  64%,
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes tvNoise {
  0% {
    opacity: 0.28;
    transform: translate3d(-4px, -3px, 0) skewX(-1deg);
  }

  22% {
    opacity: 0.62;
    transform: translate3d(6px, 2px, 0) skewX(1.6deg);
  }

  48% {
    opacity: 0.38;
    transform: translate3d(-2px, 5px, 0);
  }

  72% {
    opacity: 0.7;
    transform: translate3d(8px, -1px, 0) skewX(-1.2deg);
  }

  100% {
    opacity: 0.46;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  45% {
    transform: translate3d(0, -0.18rem, 0) rotate(-2deg);
  }

  70% {
    transform: translate3d(0.08rem, -0.08rem, 0) rotate(1.4deg);
  }
}

@keyframes logoSweep {
  to {
    transform: rotate(1turn);
  }
}

@keyframes authPanelIn {
  from {
    opacity: 0;
    transform: translateY(0.6rem) scale(0.98);
  }

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

@keyframes telegramFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0.16rem, -0.16rem, 0) rotate(4deg);
  }
}

@keyframes telegramPlane {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  46% {
    transform: translate3d(0.08rem, -0.08rem, 0);
  }
}

@keyframes categoryIconFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  48% {
    transform: translate3d(0.08rem, -0.14rem, 0) rotate(3deg);
  }

  72% {
    transform: translate3d(-0.04rem, -0.04rem, 0) rotate(-1.6deg);
  }
}

@keyframes categoryIconArtFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0.03rem, -0.08rem, 0) scale(1.04);
  }

  76% {
    transform: translate3d(-0.03rem, -0.03rem, 0) scale(0.985);
  }
}

@keyframes categoryIconSweep {
  0%,
  42% {
    transform: translateX(-68%) rotate(8deg);
    opacity: 0;
  }

  58% {
    opacity: 1;
  }

  78%,
  100% {
    transform: translateX(68%) rotate(8deg);
    opacity: 0;
  }
}

@keyframes gridDrift {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 4rem 4rem, 4rem 4rem, 13rem 13rem, -17rem 17rem, 11rem -11rem;
  }
}

@keyframes maintenanceSignal {
  0% {
    transform: translateX(-112%);
  }

  50% {
    transform: translateX(88%);
  }

  100% {
    transform: translateX(232%);
  }
}

@media (max-width: 980px) {
  .maintenance-hero {
    display: block;
    min-height: auto;
    padding: 6rem 0 4.2rem;
  }

  .maintenance-content {
    padding-top: 2.2rem;
  }

  .maintenance-title {
    max-width: 14ch;
    font-size: 3.25rem;
  }

  .maintenance-media {
    top: 5.1rem;
    right: -5.5rem;
    width: 19rem;
    opacity: 0.28;
  }
}

@media (max-width: 700px) {
  .maintenance-header-badge {
    min-height: 2.1rem;
    padding: 0.38rem 0.58rem;
    font-size: 0.62rem;
  }

  .maintenance-hero {
    padding-bottom: 3.4rem;
  }

  .maintenance-title {
    max-width: 12ch;
    font-size: 2.65rem;
  }

  .maintenance-title span + span {
    max-width: 16ch;
    font-size: 0.46em;
  }
}

@media (max-width: 430px) {
  .maintenance-page .nav-shell {
    width: min(100% - 1rem, 1180px);
    gap: 0.55rem;
  }

  .maintenance-page .brand-name {
    max-width: min(44vw, 8.6rem);
  }

  .maintenance-header-badge {
    flex: 0 0 auto;
  }

  .maintenance-title {
    max-width: 11ch;
    font-size: 2.18rem;
  }
}

@media (max-width: 980px) {
  .site-header.is-scrolled,
  .site-header.menu-active {
    background: rgba(8, 7, 6, 0.92);
  }

  .nav-shell {
    justify-content: flex-start;
    min-height: 4.15rem;
  }

  .nav-share-button-mobile {
    z-index: 70;
    display: inline-flex;
    flex: 0 0 auto;
    width: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    margin-left: auto;
  }

  .menu-toggle {
    position: relative;
    z-index: 70;
    display: inline-grid;
    grid-template-columns: 1.1rem auto;
    align-items: center;
    gap: 0.35rem 0.55rem;
    border: 1px solid rgba(250, 235, 209, 0.24);
    border-radius: 8px;
    min-height: 2.75rem;
    padding: 0.52rem 0.68rem;
    color: var(--cream);
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 800;
    background: rgba(250, 235, 209, 0.06);
    box-shadow: inset 0 0 18px rgba(37, 125, 167, 0.08);
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    border-color: rgba(37, 125, 167, 0.72);
    background: rgba(37, 125, 167, 0.16);
    box-shadow: 0 0 20px rgba(37, 125, 167, 0.22);
    outline: none;
  }

  .menu-toggle span {
    width: 1.1rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .menu-toggle span:nth-child(1),
  .menu-toggle span:nth-child(2),
  .menu-toggle span:nth-child(3) {
    grid-column: 1;
  }

  .menu-toggle span:nth-child(1) {
    grid-row: 1;
  }

  .menu-toggle span:nth-child(2) {
    grid-row: 2;
  }

  .menu-toggle span:nth-child(3) {
    grid-row: 3;
  }

  .site-menu {
    position: fixed;
    top: 4.85rem;
    right: 1rem;
    left: auto;
    bottom: auto;
    z-index: 60;
    display: grid;
    width: min(25rem, calc(100% - 2rem));
    max-height: calc(100svh - 5.7rem);
    overflow: auto;
    align-content: start;
    justify-items: stretch;
    gap: 0.85rem;
    border: 1px solid rgba(37, 125, 167, 0.5);
    border-radius: 8px;
    padding: 0.85rem;
    padding-bottom: max(0.85rem, calc(env(safe-area-inset-bottom) + 0.55rem));
    background:
      linear-gradient(135deg, rgba(37, 125, 167, 0.18), transparent 42%, rgba(194, 159, 115, 0.08)),
      rgba(8, 7, 6, 0.96);
    box-shadow: 0 0 0 1px rgba(250, 235, 209, 0.06), 0 22px 60px rgba(0, 0, 0, 0.46), 0 0 28px rgba(37, 125, 167, 0.26);
    backdrop-filter: blur(18px);
    overscroll-behavior: contain;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -0.5rem, 0) scale(0.98);
    transform-origin: top right;
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .site-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .nav-links {
    display: grid;
    gap: 0.5rem;
  }

  .nav-links a,
  .nav-links button {
    justify-content: center;
    min-height: 2.85rem;
    border-color: rgba(250, 235, 209, 0.12);
    padding: 0.72rem 0.78rem;
    font-size: 0.84rem;
    background: rgba(250, 235, 209, 0.045);
  }

  .nav-links .nav-share-button {
    display: none;
  }

  .nav-share-icon {
    width: 1.08rem;
    height: 1.08rem;
  }

  .nav-socials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .nav-social {
    min-height: 2.75rem;
    justify-content: flex-start;
    padding: 0.58rem 0.65rem;
    font-size: 0.74rem;
  }

  .nav-social .social-icon {
    width: 1.45rem;
    height: 1.45rem;
  }

  .hero-section {
    min-height: 76svh;
    padding: 5.8rem 0 5.4rem;
  }

  .hero-media {
    top: 7.85rem;
    right: -2.25rem;
    bottom: auto;
    width: min(28rem, 52vw);
    opacity: 0.66;
  }

  h1 {
    font-size: 3.65rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .intro-layout,
  .world-cup-layout,
  .feature-layout,
  .community-layout,
  .about-layout,
  .shop-hero-layout,
  .legal-layout,
  .article-hero-layout,
  .article-layout,
  .product-category,
  .topic-focus-grid,
  .topic-content-grid {
    grid-template-columns: 1fr;
  }

  .editorial-grid,
  .product-grid,
  .category-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-card-grid {
    gap: 0.62rem;
  }

  .tech-picks-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .tech-pick-featured {
    grid-column: span 3;
    grid-row: auto;
    min-height: 16rem;
  }

  .tech-pick-featured img {
    height: 9.8rem;
  }

  .topic-large {
    grid-column: span 1;
  }

  .category-heading {
    position: static;
  }

  .legal-toc {
    position: static;
  }

  .shop-hero h1 {
    font-size: 3.15rem;
  }

  .topic-hero h1 {
    font-size: 3rem;
  }

  .article-hero {
    min-height: auto;
    padding: 6.4rem 0 4rem;
  }

  .article-hero h1 {
    font-size: 3.05rem;
  }

  .article-hero-figure {
    max-width: 42rem;
  }

  .article-aside {
    position: relative;
    top: auto;
  }

  .article-comment-layout {
    grid-template-columns: 1fr;
  }

  .article-archive-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-layout {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .footer-layout p:nth-child(2) {
    justify-self: start;
    text-align: left;
  }
}

@media (min-width: 701px) and (max-width: 980px) {
  .section {
    padding: 5rem 0;
  }

  .section-inner,
  .hero-content,
  .nav-shell {
    width: min(100% - 3rem, 1180px);
  }

  .hero-content {
    align-self: center;
  }

  .hero-copy {
    max-width: 34rem;
  }

  .mission-strip span {
    padding: 0.85rem 0.75rem;
  }

  .intro-layout,
  .world-cup-layout,
  .feature-layout {
    gap: 1.5rem;
  }

  .world-cup-copy h2 {
    max-width: 17ch;
  }

  .world-cup-media {
    min-height: 15rem;
  }

  .topic-card,
  .product-card,
  .focus-panel {
    min-height: 15rem;
  }

  .topic-kicker,
  .product-tag {
    margin-bottom: 1.4rem;
  }

  .community-layout {
    gap: 1rem;
  }

  .about-layout {
    grid-template-columns: 8.9rem minmax(0, 1fr);
    gap: 0.95rem 1.05rem;
  }

  .portrait-wrap {
    width: min(100%, 9.35rem);
  }

  .about-copy h2 {
    font-size: 2.15rem;
  }

  .shop-hero,
  .legal-hero,
  .topic-hero {
    padding-top: 6.4rem;
  }

  .legal-layout {
    gap: 1rem;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 3rem 0;
  }

  .about-section {
    padding: 2.9rem 0;
  }

  .section-inner,
  .hero-content,
  .nav-shell {
    width: min(100% - 1.5rem, 1180px);
  }

  .brand-avatar {
    width: 2.2rem;
    height: 2.2rem;
  }

  .brand-name {
    max-width: min(48vw, 11.4rem);
    font-size: 0.8rem;
  }

  .hero-section {
    min-height: 74svh;
    padding: 5rem 0 4.2rem;
    align-items: start;
  }

  .hero-media {
    top: 6.1rem;
    right: -5.8rem;
    bottom: auto;
    width: 18.5rem;
    opacity: 0.3;
  }

  .topic-hero {
    min-height: auto;
    padding: 5.6rem 0 3.25rem;
  }

  .legal-hero {
    padding: 5.6rem 0 3rem;
  }

  .topic-hero h1 {
    font-size: 2.28rem;
  }

  .article-hero {
    padding: 5.6rem 0 3rem;
  }

  .article-hero-layout,
  .article-layout {
    gap: 1rem;
  }

  .article-hero h1 {
    max-width: 12ch;
    font-size: 2.28rem;
  }

  .article-lead,
  .article-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .article-content h2 {
    font-size: 1.2rem;
  }

  .article-source-card {
    padding: 0.82rem;
  }

  .article-content p:first-child {
    font-size: 1rem;
  }

  .article-meta-row {
    gap: 0.42rem;
  }

  .article-meta-row span,
  .article-meta-row time {
    min-height: 2.05rem;
    padding: 0.38rem 0.52rem;
    font-size: 0.6rem;
  }

  .article-hero-figure img {
    aspect-ratio: 16 / 9.5;
  }

  .article-content,
  .article-aside,
  .article-comment-panel {
    padding: 1rem;
  }

  .article-archive-card summary {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .article-archive-toggle {
    justify-self: start;
  }

  .legal-hero h1 {
    font-size: 2.35rem;
  }

  .topic-hero-media {
    right: -4rem;
    bottom: -2rem;
    width: 20rem;
    opacity: 0.28;
  }

  h1 {
    max-width: 11ch;
    margin-bottom: 0.85rem;
    font-size: 2.28rem;
    line-height: 1;
  }

  h2 {
    font-size: 1.82rem;
    line-height: 1.1;
  }

  h3 {
    font-size: 1.25rem;
  }

  .eyebrow {
    margin-bottom: 0.7rem;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .hero-copy,
  .shop-hero p,
  .topic-hero p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero-copy {
    max-width: 21rem;
    margin-bottom: 1.15rem;
  }

  .hero-actions,
  .social-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .social-link {
    width: 100%;
    justify-content: center;
  }

  .button {
    min-height: 2.95rem;
    padding: 0.72rem 0.9rem;
    font-size: 0.78rem;
  }

  .mission-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mission-strip span {
    display: grid;
    min-height: 2.9rem;
    place-items: center;
    padding: 0.45rem 0.28rem;
    font-size: 0.56rem;
    line-height: 1.25;
  }

  .mission-strip span + span {
    border-top: 0;
    border-left: 1px solid rgba(250, 235, 209, 0.14);
  }

  .intro-layout {
    gap: 0.9rem;
  }

  .world-cup-section {
    padding: 2.8rem 0;
  }

  .world-cup-layout {
    gap: 1.1rem;
  }

  .world-cup-copy h2 {
    max-width: 16ch;
    font-size: 1.68rem;
    line-height: 1.12;
  }

  .world-cup-copy p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .world-cup-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.72rem;
    margin-top: 0.45rem;
  }

  .world-cup-actions span {
    max-width: none;
    font-size: 0.78rem;
  }

  .world-cup-media {
    order: -1;
    min-height: 11.5rem;
  }

  .intro-layout p:last-child {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .editorial-grid,
  .product-grid,
  .category-card-grid {
    grid-template-columns: 1fr;
  }

  .editorial-section .topic-card {
    background:
      linear-gradient(180deg, rgba(10, 14, 16, 0.9), rgba(12, 9, 7, 0.82)),
      rgba(0, 0, 0, 0.54);
  }

  .category-card-grid {
    gap: 0.55rem;
  }

  .category-card {
    min-height: 5.9rem;
    padding: 0.7rem;
    gap: 0.42rem;
  }

  .category-card .category-icon {
    width: 2.15rem;
    height: 2.15rem;
    min-width: 2.15rem;
  }

  .category-card strong {
    font-size: 0.94rem;
  }

  .tech-picks-panel {
    grid-template-columns: 1fr;
    gap: 0.62rem;
    padding: 0.75rem;
  }

  .tech-pick-featured {
    grid-column: auto;
    min-height: 14rem;
  }

  .tech-pick-card,
  .tech-pick-featured {
    min-height: auto;
  }

  .tech-pick-card img,
  .tech-pick-featured img {
    width: min(100%, 13rem);
    height: 8.2rem;
    margin-top: 0.35rem;
  }

  .topic-card,
  .product-card {
    min-height: auto;
    padding: 1rem;
  }

  .topic-card p,
  .product-card p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .topic-card-preview img {
    aspect-ratio: 16 / 9;
  }

  .topic-card-preview-copy {
    padding: 0.72rem;
  }

  .topic-card-preview-copy strong {
    font-size: 0.88rem;
  }

  .topic-card a,
  .product-card a {
    width: 100%;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.58rem 0.7rem;
    font-size: 0.72rem;
  }

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

  .content-card-media img {
    min-height: 13rem;
    max-height: 15rem;
  }

  .feedback-form,
  .comment-stream {
    padding: 0.85rem;
  }

  .feedback-form input,
  .feedback-form textarea,
  .auth-form input {
    font-size: 1rem;
  }

  .auth-password-field input {
    padding-right: 5.7rem;
  }

  .auth-password-toggle {
    min-height: 2rem;
    font-size: 0.56rem;
  }

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

  .feedback-actions-row {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .character-count {
    align-self: flex-end;
  }

  .comment-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .star-picker label {
    width: 2.18rem;
    height: 2.18rem;
  }

  .topic-kicker,
  .product-tag {
    margin-bottom: 0.9rem;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .portrait-wrap {
    width: min(100%, 8.85rem);
    justify-self: start;
  }

  .about-copy {
    grid-template-columns: 1fr;
    gap: 0.38rem;
    align-items: start;
    padding-top: 0;
  }

  .about-copy h2 {
    font-size: 1.96rem;
  }

  .about-story-card,
  .about-story-card[open] {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    margin-top: 0.18rem;
  }

  .about-story-toggle {
    align-self: start;
    min-width: 9.75rem;
    min-height: 2.28rem;
    padding: 0.56rem 0.78rem;
    font-size: 0.68rem;
  }

  .about-story-body {
    gap: 0.7rem;
    padding: 0.82rem 0.88rem 0.9rem;
  }

  .about-story-body p {
    font-size: 0.88rem;
    line-height: 1.54;
  }

  .shop-hero {
    padding: 5.6rem 0 3rem;
  }

  .shop-hero h1 {
    font-size: 2.35rem;
  }

  .product-category {
    padding: 1.4rem 0;
  }

  .focus-panel {
    min-height: auto;
    padding: 1rem;
  }

  .focus-panel span {
    margin-bottom: 0.8rem;
    font-size: 0.62rem;
  }

  .focus-panel h2 {
    font-size: 1.35rem;
  }

  .focus-panel p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .legal-layout {
    gap: 1rem;
  }

  .legal-toc {
    display: flex;
    gap: 0.45rem;
    overflow-x: auto;
    margin: 0 -0.75rem;
    padding: 0.75rem;
    scroll-snap-type: x proximity;
  }

  .legal-toc strong {
    display: none;
  }

  .legal-toc a {
    flex: 0 0 auto;
    border: 1px solid rgba(250, 235, 209, 0.12);
    border-radius: 8px;
    padding: 0.55rem 0.65rem;
    background: rgba(0, 0, 0, 0.18);
    scroll-snap-align: start;
  }

  .legal-block {
    padding: 1rem;
  }

  .legal-block h2 {
    font-size: 1.32rem;
  }

  .auth-modal-shell {
    align-items: start;
    padding: 1rem;
    padding-top: max(1rem, env(safe-area-inset-top));
  }

  .auth-dialog {
    width: min(100%, 26rem);
    max-height: calc(100svh - 2rem);
    padding: 0.88rem;
  }

  .auth-dialog h2 {
    font-size: 1.16rem;
  }

  .auth-dialog-heading p:not(.auth-kicker),
  .auth-connected p,
  .auth-password-hint,
  .auth-switch,
  .auth-reset-intro p,
  .auth-recovery-card p {
    font-size: 0.76rem;
  }

  .footer-layout {
    padding: 1.15rem 0;
    font-size: 0.88rem;
  }

}

@media (max-width: 420px) {
  h1 {
    font-size: 1.92rem;
  }

  h2 {
    font-size: 1.52rem;
  }

  .shop-hero h1 {
    font-size: 2rem;
  }

  .topic-hero h1 {
    font-size: 1.92rem;
  }

  .article-hero h1 {
    font-size: 1.92rem;
  }

  .article-meta-row {
    display: grid;
  }

  .article-meta-row span,
  .article-meta-row time {
    justify-content: center;
  }

  .topic-card-preview-copy strong {
    font-size: 0.82rem;
  }

  .legal-hero h1 {
    font-size: 2rem;
  }

  .nav-shell {
    min-height: 3.7rem;
  }

  .brand-avatar {
    width: 2rem;
    height: 2rem;
  }

  .brand-name {
    max-width: min(48vw, 10.4rem);
    font-size: 0.74rem;
  }

  .about-section .section-inner {
    width: min(100% - 1.15rem, 1040px);
  }

  .portrait-wrap {
    width: min(100%, 7.7rem);
  }

  .about-story-toggle {
    min-width: 0;
  }

  .menu-toggle {
    grid-template-columns: 1.05rem;
    width: 2.65rem;
    min-height: 2.5rem;
    overflow: hidden;
    padding: 0.48rem;
    font-size: 0;
  }

  .menu-toggle span {
    width: 1.05rem;
  }

  .hero-section {
    min-height: 70svh;
    padding-top: 4.75rem;
  }

  .hero-media {
    top: 6rem;
    right: -6.2rem;
    width: 16.4rem;
    opacity: 0.28;
  }

  .nav-links a,
  .nav-links button {
    font-size: 0.92rem;
  }

  .nav-social {
    gap: 0.32rem;
    font-size: 0.68rem;
  }

  .mission-strip span {
    min-height: 2.55rem;
    padding: 0.35rem 0.2rem;
    font-size: 0.5rem;
  }

  .tech-picks-panel {
    padding: 0.62rem;
  }

  .tech-pick-card {
    padding: 0.64rem;
  }

  .auth-dialog-heading {
    padding-right: 3.7rem;
  }

  .auth-close {
    font-size: 0.58rem;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
