:root {
  --ink: #020500;
  --ink-soft: #071006;
  --panel: #0c1609;
  --panel-2: #10240a;
  --green-deep: #244600;
  --neon-green: #7dff00;
  --cyan: #9dff00;
  --pink: #46ff1f;
  --lime: #c8ff2e;
  --white: #f7ffe8;
  --muted: #c4d7b2;
  --steel: #9dff00;
  --teal: #00ff90;
  --red: #baff00;
  --line: rgba(166, 255, 0, .24);
  --shadow: 0 24px 80px rgba(125, 255, 0, .18), 0 22px 60px rgba(0, 0, 0, .5);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(157, 255, 0, .14), transparent 34%),
    radial-gradient(circle at 18% 0, rgba(0, 255, 144, .1), transparent 28%),
    var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header,
.admin-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(5, 5, 7, .88), rgba(5, 5, 7, .22));
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, min-height .25s ease;
}

.site-header.is-scrolled,
.admin-header {
  min-height: 68px;
  background: rgba(5, 5, 7, .94);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.site-nav,
.admin-header nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a,
.admin-header nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(247, 255, 232, .82);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.site-nav a:hover,
.admin-header nav a:hover,
.nav-admin {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, .06);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, .06);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.mobile-install-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: center;
  padding: 126px clamp(18px, 5vw, 72px) 52px;
  overflow: hidden;
  isolation: isolate;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, .94) 0%, rgba(5, 5, 7, .72) 38%, rgba(5, 5, 7, .25) 72%),
    linear-gradient(0deg, rgba(5, 5, 7, .92), transparent 46%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  z-index: -1;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .12) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, transparent, var(--ink));
  transform: skewY(-3deg);
  transform-origin: 100% 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(157, 255, 0, .18), transparent 38%),
    linear-gradient(90deg, rgba(0, 255, 144, .12), transparent 28%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-tech {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-tech-grid {
  opacity: .72;
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(198, 255, 0, .18) 16.2%, transparent 16.7%),
    linear-gradient(115deg, transparent 0 54%, rgba(0, 255, 144, .18) 54.2%, transparent 54.8%),
    repeating-linear-gradient(90deg, rgba(198, 255, 0, .08) 0 1px, transparent 1px 76px),
    repeating-linear-gradient(0deg, rgba(198, 255, 0, .055) 0 1px, transparent 1px 58px);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 86%, transparent);
  animation: techGridDrift 12s linear infinite;
}

.hero-tech-lines {
  background:
    linear-gradient(135deg, transparent 0 66%, rgba(198, 255, 0, .26) 66.2%, transparent 66.7%),
    linear-gradient(32deg, transparent 0 70%, rgba(0, 255, 144, .22) 70.2%, transparent 70.8%);
  mix-blend-mode: screen;
}

.hero-tech-lines::before,
.hero-tech-lines::after {
  content: "";
  position: absolute;
  border-color: rgba(198, 255, 0, .64);
  filter: drop-shadow(0 0 16px rgba(157, 255, 0, .45));
}

.hero-tech-lines::before {
  top: clamp(118px, 18vh, 190px);
  right: clamp(22px, 8vw, 128px);
  width: clamp(120px, 18vw, 280px);
  height: clamp(64px, 9vw, 120px);
  border-top: 2px solid;
  border-right: 2px solid;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 78% 100%, 78% 24%, 0 24%);
}

.hero-tech-lines::after {
  left: clamp(18px, 5vw, 82px);
  bottom: clamp(72px, 13vh, 150px);
  width: clamp(150px, 26vw, 360px);
  height: clamp(58px, 9vw, 118px);
  border-left: 2px solid;
  border-bottom: 2px solid;
  background:
    linear-gradient(90deg, rgba(198, 255, 0, .45), transparent 72%) left bottom / 76% 2px no-repeat,
    linear-gradient(90deg, rgba(0, 255, 144, .24), transparent 68%) left 18px / 54% 2px no-repeat;
}

.hero-nexus-motion {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-nexus-motion::before {
  content: "";
  position: absolute;
  inset: -12% auto -12% -34%;
  width: 28%;
  background:
    linear-gradient(90deg, transparent, rgba(198, 255, 0, .16), rgba(0, 255, 144, .1), transparent);
  filter: blur(4px);
  transform: skewX(-18deg);
  animation: nexusScanner 6.5s ease-in-out infinite;
}

.hero-nexus-motion::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -8%;
  height: 42%;
  background:
    repeating-linear-gradient(128deg, rgba(198, 255, 0, .12) 0 1px, transparent 1px 22px),
    linear-gradient(0deg, rgba(0, 255, 144, .08), transparent 62%);
  transform: skewY(-3deg);
  animation: nexusFloor 9s linear infinite;
}

.nexus-beam {
  position: absolute;
  width: clamp(340px, 44vw, 820px);
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(198, 255, 0, .95), rgba(255, 255, 220, .86), transparent);
  box-shadow:
    0 0 18px rgba(198, 255, 0, .78),
    0 0 46px rgba(0, 255, 144, .36);
  opacity: 0;
  transform-origin: center;
  animation: nexusBeamSweep 7.2s linear infinite;
}

.nexus-beam::before {
  content: "";
  position: absolute;
  inset: -18px 12%;
  background:
    linear-gradient(90deg, transparent, rgba(198, 255, 0, .16), transparent);
  filter: blur(12px);
}

.nexus-beam-a {
  top: 18%;
  left: -30%;
  animation-delay: -.8s;
}

.nexus-beam-b {
  top: 58%;
  left: -42%;
  width: clamp(300px, 38vw, 680px);
  background:
    linear-gradient(90deg, transparent, rgba(0, 255, 144, .76), rgba(198, 255, 0, .68), transparent);
  animation-duration: 8.8s;
  animation-delay: -4.2s;
}

.nexus-beam-c {
  top: 35%;
  left: -38%;
  width: clamp(220px, 32vw, 580px);
  height: 2px;
  animation-duration: 5.8s;
  animation-delay: -2.4s;
}

.nexus-corner {
  position: absolute;
  width: clamp(210px, 28vw, 430px);
  height: clamp(90px, 14vw, 170px);
  opacity: .82;
  filter: drop-shadow(0 0 14px rgba(198, 255, 0, .5));
  animation: nexusCornerPulse 3.8s ease-in-out infinite;
}

.nexus-corner-a {
  top: clamp(76px, 12vh, 130px);
  right: clamp(28px, 8vw, 150px);
  border-top: 2px solid rgba(247, 255, 232, .95);
  border-right: 2px solid rgba(247, 255, 232, .95);
}

.nexus-corner-b {
  left: clamp(22px, 5vw, 88px);
  bottom: clamp(78px, 14vh, 140px);
  border-left: 2px solid rgba(247, 255, 232, .92);
  border-bottom: 2px solid rgba(247, 255, 232, .92);
  animation-delay: -1.9s;
}

.nexus-ring {
  position: absolute;
  width: clamp(180px, 18vw, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 144, .28);
  background:
    radial-gradient(circle, transparent 58%, rgba(198, 255, 0, .13) 59%, transparent 61%),
    conic-gradient(from 0deg, transparent 0 48deg, rgba(0, 255, 144, .56) 58deg, transparent 78deg 176deg, rgba(198, 255, 0, .5) 184deg, transparent 210deg 360deg);
  filter: blur(.1px) drop-shadow(0 0 20px rgba(0, 255, 144, .28));
  opacity: .42;
  animation: nexusRingSpin 11s linear infinite, nexusRingFloat 5s ease-in-out infinite;
}

.nexus-ring-a {
  top: 20%;
  right: 27%;
}

.nexus-ring-b {
  width: clamp(120px, 13vw, 230px);
  left: 12%;
  bottom: 22%;
  opacity: .32;
  animation-duration: 8s, 4.4s;
  animation-direction: reverse, alternate;
}

.nexus-data {
  position: absolute;
  width: clamp(78px, 7vw, 120px);
  height: clamp(130px, 18vw, 250px);
  border-left: 1px solid rgba(198, 255, 0, .24);
  background:
    repeating-linear-gradient(0deg, rgba(198, 255, 0, .08) 0 2px, transparent 2px 12px),
    linear-gradient(180deg, transparent, rgba(0, 255, 144, .12), transparent);
  opacity: .34;
  animation: nexusDataRise 5.6s linear infinite;
}

.nexus-data-a {
  left: 8%;
  top: 12%;
}

.nexus-data-b {
  right: 7%;
  bottom: 8%;
  animation-delay: -2.8s;
}

@keyframes techGridDrift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }

  to {
    background-position: 0 0, 0 0, 76px 0, 0 58px;
  }
}

@keyframes nexusScanner {
  0%, 100% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0;
  }

  12%, 72% {
    opacity: 1;
  }

  86% {
    transform: translateX(520%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes nexusFloor {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 180px 0, 0 0;
  }
}

@keyframes nexusBeamSweep {
  0% {
    opacity: 0;
    transform: translate3d(-12vw, 26vh, 0) rotate(-27deg) scaleX(.52);
  }

  10% {
    opacity: .92;
  }

  56% {
    opacity: .75;
    transform: translate3d(74vw, -18vh, 0) rotate(-27deg) scaleX(1.05);
  }

  100% {
    opacity: 0;
    transform: translate3d(122vw, -46vh, 0) rotate(-27deg) scaleX(.72);
  }
}

@keyframes nexusCornerPulse {
  0%, 100% {
    opacity: .4;
    transform: translate3d(0, 0, 0);
  }

  50% {
    opacity: .95;
    transform: translate3d(0, -6px, 0);
  }
}

@keyframes nexusRingSpin {
  to {
    rotate: 360deg;
  }
}

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

  50% {
    transform: translate3d(14px, -10px, 0) scale(1.04);
  }
}

@keyframes nexusDataRise {
  from {
    background-position: 0 80px, 0 0;
    transform: translateY(22px);
  }

  to {
    background-position: 0 -80px, 0 0;
    transform: translateY(-22px);
  }
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.cta-section h2,
.admin-title h1,
.login-card h1 {
  margin: 0;
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 700;
  line-height: .95;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  font-size: 92px;
  text-shadow: 0 14px 40px rgba(0, 0, 0, .55);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 22px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--neon-green), var(--red));
  box-shadow: 0 18px 42px rgba(157, 255, 0, .24);
}

.button-ghost {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, .07);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #050805;
}

.metric-strip div {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 22px clamp(18px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.metric-strip div:last-child {
  border-right: 0;
}

.metric-strip strong {
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 38px;
  line-height: 1;
}

.metric-strip span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.youtube-feature-section {
  padding: clamp(28px, 4vw, 54px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 48%, rgba(255, 28, 28, .16), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(198, 255, 0, .14), transparent 30%),
    linear-gradient(135deg, rgba(5, 8, 5, .92), rgba(2, 5, 0, .98));
}

.youtube-feature-card {
  position: relative;
  min-height: 190px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(198, 255, 0, .44);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 0, 0, .2), transparent 25%),
    repeating-linear-gradient(135deg, rgba(198, 255, 0, .06) 0 1px, transparent 1px 18px),
    rgba(5, 8, 5, .86);
  box-shadow:
    0 0 42px rgba(166, 255, 0, .12),
    0 24px 70px rgba(0, 0, 0, .42);
}

.youtube-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .08), transparent);
  transform: translateX(-120%) skewX(-18deg);
  animation: youtubeFeatureScan 5.8s ease-in-out infinite;
  pointer-events: none;
}

.youtube-play-badge {
  position: relative;
  width: clamp(82px, 10vw, 132px);
  aspect-ratio: 1.35 / 1;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .18), transparent 48%),
    linear-gradient(135deg, #ff1a1a, #b80000);
  box-shadow:
    0 0 34px rgba(255, 0, 0, .38),
    0 0 28px rgba(198, 255, 0, .16);
}

.youtube-play-badge::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid #fff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, .44));
}

.youtube-feature-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.youtube-feature-copy strong {
  display: block;
  color: var(--white);
  font-family: "Barlow Condensed", Rajdhani, Arial, sans-serif;
  font-size: clamp(42px, 6vw, 82px);
  font-style: italic;
  font-weight: 900;
  line-height: .9;
  text-transform: uppercase;
  text-shadow:
    0 0 22px rgba(198, 255, 0, .22),
    0 12px 32px rgba(0, 0, 0, .5);
}

.youtube-feature-copy > span:last-child {
  max-width: 680px;
  color: rgba(247, 255, 232, .78);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
}

.youtube-feature-action {
  position: relative;
  z-index: 1;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(198, 255, 0, .85);
  border-radius: 6px;
  padding: 0 26px;
  color: #020500;
  background: linear-gradient(135deg, #f4ff22, #c8ff00 54%, #39ff14);
  box-shadow: 8px 8px 0 rgba(255, 255, 255, .12), 0 0 28px rgba(198, 255, 0, .34);
  font-family: "Barlow Condensed", Rajdhani, Arial, sans-serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes youtubeFeatureScan {
  0%, 100% {
    transform: translateX(-120%) skewX(-18deg);
    opacity: 0;
  }

  18%, 62% {
    opacity: 1;
  }

  84% {
    transform: translateX(140%) skewX(-18deg);
    opacity: 0;
  }
}

.section {
  padding: 88px clamp(18px, 5vw, 72px);
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(157, 255, 0, .08), transparent 44%),
    #040800;
}

.section-head {
  width: min(780px, 100%);
  margin-bottom: 36px;
}

.section-head-split {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: end;
}

.section h2,
.cta-section h2,
.admin-title h1 {
  font-size: 50px;
}

.section-head p:not(.eyebrow),
.roadmap-copy p:not(.eyebrow),
.cta-section p {
  color: var(--muted);
  font-size: 16px;
}

.featured-update {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
}

.featured-media {
  min-height: 430px;
}

.featured-media img,
.update-media img,
.gallery-grid img,
.manager-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-copy {
  display: grid;
  align-content: center;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(157, 255, 0, .18), rgba(12, 22, 9, .96)),
    var(--panel);
}

.tag {
  width: fit-content;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: var(--steel);
  border: 1px solid rgba(185, 210, 216, .3);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-copy h3,
.update-card h3,
.feature-card h3,
.posts-manager h2,
.timeline strong {
  margin: 14px 0 10px;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 30px;
  line-height: 1.05;
  text-transform: uppercase;
}

.featured-copy p,
.update-card p,
.feature-card p,
.timeline p {
  color: var(--muted);
}

.featured-copy time {
  color: var(--steel);
  font-weight: 800;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.update-card,
.feature-card,
.admin-panel,
.login-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}

.update-card {
  overflow: hidden;
}

.update-media {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--panel);
  overflow: hidden;
}

.update-media img {
  transition: transform .45s ease;
}

.update-card:hover .update-media img {
  transform: scale(1.05);
}

.update-body {
  padding: 20px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.performance {
  background:
    linear-gradient(90deg, rgba(0, 255, 144, .12), transparent 36%),
    linear-gradient(180deg, #050805, #030600);
}

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

.feature-card {
  min-height: 260px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(157, 255, 0, .1), transparent 44%),
    rgba(255, 255, 255, .045);
}

.feature-card span {
  display: inline-flex;
  color: var(--red);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 38px;
  font-weight: 700;
}

.gallery-section {
  background:
    radial-gradient(circle at 78% 8%, rgba(198, 255, 0, .12), transparent 28%),
    linear-gradient(180deg, #030600, #020500);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.gallery-grid figure {
  position: relative;
  min-height: 300px;
  aspect-ratio: 16 / 10;
  margin: 0;
  border: 1px solid rgba(198, 255, 0, .42);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(198, 255, 0, .08), transparent 55%),
    #020500;
  box-shadow: 0 0 30px rgba(166, 255, 0, .1);
}

.gallery-grid figure:first-child {
  grid-row: auto;
}

.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(5, 5, 7, .72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.roadmap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 22px),
    #050805;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
}

.timeline span {
  color: var(--steel);
  font-weight: 900;
  text-transform: uppercase;
}

.timeline strong {
  margin: 0;
}

.timeline p {
  grid-column: 2;
  margin: 0;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 70px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(157, 255, 0, .18), rgba(0, 255, 144, .1)),
    #050805;
}

.cta-section > div {
  width: min(760px, 100%);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #020500;
}

.site-footer span {
  color: var(--white);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-body {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(157, 255, 0, .14), transparent 40%),
    #030600;
}

.login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.login-card {
  width: min(430px, 100%);
  padding: 32px;
  background: rgba(12, 22, 9, .92);
  box-shadow: var(--shadow);
}

.login-card img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin-bottom: 18px;
}

.login-card h1 {
  font-size: 48px;
  margin-bottom: 22px;
}

.admin-shell {
  padding: 112px clamp(18px, 4vw, 56px) 42px;
}

.admin-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}

.admin-title span {
  color: var(--steel);
  font-weight: 800;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: 20px;
}

.admin-panel {
  padding: 22px;
  background: rgba(12, 22, 9, .82);
}

.admin-form {
  display: grid;
  gap: 16px;
}

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

.admin-form label {
  display: grid;
  gap: 8px;
}

.admin-form label span,
.posts-manager h2 {
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  outline: none;
}

.admin-form textarea {
  resize: vertical;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  border-color: var(--neon-green);
  box-shadow: 0 0 0 3px rgba(157, 255, 0, .18);
}

.upload-field input {
  padding: 10px;
}

.image-preview {
  min-height: 0;
}

.image-preview img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.check-row {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px !important;
}

.check-row input {
  width: 18px;
  min-height: 18px;
}

.alert {
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  font-weight: 700;
}

.alert-error {
  border-color: rgba(186, 255, 0, .45);
  color: #efffcc;
  background: rgba(0, 255, 144, .12);
}

.alert-success {
  border-color: rgba(85, 211, 149, .36);
  color: #c8ffe2;
  background: rgba(85, 211, 149, .1);
}

.back-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--steel);
  font-weight: 800;
}

.manager-list {
  display: grid;
  gap: 12px;
}

.manager-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
}

.manager-item img {
  width: 92px;
  height: 76px;
  border-radius: 6px;
}

.manager-item span {
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.manager-item strong {
  display: block;
  margin: 2px 0 8px;
  line-height: 1.2;
}

.manager-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.manager-actions a,
.manager-actions button {
  border: 0;
  padding: 0;
  color: var(--white);
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.manager-actions button {
  color: #e7ffb2;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 5, 7, .96);
  }

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

  .site-nav a {
    justify-content: center;
  }

  .hero {
    min-height: 74svh;
    padding-top: 110px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .metric-strip,
  .updates-grid,
  .feature-grid,
  .section-head-split,
  .roadmap,
  .admin-layout {
    grid-template-columns: 1fr 1fr;
  }

  .featured-update {
    grid-template-columns: 1fr;
  }

  .featured-media {
    min-height: 330px;
  }

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

@media (max-width: 720px) {
  .site-header,
  .admin-header {
    padding: 12px 16px;
  }

  .brand span {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: 72svh;
    padding: 96px 18px 34px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .metric-strip,
  .updates-grid,
  .feature-grid,
  .section-head-split,
  .roadmap,
  .admin-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .metric-strip div {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 58px 18px;
  }

  .section h2,
  .cta-section h2,
  .admin-title h1 {
    font-size: 36px;
  }

  .featured-copy,
  .admin-panel,
  .login-card {
    padding: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-grid figure:first-child {
    grid-row: auto;
  }

  .timeline div {
    grid-template-columns: 1fr;
  }

  .timeline p {
    grid-column: auto;
  }

  .cta-section,
  .site-footer,
  .admin-title,
  .admin-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-header {
    position: static;
  }

  .admin-shell {
    padding-top: 30px;
  }

  .admin-header nav {
    width: 100%;
    justify-content: space-between;
  }
}

body {
  background:
    radial-gradient(circle at 18% 0, rgba(157, 255, 0, .18), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(0, 255, 144, .16), transparent 28%),
    linear-gradient(135deg, rgba(36, 70, 0, .46), transparent 38%),
    var(--ink);
}

.site-header.is-scrolled,
.admin-header {
  box-shadow: 0 0 36px rgba(157, 255, 0, .08);
}

.eyebrow {
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(157, 255, 0, .34);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--neon-green) 48%, var(--pink));
  box-shadow: 0 0 24px rgba(157, 255, 0, .28), 0 18px 42px rgba(0, 255, 144, .18);
}

.hero-overlay {
  background:
    linear-gradient(135deg, rgba(157, 255, 0, .2), transparent 38%),
    linear-gradient(90deg, rgba(0, 255, 144, .12), transparent 30%),
    radial-gradient(circle at 76% 52%, rgba(200, 255, 46, .12), transparent 24%);
}

.metric-strip strong,
.feature-card span {
  color: var(--lime);
  text-shadow: 0 0 22px rgba(200, 255, 46, .28);
}

.section-dark {
  background:
    radial-gradient(circle at 15% 12%, rgba(157, 255, 0, .14), transparent 26%),
    linear-gradient(135deg, rgba(36, 70, 0, .22), transparent 44%),
    #030600;
}

.performance {
  background:
    radial-gradient(circle at 82% 16%, rgba(0, 255, 144, .1), transparent 28%),
    linear-gradient(90deg, rgba(0, 255, 144, .14), transparent 36%),
    linear-gradient(180deg, #050805, #020500);
}

.cta-section {
  background:
    repeating-linear-gradient(135deg, rgba(157, 255, 0, .08) 0 1px, transparent 1px 24px),
    linear-gradient(135deg, rgba(36, 70, 0, .62), rgba(0, 255, 144, .2)),
    #030600;
}

.season-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(166, 255, 0, .24), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(0, 255, 144, .12), transparent 28%),
    linear-gradient(180deg, #030600, #020500);
}

.season-layout {
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.season-card,
.scoreboard,
.car-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(157, 255, 0, .11), rgba(0, 255, 144, .08)),
    rgba(255, 255, 255, .045);
  box-shadow: 0 0 34px rgba(157, 255, 0, .08);
}

.season-card {
  min-height: 100%;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 26px;
}

.season-label,
.score-status,
.car-status {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(200, 255, 46, .35);
  border-radius: 4px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(200, 255, 46, .08);
}

.season-card strong {
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 46px;
  line-height: .95;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(157, 255, 0, .32);
}

.season-card p,
.car-card p {
  margin: 0;
  color: var(--muted);
}

.season-stat {
  display: grid;
  gap: 4px;
}

.season-stat span {
  color: var(--cyan);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: .8;
}

.season-stat small {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.scoreboard {
  overflow: hidden;
}

.score-row {
  display: grid;
  grid-template-columns: 66px minmax(120px, 1fr) minmax(120px, 1fr) 100px 132px;
  gap: 14px;
  align-items: center;
  min-height: 66px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(157, 255, 0, .12);
}

.score-row:last-child {
  border-bottom: 0;
}

.score-head {
  min-height: 48px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(157, 255, 0, .08);
}

.score-position,
.score-points {
  color: var(--lime);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 30px;
  font-weight: 700;
}

.score-row strong {
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.cars-section {
  background:
    repeating-linear-gradient(135deg, rgba(157, 255, 0, .06) 0 1px, transparent 1px 24px),
    linear-gradient(135deg, rgba(36, 70, 0, .22), rgba(0, 255, 144, .12)),
    #020500;
}

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

.car-card {
  position: relative;
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
  overflow: hidden;
}

.car-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -34px 20%;
  height: 78px;
  background: linear-gradient(90deg, transparent, rgba(157, 255, 0, .42), transparent);
  transform: skewX(-24deg);
}

.car-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.car-topline strong {
  color: var(--lime);
}

.car-card h3 {
  margin: 0;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 36px;
  line-height: .98;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .season-layout,
  .cars-grid {
    grid-template-columns: 1fr;
  }

  .scoreboard {
    overflow-x: auto;
  }

  .score-row {
    min-width: 760px;
  }
}

@media (max-width: 720px) {
  .score-row {
    min-width: 680px;
    grid-template-columns: 54px 130px 130px 90px 120px;
    padding: 0 14px;
  }

  .season-card strong {
    font-size: 38px;
  }

  .car-card h3 {
    font-size: 31px;
  }
}

:root {
  --ink: #020500;
  --ink-soft: #071006;
  --panel: #0c1609;
  --panel-2: #10240a;
  --green-deep: #244600;
  --neon-green: #7dff00;
  --cyan: #9dff00;
  --pink: #46ff1f;
  --lime: #c6ff00;
  --white: #f7ffe8;
  --muted: #c4d7b2;
  --steel: #aaff2f;
  --teal: #00ff90;
  --red: #baff00;
  --line: rgba(166, 255, 0, .24);
  --shadow: 0 24px 80px rgba(125, 255, 0, .18), 0 22px 60px rgba(0, 0, 0, .55);
}

body {
  background:
    radial-gradient(circle at 18% 0, rgba(157, 255, 0, .22), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(0, 255, 144, .16), transparent 28%),
    linear-gradient(135deg, rgba(36, 70, 0, .46), transparent 38%),
    #020500;
}

.site-header,
.admin-header {
  background: linear-gradient(180deg, rgba(2, 5, 0, .94), rgba(2, 5, 0, .36));
}

.site-header.is-scrolled,
.admin-header {
  background: rgba(2, 5, 0, .95);
  box-shadow: 0 0 36px rgba(157, 255, 0, .12);
}

.brand img {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 0 14px rgba(157, 255, 0, .5));
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(2, 5, 0, .95) 0%, rgba(2, 5, 0, .76) 42%, rgba(2, 5, 0, .35) 76%),
    linear-gradient(0deg, rgba(2, 5, 0, .94), transparent 48%);
}

.hero-overlay {
  background:
    linear-gradient(135deg, rgba(157, 255, 0, .3), transparent 38%),
    linear-gradient(90deg, rgba(0, 255, 144, .2), transparent 30%),
    radial-gradient(circle at 76% 52%, rgba(198, 255, 0, .18), transparent 24%);
}

.hero h1,
.section h2,
.cta-section h2 {
  text-shadow: 0 0 28px rgba(157, 255, 0, .28);
}

.button-primary,
.nav-tool {
  color: #061000 !important;
  background: linear-gradient(135deg, #d7ff00, #75ff00 45%, #00ff90);
  border-color: rgba(215, 255, 0, .65) !important;
  box-shadow: 0 0 22px rgba(157, 255, 0, .34), 0 18px 42px rgba(0, 255, 144, .16);
}

.nav-tool {
  border-radius: 6px;
  margin-left: 4px;
}

.nav-tool-alt {
  background: linear-gradient(135deg, #9dff00, #39ff14);
}

.button-ghost {
  border-color: rgba(157, 255, 0, .5);
  background: rgba(157, 255, 0, .08);
}

.section-dark,
.tools-section,
.season-section,
.cars-section,
.gallery-section {
  background:
    repeating-linear-gradient(135deg, rgba(157, 255, 0, .055) 0 1px, transparent 1px 24px),
    radial-gradient(circle at 14% 10%, rgba(157, 255, 0, .18), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(0, 255, 144, .12), transparent 28%),
    #040800;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.tool-card {
  min-height: 280px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(157, 255, 0, .14), rgba(0, 255, 144, .08)),
    rgba(255, 255, 255, .045);
  box-shadow: 0 0 34px rgba(157, 255, 0, .1);
}

.tool-card span {
  font-family: Rajdhani, Inter, sans-serif;
  color: var(--lime);
  font-size: 38px;
  font-weight: 700;
  line-height: .98;
  text-transform: uppercase;
}

.tool-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.featured-copy,
.feature-card,
.update-card,
.season-card,
.scoreboard,
.car-card,
.timeline div {
  box-shadow: 0 0 30px rgba(157, 255, 0, .07);
}

.tag,
.season-label,
.score-status,
.car-status {
  border-color: rgba(198, 255, 0, .48);
  color: var(--lime);
  background: rgba(198, 255, 0, .09);
}

@media (max-width: 980px) {
  .site-nav .nav-tool {
    margin-left: 0;
  }

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

.site-header {
  min-height: 96px;
  padding: 0 clamp(18px, 3vw, 52px) 0 18px;
  gap: 26px;
  background: #050805;
  border-bottom: 0;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .28);
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 255, 0, .72), transparent);
  opacity: .4;
}

.site-header::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: 0;
  width: 34%;
  height: 28px;
  background: linear-gradient(135deg, rgba(22, 30, 20, .76), rgba(5, 8, 5, .92));
  clip-path: polygon(16% 100%, 100% 0, 100% 100%);
  pointer-events: none;
}

.site-header.is-scrolled {
  min-height: 88px;
  background: rgba(5, 8, 5, .97);
  border-color: transparent;
  backdrop-filter: blur(16px);
}

.site-header .brand {
  position: relative;
  z-index: 2;
  width: clamp(190px, 17vw, 285px);
  flex: 0 0 auto;
}

.site-header .brand img {
  width: 100%;
  height: 78px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 10px rgba(157, 255, 0, .34));
}

.site-header .brand span {
  display: none;
}

.site-header .site-nav {
  position: relative;
  z-index: 2;
  flex: 1;
  justify-content: flex-end;
  gap: clamp(18px, 2.1vw, 40px);
}

.site-header .site-nav a {
  min-height: 96px;
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #fffdf7;
  background: transparent;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: clamp(18px, 1.3vw, 24px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header .site-nav a:hover {
  color: var(--lime);
  background: transparent;
}

.site-header .site-nav .is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 3px;
  background: var(--lime);
  transform: skewX(-22deg);
  box-shadow: 0 0 14px rgba(198, 255, 0, .72);
}

.site-header .nav-more {
  gap: 8px;
}

.site-header .nav-more span {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}

.site-header .nav-download {
  min-height: 52px !important;
  align-self: center;
  padding: 0 24px !important;
  color: #050500 !important;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .28) 0 1px, transparent 1px 6px),
    linear-gradient(135deg, #f4ff22, #c8ff00);
  border: 0 !important;
  box-shadow: 8px 8px 0 rgba(255, 255, 255, .08), 0 0 26px rgba(198, 255, 0, .35);
}

.site-header .nav-download:hover {
  color: #050500;
  filter: brightness(1.08);
}

@media (max-width: 1180px) {
  .site-header .brand {
    width: clamp(156px, 20vw, 220px);
  }

  .site-header .site-nav {
    gap: 18px;
  }

  .site-header .site-nav a {
    font-size: 18px;
  }

  .site-header .nav-download {
    padding: 0 16px !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 78px;
    padding: 10px 16px;
    overflow: visible;
  }

  .site-header::after {
    display: none;
  }

  .site-header::after {
    display: none;
  }

  .site-header .brand {
    width: 170px;
  }

  .site-header .brand img {
    height: 58px;
  }

  .site-header .site-nav {
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    gap: 0;
    justify-content: flex-start;
    background: rgba(5, 8, 5, .98);
  }

  .site-header .site-nav a {
    min-height: 50px;
    justify-content: center;
  }

  .site-header .site-nav .is-active::after {
    bottom: 6px;
    left: 28%;
    right: 28%;
  }

  .site-header .nav-download {
    margin-top: 8px;
  }
}

.site-header {
  background: #050805;
  border-bottom: 1px solid rgba(198, 255, 0, .32);
}

.site-header.is-scrolled {
  background: rgba(5, 8, 5, .97);
}

.site-header::after {
  background: linear-gradient(135deg, rgba(22, 30, 20, .76), rgba(5, 8, 5, .92));
}

.site-header .site-nav {
  gap: clamp(18px, 2vw, 34px);
}

.site-header .site-nav a {
  color: #fffdf7;
}

.site-header .nav-download {
  color: #020500 !important;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .25) 0 1px, transparent 1px 6px),
    linear-gradient(135deg, #d8ff00 0%, #a6ff00 45%, #39ff14 100%);
  box-shadow: 10px 10px 0 rgba(230, 255, 180, .14), 0 0 28px rgba(166, 255, 0, .5);
}

.site-header .nav-download:hover {
  color: #020500 !important;
}

.hp-game-hero {
  background-position: center center;
  min-height: clamp(430px, 74svh, 820px);
}

.hp-game-hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .52) 0%, rgba(0, 0, 0, .3) 42%, rgba(0, 0, 0, .1) 74%),
    linear-gradient(0deg, rgba(0, 0, 0, .86), transparent 44%),
    radial-gradient(circle at 50% 54%, rgba(198, 255, 0, .18), transparent 42%);
}

.hp-game-hero .hero-overlay {
  background:
    radial-gradient(circle at 22% 54%, rgba(198, 255, 0, .22), transparent 28%),
    radial-gradient(circle at 74% 30%, rgba(0, 255, 144, .16), transparent 24%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 7px),
    linear-gradient(90deg, rgba(0, 0, 0, .12), transparent 40%);
}

.site-header .site-nav .nav-download,
.site-header .nav-download {
  min-height: 52px !important;
  padding: 0 28px !important;
  color: #020500 !important;
  background-color: #c8ff00 !important;
  background-image: linear-gradient(135deg, #f4ff22 0%, #c8ff00 52%, #39ff14 100%) !important;
  border: 1px solid rgba(216, 255, 0, .82) !important;
  box-shadow: 10px 10px 0 rgba(230, 255, 180, .16), 0 0 30px rgba(166, 255, 0, .58) !important;
}

.site-header .site-nav .nav-download:hover,
.site-header .nav-download:hover {
  color: #020500 !important;
  background-color: #d8ff00 !important;
  background-image: linear-gradient(135deg, #f8ff4a 0%, #d8ff00 48%, #64ff1a 100%) !important;
}

body {
  font-family: "Barlow Condensed", Rajdhani, Arial, sans-serif;
  font-style: italic;
  font-weight: 600;
}

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

button,
input,
select,
textarea {
  font-family: "Barlow Condensed", Rajdhani, Arial, sans-serif;
}

.hero h1,
.section h2,
.cta-section h2,
.admin-title h1,
.login-card h1,
.featured-copy h3,
.update-card h3,
.tool-card span,
.season-card strong,
.score-row strong,
.score-position,
.score-points,
.car-card h3,
.site-header .site-nav a,
.button,
.metric-strip strong,
.panel-heading h2 {
  font-family: "Barlow Condensed", Rajdhani, Arial, sans-serif;
  font-style: italic;
  font-weight: 800;
}

.hero h1,
.section h2,
.cta-section h2 {
  letter-spacing: .02em;
}

.tools-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tool-card {
  min-height: 250px;
}

.tool-card span {
  font-size: clamp(30px, 3vw, 42px);
}

.team-score-section {
  background:
    linear-gradient(180deg, #020500, #050805),
    radial-gradient(circle at 82% 12%, rgba(198, 255, 0, .14), transparent 28%);
}

.team-score-frame {
  margin: 0;
  border: 1px solid rgba(198, 255, 0, .42);
  border-radius: 8px;
  padding: clamp(8px, 1.5vw, 18px);
  background:
    linear-gradient(135deg, rgba(198, 255, 0, .08), transparent 34%),
    #020500;
  box-shadow: 0 0 38px rgba(166, 255, 0, .12);
}

.team-score-frame img {
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  border-radius: 4px;
  background: #020500;
}

.car-gallery-section {
  background:
    repeating-linear-gradient(135deg, rgba(198, 255, 0, .06) 0 1px, transparent 1px 22px),
    linear-gradient(135deg, rgba(36, 70, 0, .32), rgba(0, 0, 0, .82)),
    #020500;
}

.carousel-shell {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  gap: 18px;
  align-items: center;
}

.car-image-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(300px, 34vw, 520px);
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--lime) #050805;
  padding: 16px 18px 24px;
  border: 1px solid rgba(198, 255, 0, .2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(198, 255, 0, .08), rgba(0, 255, 144, .03)),
    rgba(2, 5, 0, .78);
}

.car-image-slide {
  aspect-ratio: 1 / 1;
  margin: 0;
  border: 1px solid rgba(198, 255, 0, .42);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(198, 255, 0, .12), transparent 56%),
    #020500;
  scroll-snap-align: start;
  box-shadow: 0 0 34px rgba(166, 255, 0, .18);
}

.car-image-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.image-manager-card img,
.square-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-control {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 92px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(198, 255, 0, .5);
  border-radius: 6px;
  color: #020500;
  background: linear-gradient(135deg, #f4ff22, #8eff00);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(166, 255, 0, .28);
}

.car-image-carousel::-webkit-scrollbar {
  height: 12px;
}

.car-image-carousel::-webkit-scrollbar-track {
  background: #050805;
}

.car-image-carousel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, #c8ff00, #39ff14);
  box-shadow: 0 0 16px rgba(198, 255, 0, .42);
}

.admin-extra-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
  gap: 20px;
  margin-top: 20px;
}

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

.panel-heading h2 {
  margin: 0;
  font-size: 36px;
  line-height: .95;
  text-transform: uppercase;
}

.panel-heading span {
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
}

.compact-form {
  margin-bottom: 18px;
}

.square-preview {
  aspect-ratio: 1 / 1;
  width: min(220px, 100%);
  border: 1px dashed rgba(198, 255, 0, .42);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
}

.team-score-preview img {
  max-height: 340px;
  object-fit: contain;
  background: #020500;
}

.image-manager-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(116px, 1fr));
  gap: 12px;
}

.image-manager-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #050805;
}

.image-manager-card form {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
}

.image-manager-card button {
  width: 100%;
  min-height: 34px;
  border: 0;
  border-radius: 4px;
  color: #020500;
  background: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  min-width: min(460px, 100%);
}

.hero-actions .button,
.cta-actions .button {
  white-space: nowrap;
}

[data-install-app][hidden] {
  display: none !important;
}

.floating-install-button {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(230, 255, 70, .92);
  border-radius: 8px;
  padding: 0 18px;
  color: #020500;
  background:
    linear-gradient(135deg, #f2ff2e 0%, #c8ff00 48%, #39ff14 100%);
  box-shadow:
    0 0 0 1px rgba(200, 255, 0, .22),
    0 16px 38px rgba(157, 255, 0, .32),
    8px 8px 0 rgba(255, 255, 255, .14);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transform: skewX(-8deg);
}

.floating-install-button > span {
  transform: skewX(8deg);
}

.floating-install-button:hover,
.floating-install-button:focus-visible {
  outline: 0;
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(200, 255, 0, .45),
    0 0 32px rgba(157, 255, 0, .48),
    8px 8px 0 rgba(255, 255, 255, .18);
}

.floating-install-icon {
  position: relative;
  width: 22px;
  height: 22px;
  border: 2px solid #020500;
  border-top: 0;
}

.floating-install-icon::before,
.floating-install-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  background: #020500;
  transform: translateX(-50%);
}

.floating-install-icon::before {
  top: 0;
  width: 3px;
  height: 14px;
}

.floating-install-icon::after {
  top: 9px;
  width: 10px;
  height: 10px;
  border-right: 3px solid #020500;
  border-bottom: 3px solid #020500;
  background: transparent;
  transform: translateX(-50%) rotate(45deg);
}

@media (max-width: 640px) {
  .floating-install-button {
    right: 14px;
    left: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    min-height: 54px;
    font-size: 17px;
  }
}

@media (max-width: 1420px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    min-height: 62px;
    padding: 8px 10px 8px 16px;
    overflow: visible;
    gap: 10px;
  }

  .site-header .brand {
    width: 118px;
    margin-right: auto;
  }

  .site-header .brand img {
    height: 48px;
  }

  .mobile-install-button {
    min-width: 116px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    padding: 0 18px;
    color: #050500;
    background:
      radial-gradient(circle, rgba(255, 255, 255, .32) 0 1px, transparent 1px 6px),
      linear-gradient(135deg, #ffe926 0%, #d8ff00 58%, #b6ff00 100%);
    box-shadow: 8px 8px 0 rgba(230, 255, 180, .14), 0 0 24px rgba(198, 255, 0, .28);
    font-family: "Barlow Condensed", Rajdhani, Arial, sans-serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
  }

  .floating-install-button {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 5;
    display: inline-flex;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    margin-left: 0;
    gap: 5px;
    border: 0;
    border-radius: 0;
    color: #fff;
    background: #07080c;
    box-shadow: 6px 6px 0 rgba(230, 255, 180, .1);
  }

  .site-header .site-nav {
    position: absolute;
    z-index: 4;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    max-height: calc(100vh - 62px);
    display: none !important;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 10px 16px 18px;
    border-top: 1px solid rgba(198, 255, 0, .32);
    background: rgba(5, 8, 5, .99);
    overflow-y: auto;
    box-shadow: 0 26px 60px rgba(0, 0, 0, .6);
  }

  .site-header .site-nav.is-open {
    display: flex !important;
  }

  .site-header .site-nav a {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    padding: 0 14px;
    border: 1px solid rgba(198, 255, 0, .12);
    color: #fffdf7;
    font-size: 21px;
    background: rgba(255, 255, 255, .035);
  }

  .site-header .site-nav .is-active::after {
    left: 14px;
    right: auto;
    bottom: 5px;
    width: 92px;
  }

  .site-header .nav-download {
    width: 100%;
    min-height: 50px !important;
    justify-content: center !important;
    margin-top: 6px;
  }
}

@media (min-width: 1421px) {
  .site-header {
    padding-right: clamp(16px, 2vw, 34px);
    gap: clamp(12px, 1.5vw, 22px);
  }

  .site-header .brand {
    width: clamp(128px, 11vw, 178px);
  }

  .site-header .site-nav {
    gap: clamp(12px, 1.08vw, 22px);
    min-width: 0;
  }

  .site-header .site-nav a {
    font-size: clamp(16px, 1.05vw, 20px);
  }

  .site-header .site-nav .nav-download,
  .site-header .nav-download {
    min-height: 48px !important;
    max-width: 245px;
    padding: 0 clamp(14px, 1.35vw, 22px) !important;
    font-size: clamp(16px, 1.08vw, 20px);
    text-align: center;
    white-space: normal;
    line-height: .95;
    box-shadow: 8px 8px 0 rgba(230, 255, 180, .12), 0 0 24px rgba(166, 255, 0, .42) !important;
  }
}

@media (max-width: 1320px) {
  .site-header .brand {
    width: clamp(126px, 13vw, 180px);
  }

  .site-header .site-nav {
    gap: clamp(12px, 1.15vw, 20px);
  }

  .site-header .site-nav a {
    font-size: clamp(16px, 1.2vw, 20px);
  }

  .site-header .nav-download {
    padding: 0 18px !important;
  }
}

@media (max-width: 1180px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    min-height: 62px;
    padding: 8px 10px 8px 16px;
    overflow: visible;
    gap: 10px;
  }

  .site-header .brand {
    width: 118px;
    margin-right: auto;
  }

  .site-header .brand img {
    height: 48px;
  }

  .mobile-install-button {
    min-width: 116px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    padding: 0 18px;
    color: #050500;
    background:
      radial-gradient(circle, rgba(255, 255, 255, .32) 0 1px, transparent 1px 6px),
      linear-gradient(135deg, #ffe926 0%, #d8ff00 58%, #b6ff00 100%);
    box-shadow: 8px 8px 0 rgba(230, 255, 180, .14), 0 0 24px rgba(198, 255, 0, .28);
    font-family: "Barlow Condensed", Rajdhani, Arial, sans-serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
  }

  .floating-install-button {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 5;
    display: inline-flex;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    margin-left: 0;
    gap: 5px;
    border: 0;
    border-radius: 0;
    color: #fff;
    background: #07080c;
    box-shadow: 6px 6px 0 rgba(230, 255, 180, .1);
  }

  .menu-toggle::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 10px;
    width: 10px;
    height: 3px;
    background: var(--lime);
    transform: skewX(-24deg);
    box-shadow: 0 0 10px rgba(198, 255, 0, .72);
  }

  .menu-toggle.is-open::before {
    opacity: 0;
  }

  .menu-toggle span {
    width: 24px;
    height: 4px;
    background: #fff;
  }

  .menu-toggle span:nth-child(1) {
    width: 18px;
    margin-left: 6px;
  }

  .menu-toggle.is-open span:nth-child(1) {
    width: 24px;
    margin-left: 0;
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .site-header .site-nav {
    position: absolute;
    z-index: 4;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    max-height: calc(100vh - 62px);
    display: none !important;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 10px 16px 18px;
    border-top: 1px solid rgba(198, 255, 0, .32);
    background: rgba(5, 8, 5, .99);
    overflow-y: auto;
    box-shadow: 0 26px 60px rgba(0, 0, 0, .6);
  }

  .site-header .site-nav.is-open {
    display: flex !important;
  }

  .site-header .site-nav a {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    padding: 0 14px;
    border: 1px solid rgba(198, 255, 0, .12);
    color: #fffdf7;
    font-size: 21px;
    background: rgba(255, 255, 255, .035);
  }

  .site-header .site-nav .is-active::after {
    left: 14px;
    right: auto;
    bottom: 5px;
    width: 92px;
  }

  .site-header .nav-download {
    width: 100%;
    min-height: 50px !important;
    justify-content: center !important;
    margin-top: 6px;
  }

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

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

  .car-image-carousel {
    grid-auto-columns: minmax(280px, 52vw);
  }
}

@media (max-width: 720px) {
  .hp-game-hero {
    min-height: 52svh;
    background-position: 56% center;
  }

  .hero-nexus-motion::before {
    width: 38%;
    animation-duration: 7.4s;
  }

  .nexus-corner {
    width: 44vw;
    height: 18vw;
  }

  .nexus-ring-a {
    top: 24%;
    right: 16%;
  }

  .nexus-data {
    display: none;
  }

  .youtube-feature-card {
    grid-template-columns: 1fr;
    min-height: 0;
    justify-items: start;
  }

  .youtube-feature-action {
    width: 100%;
  }

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

  .cta-actions {
    width: 100%;
    justify-content: flex-start;
  }

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

  .carousel-shell {
    grid-template-columns: 1fr;
  }

  .carousel-control {
    display: none;
  }

  .car-image-carousel {
    grid-auto-columns: 86vw;
    padding-inline: 14px;
    scroll-padding-inline: 14px;
  }

  .gallery-grid figure {
    min-height: 250px;
  }

  .team-score-frame {
    margin-inline: -8px;
  }

  .panel-heading {
    display: grid;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-inline: 8px;
    gap: 8px;
  }

  .site-header .brand {
    width: 88px;
  }

  .site-header .brand img {
    height: 42px;
  }

  .mobile-install-button {
    min-width: 108px;
    min-height: 46px;
    padding-inline: 14px;
    font-size: 21px;
  }
}

.tools-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.tool-card {
  min-width: 0;
}

@media (max-width: 1180px) {
  .tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

.featured-update,
.update-card {
  color: inherit;
  text-decoration: none;
}

.featured-update {
  position: relative;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .78fr);
  min-height: 420px;
  border-color: rgba(198, 255, 0, .34);
  background:
    linear-gradient(135deg, rgba(198, 255, 0, .08), transparent 42%),
    rgba(4, 8, 0, .9);
  box-shadow: 0 0 38px rgba(166, 255, 0, .08);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.featured-update:hover,
.update-card:hover {
  border-color: rgba(198, 255, 0, .68);
  box-shadow: 0 0 38px rgba(166, 255, 0, .16);
}

.featured-media {
  min-height: 420px;
  background: #020500;
}

.featured-media img {
  object-position: center;
  filter: saturate(1.08) contrast(1.08);
}

.featured-copy {
  position: relative;
  gap: 12px;
  padding: clamp(26px, 3.4vw, 54px);
  background:
    linear-gradient(90deg, rgba(2, 5, 0, .18), rgba(16, 36, 10, .98) 18%),
    rgba(16, 36, 10, .96);
}

.featured-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -44px;
  width: 88px;
  background: linear-gradient(90deg, transparent, rgba(16, 36, 10, .96) 48%, rgba(16, 36, 10, .98));
  transform: skewX(-10deg);
  pointer-events: none;
}

.featured-copy > * {
  position: relative;
  z-index: 1;
}

.read-more {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  padding: 0 14px;
  color: #020500;
  background: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
  transform: skewX(-12deg);
}

.read-more::after {
  content: ">";
  margin-left: 10px;
}

.update-card {
  display: block;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.update-card:hover {
  transform: translateY(-3px);
}

.article-body {
  min-height: 100vh;
  background: #020500;
}

.article-page {
  position: relative;
  min-height: 100vh;
  padding: clamp(28px, 5vw, 52px);
  isolation: isolate;
  overflow: hidden;
}

.article-backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(2, 5, 0, .36), #020500 58%),
    var(--article-image) center top / cover no-repeat;
  filter: saturate(1.15) contrast(1.05);
}

.article-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 5, 0, .58), #020500 72%),
    radial-gradient(circle at 88% 24%, rgba(198, 255, 0, .12), transparent 30%);
  backdrop-filter: blur(2px);
}

.article-shell {
  position: relative;
  width: min(1480px, 100%);
  min-height: calc(100vh - clamp(56px, 10vw, 104px));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  padding: clamp(84px, 10vw, 170px) clamp(20px, 7vw, 120px) clamp(48px, 6vw, 90px);
  background:
    linear-gradient(180deg, rgba(5, 6, 14, .96), rgba(2, 5, 0, .98)),
    #050805;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .58);
}

.article-back {
  position: absolute;
  left: 0;
  top: 0;
  width: 128px;
  height: 72px;
  display: grid;
  place-items: center;
  background: #f7ffe8;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  z-index: 3;
}

.article-back span {
  width: 22px;
  height: 22px;
  border-left: 6px solid #020500;
  border-bottom: 6px solid #020500;
  transform: rotate(45deg);
}

.article-hero {
  display: grid;
  justify-items: center;
  gap: 28px;
  text-align: center;
}

.article-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #fffdf7;
  font-family: "Barlow Condensed", Rajdhani, Arial, sans-serif;
  font-size: clamp(44px, 6vw, 82px);
  font-style: italic;
  font-weight: 900;
  line-height: .92;
  text-transform: uppercase;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fffdf7;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 800;
}

.article-tag {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: #020500;
  background: var(--lime);
  text-transform: uppercase;
  transform: skewX(-14deg);
}

.article-media {
  width: min(980px, 100%);
  margin: clamp(34px, 5vw, 72px) auto 0;
  background: #020500;
  overflow: hidden;
}

.article-media img {
  width: 100%;
  max-height: 660px;
  object-fit: cover;
}

.article-content {
  width: min(900px, 100%);
  margin: clamp(34px, 5vw, 66px) auto 0;
  color: rgba(247, 255, 232, .9);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.45;
}

.article-content p {
  margin: 0 0 22px;
}

.article-lead {
  color: #fffdf7;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 800;
}

@media (max-width: 980px) {
  .featured-update {
    grid-template-columns: 1fr;
  }

  .featured-copy::before {
    display: none;
  }

  .featured-media {
    min-height: 280px;
  }

  .article-page {
    padding: 0;
  }

  .article-shell {
    min-height: 100vh;
    border-radius: 0;
    padding-top: 116px;
  }
}
