:root {
  color-scheme: dark;
  --bg: #060606;
  --panel: #111;
  --panel-2: #171717;
  --line: #2a2a2a;
  --line-soft: rgba(255, 255, 255, 0.1);
  --text: #f5f5f5;
  --muted: #a6a6a6;
  --red: #d71920;
  --red-hot: #ff1e28;
  --red-dark: #8f1015;
  --steel: #6b7280;
  --concrete: #b7b2a8;
  --brass: #c6a15b;
  --green: #38b267;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(183, 178, 168, 0.055) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, rgba(215, 25, 32, 0.08), transparent 320px),
    var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 25% 12%, rgba(215, 25, 32, 0.1), transparent 30%),
    linear-gradient(180deg, #080808, #030303 70%);
}

.site-logo-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("./assets/logo.png");
  background-position: center 18vh;
  background-repeat: no-repeat;
  background-size: min(82vw, 860px);
  opacity: 0.13;
  filter: saturate(1.35) contrast(1.2);
}

.site-logo-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.78), rgba(6, 6, 6, 0.28), rgba(6, 6, 6, 0.82)),
    linear-gradient(180deg, rgba(6, 6, 6, 0.12), rgba(6, 6, 6, 0.82) 72%);
}

body.home-page,
body.newsletter-page,
body.creator-page {
  background:
    linear-gradient(135deg, rgba(183, 178, 168, 0.045) 0 1px, transparent 1px 34px),
    #050505;
}

body.home-page .site-logo-backdrop,
body.newsletter-page .site-logo-backdrop,
body.creator-page .site-logo-backdrop {
  z-index: -1;
  opacity: 0.36;
  background-size: cover;
  background-position: center top;
  filter: saturate(1.08) contrast(1.05);
}

body.home-page .site-logo-backdrop {
  background-image: url("./assets/creator-bg-unmuted.png");
}

body.newsletter-page .site-logo-backdrop {
  background-image: url("./assets/creator-bg-speak-free.png");
}

body.creator-page .site-logo-backdrop {
  background-image: url("./assets/creator-bg-truth-out-loud.png");
}

body.home-page .site-logo-backdrop::after,
body.newsletter-page .site-logo-backdrop::after,
body.creator-page .site-logo-backdrop::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.44), rgba(5, 5, 5, 0.86)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.28), rgba(5, 5, 5, 0.88) 62%, rgba(5, 5, 5, 0.96));
}

button,
a {
  font: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto auto auto;
  align-items: center;
  gap: 24px;
  padding: 10px 22px;
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.12), transparent 32%),
    rgba(6, 6, 6, 0.82);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-wordmark,
.brand small {
  display: block;
}

.brand small {
  color: #ffb5b8;
  margin-top: 2px;
  font-weight: 800;
}

.brand-wordmark {
  position: relative;
  width: fit-content;
  border: 1px solid rgba(215, 25, 32, 0.42);
  border-radius: 4px;
  padding: 3px 8px 4px;
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.18), rgba(255, 255, 255, 0.035)),
    #101010;
  color: #f4f4f4;
  font-size: 18px;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(215, 25, 32, 0.2);
  transform: rotate(-1deg);
}

.brand-wordmark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  pointer-events: none;
}

.brand-wordmark span,
.brand-wordmark em {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-style: normal;
}

.brand-wordmark span {
  font-weight: 950;
  color: #f5f0e8;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.75);
}

.brand-wordmark em {
  margin-left: 5px;
  color: #ff4048;
  font-weight: 950;
  text-shadow: 0 0 12px rgba(215, 25, 32, 0.36);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #d7d7d7;
}

.nav a {
  border-radius: 7px;
  padding: 8px 11px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.social-header,
.social-follow-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-follow-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 94px;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: white;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.social-header .social-follow-mini {
  width: 116px;
  min-width: 116px;
  max-width: 116px;
  height: 36px;
  min-height: 36px;
  padding: 0 13px;
  border: 0;
  font-size: 13px;
}

.social-follow-mini span {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.social-header .social-follow-mini span {
  width: 16px;
  height: 16px;
}

.social-follow-mini strong {
  font-size: 13px;
  font-weight: 900;
}

.social-x-mini {
  background: #050505;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 10px 26px rgba(0, 0, 0, 0.24);
}

.social-follow-mini:hover,
.social-follow-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

.social-x {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    #050505;
}

.social-facebook {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent),
    #1877f2;
}

.social-youtube {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    #d71920;
}

.social-spotify {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    #1f8f4a;
}

.ghost-button,
.install-app-button,
.icon-button {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #181818, #101010);
  color: var(--text);
  border-radius: 8px;
  padding: 10px 13px;
  cursor: pointer;
}

.ghost-button:hover,
.install-app-button:hover,
.icon-button:hover {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.12);
}

.install-app-button {
  background:
    linear-gradient(180deg, rgba(215, 25, 32, 0.22), rgba(16, 16, 16, 0.96)),
    #101010;
  font-weight: 800;
}

.install-app-button[hidden] {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 24px;
  padding: 8vh 5vw 6vh;
  overflow: hidden;
}

.hero-image,
.hero-shade,
.hero-logo-watermark {
  position: absolute;
}

.hero-image,
.hero-shade {
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(135deg, rgba(198, 161, 91, 0.12), transparent 32%),
    linear-gradient(90deg, rgba(6, 6, 6, 0.99) 0%, rgba(6, 6, 6, 0.82) 42%, rgba(6, 6, 6, 0.36) 100%),
    linear-gradient(0deg, rgba(6, 6, 6, 1) 0%, rgba(6, 6, 6, 0) 34%);
}

.hero-logo-watermark {
  z-index: 1;
  left: 2vw;
  bottom: 3vh;
  width: clamp(340px, 42vw, 680px);
  opacity: 0.22;
  filter: saturate(1.3) contrast(1.2);
  transform: rotate(-10deg);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 34px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--red-hot);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(52px, 7.5vw, 112px);
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow: 0 0 38px rgba(0, 0, 0, 0.75);
}

.motto-stamp {
  position: relative;
  display: inline-grid;
  gap: 2px;
  max-width: min(720px, 90vw);
  margin: 20px 0 24px;
  border: 4px solid rgba(215, 25, 32, 0.86);
  border-radius: 9px;
  padding: clamp(12px, 1.6vw, 20px) clamp(16px, 2.4vw, 30px);
  background:
    radial-gradient(circle at 92% 8%, rgba(215, 25, 32, 0.52) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 12%, rgba(215, 25, 32, 0.34) 0 1px, transparent 3px),
    repeating-linear-gradient(12deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 7px),
    rgba(0, 0, 0, 0.2);
  box-shadow:
    inset 0 0 0 2px rgba(215, 25, 32, 0.72),
    inset 0 0 0 9px rgba(0, 0, 0, 0.16),
    0 0 24px rgba(215, 25, 32, 0.28),
    0 22px 60px rgba(0, 0, 0, 0.46);
  color: var(--red-hot);
  text-transform: uppercase;
  transform: rotate(-6deg);
  transform-origin: left center;
  animation: stampFlicker 4.8s infinite;
  isolation: isolate;
}

.motto-stamp::before,
.motto-stamp::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.motto-stamp::before {
  inset: 7px;
  border: 2px solid rgba(215, 25, 32, 0.72);
  border-radius: 5px;
}

.motto-stamp::after {
  top: -24px;
  right: 18px;
  width: 54px;
  height: 54px;
  border: 0;
  background:
    radial-gradient(circle, rgba(215, 25, 32, 0.88) 0 5px, transparent 6px),
    radial-gradient(circle at 55% 42%, rgba(215, 25, 32, 0.42) 0 4px, transparent 5px),
    radial-gradient(circle at 35% 62%, rgba(215, 25, 32, 0.46) 0 3px, transparent 4px),
    linear-gradient(18deg, transparent 0 48%, rgba(215, 25, 32, 0.8) 49% 51%, transparent 52%),
    linear-gradient(86deg, transparent 0 48%, rgba(215, 25, 32, 0.68) 49% 51%, transparent 52%),
    linear-gradient(132deg, transparent 0 48%, rgba(215, 25, 32, 0.62) 49% 51%, transparent 52%);
  opacity: 0.84;
  filter: drop-shadow(0 0 12px rgba(215, 25, 32, 0.5));
  transform: rotate(20deg);
}

.motto-stamp span,
.motto-stamp strong {
  position: relative;
  z-index: 1;
  display: block;
}

.motto-stamp span {
  color: rgba(255, 38, 48, 0.94);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.32em;
  font-weight: 950;
  line-height: 0.88;
  text-shadow:
    1px 0 0 rgba(0, 0, 0, 0.42),
    0 0 14px rgba(215, 25, 32, 0.44);
}

.motto-stamp strong {
  color: rgba(255, 44, 52, 0.96);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.58em;
  line-height: 0.9;
  text-shadow:
    1px 0 0 rgba(0, 0, 0, 0.48),
    -1px 0 0 rgba(0, 0, 0, 0.36),
    0 0 18px rgba(215, 25, 32, 0.56),
    0 0 34px rgba(215, 25, 32, 0.24);
}

@keyframes stampFlicker {
  0%,
  8%,
  14%,
  24%,
  100% {
    opacity: 1;
    filter: saturate(1.22) contrast(1.08) drop-shadow(0 0 16px rgba(215, 25, 32, 0.34));
  }

  10%,
  18% {
    opacity: 0.62;
    filter: saturate(0.8) contrast(1) drop-shadow(0 0 4px rgba(215, 25, 32, 0.14));
  }

  20% {
    opacity: 0.9;
  }

  56% {
    opacity: 0.74;
  }

  58% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motto-stamp {
    animation: none;
  }
}

h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
}

.hero-copy {
  max-width: 690px;
  color: #d4d4d4;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
}

.identity-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
}

.identity-line span {
  border: 1px solid rgba(198, 161, 91, 0.42);
  border-radius: 8px;
  padding: 9px 11px;
  background: rgba(183, 178, 168, 0.08);
  color: #eee8dc;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.source-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
  margin-top: 26px;
}

.source-strip a {
  border: 1px solid rgba(215, 25, 32, 0.38);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.52);
  color: #e7e7e7;
  font-size: 13px;
  font-weight: 800;
}

.source-strip a:hover {
  border-color: var(--red-hot);
  color: white;
}

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

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
  font: inherit;
}

.primary-link {
  background: linear-gradient(135deg, var(--red-hot), #a11218);
  color: white;
  box-shadow: 0 16px 36px rgba(215, 25, 32, 0.24);
}

.secondary-link {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.ticker {
  display: flex;
  align-items: center;
  padding: 12px 5vw;
  background:
    linear-gradient(90deg, var(--red-dark), #4c080b 58%, rgba(198, 161, 91, 0.36));
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 42px;
  min-width: max-content;
  animation: ticker 20s linear infinite;
}

.ticker-track a {
  color: white;
  text-decoration: none;
  white-space: nowrap;
}

.ticker-track a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ad-band {
  padding: 18px 5vw;
  background:
    linear-gradient(90deg, rgba(198, 161, 91, 0.08), transparent 46%),
    rgba(6, 6, 6, 0.82);
  border-bottom: 1px solid var(--line);
}

.ad-shell {
  display: grid;
  align-items: center;
  min-height: 96px;
  max-width: 1120px;
  margin: 0 auto;
  border: 1px dashed rgba(198, 161, 91, 0.32);
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.025);
}

.ad-shell span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.ad-shell p {
  margin: 0;
  color: rgba(245, 245, 245, 0.58);
  font-size: 13px;
}

.ad-band-compact {
  padding-block: 12px;
}

.ad-band-compact .ad-shell {
  min-height: 58px;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-40%);
  }
}

.workspace {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) minmax(280px, 320px);
  gap: 24px;
  padding: 38px 5vw 46px;
  background: rgba(6, 6, 6, 0.72);
}

.rail {
  position: sticky;
  top: 90px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #151515, #0f0f0f);
  padding: 16px;
}

.rail-tag {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.rail h2 {
  font-size: 22px;
}

.filter {
  width: 100%;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.02);
  color: #e9e9e9;
  text-align: left;
  cursor: pointer;
}

.filter.active {
  background: linear-gradient(135deg, var(--red), #8f1015 70%, rgba(198, 161, 91, 0.35));
  border-color: var(--red);
  color: white;
}

.rail-block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.signal {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  color: #d8d8d8;
}

.signal strong {
  color: var(--green);
}

.rail-block h3 {
  color: white;
}

.feed-panel {
  min-width: 0;
}

.site-search-panel {
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.12), transparent 42%),
    #101010;
  padding: 16px;
}

.site-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.site-search-form input {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #050505;
  color: white;
  padding: 12px 14px;
  font: inherit;
}

.site-search-form input:focus {
  outline: 2px solid rgba(215, 25, 32, 0.5);
  outline-offset: 2px;
}

.site-search-meta {
  min-height: 20px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.site-search-results {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.site-search-result {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: #080808;
  padding: 14px;
}

.site-search-result h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.2;
}

.site-search-result h3 a {
  color: white;
}

.site-search-result p {
  margin-bottom: 12px;
  color: #d1d1d1;
  line-height: 1.45;
}

.site-search-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.site-search-pages button {
  min-width: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #151515;
  color: white;
  padding: 9px 11px;
  cursor: pointer;
  font: inherit;
}

.site-search-pages button.active {
  border-color: var(--red);
  background: var(--red);
}

.site-search-pages button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.owner-body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(215, 25, 32, 0.08), transparent 280px),
    #050505;
}

.owner-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 56px;
}

.owner-login,
.owner-console-head,
.owner-panel,
.owner-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.94);
}

.owner-login {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: center;
  margin-top: 12vh;
  padding: 28px;
}

.owner-login h1,
.owner-console-head h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 0.95;
  text-transform: uppercase;
}

.owner-login p,
.owner-console-head p,
.owner-card p {
  color: var(--muted);
  line-height: 1.5;
}

.owner-login-form,
.owner-form {
  display: grid;
  gap: 14px;
}

.owner-login-form label,
.owner-form label {
  display: grid;
  gap: 8px;
  color: #f2f2f2;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}

.owner-login-form input,
.owner-form input,
.owner-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #050505;
  color: white;
  padding: 12px 14px;
  font: inherit;
  text-transform: none;
}

.owner-login-form input:focus,
.owner-form input:focus,
.owner-form textarea:focus {
  outline: 2px solid rgba(215, 25, 32, 0.45);
  outline-offset: 2px;
}

.owner-status {
  min-height: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.owner-status[data-tone="success"] {
  color: var(--green);
}

.owner-status[data-tone="error"] {
  color: #ff6b6b;
}

.owner-console {
  display: grid;
  gap: 18px;
}

.owner-console-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
}

.owner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

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

.owner-card {
  padding: 16px;
}

.owner-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.owner-card strong {
  display: block;
  margin-top: 8px;
  color: white;
  font-size: 28px;
  line-height: 1;
}

.owner-card p {
  margin: 8px 0 0;
  font-size: 13px;
}

.owner-panel {
  padding: 18px;
}

.owner-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.owner-tool-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.owner-tool-grid button {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101010;
  color: white;
  padding: 10px;
  cursor: pointer;
  font-weight: 900;
}

.owner-tool-grid button:hover {
  border-color: rgba(215, 25, 32, 0.8);
}

.owner-output {
  max-height: 560px;
  overflow: auto;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #050505;
  color: #e6e6e6;
  padding: 14px;
  white-space: pre-wrap;
  word-break: break-word;
}

.x-live-rail {
  position: sticky;
  top: 90px;
  align-self: start;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #151515, #0d0d0d);
  padding: 14px;
}

.x-live-head {
  margin-bottom: 12px;
}

.x-live-head h2 {
  margin: 0;
  color: white;
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
}

.x-live-scroll {
  display: grid;
  gap: 10px;
  max-height: 620px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-color: rgba(215, 25, 32, 0.8) rgba(255, 255, 255, 0.08);
}

.x-watch-card {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.16), transparent 48%),
    #050505;
  color: white;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.x-watch-card:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 25, 32, 0.58);
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.24), transparent 52%),
    #080808;
}

.x-watch-card span {
  color: #f4dfb4;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.x-watch-card strong {
  font-size: 17px;
  line-height: 1.05;
}

.x-watch-card em {
  color: #bfbfbf;
  font-size: 13px;
  font-style: normal;
}

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

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

.story-card {
  position: relative;
  display: flex;
  min-height: 278px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--panel);
  padding: 16px;
  overflow: hidden;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.story-card.featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(198, 161, 91, 0.1), transparent 38%),
    linear-gradient(135deg, rgba(215, 25, 32, 0.22), transparent 48%),
    linear-gradient(180deg, #181818, #101010);
}

.story-image {
  position: relative;
  display: block;
  height: 148px;
  margin: -16px -16px 14px;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.28), rgba(0, 0, 0, 0.78)),
    #080808;
  overflow: hidden;
}

.image-fallback-label {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(215, 25, 32, 0.42);
  border-radius: 8px;
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.72);
  color: #f4dfb4;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.story-card.featured .story-image {
  height: 240px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 180ms ease, opacity 180ms ease;
}

.story-card:hover .story-image img {
  opacity: 1;
  transform: scale(1.025);
}

.story-card:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 25, 32, 0.55);
}

.story-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.category-pill {
  border: 1px solid rgba(198, 161, 91, 0.5);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(198, 161, 91, 0.1);
  color: #f4dfb4;
}

.story-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.market-line {
  margin: -6px 0 10px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.confidence {
  color: var(--green);
  font-weight: 800;
}

.story-card h3 {
  font-size: 22px;
  line-height: 1.12;
}

.story-card p {
  color: #cfcfcf;
  line-height: 1.5;
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--panel);
  color: #d7d7d7;
}

.story-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.story-actions button,
.story-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #151515;
  color: white;
  cursor: pointer;
  font: inherit;
}

.story-actions button:first-child,
.story-button {
  background: linear-gradient(135deg, var(--red), #9b1117);
  border-color: var(--red);
}

.story-actions button.saved {
  border-color: var(--green);
  color: var(--green);
}

.ai-shield-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 5vw;
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.08), transparent 44%),
    rgba(11, 11, 11, 0.86);
  border-block: 1px solid var(--line);
}

.ai-shield-band .eyebrow {
  margin-bottom: 5px;
  font-size: 11px;
}

.ai-shield-band h2 {
  margin-bottom: 5px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.08;
}

.ai-shield-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: #d1d1d1;
  font-size: 14px;
  line-height: 1.45;
}

.ai-shield-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 320px;
}

.ai-shield-grid span {
  border: 1px solid rgba(198, 161, 91, 0.32);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.035);
  color: #d9d0bf;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.media-section {
  padding: 48px 5vw 70px;
  background: rgba(6, 6, 6, 0.68);
}

.merch-section {
  padding: 50px 5vw 78px;
  background:
    linear-gradient(120deg, rgba(215, 25, 32, 0.12), transparent 42%),
    rgba(10, 10, 10, 0.9);
  border-top: 1px solid var(--line);
}

.merch-hero {
  min-height: 48vh;
  display: grid;
  align-items: end;
  padding: 9vh 5vw 42px;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.96), rgba(6, 6, 6, 0.56)),
    radial-gradient(circle at 78% 22%, rgba(215, 25, 32, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(198, 161, 91, 0.12), transparent 34%),
    #080808;
  border-bottom: 1px solid var(--line);
}

.merch-hero h1 {
  max-width: 860px;
  margin-bottom: 16px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.96;
  text-transform: uppercase;
}

.merch-hero p {
  max-width: 720px;
  color: #d4d4d4;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
}

.collection-board-section {
  padding: 28px 5vw 10px;
  background: #050505;
}

.collection-board-wrap {
  max-width: 1440px;
  margin: 0 auto;
  border: 1px solid rgba(198, 161, 91, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.14), transparent 34%),
    #080808;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.collection-board-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.merch-page-section {
  border-top: 0;
}

.shop-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 22px;
  margin-bottom: 24px;
  border: 1px solid rgba(198, 161, 91, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.12), transparent 42%),
    #0b0b0b;
  overflow: hidden;
}

.shop-feature-image {
  display: block;
  min-height: 460px;
  width: 100%;
  padding: 0;
  border: 0;
  background: #050505;
  color: inherit;
  cursor: pointer;
}

.shop-feature-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.shop-feature-copy h3 {
  max-width: 520px;
  margin: 8px 0 12px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.95;
  text-transform: uppercase;
}

.shop-feature-copy p {
  color: #d4d4d4;
  line-height: 1.55;
}

.shop-price {
  display: block;
  margin: 14px 0;
  color: #f4dfb4;
  font-size: 24px;
}

.swatches,
.size-row,
.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.swatch {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(0, 0, 0, 0.28);
}

.swatch.tobacco {
  background: #8b562d;
}

.swatch.charcoal {
  background: #353433;
}

.swatch.cream {
  background: #d8c4a1;
}

.size-row span {
  min-width: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.045);
  color: #f3f3f3;
  text-align: center;
  font-weight: 900;
}

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

.shop-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    #111;
}

.shop-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  margin-bottom: 14px;
  border: 1px solid rgba(198, 161, 91, 0.24);
  border-radius: 8px;
  background: #050505;
  object-fit: cover;
}

.shop-card.featured-product {
  border-color: rgba(215, 25, 32, 0.46);
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.16), transparent 48%),
    #111;
}

.shop-card span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.shop-card h3 {
  margin: 10px 0;
  font-size: 23px;
}

.shop-card p {
  color: #cfcfcf;
  line-height: 1.5;
}

.shop-card .story-button {
  margin-top: auto;
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(10px);
}

.order-modal[hidden] {
  display: none;
}

.modal-open {
  overflow: hidden;
}

.order-panel {
  width: min(760px, 100%);
  max-height: min(860px, 92vh);
  overflow: auto;
  border: 1px solid rgba(198, 161, 91, 0.42);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.16), transparent 42%),
    #101010;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.6);
}

.order-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(26px, 4vw, 42px);
  text-transform: uppercase;
}

.order-close {
  float: right;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  background: #151515;
  color: white;
  cursor: pointer;
}

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

.order-form {
  gap: 14px;
}

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

.order-form label {
  color: #f4dfb4;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: rgba(0, 0, 0, 0.42);
  color: white;
  font: inherit;
  text-transform: none;
}

.order-form textarea {
  resize: vertical;
}

.order-summary {
  border: 1px solid rgba(215, 25, 32, 0.32);
  border-radius: 8px;
  padding: 12px;
  background: rgba(215, 25, 32, 0.08);
  color: #f4dfb4;
  font-weight: 900;
}

.newsletter-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 120px 22px 54px;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.96), rgba(6, 6, 6, 0.68) 45%, rgba(6, 6, 6, 0.3)),
    linear-gradient(135deg, rgba(215, 25, 32, 0.22), transparent 38%),
    var(--newsletter-bg, url("./assets/creator-bg-speak-free.png"));
  background-size: cover;
  background-position: center;
}

.newsletter-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.08), rgba(6, 6, 6, 0.88)),
    linear-gradient(90deg, rgba(215, 25, 32, 0.18), transparent 44%);
  pointer-events: none;
}

.creator-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 120px 22px 54px;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.96), rgba(6, 6, 6, 0.68) 45%, rgba(6, 6, 6, 0.28)),
    linear-gradient(135deg, rgba(198, 161, 91, 0.16), rgba(215, 25, 32, 0.2) 48%, transparent 72%),
    var(--creator-bg, url("./assets/creator-bg-speak-free.png"));
  background-size: cover;
  background-position: center;
}

.creator-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.08), rgba(6, 6, 6, 0.88)),
    linear-gradient(90deg, rgba(215, 25, 32, 0.18), transparent 44%);
  pointer-events: none;
}

.newsletter-hero > div,
.creator-hero > div,
.newsletter-layout,
.creator-layout,
.newsletter-archive-section {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.creator-hero > div {
  position: relative;
  z-index: 1;
}

.newsletter-hero > div {
  position: relative;
  z-index: 1;
}

.newsletter-hero h1,
.creator-hero h1 {
  max-width: 850px;
  margin: 0 0 14px;
  color: white;
  font-size: clamp(48px, 9vw, 118px);
  line-height: 0.88;
  text-transform: uppercase;
}

.newsletter-hero p:not(.eyebrow),
.creator-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: #dedede;
  font-size: 18px;
  line-height: 1.55;
}

.newsletter-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  padding: 28px 22px;
}

.creator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  padding: 28px 22px;
}

.newsletter-card,
.newsletter-archive-card,
.creator-archive-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.13), transparent 42%),
    rgba(17, 17, 17, 0.94);
}

.newsletter-card h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 0.95;
  text-transform: uppercase;
}

.creator-profile-card p {
  color: #d4d4d4;
  line-height: 1.55;
}

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

.newsletter-form {
  gap: 14px;
}

.newsletter-form label {
  color: #f4dfb4;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.newsletter-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.42);
  color: white;
  font: inherit;
  text-transform: none;
}

.newsletter-form .primary-link {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.newsletter-status {
  min-height: 24px;
  margin: 0;
  color: #d8d8d8;
}

.newsletter-status[data-tone="success"] {
  color: #93e2ad;
}

.newsletter-status[data-tone="error"] {
  color: #ff8c92;
}

.newsletter-ai-note p {
  color: #d4d4d4;
  line-height: 1.55;
}

.newsletter-stat {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 14px;
  color: #cfcfcf;
}

.newsletter-stat strong {
  color: white;
  text-align: right;
}

.newsletter-archive-section {
  padding: 18px 22px 70px;
}

.newsletter-archive,
.creator-archive {
  display: grid;
  gap: 12px;
}

.newsletter-archive {
  grid-template-columns: 1fr;
}

.newsletter-archive-card h3,
.creator-archive-card h3 {
  margin: 0 0 10px;
  color: white;
  font-size: 26px;
  text-transform: uppercase;
}

.newsletter-archive-card p,
.creator-archive-card p {
  color: #cfcfcf;
  line-height: 1.5;
}

.newsletter-archive-card ul,
.newsletter-article ul,
.creator-archive-card ul,
.creator-story ul {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.newsletter-archive-card li,
.newsletter-article li,
.creator-archive-card li {
  border-left: 3px solid var(--red);
  padding-left: 10px;
  color: #dedede;
}

.newsletter-archive-card a,
.newsletter-article a,
.creator-archive-card a,
.creator-story a {
  color: white;
  font-weight: 900;
}

.newsletter-archive-card span,
.newsletter-article span,
.creator-archive-card span,
.creator-story span {
  display: block;
  margin-top: 3px;
  color: #ffb5b8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter-archive-card details,
.creator-archive-card details {
  margin-top: 16px;
}

.newsletter-archive-card summary,
.creator-archive-card summary {
  cursor: pointer;
  color: #f4dfb4;
  font-weight: 950;
  text-transform: uppercase;
}

.creator-archive-card.compact {
  margin-top: 12px;
}

.creator-month,
.creator-date {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.92);
}

.creator-month > summary,
.creator-date > summary {
  cursor: pointer;
  padding: 16px 18px;
  color: white;
  font-weight: 950;
  text-transform: uppercase;
}

.creator-month > summary {
  background: linear-gradient(90deg, rgba(215, 25, 32, 0.18), transparent);
}

.creator-date-list {
  display: grid;
  gap: 10px;
  padding: 0 14px 14px;
}

.creator-date > summary {
  color: #f4dfb4;
  font-size: 14px;
}

.newsletter-issue-body {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.newsletter-magazine-issue {
  position: relative;
  overflow: hidden;
  max-width: 820px;
  margin-inline: auto;
  border: 1px solid rgba(120, 22, 9, 0.22);
  background: #f4f0e8;
  color: #1e2a32;
}

.newsletter-magazine-issue::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("./assets/censored-expressions-stamp.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(92%, 720px);
  opacity: 0.08;
  transform: rotate(-8deg) scale(1.05);
}

.newsletter-masthead {
  position: relative;
  z-index: 1;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(120, 22, 9, 0.16), transparent 46%),
    rgba(227, 221, 211, 0.94);
  border-bottom: 1px solid rgba(30, 42, 50, 0.18);
}

.newsletter-brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.newsletter-brand-lockup img {
  width: clamp(58px, 10vw, 86px);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(50, 18, 5, 0.28));
}

.newsletter-brand-lockup div {
  display: grid;
  gap: 4px;
}

.newsletter-brand-lockup strong {
  color: #6f170a;
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.newsletter-brand-lockup span {
  color: #1e2a32;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter-masthead h2 {
  margin: 0;
  color: #1e2a32;
  font-size: clamp(28px, 6vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.newsletter-issue-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  color: #33424c;
  font-size: 13px;
  font-style: italic;
}

.newsletter-magazine-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 20px 22px 24px;
}

.newsletter-sidebar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
  color: #1e2a32;
  padding: 0;
}

.newsletter-sidebar h3,
.newsletter-source-strip h3 {
  margin: 0 0 12px;
  text-transform: uppercase;
  color: inherit;
}

.newsletter-sidebar ul,
.newsletter-source-strip ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.newsletter-sidebar li {
  border-left: 4px solid #9e2412;
  padding-left: 10px;
}

.newsletter-sidebar p {
  margin: 5px 0 0;
  color: #35454d;
  font-size: 13px;
  line-height: 1.45;
}

.newsletter-opening-note {
  grid-column: 1 / -1;
}

.newsletter-opening-note,
.newsletter-sidebar > section {
  border: 1px solid rgba(120, 22, 9, 0.16);
  background: rgba(255, 255, 255, 0.45);
  padding: 14px;
}

.newsletter-sidebar a {
  color: #1e2a32;
}

.newsletter-feature {
  min-width: 0;
}

.newsletter-kicker {
  margin: 0 0 8px;
  color: #34444d;
  font-size: 18px;
}

.newsletter-feature > h3 {
  margin: 0 0 16px;
  color: #1e2a32;
  font-size: clamp(26px, 5vw, 42px);
  line-height: 1.08;
  text-transform: uppercase;
}

.newsletter-deck {
  border-top: 2px solid #c87a4e;
  padding-top: 12px;
  color: #4b555b;
  font-weight: 800;
  line-height: 1.55;
}

.newsletter-columns {
  display: grid;
  gap: 4px;
}

.newsletter-columns p,
.newsletter-forward p,
.newsletter-source-strip p {
  margin: 0 0 14px;
  color: #2c3840;
  font-size: 15px;
  line-height: 1.62;
}

.newsletter-forward {
  margin-top: 18px;
  border-top: 2px solid #c87a4e;
  padding-top: 14px;
}

.newsletter-cta {
  margin-top: 18px;
  border: 1px solid rgba(200, 122, 78, 0.55);
  padding: 14px;
  background: rgba(200, 122, 78, 0.12);
}

.newsletter-forward h3 {
  margin: 0 0 10px;
  color: #1e2a32;
  text-transform: uppercase;
}

.newsletter-cta h3 {
  margin: 0 0 8px;
  color: #1e2a32;
  text-transform: uppercase;
}

.newsletter-source-strip {
  margin: 0 28px 28px;
  border-top: 1px solid rgba(30, 42, 50, 0.22);
  padding-top: 16px;
  color: #1e2a32;
}

.newsletter-source-strip li {
  border-left: 4px solid #c87a4e;
  padding-left: 10px;
}

.newsletter-source-strip a {
  color: #1e2a32;
  font-weight: 900;
}

.newsletter-source-strip span {
  display: block;
  margin-top: 3px;
  color: #5c676d;
  font-size: 12px;
}

.newsletter-article h3 {
  margin: 18px 0 8px;
  color: #f4dfb4;
  text-transform: uppercase;
}

.creator-story {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 18px;
}

.creator-story h3 {
  margin: 0 0 8px;
  color: white;
  font-size: 24px;
  text-transform: uppercase;
}

.creator-story blockquote {
  margin: 14px 0 0;
  border-left: 4px solid var(--red);
  padding: 12px 14px;
  background: rgba(215, 25, 32, 0.08);
  color: #f1e4d0;
  line-height: 1.6;
}

.creator-editorial-body {
  display: grid;
  gap: 24px;
  margin-top: 18px;
  color: #e5e5e5;
  font-size: 18px;
  line-height: 1.72;
}

.creator-editorial-section {
  border-left: 4px solid rgba(215, 25, 32, 0.78);
  padding-left: 18px;
}

.creator-editorial-section h3 {
  margin: 0 0 10px;
  color: #f4dfb4;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1;
  text-transform: uppercase;
}

.creator-editorial-body p {
  margin: 0;
}

.creator-sources {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.creator-sources h3 {
  margin: 0 0 12px;
  color: #f4dfb4;
  text-transform: uppercase;
}

.creator-comments {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.creator-comments-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.creator-comments h4 {
  margin: 0;
  color: #f4dfb4;
  font-size: 18px;
  text-transform: uppercase;
}

.creator-comments-head span {
  margin: 0;
  color: #ffb5b8;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.creator-comment-list {
  display: grid;
  gap: 10px;
}

.creator-comment {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.creator-comment div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.creator-comment strong {
  color: white;
  font-size: 14px;
}

.creator-comment time {
  color: #9c9c9c;
  font-size: 12px;
}

.creator-comment p {
  margin: 0;
  color: #e7e7e7;
  line-height: 1.55;
}

.creator-comment-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.creator-comment-form label {
  display: grid;
  gap: 6px;
  color: #f4dfb4;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.creator-comment-form input,
.creator-comment-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #080808;
  color: white;
  font: inherit;
}

.creator-comment-form textarea {
  resize: vertical;
}

.creator-learning-section {
  padding: 0 22px 80px;
}

.creator-learning-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(220px, 0.8fr));
  gap: 14px;
}

.creator-admin-tools {
  display: flex;
  align-items: end;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.creator-admin-tools label {
  display: grid;
  gap: 5px;
  color: #f4dfb4;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.creator-admin-tools input {
  width: min(260px, 58vw);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 10px;
  background: #080808;
  color: white;
}

.creator-learning-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(17, 17, 17, 0.92);
}

.creator-learning-panel h3 {
  margin: 0 0 12px;
  color: #f4dfb4;
  font-size: 18px;
  text-transform: uppercase;
}

.creator-learning-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.creator-learning-list li {
  border-left: 3px solid var(--red);
  padding-left: 10px;
}

.creator-learning-list strong,
.creator-learning-list span {
  display: block;
}

.creator-learning-list strong {
  color: white;
  font-weight: 950;
}

.creator-learning-list span {
  margin-top: 4px;
  color: #cfcfcf;
  line-height: 1.45;
}

.creator-learning-form {
  display: grid;
  gap: 12px;
}

.creator-learning-form label {
  display: grid;
  gap: 7px;
  color: #f4dfb4;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.creator-learning-form textarea,
.creator-learning-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 11px;
  background: #080808;
  color: white;
}

.creator-learning-check {
  display: flex;
  align-items: center;
  gap: 9px;
}

.creator-learning-check input {
  width: auto;
  margin: 0;
}

.legal-hero {
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 150px clamp(18px, 5vw, 72px) 52px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(180, 0, 0, 0.36), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.72)),
    #111;
}

.legal-hero > div,
.legal-section {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.92;
  text-transform: uppercase;
}

.legal-hero p:last-child {
  max-width: 660px;
  color: #e4e4e4;
  font-size: 18px;
  line-height: 1.55;
}

.legal-hero-compact {
  min-height: 280px;
}

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

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

.legal-document {
  display: grid;
  gap: 8px;
  min-height: 156px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: white;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.legal-document:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(180, 0, 0, 0.16);
}

.legal-document span {
  width: fit-content;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #f4dfb4;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-document strong {
  font-size: 20px;
  line-height: 1.12;
}

.legal-document small {
  color: #cfcfcf;
  font-size: 13px;
  line-height: 1.45;
}

.legal-reader {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 52px clamp(18px, 5vw, 72px) 72px;
}

.legal-policy {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.legal-policy:first-child {
  padding-top: 0;
}

.legal-policy h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  text-transform: uppercase;
}

.legal-policy p {
  max-width: 780px;
  color: #d8d8d8;
  line-height: 1.65;
}

.legal-policy .secondary-link {
  width: fit-content;
  margin-top: 8px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.74);
  color: #cfcfcf;
}

.site-footer > div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: white;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-footer span {
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}

.site-footer a {
  color: #f4dfb4;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: white;
}

.creator-learning-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.factory-specs {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.spec-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.spec-grid h3 {
  margin-bottom: 8px;
  color: #f4dfb4;
  font-size: 16px;
  text-transform: uppercase;
}

.spec-grid p {
  color: #d0d0d0;
  line-height: 1.5;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.merch-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--panel);
}

.merch-card:hover {
  border-color: rgba(215, 25, 32, 0.46);
}

.merch-card.featured-merch {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.18), transparent 48%),
    #111;
}

.merch-visual {
  display: grid;
  place-items: center;
  height: 168px;
  margin-bottom: 16px;
  border: 1px solid rgba(215, 25, 32, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 36%, rgba(215, 25, 32, 0.22), transparent 44%),
    linear-gradient(135deg, #202020, #080808);
  overflow: hidden;
  text-decoration: none;
}

.featured-merch .merch-visual {
  height: 210px;
}

.merch-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(1.04) contrast(1.02);
}

.merch-visual.mockup-fallback img {
  width: 118px;
  height: 118px;
  object-fit: cover;
  opacity: 0.9;
  filter: drop-shadow(0 0 20px rgba(215, 25, 32, 0.42));
}

.merch-visual.cup {
  border-radius: 8px 8px 34px 34px;
}

.merch-visual.towel {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 4px, transparent 4px 12px),
    linear-gradient(135deg, #191919, #080808);
}

.merch-visual.hoodie {
  background:
    radial-gradient(circle at 50% 20%, rgba(198, 161, 91, 0.18), transparent 34%),
    linear-gradient(135deg, #191919, #050505);
}

.merch-visual.swim {
  background:
    radial-gradient(circle at 50% 24%, rgba(80, 139, 166, 0.2), transparent 36%),
    linear-gradient(135deg, #171f22, #050505);
}

.merch-visual.denim {
  background:
    radial-gradient(circle at 50% 30%, rgba(57, 95, 133, 0.22), transparent 38%),
    linear-gradient(135deg, #17202a, #050505);
}

.merch-card span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.merch-card h3 {
  margin-top: 8px;
  font-size: 22px;
}

.merch-card p {
  color: #cfcfcf;
  line-height: 1.5;
}

.merch-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 18px;
}

.merch-meta span {
  border: 1px solid rgba(198, 161, 91, 0.3);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.035);
  color: #d8c7a4;
  font-size: 11px;
}

.merch-card .story-button {
  margin-top: auto;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}

.media-tile {
  min-height: 210px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--panel);
}

.podcast-tile {
  min-height: 430px;
}

.youtube-tile {
  min-height: 430px;
}

.youtube-live-frame {
  width: 100%;
  margin-top: 16px;
  border: 1px solid rgba(215, 25, 32, 0.32);
  border-radius: 8px;
  background: #000;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.youtube-live-card {
  display: grid;
  place-content: center;
  min-height: 210px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.58), rgba(0, 0, 0, 0.84)),
    #000;
  color: white;
  text-align: center;
}

.youtube-live-card strong,
.youtube-live-card span {
  display: block;
}

.youtube-live-card strong {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  text-transform: uppercase;
}

.youtube-live-card span {
  margin-top: 10px;
  color: #f4dfb4;
  font-weight: 900;
}

.spotify-embed {
  display: block;
  width: 100%;
  margin-top: 16px;
  border: 0;
  border-radius: 8px;
  background: #000;
}

.media-link {
  display: inline-flex;
  margin-top: 14px;
  color: #f4dfb4;
  font-weight: 900;
}

.media-link:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-follow-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 34px 5vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.16), transparent 34%),
    rgba(6, 6, 6, 0.78);
}

.social-follow-band h2 {
  margin: 4px 0 0;
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1;
  text-transform: uppercase;
}

.social-follow-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 154px;
  min-height: 58px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: white;
}

.social-follow-button span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.24);
  font-size: 11px;
  font-weight: 950;
}

.social-follow-button strong {
  font-size: 16px;
  text-transform: uppercase;
}

.media-tile.video {
  background:
    linear-gradient(rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.8)),
    radial-gradient(circle at 70% 30%, rgba(215, 25, 32, 0.44), transparent 34%),
    #151515;
}

.media-tile span {
  display: inline-block;
  margin-bottom: 60px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.media-tile p {
  color: #cfcfcf;
}

.offline-shell {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  padding: clamp(24px, 8vw, 72px);
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.14), transparent 34%),
    #050505;
}

.offline-shell img {
  width: 92px;
  height: 92px;
  border: 1px solid rgba(215, 25, 32, 0.45);
  border-radius: 8px;
}

.offline-shell h1 {
  margin: 0;
  max-width: 580px;
  font-size: clamp(42px, 9vw, 88px);
  line-height: 0.92;
  text-transform: uppercase;
}

.offline-shell p {
  margin: 0;
  max-width: 560px;
  color: #d7d7d7;
  font-size: 18px;
}

@media (max-width: 1240px) {
  .workspace {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .x-live-rail {
    position: static;
    grid-column: 1 / -1;
  }

  .x-live-scroll {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
  }
}

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

  .nav {
    display: none;
  }

  .hero,
  .workspace,
  .ai-shield-band,
  .media-grid,
  .social-follow-band,
  .shop-feature,
  .shop-grid,
  .spec-grid,
  .creator-learning-grid,
  .merch-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

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

  .rail {
    position: static;
  }

  .x-live-scroll {
    grid-template-columns: 1fr;
    max-height: 760px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .social-follow-links {
    flex-wrap: wrap;
  }

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

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

  .site-footer nav {
    justify-content: flex-start;
  }

  .owner-login,
  .owner-console-head,
  .owner-form-row {
    grid-template-columns: 1fr;
  }

  .owner-console-head {
    display: grid;
  }

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

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

  .newsletter-magazine-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-sidebar {
    grid-template-columns: 1fr;
  }

  .newsletter-columns {
    display: grid;
  }
}

@media (max-width: 640px) {
  .site-search-form {
    grid-template-columns: 1fr;
  }

  .newsletter-masthead,
  .newsletter-magazine-grid {
    padding-inline: 18px;
  }

  .newsletter-masthead h2 {
    font-size: clamp(38px, 18vw, 64px);
  }

  .newsletter-brand-lockup {
    align-items: flex-start;
  }

  .newsletter-magazine-issue::before {
    background-size: 125%;
    opacity: 0.06;
  }

  .newsletter-issue-meta {
    flex-direction: column;
    gap: 4px;
  }

  .newsletter-source-strip {
    margin-inline: 18px;
  }

  .owner-shell {
    width: min(100% - 20px, 1180px);
    padding: 18px 0 36px;
  }

  .owner-login {
    margin-top: 4vh;
    padding: 18px;
  }

  .owner-grid,
  .owner-tool-grid {
    grid-template-columns: 1fr;
  }

  .owner-actions {
    justify-content: flex-start;
  }

  .topbar {
    padding: 12px;
  }

  .brand small {
    display: none;
  }

  .brand-wordmark {
    font-size: 15px;
    padding: 3px 7px;
  }

  .topbar > .ghost-button {
    padding: 9px 10px;
    font-size: 13px;
  }

  .social-header {
    display: none;
  }

  .install-app-button {
    padding: 9px 10px;
    font-size: 13px;
  }

  .hero {
    min-height: 720px;
    padding: 42px 18px;
  }

  .motto-stamp {
    transform: rotate(-4deg);
    padding: 12px 13px;
    border-width: 3px;
  }

  .motto-stamp::after {
    top: -18px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .hero-logo-watermark {
    left: -62px;
    bottom: 118px;
    width: 430px;
    opacity: 0.15;
  }

  .site-logo-backdrop {
    background-position: center 120px;
    background-size: 560px;
    opacity: 0.1;
  }

  .hero-actions,
  .section-head,
  .story-actions,
  .order-form-grid,
  .social-follow-links {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .workspace,
  .ai-shield-band,
  .media-section,
  .social-follow-band,
  .merch-section,
  .creator-layout,
  .newsletter-layout,
  .newsletter-archive-section,
  .legal-section,
  .legal-reader {
    padding-inline: 16px;
  }

  .ai-shield-band {
    gap: 12px;
    padding-block: 15px;
  }

  .ai-shield-grid {
    justify-content: flex-start;
    max-width: none;
  }

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

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

  .legal-hero {
    min-height: 300px;
    padding: 118px 16px 36px;
  }

  .newsletter-layout,
  .creator-layout,
  .newsletter-archive,
  .creator-archive {
    grid-template-columns: 1fr;
  }

  .story-card.featured {
    grid-column: auto;
  }

  .merch-card.featured-merch {
    grid-column: auto;
  }

  .ticker {
    padding-inline: 16px;
  }
}
