@font-face {
  font-family: "Bebas Neue Flash Press";
  src: url("/fonts/bebas-neue-flash-press-v1.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --press-carbon: #0a0a09;
  --press-carbon-raised: #242320;
  --press-newsprint: #f1ebdd;
  --press-newsprint-muted: #d9d1c2;
  --press-newsprint-rule: #b8afa0;
  --press-chalk: #f7f1e5;
  --press-red: #e84335;
  --press-red-ink: #aa281f;
  --press-yellow: #f5b91b;
  --press-blue: #2146c7;
  --press-green: #176b3a;
  --press-grey: #5d5952;
  --press-display: "Bebas Neue Flash Press", "Arial Narrow", sans-serif;
  --press-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --press-rule: 2px solid var(--press-carbon);
  --container-max: 1200px;
  --container-wide: 1400px;
  --section-pad: clamp(60px, 10vw, 120px);
  --duration-fast: 150ms;
  --duration-normal: 220ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Compatibility names used by the two long-form operational layouts. */
  --bg-deep: var(--press-carbon);
  --bg: var(--press-carbon);
  --surface: var(--press-carbon-raised);
  --card: var(--press-carbon-raised);
  --card-elevated: var(--press-carbon-raised);
  --border: var(--press-newsprint-rule);
  --border-light: var(--press-newsprint-muted);
  --text-primary: var(--press-chalk);
  --text-secondary: var(--press-newsprint-muted);
  --text-tertiary: var(--press-newsprint-rule);
  --text-accent: var(--press-yellow);
  --primary: var(--press-red);
  --primary-light: var(--press-yellow);
  --accent-light: var(--press-blue);
  --live-red: var(--press-red);
  --success: var(--press-green);
  --error: var(--press-red);
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --radius-xl: 0;
  --radius-pill: 0;
  --shadow-card: 7px 7px 0 rgba(10, 10, 9, 0.32);
  --shadow-elevated: 10px 10px 0 rgba(10, 10, 9, 0.42);
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body.flash-press-public {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background-color: var(--press-newsprint);
  background-image: url("/images/flash-press-v1/newsprint-texture-v1.jpg");
  background-size: 720px 720px;
  color: var(--press-carbon);
  font-family: var(--press-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Reset unstyled links without outranking component foreground classes. */
:where(.flash-press-public) a {
  color: inherit;
}

.flash-press-public img {
  display: block;
  max-width: 100%;
}

.flash-press-public button,
.flash-press-public input,
.flash-press-public select,
.flash-press-public textarea {
  font: inherit;
}

.flash-press-public button {
  cursor: pointer;
}

.flash-press-public h1,
.flash-press-public h2,
.flash-press-public h3,
.flash-press-public h4,
.flash-press-public h5,
.flash-press-public h6 {
  font-family: var(--press-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.98;
  text-transform: uppercase;
}

.flash-press-public :focus-visible {
  outline: 4px solid var(--press-blue);
  outline-offset: 4px;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 44px);
}

.container--wide {
  max-width: var(--container-wide);
}

.label,
.eyebrow {
  color: var(--press-red-ink);
  font-family: var(--press-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.text-gradient,
.text-gold {
  color: var(--press-red);
}

.btn,
.button,
.request-button,
.press-gateway__action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 8px;
  padding: 13px 24px;
  border: 2px solid var(--press-carbon);
  border-radius: 0;
  background: var(--press-yellow);
  color: var(--press-carbon);
  font-family: var(--press-body);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: box-shadow var(--duration-fast), transform var(--duration-fast);
}

.btn:hover,
.button:hover,
.request-button:hover,
.press-gateway__action:hover {
  box-shadow: 5px 5px 0 var(--press-carbon);
  transform: translate(-2px, -2px);
}

.btn--primary {
  background: var(--press-red);
  color: var(--press-carbon);
}

.btn--outline {
  background: var(--press-newsprint);
  color: var(--press-carbon);
}

.btn--lg {
  min-height: 56px;
  padding-inline: 32px;
}

/* Long-form policy, support, account and artist-help pages. */
.press-document {
  background-attachment: fixed;
}

.press-document .container {
  max-width: 900px;
  padding-top: clamp(34px, 7vw, 72px);
  padding-bottom: clamp(64px, 10vw, 112px);
}

.press-document .back-link {
  display: inline-block;
  margin-bottom: 42px;
  padding: 8px 0;
  color: var(--press-blue);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration-thickness: 2px;
  text-transform: uppercase;
}

.press-document h1 {
  max-width: 820px;
  margin: 0 0 12px;
  color: var(--press-carbon);
  font-size: clamp(3rem, 9vw, 6.2rem);
}

.press-document .subtitle,
.press-document .last-updated,
.press-document .lead {
  margin: 0 0 42px;
  color: var(--press-grey);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.press-document h2 {
  margin: 46px 0 18px;
  padding-top: 16px;
  border-top: var(--press-rule);
  color: var(--press-red-ink);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.press-document h3,
.press-document h3[style] {
  margin: 26px 0 12px !important;
  color: var(--press-carbon) !important;
  font-family: var(--press-body);
  font-size: 1rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.press-document p,
.press-document li {
  color: var(--press-grey);
  font-size: 0.96rem;
}

.press-document p {
  margin: 0 0 16px;
}

.press-document ul,
.press-document ol {
  margin: 0 0 22px;
  padding-left: 24px;
}

.press-document li {
  margin-bottom: 8px;
}

.press-document a {
  color: var(--press-blue);
  font-weight: 700;
}

.press-document table {
  width: 100%;
  margin: 26px 0;
  border-collapse: collapse;
  background: var(--press-newsprint);
}

.press-document th,
.press-document td {
  padding: 12px 14px;
  border: 1px solid var(--press-newsprint-rule);
  color: var(--press-grey);
  font-size: 0.86rem;
  text-align: left;
  vertical-align: top;
}

.press-document th {
  background: var(--press-carbon);
  color: var(--press-chalk);
  font-weight: 800;
}

.press-document .contact-card,
.press-document .request-card,
.press-document .faq-item,
.press-document .note,
.press-document .card,
.press-document .notice,
.press-document .trouble-row,
.press-document .app-info,
.press-document .contact {
  margin: 20px 0;
  padding: 24px;
  border: var(--press-rule);
  border-radius: 0;
  background: rgba(241, 235, 221, 0.88);
  box-shadow: 7px 7px 0 rgba(10, 10, 9, 0.16);
}

.press-document .faq-question,
.press-document .app-info-label {
  color: var(--press-carbon);
  font-weight: 800;
}

.press-document .app-info-value {
  color: var(--press-carbon);
}

.press-document .app-info-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 0.65fr);
  gap: 20px;
  padding-block: 12px;
  border-bottom: 1px solid var(--press-newsprint-rule);
}

.press-document .footer {
  margin-top: 64px;
  padding-top: 28px;
  border-top: var(--press-rule);
}

/* Artist streaming guide. */
.artist-guide header {
  padding-bottom: 36px;
  border-bottom: 4px solid var(--press-red);
}

.artist-guide section {
  margin-top: 54px;
}

.artist-guide .status,
.artist-guide .badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border: 1px solid var(--press-green);
  color: var(--press-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.artist-guide .status-dot {
  width: 8px;
  height: 8px;
  background: var(--press-green);
}

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

.artist-guide .card-number {
  margin-top: 22px;
  color: var(--press-red);
  font-family: var(--press-display);
  font-size: 3rem;
}

.artist-guide .badge--future {
  border-color: var(--press-yellow);
  color: var(--press-red-ink);
}

.artist-guide .checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  padding-left: 0;
  list-style: none;
}

.artist-guide .checklist li {
  padding: 14px 14px 14px 42px;
  border-left: 7px solid var(--press-green);
  background: rgba(241, 235, 221, 0.82);
}

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

/* Pairing and private-invite handoff pages. */
.press-gateway {
  display: grid;
  place-items: center;
  padding: 24px;
  background-color: var(--press-carbon) !important;
  background-image: url("/images/flash-press-v1/carbon-ink-texture-v1.jpg") !important;
  color: var(--press-chalk) !important;
}

.press-gateway__card {
  width: min(100%, 580px);
  padding: clamp(28px, 6vw, 48px);
  border: 2px solid var(--press-newsprint-rule);
  background: var(--press-carbon-raised);
}

.press-gateway__wordmark {
  width: min(250px, 72%);
  margin-bottom: 34px;
}

.press-gateway .eyebrow {
  margin: 0 0 10px;
  color: var(--press-red);
}

.press-gateway h1 {
  margin: 0 0 16px;
  color: var(--press-chalk);
  font-size: clamp(3rem, 10vw, 5.2rem);
}

.press-gateway p,
.press-gateway small {
  color: var(--press-newsprint-muted);
}

.press-gateway__facts {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.press-gateway__fact {
  padding: 12px 14px;
  border-left: 7px solid var(--press-yellow);
  background: var(--press-carbon);
  color: var(--press-newsprint-muted);
}

.press-gateway__action {
  display: flex;
  width: 100%;
  margin-top: 24px;
  background: var(--press-blue);
  color: var(--press-chalk);
}

.press-gateway small {
  display: block;
  margin-top: 16px;
  text-align: center;
}

[hidden] {
  display: none !important;
}

@media (max-width: 760px) {
  .artist-guide .grid,
  .artist-guide .checklist,
  .artist-guide .trouble-list {
    grid-template-columns: 1fr;
  }

  .press-document .app-info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .press-document table {
    display: block;
    overflow-x: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
