/* Unique Live Wallpaper — "Cinematic Command Center" design system */

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #04070a;
  --surface: rgba(155, 232, 255, 0.045);
  --surface-strong: rgba(155, 232, 255, 0.08);
  --line: rgba(155, 232, 255, 0.14);
  --line-soft: rgba(155, 232, 255, 0.08);
  --text: #eef6f9;
  --muted: #8fa1ab;
  --hud: #9be8ff;
  --hud-dim: rgba(155, 232, 255, 0.35);
  --hud-glow: rgba(155, 232, 255, 0.12);
  --signal: #ffb35c;
  --signal-dim: rgba(255, 179, 92, 0.3);
  --ok: #7cf2b8;
  --danger: #ff8f7d;
  /* legacy aliases: admin sections keep resolving */
  --accent: var(--hud);
  --violet: var(--hud);
  --green: var(--ok);
  --radius: 4px;
  --radius-lg: 10px;
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;
  --track-label: .18em;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -20%, rgba(155, 232, 255, 0.07), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: rgba(155, 232, 255, .28); color: #fff; }
:focus-visible { outline: 1px solid var(--hud); outline-offset: 2px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* ambient: static scanline field + vignette (replaces blur orbs) */
.ambient {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(155, 232, 255, .013) 0 1px, transparent 1px 3px),
    radial-gradient(ellipse at 50% 130%, transparent 45%, rgba(0, 0, 0, .42));
}
.ambient-a, .ambient-b { display: none; }
.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1480px;
  margin: 0 auto;
  padding: 18px 34px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(4, 7, 10, .78);
  backdrop-filter: saturate(140%) blur(20px);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: -5px;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 18px);
  opacity: .55;
  pointer-events: none;
}
.nav-search {
  position: relative;
  width: min(28vw, 360px);
  margin-left: auto;
}
.nav-search input {
  width: 100%;
  height: 40px;
  padding: 0 43px 0 15px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  outline: none;
  background: rgba(155, 232, 255, .035);
  color: white;
  font-family: var(--font-mono);
  font-size: 11px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.nav-search input:focus {
  border-color: rgba(155, 232, 255, .45);
  background: rgba(155, 232, 255, .06);
  box-shadow: 0 0 0 4px rgba(155, 232, 255, .07);
}
.nav-search input::placeholder { color: #5f7078; }
.nav-search button {
  position: absolute;
  top: 0;
  right: 4px;
  width: 38px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--hud-dim);
  cursor: pointer;
  font-size: 19px;
  transition: color .2s;
}
.nav-search button:hover { color: var(--hud); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-size: 15px; font-weight: 500; letter-spacing: -.01em; }
.brand-logo {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(155, 232, 255, .22));
}
.site-header nav { display: flex; align-items: center; gap: 18px; margin-left: 24px; color: #a9bcc6; font-size: 13px; white-space: nowrap; }
.site-header nav a { transition: color .2s ease; }
.site-header nav a:hover { color: white; }
.site-header nav .admin-render-heartbeat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 190px;
  padding: 6px 10px 6px 8px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgba(155, 232, 255, .03);
  color: #c3d4dc;
}
.admin-render-heartbeat > i {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5f7078;
}
.admin-render-heartbeat > span { min-width: 0; }
.admin-render-heartbeat strong, .admin-render-heartbeat small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-render-heartbeat strong { color: #d7e4ea; font-size: 9px; font-weight: 750; }
.admin-render-heartbeat small { margin-top: 2px; color: #64757e; font-size: 7px; font-weight: 600; }
.admin-render-heartbeat time { color: #8b9ca5; font: inherit; }
.admin-render-heartbeat.idle > i { background: var(--ok); box-shadow: 0 0 10px rgba(124, 242, 184, .65); }
.admin-render-heartbeat.rendering { border-color: rgba(155, 232, 255, .3); background: rgba(155, 232, 255, .07); }
.admin-render-heartbeat.rendering > i {
  background: var(--hud);
  box-shadow: 0 0 12px rgba(155, 232, 255, .8);
  animation: heartbeat-pulse 1.35s ease-in-out infinite;
}
.admin-render-heartbeat.offline > i { background: var(--danger); box-shadow: 0 0 10px rgba(255, 143, 125, .5); }
@keyframes heartbeat-pulse {
  0%, 100% { opacity: .55; transform: scale(.82); }
  50% { opacity: 1; transform: scale(1.16); }
}
.nav-release-links {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgba(155, 232, 255, .025);
}
.nav-release-links a {
  padding: 7px 10px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-release-links a:hover { background: rgba(155, 232, 255, .08); }
.site-header .nav-account {
  padding: 10px 16px;
  border: 1px solid var(--signal-dim);
  border-radius: var(--radius);
  color: var(--signal);
  background: rgba(255, 179, 92, .06);
  transition: border-color .2s, background .2s;
}
.site-header .nav-account:hover { border-color: rgba(255, 179, 92, .55); background: rgba(255, 179, 92, .11); color: var(--signal); }
main { overflow: clip; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  min-height: 760px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 90px 56px 110px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--hud);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 24px;
  height: 9px;
  background: repeating-linear-gradient(90deg, var(--hud-dim) 0 1px, transparent 1px 5px);
}
.hero h1, .pricing-hero h1, .listing-hero h1, .legal-hero h1, .auth-copy h1, .not-found h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 120px);
  line-height: .92;
  letter-spacing: -.04em;
  font-weight: 700;
}
.hero h1 em {
  color: transparent;
  background: linear-gradient(105deg, #fff 8%, var(--hud) 55%, #d9f5ff 90%);
  background-clip: text;
  font-style: normal;
}
.hero-copy > p {
  max-width: 650px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  letter-spacing: -.01em;
}
.hero-actions { display: flex; gap: 12px; margin-top: 38px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -.01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: #f2f7f9; color: #06090c; box-shadow: 0 10px 35px rgba(155, 232, 255, .12); }
.button-light:hover { background: white; }
.button-ghost { border-color: var(--line); background: rgba(155, 232, 255, .04); color: white; }
.button-ghost:hover { border-color: var(--hud-dim); background: rgba(155, 232, 255, .08); box-shadow: 0 0 24px rgba(155, 232, 255, .08); }

/* ── hero radar scope ───────────────────────────────────────────── */
.hero-orbit {
  position: relative;
  width: min(39vw, 540px);
  aspect-ratio: 1;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(155, 232, 255, .07), rgba(155, 232, 255, .02) 38%, transparent 62%);
  box-shadow: inset 0 0 90px rgba(155, 232, 255, .06), 0 0 120px rgba(155, 232, 255, .05);
}
.scope-rings { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; }
.scope-rings .ring { fill: none; stroke: rgba(155, 232, 255, .16); }
.scope-rings .ring-dash { stroke-dasharray: 3 8; stroke: rgba(155, 232, 255, .22); }
.scope-rings .axis { stroke: rgba(155, 232, 255, .09); }
.scope-rings .tick { stroke: rgba(155, 232, 255, .34); }
.scope-sweep {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(155, 232, 255, .22), rgba(155, 232, 255, .06) 11%, transparent 19%);
  animation: scope-rotate 9s linear infinite;
  will-change: transform;
  pointer-events: none;
}
@keyframes scope-rotate { to { transform: rotate(360deg); } }
.orbit-core {
  position: absolute;
  z-index: 4;
  inset: 34%;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(var(--hud-dim) 0 0) top center / 1px 12px,
    linear-gradient(var(--hud-dim) 0 0) bottom center / 1px 12px,
    linear-gradient(var(--hud-dim) 0 0) left center / 12px 1px,
    linear-gradient(var(--hud-dim) 0 0) right center / 12px 1px,
    rgba(4, 7, 10, .58);
  background-repeat: no-repeat;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 40px rgba(155, 232, 255, .06);
}
.orbit-core span { font-family: var(--font-display); font-size: clamp(40px, 5vw, 74px); font-weight: 700; letter-spacing: -.04em; }
.orbit-core small { color: var(--hud); font-family: var(--font-mono); font-size: 9px; font-weight: 500; letter-spacing: .3em; }
.orbit-label {
  position: absolute;
  z-index: 6;
  padding: 7px 10px;
  border: 1px solid var(--hud-dim);
  border-radius: 3px;
  background: rgba(4, 7, 10, .72);
  color: var(--hud);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .2em;
  backdrop-filter: blur(10px);
}
.orbit-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -17px;
  width: 15px;
  height: 1px;
  background: var(--hud-dim);
}
.hero-motion-wrap {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}
.hero-motion-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(155, 232, 255, .18);
  border-radius: 6px;
  background: #060b10;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .5);
}
.hero-motion-clip::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 6px;
  background:
    linear-gradient(var(--hud) 0 0) top left / 12px 1px,
    linear-gradient(var(--hud) 0 0) top left / 1px 12px,
    linear-gradient(var(--hud) 0 0) top right / 12px 1px,
    linear-gradient(var(--hud) 0 0) top right / 1px 12px,
    linear-gradient(var(--hud) 0 0) bottom left / 12px 1px,
    linear-gradient(var(--hud) 0 0) bottom left / 1px 12px,
    linear-gradient(var(--hud) 0 0) bottom right / 12px 1px,
    linear-gradient(var(--hud) 0 0) bottom right / 1px 12px;
  background-repeat: no-repeat;
  opacity: .7;
  pointer-events: none;
}
.hero-motion-clip video,
.hero-motion-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-motion-clip video {
  opacity: .85;
  filter: saturate(1.12) contrast(1.06);
}
.hero-motion-fallback {
  background:
    repeating-linear-gradient(0deg, rgba(155, 232, 255, .05) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 50% 42%, rgba(155, 232, 255, .15), #060b10 74%);
}
.hero-motion-fallback::after {
  content: "SIGNAL · STANDBY";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--hud-dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .24em;
  white-space: nowrap;
  animation: standby-blink 2.4s steps(2, jump-none) infinite;
}
@keyframes standby-blink { 0% { opacity: 1; } 100% { opacity: .25; } }
.hero-motion-a {
  top: 2%;
  left: -10%;
  width: 64%;
  aspect-ratio: 1.6;
  animation: hero-drift-a 14s ease-in-out infinite alternate;
}
.hero-motion-b {
  top: 21%;
  right: -13%;
  width: 58%;
  aspect-ratio: 1.5;
  animation: hero-drift-b 16s ease-in-out infinite alternate;
}
.hero-motion-c {
  bottom: 0;
  left: 3%;
  width: 66%;
  aspect-ratio: 1.7;
  animation: hero-drift-c 15s ease-in-out infinite alternate;
}
.hero-motion-wrap .label-a { top: -11px; left: 12px; }
.hero-motion-wrap .label-b { top: -11px; right: 8px; }
.hero-motion-wrap .label-c { bottom: -11px; left: 16px; }
@keyframes hero-drift-a {
  from { transform: translate3d(-1.5%, 1%, 0); }
  to { transform: translate3d(2%, -1.5%, 0); }
}
@keyframes hero-drift-b {
  from { transform: translate3d(1.5%, -1.5%, 0); }
  to { transform: translate3d(-2%, 2%, 0); }
}
@keyframes hero-drift-c {
  from { transform: translate3d(-1.5%, 1.5%, 0); }
  to { transform: translate3d(2%, -1%, 0); }
}
/* hero load orchestration */
@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.hero-copy > * { animation: rise-in .7s cubic-bezier(.2, .7, .2, 1) both; }
.hero-copy > *:nth-child(2) { animation-delay: .08s; }
.hero-copy > *:nth-child(3) { animation-delay: .16s; }
.hero-copy > *:nth-child(4) { animation-delay: .24s; }
.hero-orbit { animation: rise-in .9s cubic-bezier(.2, .7, .2, 1) .14s both; }

.membership-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 1fr) auto auto auto;
  align-items: center;
  gap: 34px;
  max-width: 1400px;
  margin: 0 auto 110px;
  padding: 32px 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(115deg, rgba(155, 232, 255, .07), rgba(155, 232, 255, .02) 55%, transparent);
  box-shadow: var(--shadow), inset 0 1px rgba(155, 232, 255, .09);
  backdrop-filter: blur(20px);
}
.membership-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 14px);
  opacity: .8;
}
.membership-strip .eyebrow { margin-bottom: 8px; }
.membership-strip h2 { margin: 0; font-family: var(--font-display); font-size: 24px; font-weight: 500; letter-spacing: -.02em; }
.membership-strip p { margin: 7px 0 0; color: var(--muted); font-size: 14px; }
.strip-price { display: flex; align-items: baseline; gap: 6px; white-space: nowrap; }
.strip-price strong { color: var(--signal); font-family: var(--font-display); font-size: 30px; font-weight: 700; letter-spacing: -.03em; }
.strip-price span { color: var(--muted); font-family: var(--font-mono); font-size: 10px; }
.strip-price.annual { padding-left: 30px; border-left: 1px solid var(--line); }
.catalog-section { max-width: 1400px; margin: 0 auto; padding: 0 36px 120px; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 35px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.section-heading .eyebrow { margin-bottom: 10px; }
.section-heading h2 { max-width: 750px; margin: 0; font-family: var(--font-display); font-size: clamp(34px, 4.6vw, 60px); font-weight: 700; line-height: .98; letter-spacing: -.03em; }
.section-link { color: #c3d4dc; font-family: var(--font-mono); font-size: 12px; white-space: nowrap; }
.section-link span { margin-left: 8px; color: var(--hud); }
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 16px; }
.video-card { min-width: 0; }
.card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10.5;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: #0a0f14;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .3);
  transition: border-color .25s ease;
}
.video-card:is(:hover, :focus-within) .card-media { border-color: var(--hud-dim); }
.card-media img, .card-media video, .empty-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-media img { transition: transform .7s cubic-bezier(.2, .7, .2, 1), opacity .25s ease; }
.card-media video { z-index: 1; opacity: 0; transition: opacity .3s ease; }
.card-media.is-playing video { opacity: 1; }
.card-media:hover img { transform: scale(1.035); }
/* targeting corners on hover/focus */
.card-media::after {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 10px;
  background:
    linear-gradient(var(--hud) 0 0) top left / 15px 1px,
    linear-gradient(var(--hud) 0 0) top left / 1px 15px,
    linear-gradient(var(--hud) 0 0) top right / 15px 1px,
    linear-gradient(var(--hud) 0 0) top right / 1px 15px,
    linear-gradient(var(--hud) 0 0) bottom left / 15px 1px,
    linear-gradient(var(--hud) 0 0) bottom left / 1px 15px,
    linear-gradient(var(--hud) 0 0) bottom right / 15px 1px,
    linear-gradient(var(--hud) 0 0) bottom right / 1px 15px;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity .25s ease, transform .35s cubic-bezier(.2, .7, .2, 1);
  pointer-events: none;
}
.video-card:is(:hover, :focus-within) .card-media::after { opacity: 1; transform: scale(1); }
.empty-thumb {
  background:
    repeating-linear-gradient(0deg, rgba(155, 232, 255, .04) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 30% 20%, rgba(155, 232, 255, .12), #0a0f14 68%);
}
.card-gradient { position: absolute; z-index: 2; inset: auto 0 0; height: 43%; background: linear-gradient(transparent, rgba(0, 0, 0, .5)); pointer-events: none; }
.format-chip, .loop-chip, .alpha-chip {
  position: absolute;
  z-index: 3;
  top: 12px;
  padding: 6px 8px;
  border: 1px solid rgba(155, 232, 255, .2);
  border-radius: 3px;
  background: rgba(4, 7, 10, .72);
  color: #d9ecf3;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .12em;
  backdrop-filter: blur(10px);
}
.format-chip { left: 12px; }
.loop-chip, .alpha-chip { right: 12px; display: flex; align-items: center; gap: 6px; }
.loop-chip i, .alpha-chip i, .detail-badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 10px var(--ok); }
.alpha-chip { color: #d9f5ff; border-color: var(--hud-dim); background: rgba(10, 30, 40, .78); }
.alpha-chip i { background: var(--hud); box-shadow: 0 0 12px var(--hud); }
.card-copy { display: flex; align-items: start; justify-content: space-between; gap: 12px; padding: 15px 4px 0; }
.card-copy > div { flex: 1 1 auto; min-width: 0; }
.card-copy h3 { overflow: hidden; max-width: 100%; margin: 0; font-size: 15px; font-weight: 620; letter-spacing: -.02em; white-space: nowrap; text-overflow: ellipsis; }
.card-copy h3 a { display: block; overflow: hidden; max-width: 100%; white-space: nowrap; text-overflow: ellipsis; }
.card-copy p { margin: 7px 0 0; color: #74858f; font-family: var(--font-mono); font-size: 10px; letter-spacing: .04em; }
.card-filename {
  display: block;
  overflow: hidden;
  max-width: 245px;
  margin-top: 7px;
  color: #566670;
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.round-link {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #a9bcc6;
  font-size: 12px;
  transition: border-color .2s, color .2s, background .2s;
}
.round-link:hover { border-color: var(--hud-dim); color: var(--hud); background: rgba(155, 232, 255, .06); }
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1400px;
  margin: 0 auto 140px;
  padding: 0 36px;
}
.feature-row article { padding: 44px 45px; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.feature-row article + article { border-left: 1px solid var(--line-soft); }
.feature-row span { color: var(--hud); font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; }
.feature-row h3 { margin: 32px 0 12px; font-family: var(--font-display); font-size: 20px; font-weight: 500; letter-spacing: -.02em; }
.feature-row p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.listing-hero, .account-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 36px 70px;
}
.listing-hero h1 { font-size: clamp(56px, 8.5vw, 110px); }
.listing-hero p { margin: 22px 0 0; color: var(--muted); font-size: 17px; }
.filter-pills { display: flex; gap: 4px; padding: 4px; border: 1px solid var(--line-soft); border-radius: 6px; background: rgba(155, 232, 255, .025); }
.filter-pills a { padding: 10px 15px; border-radius: 4px; color: var(--muted); font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; transition: color .2s, background .2s; }
.filter-pills a:hover { color: white; }
.filter-pills a.active { background: var(--surface-strong); color: white; box-shadow: inset 0 -2px var(--hud); }
.library-hero { align-items: end; }
.library-tools { display: grid; justify-items: end; gap: 18px; width: min(100%, 520px); }
.library-search { width: 100%; }
.library-search > label {
  display: block;
  margin-bottom: 9px;
  color: var(--hud);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
}
.library-search > div { display: flex; gap: 8px; }
.library-search input {
  min-width: 0;
  flex: 1;
  height: 52px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
  background: rgba(155, 232, 255, .035);
  color: white;
  font-family: var(--font-mono);
  font-size: 13px;
}
.library-search input:focus {
  border-color: rgba(155, 232, 255, .52);
  box-shadow: 0 0 0 4px rgba(155, 232, 255, .07);
}
.listing-hero + .membership-strip { margin-bottom: 75px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 60px; }
.pagination a { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: var(--radius); color: var(--muted); font-family: var(--font-mono); font-size: 12px; transition: border-color .2s, color .2s; }
.pagination a:hover { border-color: var(--hud-dim); color: white; }
.pagination a.active { border-color: var(--hud); background: rgba(155, 232, 255, .1); color: white; }
.infinite-controls { position: relative; display: grid; justify-items: center; gap: 12px; min-height: 90px; padding-top: 34px; }
.infinite-load-button { min-width: 190px; }
.infinite-load-button:disabled { cursor: wait; opacity: .55; }
.infinite-status { min-height: 18px; color: #6b7c86; font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em; }
.infinite-sentinel { position: absolute; bottom: 0; width: 1px; height: 1px; }
.release-tabs { display: flex; align-self: end; gap: 4px; padding: 4px; padding-bottom: 4px; border: 1px solid var(--line-soft); border-radius: 6px; background: rgba(155, 232, 255, .025); }
.release-tabs a { padding: 11px 15px; border-radius: 4px; color: var(--muted); font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; transition: color .2s, background .2s; }
.release-tabs a:hover { color: white; }
.release-tabs a.active { background: var(--surface-strong); color: white; box-shadow: inset 0 -2px var(--hud); }
.release-hero > div:first-child { min-width: 0; }
.daily-feed-hero { align-items: center; }
.daily-feed-copy { min-width: 0; }
.daily-feed-copy h1 { font-family: var(--font-display); font-size: clamp(64px, 10vw, 132px); font-weight: 700; letter-spacing: -.04em; line-height: .92; }
.daily-feed-copy h1 time {
  color: transparent;
  background: linear-gradient(115deg, #fff 8%, var(--hud) 60%, #d9f5ff);
  background-clip: text;
}
.daily-feed-tools {
  position: relative;
  display: grid;
  width: min(100%, 520px);
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(155, 232, 255, .06), rgba(155, 232, 255, .015));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .3), inset 0 1px rgba(155, 232, 255, .08);
  backdrop-filter: blur(18px);
}
.daily-feed-tools::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 12px);
}
.date-stepper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 7px;
}
.date-stepper > a, .date-stepper > div {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgba(155, 232, 255, .03);
}
.date-stepper > a { color: #c9dae2; transition: border-color .2s, background .2s; }
.date-stepper > a:last-child { justify-content: flex-end; }
.date-stepper > a:first-child { justify-content: flex-start; }
.date-stepper > a:hover { border-color: var(--hud-dim); background: rgba(155, 232, 255, .06); }
.date-stepper span { color: var(--hud); font-size: 18px; }
.date-stepper small {
  color: #74858f;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.date-stepper > div { display: grid; min-width: 142px; gap: 4px; text-align: center; }
.date-stepper strong { color: var(--signal); font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: .02em; }
.date-picker { display: grid; gap: 7px; padding: 3px 2px 0; }
.date-picker label {
  padding-left: 9px;
  color: var(--hud);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.date-picker > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 7px; }
.date-picker input, .date-picker button, .copy-link-button {
  min-height: 46px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
}
.date-picker input {
  min-width: 0;
  padding: 0 14px;
  outline: none;
  background: rgba(155, 232, 255, .035);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 12px;
  color-scheme: dark;
}
.date-picker input:focus { border-color: rgba(155, 232, 255, .5); box-shadow: 0 0 0 4px rgba(155, 232, 255, .07); }
.date-picker button {
  padding: 0 19px;
  background: #f2f7f9;
  color: #06090c;
  cursor: pointer;
  font-weight: 700;
}
.copy-link-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(155, 232, 255, .07);
  color: #d9f5ff;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.copy-link-button:hover { border-color: var(--hud-dim); background: rgba(155, 232, 255, .12); }
.copy-link-button span { font-size: 18px; }
.copy-link-button strong { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .04em; }
.copy-link-button.is-copied {
  border-color: rgba(124, 242, 184, .4);
  background: rgba(124, 242, 184, .09);
  color: var(--ok);
}
.daily-feed-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.daily-feed-heading .eyebrow { margin-bottom: 9px; }
.daily-feed-heading h2 { margin: 0; font-family: var(--font-display); font-size: clamp(29px, 3.8vw, 48px); font-weight: 700; letter-spacing: -.03em; }
.daily-feed-heading > span { color: #74858f; font-family: var(--font-mono); font-size: 11px; white-space: nowrap; }
.grid-admin-control {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}
.grid-create-form { margin: 0; }
.grid-create-button, .grid-download-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(155, 232, 255, .24);
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(155, 232, 255, .14), rgba(155, 232, 255, .06));
  color: #d9f5ff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: .025em;
  box-shadow: inset 0 1px rgba(255, 255, 255, .08);
  transition: border-color .2s, background .2s, transform .2s;
}
.grid-create-button:hover, .grid-download-link:hover {
  transform: translateY(-1px);
  border-color: rgba(155, 232, 255, .5);
  background: linear-gradient(145deg, rgba(155, 232, 255, .22), rgba(155, 232, 255, .1));
}
.grid-job-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8b9ca5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.grid-job-state::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #64757e;
  content: "";
}
.grid-job-state.queued::before { background: var(--signal); box-shadow: 0 0 12px rgba(255, 179, 92, .55); }
.grid-job-state.running::before { background: var(--hud); box-shadow: 0 0 12px rgba(155, 232, 255, .65); }
.grid-job-state.completed::before { background: var(--ok); box-shadow: 0 0 12px rgba(124, 242, 184, .55); }
.grid-job-state.failed::before { background: var(--danger); }
.release-date-group + .release-date-group { margin-top: 62px; }
.release-date-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line-soft); }
.release-date-heading > div:first-child { display: grid; gap: 7px; }
.release-date-heading time { font-family: var(--font-display); font-size: clamp(24px, 2.8vw, 36px); font-weight: 700; letter-spacing: -.02em; }
.release-date-heading > div:first-child > span { color: #64757e; font-family: var(--font-mono); font-size: 10px; }
.daily-feed-link { display: grid; justify-items: start; gap: 6px; }
.daily-feed-link > span {
  color: var(--hud);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.daily-feed-link b { display: inline-block; margin-left: 3px; transition: transform .2s; }
.daily-feed-link:hover b { transform: translate(2px, -2px); }
.release-date-heading .grid-admin-control { justify-content: flex-end; margin-top: 0; }
.empty-state {
  position: relative;
  padding: 90px 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    repeating-linear-gradient(0deg, rgba(155, 232, 255, .012) 0 1px, transparent 1px 4px),
    var(--surface);
}
.empty-state::before {
  content: "";
  position: absolute;
  inset: 12px;
  background:
    linear-gradient(var(--hud) 0 0) top left / 18px 1px,
    linear-gradient(var(--hud) 0 0) top left / 1px 18px,
    linear-gradient(var(--hud) 0 0) top right / 18px 1px,
    linear-gradient(var(--hud) 0 0) top right / 1px 18px,
    linear-gradient(var(--hud) 0 0) bottom left / 18px 1px,
    linear-gradient(var(--hud) 0 0) bottom left / 1px 18px,
    linear-gradient(var(--hud) 0 0) bottom right / 18px 1px,
    linear-gradient(var(--hud) 0 0) bottom right / 1px 18px;
  background-repeat: no-repeat;
  opacity: .3;
  pointer-events: none;
}
.empty-state span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--hud);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
}
.empty-state span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hud);
  box-shadow: 0 0 12px var(--hud);
  animation: standby-blink 2.4s steps(2, jump-none) infinite;
}
.empty-state h2 { max-width: 650px; margin: 18px auto; font-family: var(--font-display); font-size: clamp(32px, 4vw, 44px); font-weight: 700; letter-spacing: -.03em; }
.empty-state p { max-width: 620px; margin: auto; color: var(--muted); line-height: 1.6; }
.empty-action { margin-top: 28px; }
.detail-page { padding-top: 1px; }
.detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, .7fr);
  align-items: start;
  gap: 22px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 48px 36px 55px;
}
.detail-visual-stack {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 14px;
  min-width: 0;
}
.detail-media-card {
  overflow: hidden;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(155, 232, 255, .03);
  box-shadow: 0 35px 100px rgba(0, 0, 0, .4), inset 0 1px rgba(155, 232, 255, .07);
}
.media-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 8px 13px;
  color: #74858f;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.media-toolbar span:first-child { display: inline-flex; align-items: center; gap: 8px; }
.media-toolbar span:first-child::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 8px var(--ok);
}
.media-toolbar span:last-child { color: var(--hud); }
.detail-media { position: relative; min-width: 0; }
.detail-media video { display: block; width: 100%; max-height: 76vh; border: 1px solid var(--line-soft); border-radius: 8px; background: #000; }
.detail-media::after {
  content: "";
  position: absolute;
  inset: 7px;
  background:
    linear-gradient(var(--hud) 0 0) top left / 16px 1px,
    linear-gradient(var(--hud) 0 0) top left / 1px 16px,
    linear-gradient(var(--hud) 0 0) top right / 16px 1px,
    linear-gradient(var(--hud) 0 0) top right / 1px 16px,
    linear-gradient(var(--hud) 0 0) bottom left / 16px 1px,
    linear-gradient(var(--hud) 0 0) bottom left / 1px 16px,
    linear-gradient(var(--hud) 0 0) bottom right / 16px 1px,
    linear-gradient(var(--hud) 0 0) bottom right / 1px 16px;
  background-repeat: no-repeat;
  opacity: .28;
  pointer-events: none;
}
.preview-label { position: absolute; bottom: 15px; left: 15px; padding: 7px 10px; border: 1px solid var(--line-soft); border-radius: 3px; background: rgba(4, 7, 10, .68); color: #a9bcc6; font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; backdrop-filter: blur(10px); }
.preview-download-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0 0, var(--hud-glow), transparent 45%),
    rgba(155, 232, 255, .03);
  box-shadow: inset 0 1px rgba(155, 232, 255, .06);
}
.preview-download-bar strong { display: block; margin-bottom: 4px; font-size: 13px; letter-spacing: -.02em; }
.preview-download-bar > div > span { color: #74858f; font-family: var(--font-mono); font-size: 9px; }
.preview-download-button {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid var(--hud-dim);
  border-radius: 6px;
  background: rgba(155, 232, 255, .08);
  color: #d9f5ff;
  font-size: 10px;
  font-weight: 720;
  white-space: nowrap;
  transition: transform .2s, border-color .2s, background .2s;
}
.preview-download-button:hover { transform: translateY(-1px); border-color: rgba(155, 232, 255, .5); background: rgba(155, 232, 255, .14); }
.preview-download-button > span { font-size: 15px; }
.detail-thumb {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: rgba(155, 232, 255, .025);
}
.detail-thumb img {
  display: block;
  width: 150px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
}
.detail-thumb figcaption { min-width: 0; }
.detail-thumb span { display: block; margin-bottom: 7px; color: var(--hud); font-family: var(--font-mono); font-size: 8px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }
.detail-thumb strong { display: block; overflow: hidden; color: #a9bcc6; font-family: var(--font-mono); font-size: 10px; font-weight: 500; line-height: 1.45; text-overflow: ellipsis; white-space: nowrap; }
.detail-stack { display: grid; gap: 14px; min-width: 0; }
.detail-block {
  padding: 28px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: rgba(155, 232, 255, .035);
  box-shadow: inset 0 1px rgba(155, 232, 255, .06);
}
.detail-breadcrumb { display: flex; gap: 8px; margin-bottom: 22px; color: #64757e; font-family: var(--font-mono); font-size: 9px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.detail-breadcrumb a { color: #a9bcc6; }
.detail-breadcrumb a:hover { color: var(--hud); }
.detail-overview h1 { margin: 0; font-family: var(--font-display); font-size: clamp(36px, 3.8vw, 56px); font-weight: 700; line-height: .98; letter-spacing: -.03em; }
.detail-description { margin: 22px 0 0; color: var(--muted); font-size: 15px; line-height: 1.68; }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 25px 0; }
.detail-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 3px; color: #b7c8d1; font-family: var(--font-mono); font-size: 9px; font-weight: 500; letter-spacing: .08em; }
.detail-badge.alpha { border-color: var(--hud-dim); color: #d9f5ff; background: rgba(155, 232, 255, .06); }
.detail-badge.alpha i { background: var(--hud); box-shadow: 0 0 12px var(--hud); }
.block-heading { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
.block-heading .eyebrow { margin: 0; }
.block-heading > span:last-child { color: #64757e; font-family: var(--font-mono); font-size: 9px; }
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; margin: 19px 0 0; border-top: 1px solid var(--line-soft); }
.spec-list div { display: flex; gap: 8px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.spec-list div::before {
  content: "";
  order: 2;
  flex: 1 1 auto;
  margin: 0 2px 4px;
  border-bottom: 1px dotted rgba(155, 232, 255, .18);
  align-self: flex-end;
}
.spec-list dt { order: 1; color: #74858f; font-family: var(--font-mono); font-size: 9px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; align-self: end; }
.spec-list dd { order: 3; margin: 0; color: #cfe0e8; font-family: var(--font-mono); font-size: 11px; }
.spec-list .filename-spec { grid-column: 1 / -1; display: grid; gap: 8px; }
.spec-list .filename-spec::before { display: none; }
.filename-spec dd { overflow: hidden; color: #8b9ca5; font-family: var(--font-mono); font-size: 10px; line-height: 1.45; text-overflow: ellipsis; white-space: nowrap; }
.detail-membership {
  overflow: hidden;
  border-color: var(--line);
  background:
    radial-gradient(circle at 100% 0, rgba(155, 232, 255, .14), transparent 43%),
    linear-gradient(145deg, rgba(155, 232, 255, .07), rgba(155, 232, 255, .03) 58%);
}
.detail-membership.is-active {
  background:
    radial-gradient(circle at 100% 0, rgba(124, 242, 184, .14), transparent 43%),
    linear-gradient(145deg, rgba(124, 242, 184, .07), rgba(155, 232, 255, .03) 58%);
}
.detail-membership h2 { margin: 0; font-family: var(--font-display); font-size: clamp(29px, 2.8vw, 42px); font-weight: 700; line-height: 1; letter-spacing: -.03em; }
.detail-membership h2 strong { color: var(--signal); font-weight: inherit; }
.detail-membership > p { margin: 16px 0 0; color: #9cadb7; font-size: 13px; line-height: 1.6; }
.membership-benefits { display: grid; gap: 9px; margin: 23px 0; padding: 20px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); list-style: none; }
.membership-benefits li { position: relative; padding-left: 20px; color: #c3d4dc; font-size: 12px; }
.membership-benefits li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 800; }
.detail-purchase-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 23px 0 18px; }
.detail-purchase-option { position: relative; display: flex; min-width: 0; min-height: 184px; padding: 17px; border: 1px solid var(--line-soft); border-radius: 8px; background: rgba(0, 0, 0, .22); flex-direction: column; }
.detail-purchase-option.single-video { grid-column: 1 / -1; min-height: 0; flex-direction: column; align-items: stretch; gap: 0; }
.detail-purchase-option.best-deal { border-color: rgba(155, 232, 255, .48); background: linear-gradient(150deg, rgba(155, 232, 255, .13), rgba(0, 0, 0, .2) 68%); box-shadow: inset 0 1px rgba(255, 255, 255, .08), 0 14px 30px rgba(0, 0, 0, .2); }
.detail-purchase-option.best-deal .purchase-option-copy { padding-top: 25px; }
.purchase-option-copy { min-width: 0; }
.purchase-kind { display: block; margin-bottom: 7px; color: #a9bcc6; font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.purchase-option-copy strong { display: block; color: var(--signal); font-family: var(--font-display); font-size: 30px; font-weight: 700; line-height: 1; letter-spacing: -.03em; }
.purchase-option-copy p { margin: 9px 0 0; color: #7f929c; font-size: 10px; line-height: 1.5; }
.purchase-option-action { width: 100%; margin-top: auto; padding-top: 17px; }
a.purchase-option-action { display: flex; padding-top: 0; }
.purchase-option-action .button, .detail-purchase-option > a.button { width: 100%; min-width: 0; min-height: 42px; height: auto; padding: 11px 12px; font-size: 9px; line-height: 1.35; text-align: center; white-space: normal; overflow-wrap: anywhere; }
.single-video .purchase-option-action { flex: 0 0 auto; width: 100%; min-width: 0; margin-top: 17px; padding-top: 0; }
.purchase-best-deal { position: absolute; top: 11px; right: 11px; padding: 5px 7px; border: 1px solid rgba(155, 232, 255, .5); border-radius: 999px; background: rgba(155, 232, 255, .12); color: #dcf7ff; font-family: var(--font-mono); font-size: 7px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.membership-benefits.compact { margin: 0; padding: 18px 0; }
.download-button { width: 100%; margin-top: 8px; }
.download-note { margin: 12px 0 0; color: #74858f; font-size: 11px; text-align: center; }
.admin-hd-render {
  margin-top: 25px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.admin-hd-heading { display: flex; align-items: start; justify-content: space-between; gap: 14px; }
.admin-hd-heading h3 { margin: 8px 0 0; font-size: 21px; letter-spacing: -.04em; }
.admin-only-chip {
  padding: 7px 9px;
  border: 1px solid var(--hud-dim);
  border-radius: 3px;
  background: rgba(155, 232, 255, .08);
  color: #d9f5ff;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.admin-hd-render > p { margin: 12px 0 17px; color: #8b9ca5; font-size: 11px; line-height: 1.55; }
.admin-hd-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.admin-hd-form label { position: relative; display: block; }
.admin-hd-form label > span { position: absolute; z-index: 1; top: 7px; left: 13px; color: #64757e; font-size: 7px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; pointer-events: none; }
.admin-hd-form select {
  width: 100%;
  height: 53px;
  padding: 16px 36px 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
  background: #0a1116;
  color: #d7e4ea;
  font-size: 11px;
}
.admin-hd-form select:focus { border-color: rgba(155, 232, 255, .48); box-shadow: 0 0 0 4px rgba(155, 232, 255, .07); }
.admin-hd-form button {
  min-height: 53px;
  padding: 0 16px;
  border: 1px solid rgba(155, 232, 255, .3);
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(155, 232, 255, .2), rgba(155, 232, 255, .08));
  color: #eefaff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
}
.admin-hd-form button:hover { border-color: rgba(155, 232, 255, .5); }
.admin-hd-jobs { display: grid; gap: 7px; margin-top: 14px; }
.admin-hd-jobs > div { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 12px; border: 1px solid var(--line-soft); border-radius: 6px; background: rgba(0, 0, 0, .15); }
.admin-hd-jobs strong, .admin-hd-jobs small { display: block; }
.admin-hd-jobs strong { color: #c3d4dc; font-size: 10px; }
.admin-hd-jobs small { margin-top: 3px; color: #64757e; font-size: 8px; }
.admin-hero-picker {
  margin-top: 25px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.admin-hero-picker > p { margin: 12px 0 17px; color: #8b9ca5; font-size: 11px; line-height: 1.55; }
.admin-hero-slot-list { display: grid; gap: 8px; }
.admin-hero-slot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgba(0, 0, 0, .16);
}
.admin-hero-slot.selected {
  border-color: rgba(124, 242, 184, .25);
  background: rgba(124, 242, 184, .06);
}
.admin-hero-slot > div { display: grid; min-width: 0; gap: 3px; }
.admin-hero-slot > div > span { color: var(--hud); font-family: var(--font-mono); font-size: 8px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.admin-hero-slot > div > strong { overflow: hidden; color: #d7e4ea; font-size: 10px; white-space: nowrap; text-overflow: ellipsis; }
.admin-hero-slot > div > small { color: #64757e; font-size: 8px; line-height: 1.4; }
.admin-hero-slot form { margin: 0; }
.admin-hero-slot button,
.hero-slot-ineligible {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border: 1px solid var(--hud-dim);
  border-radius: 4px;
  background: rgba(155, 232, 255, .08);
  color: #d9f5ff;
  font-size: 8px;
  font-weight: 760;
  white-space: nowrap;
}
.admin-hero-slot button { cursor: pointer; }
.admin-hero-slot button:hover { border-color: rgba(155, 232, 255, .42); background: rgba(155, 232, 255, .14); }
.hero-slot-ineligible { border-color: rgba(255, 255, 255, .07); background: rgba(255, 255, 255, .025); color: #5f7078; }
.admin-hd-jobs a { color: #d9f5ff; font-size: 9px; font-weight: 750; }
.keyword-cloud { max-width: 1428px; margin: 0 auto 60px; padding: 30px 34px; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); background: rgba(155, 232, 255, .02); }
.keyword-cloud .section-heading { margin-bottom: 22px; }
.keyword-cloud .section-heading h2 { font-size: 32px; }
.keyword-cloud > div:last-child { display: flex; flex-wrap: wrap; gap: 8px; }
.keyword-cloud a { padding: 9px 13px; border: 1px solid var(--line); border-radius: var(--radius); color: #a9bcc6; font-family: var(--font-mono); font-size: 11px; transition: border-color .2s, color .2s, background .2s; }
.keyword-cloud a:hover { border-color: var(--hud-dim); color: white; background: rgba(155, 232, 255, .05); }
.recommendation-section { padding-bottom: 95px; }
.pricing-hero, .legal-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 36px 80px;
  text-align: center;
}
.pricing-hero .eyebrow, .legal-hero .eyebrow, .not-found .eyebrow { justify-content: center; }
.pricing-hero h1, .legal-hero h1 { font-size: clamp(56px, 8.5vw, 110px); }
.pricing-hero p, .legal-hero p { max-width: 680px; margin: 30px auto 0; color: var(--muted); font-size: 19px; line-height: 1.55; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 490px)); justify-content: center; gap: 18px; padding: 0 36px 35px; }
.price-card { position: relative; padding: 42px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(155, 232, 255, .03); }
.price-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  background:
    linear-gradient(var(--hud) 0 0) top left / 16px 1px,
    linear-gradient(var(--hud) 0 0) top left / 1px 16px,
    linear-gradient(var(--hud) 0 0) top right / 16px 1px,
    linear-gradient(var(--hud) 0 0) top right / 1px 16px,
    linear-gradient(var(--hud) 0 0) bottom left / 16px 1px,
    linear-gradient(var(--hud) 0 0) bottom left / 1px 16px,
    linear-gradient(var(--hud) 0 0) bottom right / 16px 1px,
    linear-gradient(var(--hud) 0 0) bottom right / 1px 16px;
  background-repeat: no-repeat;
  opacity: .25;
  pointer-events: none;
}
.price-card.featured {
  border-color: var(--signal-dim);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 179, 92, .09), transparent 45%),
    rgba(155, 232, 255, .03);
  box-shadow: 0 30px 100px rgba(255, 179, 92, .07);
}
.price-card.featured::before {
  background:
    linear-gradient(var(--signal) 0 0) top left / 16px 1px,
    linear-gradient(var(--signal) 0 0) top left / 1px 16px,
    linear-gradient(var(--signal) 0 0) top right / 16px 1px,
    linear-gradient(var(--signal) 0 0) top right / 1px 16px,
    linear-gradient(var(--signal) 0 0) bottom left / 16px 1px,
    linear-gradient(var(--signal) 0 0) bottom left / 1px 16px,
    linear-gradient(var(--signal) 0 0) bottom right / 16px 1px,
    linear-gradient(var(--signal) 0 0) bottom right / 1px 16px;
  background-repeat: no-repeat;
  opacity: .4;
}
.best-value { position: absolute; top: 19px; right: 19px; padding: 8px 10px; border-radius: 3px; background: var(--signal); color: #1a1004; font-family: var(--font-mono); font-size: 9px; font-weight: 500; text-transform: uppercase; letter-spacing: .12em; }
.price-name { color: var(--hud); font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.price-card h2 { margin: 24px 0 3px; font-family: var(--font-display); font-size: 72px; font-weight: 700; letter-spacing: -.04em; }
.price-headline { color: white !important; font-weight: 650; }
.price-card p { margin: 4px 0; color: var(--muted); font-family: var(--font-mono); font-size: 11px; }
.price-card ul { margin: 30px 0; padding: 25px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); list-style: none; }
.price-card li { position: relative; padding: 7px 0 7px 22px; color: #b7c8d1; font-size: 13px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); }
.price-card .button { width: 100%; }
.payment-note { margin: 0 0 120px; color: #64757e; font-family: var(--font-mono); font-size: 10px; text-align: center; }
.auth-shell { display: grid; grid-template-columns: 1fr minmax(340px, 470px); align-items: center; gap: 90px; min-height: calc(100vh - 72px); max-width: 1200px; margin: 0 auto; padding: 80px 36px; }
.auth-copy h1 { font-size: clamp(54px, 7.5vw, 96px); }
.auth-copy p { max-width: 570px; color: var(--muted); font-size: 18px; line-height: 1.6; }
.auth-card, .account-card {
  position: relative;
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(155, 232, 255, .04);
  box-shadow: var(--shadow), inset 0 1px rgba(155, 232, 255, .08);
}
.auth-card::before, .account-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 12px);
  opacity: .8;
}
.auth-card h2 { margin: 0 0 28px; font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: -.02em; }
.auth-card label, .compact-form label { display: grid; gap: 8px; margin-bottom: 17px; color: #93a4ae; font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.auth-card input, .compact-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
  background: rgba(0, 0, 0, .3);
  color: white;
  font-family: var(--font-body);
  transition: border .2s, box-shadow .2s;
}
.auth-card input:focus, .compact-form input:focus { border-color: rgba(155, 232, 255, .6); box-shadow: 0 0 0 4px rgba(155, 232, 255, .08); }
.check-row { display: flex !important; grid-template-columns: none !important; align-items: flex-start; gap: 11px !important; cursor: pointer; line-height: 1.45; }
.check-row input { flex: 0 0 auto; width: 17px !important; min-height: 17px !important; margin-top: 2px; accent-color: var(--hud); }
.check-row span { color: #8b9ca5; font-family: var(--font-body); font-size: 11px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.auth-card .button { width: 100%; margin-top: 10px; }
.form-foot { margin: 22px 0 0; color: #74858f; font-size: 12px; text-align: center; }
.form-foot a { color: white; }
.flash { max-width: 900px; margin: 22px auto 0; padding: 13px 18px; border: 1px solid var(--line); border-left: 2px solid var(--hud); border-radius: var(--radius); background: rgba(155, 232, 255, .06); font-family: var(--font-mono); font-size: 12px; text-align: center; }
.flash-error { border-color: rgba(255, 143, 125, .3); border-left-color: var(--danger); color: #ffccc3; }
.flash-success { border-color: rgba(124, 242, 184, .3); border-left-color: var(--ok); color: #b9f4d8; }
.account-hero { padding-bottom: 45px; }
.account-hero h1 { margin: 0; font-family: var(--font-display); font-size: clamp(34px, 5vw, 64px); font-weight: 700; letter-spacing: -.03em; }
.text-button { padding: 0; border: 0; background: none; color: #9cadb7; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }
.text-button.danger { margin-top: 20px; color: var(--danger); }
.account-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 1100px; margin: 0 auto; padding: 0 36px 80px; }
.newsletter-card { grid-column: 1 / -1; }
.newsletter-card h2 { margin: 18px 0 8px; font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -.02em; }
.newsletter-card > p { color: var(--muted); }
.newsletter-card form { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 24px; }
.newsletter-card .check-row { margin: 0; }
.admin-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; max-width: 1100px; margin: 0 auto; padding: 0 36px 110px; }
.admin-count { display: block; margin: 22px 0 8px; font-family: var(--font-display); font-size: 82px; font-weight: 700; line-height: .9; letter-spacing: -.04em; }
.admin-export-card p, .admin-fields { color: var(--muted); line-height: 1.6; }
.admin-export-card .button { margin-top: 22px; }
.grid-admin-hero { align-items: end; }
.grid-admin-hero p { max-width: 720px; margin: 18px 0 0; color: var(--muted); line-height: 1.6; }
.admin-render-section { max-width: 1200px; margin: 0 auto; }
.admin-render-section > .section-heading { padding: 0 36px; }
.admin-render-section > .section-heading h2 { font-size: clamp(35px, 4vw, 52px); }
.admin-render-list { padding-bottom: 65px; }
.archive-grid-section > .section-heading { margin-bottom: 26px; }
.admin-grid-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px 120px;
}
.admin-grid-list > .empty-state { grid-column: 1 / -1; }
.grid-job-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(155, 232, 255, .03);
  box-shadow: inset 0 1px rgba(155, 232, 255, .05);
}
.grid-job-card > img, .grid-job-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: radial-gradient(circle at 30% 20%, rgba(155, 232, 255, .14), transparent 42%), #070b0f;
}
.grid-job-placeholder { display: grid; place-items: center; color: #74858f; font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.grid-job-copy { padding: 25px; }
.grid-job-copy h2 { margin: 12px 0 8px; font-size: 28px; letter-spacing: -.045em; }
.grid-job-copy > p { margin: 0; color: var(--muted); font-size: 12px; }
.grid-job-meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 22px 0; }
.grid-job-meta time { color: #64757e; font-size: 10px; }
.grid-job-error { padding: 12px; border: 1px solid rgba(255, 143, 125, .18); border-radius: 6px; color: #ffccc3 !important; overflow-wrap: anywhere; }
.card-label { color: var(--hud); font-family: var(--font-mono); font-size: 9px; font-weight: 500; letter-spacing: var(--track-label); text-transform: uppercase; }
.status-line { display: flex; align-items: center; gap: 10px; margin-top: 24px; }
.status-line i { width: 10px; height: 10px; border-radius: 50%; background: #64757e; }
.status-line i.active { background: var(--ok); box-shadow: 0 0 15px var(--ok); }
.account-card > p { color: var(--muted); font-size: 13px; }
.account-card > .button { margin-top: 18px; }
.compact-form { margin-top: 25px; }
.download-history { max-width: 1100px; margin: 0 auto; padding: 0 36px 120px; }
.download-history .section-heading h2 { font-size: 44px; }
.history-list { border-top: 1px solid var(--line); }
.history-list a { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); font-size: 13px; transition: background .2s; }
.history-list a:hover { background: rgba(155, 232, 255, .03); }
.history-list time { color: #74858f; font-family: var(--font-mono); font-size: 11px; }
.admin-account-outputs {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 36px 130px;
}
.admin-account-outputs > .section-heading h2 {
  font-size: clamp(39px, 5vw, 58px);
}
.admin-account-output-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}
.admin-output-box {
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% -15%, rgba(155, 232, 255, .1), transparent 16rem),
    rgba(155, 232, 255, .03);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .24), inset 0 1px rgba(155, 232, 255, .06);
}
.admin-output-box > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line-soft);
}
.admin-output-box > header > div { display: flex; min-width: 0; align-items: center; gap: 13px; }
.admin-output-box > header h3 {
  overflow: hidden;
  margin: 5px 0 0;
  font-size: 20px;
  letter-spacing: -.04em;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.admin-output-box > header > small {
  flex: 0 0 auto;
  padding: 7px 9px;
  border: 1px solid rgba(124, 242, 184, .2);
  border-radius: 3px;
  background: rgba(124, 242, 184, .07);
  color: var(--ok);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.admin-output-icon {
  display: grid;
  flex: 0 0 auto;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid var(--hud-dim);
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(155, 232, 255, .16), rgba(155, 232, 255, .05));
  color: #d9f5ff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: -.03em;
  box-shadow: inset 0 1px rgba(255, 255, 255, .1);
}
.admin-output-icon.hd {
  border-color: rgba(155, 232, 255, .3);
  background: linear-gradient(145deg, rgba(155, 232, 255, .18), rgba(155, 232, 255, .06));
  color: #eefaff;
}
.admin-output-icon.day {
  border-color: rgba(124, 242, 184, .25);
  background: linear-gradient(145deg, rgba(124, 242, 184, .14), rgba(155, 232, 255, .06));
  color: #c7f3e2;
  font-size: 8px;
  letter-spacing: .06em;
}
.admin-output-items { display: grid; }
.admin-output-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  min-width: 0;
  padding: 14px 18px 14px 14px;
  transition: background .2s;
}
.admin-output-item + .admin-output-item { border-top: 1px solid var(--line-soft); }
.admin-output-item:hover { background: rgba(155, 232, 255, .035); }
.admin-output-item figure {
  display: grid;
  overflow: hidden;
  width: 112px;
  aspect-ratio: 16 / 9;
  margin: 0;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: radial-gradient(circle at 30% 20%, rgba(155, 232, 255, .14), transparent 55%), #070b0f;
}
.admin-output-item figure img { width: 100%; height: 100%; object-fit: cover; }
.admin-output-item figure span { color: #64757e; font-size: 8px; font-weight: 820; letter-spacing: .14em; }
.admin-output-item > div { min-width: 0; }
.admin-output-item h4 {
  overflow: hidden;
  margin: 6px 0 4px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -.025em;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.admin-output-item p { margin: 0; color: #64757e; font-size: 9px; }
.admin-output-download {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #d7e4ea;
  font-size: 13px;
  transition: border-color .2s, background .2s, transform .2s;
}
.admin-output-item:hover .admin-output-download {
  transform: translateY(2px);
  border-color: var(--hud-dim);
  background: rgba(155, 232, 255, .06);
}
.admin-output-empty {
  display: grid;
  min-height: 178px;
  align-content: center;
  gap: 7px;
  padding: 28px;
  text-align: center;
}
.admin-output-empty strong { font-size: 15px; }
.admin-output-empty span { color: #64757e; font-size: 11px; line-height: 1.5; }
.admin-daily-feed-box { grid-column: 1 / -1; }
.admin-daily-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(155, 232, 255, .08);
}
.admin-daily-links a {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 19px 21px;
  background: #080d11;
  transition: background .2s;
}
.admin-daily-links a:hover { background: #0d151b; }
.admin-daily-links time { display: grid; min-width: 0; gap: 5px; }
.admin-daily-links strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -.015em;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.admin-daily-links span {
  color: #64757e;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.admin-daily-links b {
  flex: 0 0 auto;
  color: #8b9ca5;
  font-size: 13px;
  transition: color .2s, transform .2s;
}
.admin-daily-links a:hover b { color: white; transform: translateX(3px); }
.account-membership-actions { display: flex; align-items: center; gap: 16px; margin-top: 18px; }
.account-membership-actions .button { margin: 0; }
.muted { color: var(--muted); }
.legal-copy { max-width: 760px; margin: 0 auto 140px; padding: 0 36px; }
.legal-copy h2 { margin: 48px 0 12px; font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -.02em; }
.legal-copy p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.not-found { min-height: 70vh; max-width: 1000px; margin: 0 auto; padding: 150px 36px; text-align: center; }
.not-found h1 { font-size: clamp(56px, 8.5vw, 110px); }
.not-found p { margin: 25px 0 35px; color: var(--muted); font-size: 18px; }
footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 55px 36px 45px;
  border-top: 1px solid var(--line);
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 36px;
  right: 36px;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 18px);
  opacity: .55;
}
.footer-brand { margin-bottom: 10px; }
footer p { margin: 6px 0 0; color: #64757e; font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; color: #93a4ae; font-family: var(--font-mono); font-size: 11px; }
.footer-links a:hover { color: var(--hud); }
.copyright { grid-column: 1 / -1; margin-top: 30px; font-family: var(--font-mono); font-size: 10px !important; letter-spacing: .04em; }

/* scroll reveals — active only when app.js adds .js-reveal to <html> */
.js-reveal .video-card,
.js-reveal .detail-block,
.js-reveal .feature-row article,
.js-reveal .price-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .2, 1);
}
.js-reveal .video-card.is-inview,
.js-reveal .detail-block.is-inview,
.js-reveal .feature-row article.is-inview,
.js-reveal .price-card.is-inview {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .nav-search { width: min(25vw, 280px); }
  .site-header nav { gap: 11px; margin-left: 14px; }
  .site-header nav .admin-render-heartbeat { max-width: 150px; }
  .nav-release-links a { padding-left: 8px; padding-right: 8px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-orbit { width: min(70vw, 520px); justify-self: center; margin-top: 80px; }
  .membership-strip { grid-template-columns: 1fr auto auto; margin-left: 24px; margin-right: 24px; }
  .membership-strip .button { grid-column: 1 / -1; }
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .detail-shell { grid-template-columns: 1fr; }
  .detail-visual-stack { position: relative; top: auto; }
  .detail-stack { grid-template-columns: 1fr 1fr; }
  .detail-overview, .detail-membership { grid-column: 1 / -1; }
}
@media (max-width: 780px) {
  .site-header { flex-wrap: wrap; gap: 14px; padding: 17px 18px; }
  .site-header::after { left: 18px; right: 18px; }
  .nav-search { order: 3; width: 100%; margin: 0; }
  .site-header nav {
    order: 2;
    width: calc(100% - 54px);
    margin-left: 0;
    padding-bottom: 2px;
    overflow-x: auto;
    gap: 14px;
    scrollbar-width: none;
  }
  .site-header nav::-webkit-scrollbar { display: none; }
  .brand > span:last-child { display: none; }
  .hero { padding: 75px 22px 90px; }
  .hero h1 { font-size: clamp(52px, 17vw, 88px); }
  .hero-orbit { width: 88vw; }
  .membership-strip { grid-template-columns: 1fr 1fr; gap: 24px 16px; padding: 26px 22px; }
  .membership-strip > div:first-child { grid-column: 1 / -1; }
  .strip-price.annual { padding-left: 16px; }
  .catalog-section { padding-left: 18px; padding-right: 18px; }
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 11px; }
  .feature-row { grid-template-columns: 1fr; padding: 0 18px; }
  .feature-row article + article { border-left: 0; border-top: 0; }
  .listing-hero, .account-hero { align-items: start; flex-direction: column; padding: 75px 22px 55px; }
  .daily-feed-tools { width: 100%; }
  .library-tools { justify-items: stretch; width: 100%; }
  .detail-shell { padding: 45px 18px 75px; gap: 38px; }
  .detail-stack { grid-template-columns: 1fr; }
  .detail-overview, .detail-membership { grid-column: 1; }
  .detail-purchase-options { grid-template-columns: 1fr; }
  .detail-purchase-option.single-video { grid-column: 1; flex-direction: column; align-items: stretch; }
  .single-video .purchase-option-action { width: 100%; margin-top: 17px; }
  .keyword-cloud { margin-left: 18px; margin-right: 18px; padding: 26px 22px; }
  .pricing-grid { grid-template-columns: 1fr; padding: 0 18px 30px; }
  .auth-shell { grid-template-columns: 1fr; gap: 50px; padding: 70px 20px; }
  .account-grid { grid-template-columns: 1fr; padding: 0 18px 65px; }
  .newsletter-card { grid-column: 1; }
  .newsletter-card form { align-items: stretch; flex-direction: column; }
  .release-tabs { flex-wrap: wrap; }
  .admin-grid { grid-template-columns: 1fr; padding-left: 18px; padding-right: 18px; }
  .admin-grid-list { grid-template-columns: 1fr; padding-left: 18px; padding-right: 18px; }
  .admin-render-section > .section-heading { padding-left: 18px; padding-right: 18px; }
  .download-history { padding: 0 18px 90px; }
  .admin-account-outputs { padding: 0 18px 100px; }
  .admin-account-output-grid { grid-template-columns: 1fr; }
  .admin-daily-feed-box { grid-column: 1; }
  .admin-daily-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  footer { grid-template-columns: 1fr; padding-left: 22px; padding-right: 22px; }
  .copyright { grid-column: 1; }
}
@media (max-width: 500px) {
  .site-header nav { margin-left: 0; }
  .site-header nav a[href="/membership"] { display: none; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .membership-strip { grid-template-columns: 1fr; }
  .membership-strip > *, .membership-strip > div:first-child, .membership-strip .button { grid-column: 1; }
  .strip-price.annual { padding: 0; border-left: 0; }
  .video-grid { grid-template-columns: 1fr; }
  .section-heading { align-items: start; flex-direction: column; }
  .filter-pills { width: 100%; }
  .filter-pills a { flex: 1; text-align: center; }
  .library-search > div { align-items: stretch; flex-direction: column; }
  .detail-shell { padding-top: 24px; }
  .detail-media-card { padding: 7px; border-radius: 8px; }
  .detail-thumb { grid-template-columns: 105px minmax(0, 1fr); gap: 12px; }
  .detail-thumb img { width: 105px; }
  .preview-download-bar { align-items: stretch; flex-direction: column; }
  .preview-download-button { justify-content: space-between; }
  .media-toolbar { padding: 5px 6px 11px; }
  .media-toolbar span:first-child { display: none; }
  .detail-media video { border-radius: 6px; }
  .detail-block { padding: 24px 20px; }
  .detail-overview h1 { font-size: 37px; }
  .spec-list { grid-template-columns: 1fr; }
  .spec-list .filename-spec { grid-column: 1; }
  .detail-pricing { grid-template-columns: 1fr; }
  .admin-hd-form { grid-template-columns: 1fr; }
  .release-date-heading { align-items: flex-start; flex-direction: column; gap: 13px; }
  .release-date-heading .grid-admin-control { justify-content: flex-start; }
  .date-stepper small { display: none; }
  .date-stepper > div { min-width: 122px; }
  .daily-feed-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .grid-job-meta { align-items: flex-start; flex-direction: column; }
  .admin-output-item { grid-template-columns: 92px minmax(0, 1fr) auto; padding-left: 11px; padding-right: 12px; }
  .admin-output-item figure { width: 92px; }
  .admin-output-box > header { padding: 20px 17px; }
  .admin-daily-links { grid-template-columns: 1fr; }
  .account-membership-actions { align-items: flex-start; flex-direction: column; }
  .price-card, .auth-card, .account-card { padding: 27px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .js-reveal .video-card,
  .js-reveal .detail-block,
  .js-reveal .feature-row article,
  .js-reveal .price-card { opacity: 1; transform: none; }
}

/* ═══ HUD gimmick suite (subset synced to journal theme style.css) ═══ */

/* G1 · telemetry mini-HUD */
.hud-telemetry {
  position: fixed;
  right: 18px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: rgba(4, 7, 10, .72);
  backdrop-filter: blur(10px);
  color: #74858f;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .12em;
  pointer-events: none;
}
.hud-telemetry i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 8px var(--ok);
  animation: standby-blink 2.4s steps(2, jump-none) infinite;
}
.hud-telemetry-clock { color: var(--hud); }
.hud-telemetry-clock::after { content: " UTC"; color: #74858f; }
@media (max-width: 780px) { .hud-telemetry { display: none; } }

/* G2 · periodic page scan sweep */
.ambient::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(155, 232, 255, .32), transparent);
  box-shadow: 0 0 18px rgba(155, 232, 255, .22);
  opacity: 0;
  transform: translateY(-4vh);
  animation: hud-page-scan 47s linear infinite;
}
@keyframes hud-page-scan {
  0%, 93% { transform: translateY(-4vh); opacity: 0; }
  94% { opacity: .45; }
  98.5% { opacity: .45; }
  100% { transform: translateY(104vh); opacity: 0; }
}

/* G3 · OVERRIDE MODE (Konami) — phosphor green shift via token override */
html.ulw-override {
  --hud: #7cffb0;
  --hud-dim: rgba(124, 255, 176, .42);
  --hud-glow: rgba(124, 255, 176, .14);
  --line: rgba(124, 255, 176, .18);
  --line-soft: rgba(124, 255, 176, .1);
  --surface: rgba(124, 255, 176, .05);
  --surface-strong: rgba(124, 255, 176, .09);
}
html.ulw-override .ambient {
  background:
    repeating-linear-gradient(0deg, rgba(124, 255, 176, .03) 0 1px, transparent 1px 3px),
    radial-gradient(ellipse at 50% 130%, transparent 45%, rgba(0, 0, 0, .42));
}
html.ulw-override .price-card::before,
html.ulw-override .empty-state::before,
html.ulw-override .detail-media::after { opacity: .65; }

/* Native 4K still archive ------------------------------------------------- */
.free-wallpaper-hero {
  max-width: 1500px;
  margin: 0 auto;
  padding: 96px 36px 54px;
}
.free-wallpaper-hero h1 {
  max-width: 920px;
  margin: 15px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(52px, 7.6vw, 116px);
  line-height: .88;
  letter-spacing: -.055em;
}
.free-wallpaper-hero h1 em { color: var(--hud); font-style: normal; }
.free-wallpaper-hero > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.free-wallpaper-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}
.free-wallpaper-stats span,
.free-wallpaper-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #b9cad3;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.free-wallpaper-stats span { padding: 9px 12px; }
.free-wallpaper-catalog {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 36px 120px;
}
.free-wallpaper-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 20px;
}
.free-wallpaper-card { min-width: 0; }
.free-wallpaper-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #020405;
}
.free-wallpaper-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}
.free-wallpaper-card:hover .free-wallpaper-media img {
  transform: scale(1.025);
  filter: brightness(1.08);
}
.free-wallpaper-chip {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  border-color: rgba(155, 232, 255, .42);
  background: rgba(2, 8, 11, .78);
  color: var(--hud);
  backdrop-filter: blur(10px);
}
.free-wallpaper-copy { padding: 15px 2px 0; }
.free-wallpaper-copy h2 {
  margin: 0 0 9px;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.free-wallpaper-copy p {
  margin: 8px 0 0;
  color: #73858f;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.free-wallpaper-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, .65fr);
  gap: 46px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 70px 36px 110px;
}
.free-wallpaper-detail-media { min-width: 0; }
.free-wallpaper-detail-media > img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: #000;
}
.free-wallpaper-detail-copy {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(155deg, rgba(155,232,255,.06), rgba(0,0,0,.2) 54%);
}
.free-wallpaper-detail-copy h1 {
  margin: 15px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.2vw, 66px);
  line-height: .96;
  letter-spacing: -.045em;
}
.free-wallpaper-detail-copy > p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.free-wallpaper-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 25px 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  background: var(--line-soft);
}
.free-wallpaper-specs div { padding: 13px; background: #071014; }
.free-wallpaper-specs dt { color: #70818a; font-family: var(--font-mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.free-wallpaper-specs dd { margin: 5px 0 0; color: #e7f1f4; font-family: var(--font-mono); font-size: 11px; }
.free-wallpaper-download { width: 100%; justify-content: space-between; }
.attribution-box {
  margin-top: 16px;
  padding: 15px;
  border: 1px solid rgba(155,232,255,.22);
  border-radius: 7px;
  background: rgba(155,232,255,.045);
}
.attribution-box > span { color: var(--hud); font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.attribution-box code { display: block; margin: 9px 0; overflow-wrap: anywhere; color: #dce9ed; font-size: 10px; line-height: 1.55; }
.attribution-box p { margin: 0; color: #74858f; font-size: 10px; line-height: 1.5; }

@media (max-width: 1050px) {
  .free-wallpaper-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .free-wallpaper-detail { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .free-wallpaper-hero { padding: 64px 18px 38px; }
  .free-wallpaper-catalog { padding: 0 18px 90px; }
  .free-wallpaper-grid { grid-template-columns: 1fr; gap: 28px; }
  .free-wallpaper-detail { padding: 35px 18px 80px; gap: 24px; }
  .free-wallpaper-detail-copy { padding: 22px 18px; }
}
html.ulw-override .hero h1 em {
  background: linear-gradient(105deg, #fff 8%, #7cffb0 55%, #d9ffe9 90%);
  background-clip: text;
}
html.ulw-override .scope-sweep {
  background: conic-gradient(from 0deg, rgba(124, 255, 176, .26), rgba(124, 255, 176, .07) 11%, transparent 19%);
}

/* toast (override feedback) */
.hud-toast {
  position: fixed;
  top: 84px;
  left: 50%;
  z-index: 90;
  transform: translate(-50%, -12px);
  padding: 12px 18px;
  border: 1px solid var(--hud-dim);
  border-left: 3px solid var(--hud);
  border-radius: 4px;
  background: rgba(4, 7, 10, .88);
  backdrop-filter: blur(12px);
  color: var(--hud);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.hud-toast.is-live { opacity: 1; transform: translate(-50%, 0); }

/* G5 · diagnostics panel */
.hud-diag {
  position: fixed;
  right: 18px;
  bottom: 56px;
  z-index: 95;
  width: min(340px, calc(100vw - 36px));
  border: 1px solid var(--hud-dim);
  border-radius: 6px;
  background: rgba(4, 7, 10, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5), 0 0 40px rgba(155, 232, 255, .06);
  font-family: var(--font-mono);
}
.hud-diag-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--hud);
  font-size: 9px;
  letter-spacing: .18em;
}
.hud-diag-head button {
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
}
.hud-diag-head button:hover { color: white; border-color: var(--hud-dim); }
.hud-diag-body {
  display: grid;
  gap: 6px;
  padding: 12px 14px 14px;
  color: #a9bcc6;
  font-size: 10px;
  line-height: 1.5;
}
.hud-diag-body div { min-height: 15px; white-space: pre; }

/* H1 · hero telemetry line */
.hero-telemetry {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: #74858f;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
}
.hero-telemetry .js-utc { color: var(--hud); }
.hero-copy > *:nth-child(5) { animation-delay: .32s; }
.hero-telemetry-cursor {
  display: inline-block;
  width: 7px;
  height: 12px;
  background: var(--hud);
  animation: standby-blink 1.1s steps(2, jump-none) infinite;
}

/* H2 · radar blips (sweep contacts, synced to 9s scope-rotate) */
.blip {
  position: absolute;
  z-index: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hud);
  opacity: 0;
  animation: blip-ping 9s linear infinite;
  pointer-events: none;
}
.blip::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid var(--hud-dim);
  border-radius: 50%;
}
.blip-1 { top: 21%; left: 60%; animation-delay: -8.5s; }
.blip-2 { top: 66%; left: 74%; animation-delay: -5.9s; }
.blip-3 { top: 74%; left: 30%; animation-delay: -3.5s; }
.blip-4 { top: 34%; left: 22%; animation-delay: -1.5s; }
@keyframes blip-ping {
  0% { opacity: 0; }
  2% { opacity: .95; }
  14% { opacity: .5; }
  45% { opacity: 0; }
  100% { opacity: 0; }
}

/* H3 · orbit-core lock-on */
.orbit-core::after {
  content: "TARGET LOCKED";
  position: absolute;
  left: 50%;
  bottom: 13%;
  transform: translateX(-50%);
  color: var(--hud);
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: .22em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .25s;
}
.orbit-core:hover {
  border-color: var(--hud-dim);
  box-shadow: inset 0 0 40px rgba(155, 232, 255, .14), 0 0 30px rgba(155, 232, 255, .1);
}
.orbit-core:hover::after { opacity: 1; }

/* D1 · live timecode */
.hud-timecode { margin-left: 14px; color: var(--ok); }

/* L1 · card lock-on — targeting corners track the cursor */
.card-media::after { transform: scale(1.05) translate(var(--tx, 0px), var(--ty, 0px)); }
.video-card:is(:hover, :focus-within) .card-media::after {
  transform: scale(1) translate(var(--tx, 0px), var(--ty, 0px));
}

/* G6 · display-heading glitch on hover */
@keyframes hud-glitch {
  0%, 100% { text-shadow: none; }
  20% { text-shadow: 2px 0 rgba(155, 232, 255, .55), -2px 0 rgba(255, 179, 92, .4); }
  40% { text-shadow: -2px 0 rgba(155, 232, 255, .5), 2px 0 rgba(255, 143, 125, .35); }
  60% { text-shadow: 1px 0 rgba(155, 232, 255, .4), -1px 0 rgba(255, 179, 92, .3); }
}
.hero h1:hover, .pricing-hero h1:hover, .listing-hero h1:hover,
.legal-hero h1:hover, .auth-copy h1:hover, .not-found h1:hover,
.daily-feed-copy h1:hover, .account-hero h1:hover {
  animation: hud-glitch .6s steps(1) infinite;
}

/* 404 · SIGNAL LOST showpiece */
.not-found-scope {
  position: relative;
  width: 180px;
  aspect-ratio: 1;
  margin: 0 auto 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    repeating-linear-gradient(0deg, rgba(155, 232, 255, .03) 0 1px, transparent 1px 3px),
    radial-gradient(circle, rgba(155, 232, 255, .08), transparent 70%);
}
.not-found-scope::before {
  content: "";
  position: absolute;
  inset: 22%;
  border: 1px dashed var(--hud-dim);
  border-radius: 50%;
}
.not-found-scope::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(155, 232, 255, .3), transparent 22%);
  animation: scope-rotate 2.2s linear infinite;
}
.not-found-readout {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--danger);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
}
.not-found-readout::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 10px var(--danger);
  animation: standby-blink 1.2s steps(2, jump-none) infinite;
}

/* Idle standby — the site as its own live wallpaper */
.hud-standby {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(0deg, rgba(155, 232, 255, .02) 0 1px, transparent 1px 3px),
    rgba(2, 4, 6, .93);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s ease, visibility 1.4s;
  pointer-events: none;
}
.hud-standby.is-live { opacity: 1; visibility: visible; }
.hud-standby-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--hud-dim);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.hud-standby-ring-1 { width: 26vmin; height: 26vmin; animation: standby-ring 6s ease-in-out infinite; }
.hud-standby-ring-2 { width: 44vmin; height: 44vmin; animation: standby-ring 6s ease-in-out -2s infinite; }
.hud-standby-ring-3 { width: 62vmin; height: 62vmin; animation: standby-ring 6s ease-in-out -4s infinite; }
@keyframes standby-ring {
  0%, 100% { transform: translate(-50%, -50%) scale(.96); opacity: .2; }
  50% { transform: translate(-50%, -50%) scale(1.04); opacity: .65; }
}
.hud-standby-copy {
  position: relative;
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  animation: standby-drift 14s ease-in-out infinite alternate;
}
.hud-standby-copy strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: .32em;
}
.hud-standby-copy .js-utc {
  color: var(--hud);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .3em;
}
.hud-standby-copy small {
  color: #74858f;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .24em;
  animation: standby-blink 2.4s steps(2, jump-none) infinite;
}
@keyframes standby-drift {
  from { transform: translate(-2%, -3%); }
  to { transform: translate(2%, 3%); }
}

/* FAQ knowledge hub */
.faq-hero {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto;
  padding: 105px 0 58px;
  border-bottom: 1px solid var(--line);
}
.faq-hero h1,
.faq-detail > header h1 {
  max-width: 1000px;
  margin: 14px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .96;
}
.faq-hero > p,
.faq-detail > header > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.faq-grid {
  display: grid;
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto 120px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}
.faq-card {
  position: relative;
  min-height: 285px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(8, 19, 25, .65), rgba(4, 8, 11, .18));
}
.faq-card > span {
  color: var(--hud);
  font: 9px var(--font-mono);
  letter-spacing: .2em;
}
.faq-card h2 { margin: 20px 0 14px; font: 700 clamp(22px, 3vw, 31px)/1.08 var(--font-display); }
.faq-card h2 a:hover { color: var(--hud); }
.faq-card p { max-width: 520px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.faq-card .section-link { position: absolute; right: 34px; bottom: 30px; }
.faq-detail {
  width: min(920px, calc(100% - 72px));
  margin: 0 auto;
  padding: 70px 0 130px;
}
.faq-detail > header { padding: 35px 0 58px; border-bottom: 1px solid var(--line); }
.faq-copy { max-width: 760px; margin: 0 auto; padding: 55px 0 70px; }
.faq-copy h2 { margin: 54px 0 16px; font: 700 clamp(27px, 4vw, 38px)/1.08 var(--font-display); letter-spacing: -.025em; }
.faq-copy h3 { margin: 36px 0 12px; font: 700 23px var(--font-display); }
.faq-copy p,
.faq-copy li { color: #b3c1c8; font-size: 17px; line-height: 1.85; }
.faq-copy p { margin: 0 0 23px; }
.faq-copy ul,
.faq-copy ol { margin: 0 0 28px; padding-left: 26px; }
.faq-copy li { margin-bottom: 8px; padding-left: 4px; }
.faq-copy strong { color: var(--text); font-weight: 600; }
.faq-copy a { color: var(--hud); text-decoration: underline; text-decoration-color: var(--hud-dim); text-underline-offset: 4px; }
.faq-copy a:hover { text-decoration-color: var(--hud); }
.faq-copy code { padding: 2px 5px; border: 1px solid var(--line); border-radius: 3px; background: var(--surface); color: #d8e5ea; font: .85em var(--font-mono); }
.faq-copy pre { overflow-x: auto; margin: 0 0 28px; padding: 18px; border: 1px solid var(--line); background: #020507; }
.faq-copy pre code { padding: 0; border: 0; background: none; }
.faq-copy .faq-table-wrap { overflow-x: auto; margin: 0 0 32px; border: 1px solid var(--line); background: #020507; }
.faq-copy table { width: 100%; border-collapse: collapse; font-size: 14px; line-height: 1.45; }
.faq-copy th,
.faq-copy td { padding: 11px 12px; border-bottom: 1px solid var(--line-soft); text-align: left; vertical-align: top; }
.faq-copy th { color: var(--hud); font: 500 11px/1.3 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; }
.faq-copy td { color: #b3c1c8; }
.faq-copy tr:last-child td { border-bottom: 0; }
.faq-figure {
  margin: 36px 0 44px;
  padding: 18px 16px 14px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% -10%, var(--hud-glow), transparent 46%),
    #020507;
}
.faq-figure .fig-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--signal);
  font: 500 11px/1.3 var(--font-mono);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.faq-figure h3 {
  margin: 0 0 8px;
  font: 700 clamp(22px, 3vw, 30px)/1.1 var(--font-display);
  letter-spacing: -.02em;
}
.faq-figure .fig-lede {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.faq-figure .fig-rail {
  position: relative;
  height: 38px;
  margin: 0 0 16px;
  border: 1px solid var(--line-soft);
  background: rgba(155, 232, 255, .03);
}
.faq-figure .fig-rail i {
  position: absolute;
  top: 13px;
  height: 10px;
  border-radius: 99px;
}
.faq-figure .fig-rail span {
  position: absolute;
  top: 24px;
  color: #7d8d96;
  font: 400 10px var(--font-mono);
  white-space: nowrap;
  transform: translateX(-50%);
}
.faq-figure .z-iphone { left: 3%; width: 7%; background: var(--signal); }
.faq-figure .z-desk { left: 16%; width: 14%; background: var(--hud); }
.faq-figure .z-ulw { left: 20%; width: 6%; background: var(--signal); box-shadow: 0 0 10px var(--signal-dim); }
.faq-figure .z-long { left: 38%; width: 26%; background: rgba(155, 232, 255, .28); }
.faq-figure .t-1 { left: 6%; }
.faq-figure .t-2 { left: 12%; }
.faq-figure .t-10 { left: 23%; }
.faq-figure .t-30 { left: 51%; }
.faq-figure .t-60 { left: 90%; }
.faq-figure .fig-note { margin: 0 0 10px; color: #9aadb6; font-size: 13px; line-height: 1.5; }
.faq-figure .fig-mono { margin: 6px 0 0; color: #6f8089; font: 400 11px var(--font-mono); }
.faq-dest-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.faq-dest-card {
  min-height: 100%;
  padding: 12px 11px 11px;
  border: 1px solid var(--line-soft);
  border-top: 2px solid var(--hud);
  background: rgba(155, 232, 255, .035);
}
.faq-dest-card.gold { border-top-color: var(--signal); }
.faq-dest-card .idx {
  color: #6f8089;
  font: 500 10px var(--font-mono);
  letter-spacing: .12em;
}
.faq-dest-card h4 { margin: 6px 0 8px; font: 700 16px/1.15 var(--font-display); }
.faq-dest-card .sec {
  color: var(--hud);
  font: 700 28px/1 var(--font-display);
}
.faq-dest-card.gold .sec { color: var(--signal); }
.faq-dest-card .sec small { margin-left: 3px; color: var(--muted); font-size: 12px; font-weight: 500; }
.faq-dest-card p { margin: 10px 0 0; color: #9aadb6; font-size: 12.5px; line-height: 1.45; }
.faq-dest-card .chip {
  display: inline-block;
  margin: 8px 4px 0 0;
  padding: 2px 7px;
  border: 1px solid var(--hud-dim);
  color: var(--hud);
  font: 500 10px var(--font-mono);
}
.faq-cost-split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 12px; }
.faq-gop {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 52px;
  margin: 8px 0 4px;
}
.faq-gop b {
  flex: 1;
  height: 42%;
  background: rgba(155, 232, 255, .12);
}
.faq-gop b.key { height: 100%; background: var(--signal); }
.faq-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.faq-metrics div {
  padding: 10px;
  border: 1px solid var(--line-soft);
  background: rgba(155, 232, 255, .03);
}
.faq-metrics strong {
  display: block;
  color: var(--signal);
  font: 500 16px var(--font-mono);
}
.faq-metrics span { color: #84969f; font-size: 11px; line-height: 1.35; }
.faq-figure figcaption {
  margin-top: 12px;
  color: #6f8089;
  font: 400 11px/1.45 var(--font-mono);
}
@media (max-width: 900px) {
  .faq-dest-grid,
  .faq-cost-split { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .faq-dest-grid,
  .faq-cost-split,
  .faq-metrics { grid-template-columns: 1fr; }
}
.faq-copy h2:last-of-type { margin-top: 72px; padding-top: 34px; border-top: 1px solid var(--line); color: var(--muted); font-size: 22px; }
.faq-copy h2:last-of-type + ul { font-family: var(--font-mono); }
.faq-copy h2:last-of-type + ul li { color: #84969f; font-size: 11px; line-height: 1.6; }
.faq-next { display: flex; flex-wrap: wrap; align-items: center; gap: 13px; padding: 34px; border: 1px solid var(--hud-dim); background: radial-gradient(circle at top right, var(--hud-glow), transparent 60%), var(--surface); }
.faq-next .eyebrow { width: 100%; }
.faq-next h2 { flex: 1 1 320px; margin: 0; font: 700 28px var(--font-display); }

@media (max-width: 780px) {
  .faq-hero,
  .faq-grid,
  .faq-detail { width: min(100% - 36px, 760px); }
  .faq-hero { padding-top: 65px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-card { min-height: 255px; padding: 28px; }
  .faq-card .section-link { right: 28px; bottom: 26px; }
  .faq-detail { padding-top: 38px; }
  .faq-copy { padding-top: 38px; }
  .faq-copy p,
  .faq-copy li { font-size: 16px; line-height: 1.75; }
}

@media (max-width: 500px) {
  .faq-hero h1,
  .faq-detail > header h1 { font-size: 43px; }
  .faq-next { align-items: stretch; flex-direction: column; }
  .faq-next h2 { flex-basis: auto; }
  .faq-next .button { width: 100%; text-align: center; }
}

/* Support chat and operator queue */
.support-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 180;
  font-family: var(--font-mono);
}
.support-launcher {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 8px 16px 8px 8px;
  border: 1px solid var(--hud-dim);
  border-radius: 999px;
  background: rgba(4, 9, 13, .94);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .48), 0 0 30px var(--hud-glow);
  color: var(--text);
  cursor: pointer;
}
.support-launcher span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--hud);
  color: #031016;
  font-family: var(--font-display);
  font-weight: 800;
}
.support-launcher strong { font-size: 11px; letter-spacing: .08em; }
.support-panel {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: min(390px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid var(--hud-dim);
  border-radius: 8px;
  background: rgba(4, 8, 12, .98);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .72), 0 0 48px var(--hud-glow);
  backdrop-filter: blur(20px);
}
.support-panel[hidden] { display: none; }
.support-panel > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, var(--surface-strong), transparent);
}
.support-panel > header div { display: grid; gap: 4px; }
.support-panel > header small,
.support-conversation-head span {
  color: var(--hud);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.support-panel > header strong { font-family: var(--font-display); font-size: 17px; }
.support-panel > header button {
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 24px;
}
.support-body { padding: 17px; }
.support-intro,
.support-note { color: var(--muted); font-size: 12px; line-height: 1.6; }
.support-panel form { display: grid; gap: 12px; }
.support-panel label { display: grid; gap: 6px; color: #a9bac4; font-size: 10px; letter-spacing: .06em; }
.support-panel select,
.support-panel input,
.support-panel textarea,
.support-ticket textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, .035);
  color: var(--text);
  font: 13px/1.5 var(--font-body);
  padding: 10px 11px;
  resize: vertical;
}
.support-panel option { background: #071016; }
.support-conversation-head { display: grid; gap: 5px; margin-bottom: 12px; }
.support-messages,
.support-ticket-messages {
  display: grid;
  gap: 8px;
  overflow-y: auto;
  max-height: 280px;
  padding: 3px 2px 12px;
}
.support-message { max-width: 88%; }
.support-message.is-admin { justify-self: start; }
.support-message.is-visitor { justify-self: end; }
.support-message small { display: block; margin: 0 0 3px 4px; color: var(--muted); font-size: 8px; text-transform: uppercase; }
.support-message p {
  margin: 0;
  padding: 9px 11px;
  border: 1px solid var(--line-soft);
  border-radius: 5px;
  background: var(--surface);
  color: #d9e4e9;
  font: 12px/1.5 var(--font-body);
}
.support-message.is-visitor p { border-color: var(--hud-dim); background: var(--hud-glow); }
.support-reply { grid-template-columns: 1fr auto; align-items: end; }
.support-reply button {
  height: 42px;
  border: 1px solid var(--hud-dim);
  border-radius: 4px;
  background: var(--hud);
  color: #031016;
  cursor: pointer;
  font: 700 10px var(--font-mono);
  text-transform: uppercase;
}
.support-error { margin: 12px 0 0; color: var(--danger); font-size: 11px; line-height: 1.5; }
.nav-support-admin { color: var(--hud) !important; }

.support-admin { width: min(1280px, calc(100% - 40px)); margin: 60px auto 110px; }
.support-admin-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 0 28px;
  border-bottom: 1px solid var(--line);
}
.support-admin-hero h1 { margin: 6px 0 8px; font-family: var(--font-display); font-size: clamp(36px, 6vw, 72px); }
.support-admin-hero p { color: var(--muted); }
.support-presence { display: flex; align-items: center; gap: 14px; }
.support-presence span { color: var(--muted); font: 10px var(--font-mono); letter-spacing: .12em; text-transform: uppercase; }
.support-presence span.online { color: var(--ok); }
.support-admin-stats { display: flex; gap: 14px; padding: 22px 0; }
.support-admin-stats span {
  min-width: 140px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted);
  font: 10px var(--font-mono);
  text-transform: uppercase;
}
.support-admin-stats strong { margin-right: 8px; color: var(--hud); font-size: 22px; }
.support-admin-queue { display: grid; gap: 18px; }
.support-ticket {
  display: grid;
  gap: 15px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--hud);
  border-radius: 6px;
  background: linear-gradient(120deg, var(--surface), rgba(3, 7, 10, .72));
}
.support-ticket > header { display: flex; justify-content: space-between; gap: 20px; }
.support-ticket > header span { color: var(--hud); font: 9px var(--font-mono); letter-spacing: .14em; text-transform: uppercase; }
.support-ticket h2 { margin: 5px 0 0; font: 700 22px var(--font-display); }
.support-ticket time { color: var(--muted); font: 9px var(--font-mono); }
.support-ticket-details { margin: 0; color: #e0e9ed; font-size: 15px; }
.support-ticket dl { display: flex; flex-wrap: wrap; gap: 24px; margin: 0; }
.support-ticket dl div { display: grid; gap: 4px; }
.support-ticket dt { color: var(--muted); font: 8px var(--font-mono); letter-spacing: .12em; text-transform: uppercase; }
.support-ticket dd { margin: 0; color: #cbd8de; font: 11px var(--font-mono); }
.support-ticket-messages { max-height: 360px; padding: 12px; border: 1px solid var(--line-soft); }
.support-ticket form { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: end; }
.support-ticket-actions { display: flex; gap: 16px; }
.support-ticket-actions button { border: 0; background: none; color: var(--muted); cursor: pointer; font: 10px var(--font-mono); text-transform: uppercase; }
.support-ticket-actions button:hover { color: var(--hud); }

.magic-login-card {
  width: min(680px, calc(100% - 36px));
  margin: 14vh auto 18vh;
  padding: clamp(28px, 6vw, 70px);
  border: 1px solid var(--hud-dim);
  border-radius: 8px;
  background: radial-gradient(circle at top right, var(--hud-glow), transparent 55%), var(--surface);
  text-align: center;
}
.magic-login-card h1 { font: 700 clamp(34px, 6vw, 64px) var(--font-display); }
.magic-login-card p { color: var(--hud); font: 12px/1.7 var(--font-mono); }
.magic-login-card p.is-error { color: var(--danger); }

body.checkout-overlay-open { overflow: hidden; }
.checkout-overlay {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(1, 5, 8, .82);
  backdrop-filter: blur(16px);
  animation: checkout-overlay-in .18s ease-out;
}
.checkout-modal {
  position: relative;
  width: min(720px, 100%);
  min-height: 310px;
  max-height: calc(100vh - 36px);
  overflow: hidden;
  border: 1px solid rgba(120, 241, 255, .34);
  border-radius: 12px;
  background:
    radial-gradient(circle at 85% 8%, rgba(38, 221, 255, .13), transparent 38%),
    #071015;
  box-shadow: 0 32px 100px rgba(0, 0, 0, .72), inset 0 0 42px rgba(28, 209, 255, .04);
}
.checkout-modal::before {
  content: "PAYPAL // SECURE SESSION";
  display: block;
  padding: 13px 22px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--hud);
  font: 9px var(--font-mono);
  letter-spacing: .16em;
}
.checkout-modal-close {
  position: absolute;
  z-index: 2;
  top: 7px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 25px;
}
.checkout-modal-close:hover { color: var(--hud); }
.checkout-modal-body {
  display: grid;
  align-content: center;
  min-height: 266px;
  padding: clamp(34px, 7vw, 72px);
  text-align: center;
}
.checkout-modal-body h2 { margin: 10px 0 12px; font: 700 clamp(30px, 5vw, 52px) var(--font-display); }
.checkout-modal-body > p { max-width: 520px; margin: 0 auto; color: var(--muted); line-height: 1.7; }
.checkout-modal-progress { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.checkout-modal-progress i { width: 7px; height: 7px; border-radius: 50%; background: var(--hud); animation: checkout-pulse 1s ease-in-out infinite; }
.checkout-modal-progress i:nth-child(2) { animation-delay: .15s; }
.checkout-modal-progress i:nth-child(3) { animation-delay: .3s; }
.checkout-account-frame { width: 100%; height: min(680px, calc(100vh - 80px)); border: 0; background: #071015; }
.checkout-modal-body:has(.checkout-account-frame) { display: block; min-height: 0; padding: 0; }

body.embedded-checkout { min-height: 100vh; background: #071015; }
body.embedded-checkout > .ambient,
body.embedded-checkout > .site-header,
body.embedded-checkout > footer,
body.embedded-checkout .support-widget { display: none !important; }
body.embedded-checkout main { min-height: 100vh; padding: 0; }
body.embedded-checkout .auth-shell { min-height: 100vh; margin: 0; padding: 30px; align-items: center; }

@keyframes checkout-overlay-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes checkout-pulse { 0%, 100% { opacity: .25; transform: scale(.75); } 50% { opacity: 1; transform: scale(1); } }

@media (max-width: 720px) {
  .support-widget { right: 14px; bottom: 14px; }
  .support-panel { right: -1px; }
  .support-admin-hero { align-items: start; flex-direction: column; }
  .support-ticket form { grid-template-columns: 1fr; }
  .checkout-overlay { padding: 0; }
  .checkout-modal { width: 100%; max-height: 100vh; min-height: 100vh; border: 0; border-radius: 0; }
  .checkout-modal-body { min-height: calc(100vh - 45px); }
  .checkout-account-frame { height: calc(100vh - 45px); }
  body.embedded-checkout .auth-shell { padding: 18px; }
}
.admin-publication-status {
  position: relative;
  z-index: 30;
  width: 100%;
  min-height: 38px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 18px;
  border-bottom: 1px solid rgba(114, 244, 210, .35);
  background: linear-gradient(90deg, #071713, #0b2420 50%, #071713);
  color: #dffdf5;
  font: 500 13px/1.3 "IBM Plex Mono", monospace;
}

.admin-publication-status strong {
  color: #72f4d2;
  letter-spacing: .12em;
}

.admin-publication-status a {
  color: #fff;
  text-decoration: none;
}

.admin-publication-status a:hover { color: #72f4d2; }

.admin-publication-dashboard {
  margin-left: 12px;
  padding-left: 14px;
  border-left: 1px solid rgba(114, 244, 210, .28);
  font-weight: 700;
}

@media (max-width: 720px) {
  .admin-publication-status { flex-wrap: wrap; gap: 5px 8px; }
  .admin-publication-dashboard { margin-left: 4px; }
}

/* Creator-exclusive membership */
.creator-home-hero,
.creator-landing-hero,
.creator-account-hero,
.creator-tool-hero,
.creator-chat-hero {
  width: min(1320px, calc(100% - 48px));
  margin: clamp(44px, 8vw, 104px) auto 42px;
}
.creator-home-hero { max-width: 1050px; text-align: center; }
.creator-home-hero h1,
.creator-landing-hero h1,
.creator-account-hero h1,
.creator-tool-hero h1,
.creator-chat-hero h1 {
  margin: 12px 0 16px;
  font: 700 clamp(38px, 6vw, 78px)/.98 var(--font-display);
  letter-spacing: -.045em;
}
.creator-home-hero > p,
.creator-landing-hero p,
.creator-account-hero p,
.creator-tool-hero p,
.creator-chat-hero p { color: var(--muted); font-size: clamp(16px, 2vw, 20px); line-height: 1.7; }
.creator-price {
  display: grid;
  width: min(390px, 100%);
  margin: 32px auto;
  padding: 24px;
  border: 1px solid rgba(114, 244, 210, .3);
  border-radius: 18px;
  background: rgba(8, 24, 24, .76);
}
.creator-price strong { color: #72f4d2; font: 700 42px var(--font-display); }
.creator-price span { text-transform: uppercase; letter-spacing: .14em; }
.creator-price small { margin-top: 10px; color: var(--muted); line-height: 1.5; }
.creator-steps,
.creator-collection-links,
.creator-script-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto 72px;
}
.creator-steps article,
.creator-collection-links a,
.creator-script-grid article,
.creator-renew,
.creator-profile-form,
.creator-script-upload {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(13, 24, 28, .94), rgba(5, 10, 14, .94));
}
.creator-steps article > span,
.creator-collection-links span,
.creator-script-grid article > span { color: #72f4d2; font: 600 12px var(--font-mono); letter-spacing: .12em; text-transform: uppercase; }
.creator-steps h2,
.creator-collection-links h2,
.creator-script-grid h2 { margin: 16px 0 10px; font: 700 25px var(--font-display); }
.creator-steps p,
.creator-collection-links p,
.creator-script-grid p { color: var(--muted); line-height: 1.65; }
.creator-collection-links { grid-template-columns: repeat(2, 1fr); }
.creator-collection-links a { color: inherit; text-decoration: none; transition: border-color .2s, transform .2s; }
.creator-collection-links a:hover { border-color: #72f4d2; transform: translateY(-3px); }
.creator-collection-links strong { display: block; margin-top: 20px; color: #72f4d2; }
.creator-landing-hero,
.creator-account-hero { display: grid; grid-template-columns: 1fr minmax(230px, 320px); gap: 50px; align-items: end; }
.creator-landing-hero aside,
.creator-account-hero aside { display: grid; padding: 28px; border: 1px solid rgba(114, 244, 210, .28); border-radius: 18px; background: rgba(5, 19, 19, .8); }
.creator-landing-hero aside strong,
.creator-account-hero aside strong { color: #72f4d2; font: 700 54px var(--font-display); }
.creator-landing-hero aside small,
.creator-account-hero aside small { margin-top: 12px; color: var(--muted); line-height: 1.45; }
.creator-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 25px; }
.creator-library { width: min(1480px, calc(100% - 48px)); margin: 0 auto 90px; }
.creator-library .library-search { margin-bottom: 34px; }
.creator-card-shell { display: flex; flex-direction: column; gap: 11px; min-width: 0; }
.creator-card-shell > .button,
.creator-card-shell > form .button { width: 100%; box-sizing: border-box; text-align: center; }
.creator-card-shell > small { color: var(--muted); font: 500 11px var(--font-mono); }
.creator-member-nav {
  display: flex; flex-wrap: wrap; gap: 10px;
  width: min(1320px, calc(100% - 48px)); margin: -18px auto 46px;
}
.creator-member-nav a { padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--text); text-decoration: none; }
.creator-member-nav a:hover { color: #72f4d2; border-color: #72f4d2; }
.creator-renew,
.creator-profile-form,
.creator-script-upload,
.creator-chat-shell { width: min(900px, calc(100% - 48px)); margin: 0 auto 44px; box-sizing: border-box; }
.creator-profile-form form,
.creator-script-upload form { display: grid; gap: 16px; }
.creator-profile-form label,
.creator-script-upload label,
.creator-chat-compose label { display: grid; gap: 7px; color: var(--muted); }
.creator-profile-form input,
.creator-script-upload input,
.creator-script-upload textarea,
.creator-chat-compose textarea { width: 100%; box-sizing: border-box; padding: 13px; border: 1px solid var(--line); border-radius: 9px; background: #071015; color: var(--text); }
.creator-script-grid { grid-template-columns: repeat(3, 1fr); }
.creator-script-grid article { display: flex; flex-direction: column; }
.creator-script-grid article small { margin: auto 0 18px; color: var(--muted); }
.creator-chat-shell { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: rgba(5, 12, 16, .95); }
.creator-chat-messages { max-height: 580px; overflow: auto; padding: 20px; }
.creator-chat-messages article { padding: 16px 0; border-bottom: 1px solid var(--line); }
.creator-chat-messages article header { display: flex; justify-content: space-between; gap: 20px; color: #72f4d2; }
.creator-chat-messages time { color: var(--muted); font: 500 11px var(--font-mono); }
.creator-chat-messages p { margin: 8px 0 0; line-height: 1.6; overflow-wrap: anywhere; }
.creator-chat-compose { display: grid; gap: 12px; padding: 20px; border-top: 1px solid var(--line); }

@media (max-width: 820px) {
  .creator-steps,
  .creator-collection-links,
  .creator-script-grid,
  .creator-landing-hero,
  .creator-account-hero { grid-template-columns: 1fr; }
  .creator-home-hero,
  .creator-landing-hero,
  .creator-account-hero,
  .creator-tool-hero,
  .creator-chat-hero,
  .creator-steps,
  .creator-collection-links,
  .creator-script-grid,
  .creator-library,
  .creator-member-nav { width: min(100% - 28px, 1320px); }
}
