/* ==========================================================================
   Strange Normal — single stylesheet
   Hand-written to match the previous site's design. No framework.
   Palette and type measured from the live site.
   ========================================================================== */

:root {
  --black:        #000000;
  --ink:          #ffffff;
  --navy:         #010d50;
  --navy-soft:    #0b1a5c;
  --cyan:         #046dbc;
  --cyan-bright:  #22e5f0;
  --blue:         #1a6aff;
  --teal:         #1fbfa0;
  --accent:       #eb4869;
  --accent-2:     #ff4040;
  --muted:        rgba(255, 255, 255, 0.72);
  --hairline:     rgba(255, 255, 255, 0.18);
  --card:         #14151c;

  --font-head: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "DM Sans", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1536px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(3.5rem, 9vw, 8rem);
  --radius: 18px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

img, picture, svg, video { max-width: 100%; display: block; height: auto; }
picture { display: contents; }

a { color: inherit; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--cyan-bright);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  margin: 0 0 .6em;
  /* No text-wrap:balance here. It evens out line lengths, which turned
     two-line headings on the original into three and four lines. */
}
.nowrap { white-space: nowrap; }
@media (max-width: 1100px) { h2.nowrap { white-space: normal; } }

h1 { font-size: clamp(2.25rem, 4.2vw, 4.125rem); font-weight: 400; line-height: 1.2; }
h2 { font-size: clamp(1.75rem, 4vw, 2.625rem); font-weight: 700; }
h3 { font-size: clamp(1.125rem, 2vw, 1.625rem); font-weight: 700; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--black);
  padding: .75rem 1.25rem; font-weight: 700;
}
.skip-link:focus { left: 0; }

.wrap { width: min(90%, var(--wrap)); margin-inline: auto; }
.eyebrow {
  font-family: var(--font-head); font-size: .75rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .9rem;
}
.lede { font-size: 1.0625rem; color: var(--muted); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* --------------------------------------------------------------- buttons */
.btn {
  /* Measured from the original: a RADIAL gradient (light centre, deep red
     edge) plus a wide purple glow and an inset top shadow. */
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.0625rem; font-weight: 900;
  letter-spacing: .01em; text-transform: none;
  text-decoration: none; color: #fff;
  padding: .8rem 2.1rem;
  border: 0; border-radius: 29.5px;
  background: radial-gradient(50% 50%, #fa7d92 0%, #dd0d34 100%);
  box-shadow:
    0 0 180px 0 rgba(153, 23, 255, .9),
    0 0 1px 4px rgba(255, 255, 255, .1),
    inset 0 -4px 2px 0 rgba(0, 0, 0, .25);
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn:active { transform: translateY(0); filter: brightness(.95); }
.btn--donate { padding: .6rem 3.1rem; font-size: 1.0625rem; }
.btn--ghost {
  background: transparent; box-shadow: none;
  border: 1px solid var(--hairline);
}
.btn--ghost:hover { box-shadow: none; border-color: var(--cyan-bright); }

/* ---------------------------------------------------------------- header */
.site-header {
  position: relative; z-index: 40;
  padding: 1.1rem 0 .75rem;
}

.site-header__inner {
  width: min(90%, var(--wrap)); margin-inline: auto;
  display: grid; align-items: center;
  grid-template-columns: auto max-content minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  column-gap: 2.2rem; row-gap: .35rem;
}
.brand            { grid-column: 1; grid-row: 1 / span 2; align-self: center; }
.site-header__meta{ grid-column: 2; grid-row: 1; }
.social--header   { grid-column: 3; grid-row: 1; justify-self: end; margin-right: 3.4rem; }
.btn--donate      { grid-column: 4; grid-row: 1; justify-self: end; }
.primary-nav      { grid-column: 2; grid-row: 2; }
.brand img { width: 258px; max-width: 40vw; height: auto; }

.broadcast {
  margin: 0; display: flex; align-items: center; gap: .7rem;
  font-family: var(--font-head); font-size: .9rem; font-weight: 400;
  letter-spacing: 3.6px; text-transform: uppercase; white-space: nowrap;
}
.broadcast__badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: #fff; border-radius: 999px;
  padding: .2rem .6rem; font-size: .625rem; letter-spacing: .1em;
}
.broadcast__badge::before {
  content: ""; width: .4rem; height: .4rem; border-radius: 50%;
  background: #fff;
}

.social { display: flex; gap: 1.15rem; list-style: none; margin: 0; padding: 0; }
.social a {
  display: grid; place-items: center;
  width: 2.4375rem; height: 2.4375rem; border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(2px);
  transition: background .18s ease, transform .18s ease;
}
/* Each disc carries a translucent tint of its network's colour. */
.social li:nth-child(1) a { background: rgba(24, 119, 242, .30); }  /* Facebook  */
.social li:nth-child(2) a { background: rgba(214, 41, 118, .30); }  /* Instagram */
.social li:nth-child(3) a { background: rgba(29, 155, 240, .30); }  /* X         */
.social li:nth-child(4) a { background: rgba(255, 0, 0, .32); }     /* YouTube   */
.social a:hover { transform: translateY(-2px); filter: brightness(1.35); }
.social svg { width: 1.05rem; height: 1.05rem; fill: currentColor; }
.social--footer a { background: rgba(255, 255, 255, .1); }

.primary-nav { width: 100%; margin: 0; padding: 0; }
.primary-nav::before {
  content: ""; display: block; height: 1px;
  margin: 0 0 .55rem; background: rgba(255, 255, 255, .32);
}
.primary-nav ul {
  display: flex; flex-wrap: wrap; gap: 20px;   /* measured on the original */
  list-style: none; margin: 0; padding: 0;
}
.primary-nav a {
  /* Original: 18px, #046DBC, current page #EB4869, no underline. */
  font-family: var(--font-head); font-size: 1.125rem; font-weight: 500;
  letter-spacing: 0; text-transform: none; text-decoration: none;
  color: var(--cyan);
  padding: .35rem 0;
  transition: color .18s ease;
}
.primary-nav a:hover { color: #3d97e0; }
.primary-nav a[aria-current="page"] { color: var(--accent); }

.nav-toggle {
  display: none; align-items: center; gap: .55rem;
  background: none; border: 0; color: #fff; cursor: pointer;
  font-family: var(--font-head); font-size: .8125rem;
  letter-spacing: .12em; text-transform: uppercase;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block; width: 22px; height: 2px; background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -7px; }
.nav-toggle__bars::after  { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(7px) rotate(-90deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { opacity: 0; }

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3.5rem) 0 clamp(3rem, 8vw, 7rem);
  /* Clip sideways only. `overflow: hidden` also clipped vertically, which
     sliced a hard edge across the cyan glow beneath the laptop. */
  overflow-x: clip; overflow-y: visible;
}
/* The original hero sits on a full-bleed autoplaying background video. */
.hero__video {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
  opacity: .8; filter: brightness(1) saturate(1.05);
  /* Dissolve the lower edge so the footage reads as part of the page
     rather than a video ending on a hard horizontal line. */
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, rgba(0,0,0,.55) 78%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 55%, rgba(0,0,0,.55) 78%, transparent 100%);
}

/* On pages with a hero, the header floats over the artwork so the background
   video runs behind the logo and menu, as on the original. */
body:has(.hero) .site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 40;
  background: none;
}
body:has(.hero) .hero { padding-top: clamp(9.5rem, 10vw, 12rem); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, transparent 22%, transparent 70%, rgba(0,0,0,.65) 100%),
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.38) 50%, rgba(0,0,0,.12) 100%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; z-index: -1;
  right: 2%; top: 40%; width: 46vw; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0, 174, 226, .6) 0%, transparent 62%);
  filter: blur(24px); pointer-events: none;
}
.hero__inner {
  width: min(90%, var(--wrap)); margin-inline: auto;
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
}
.hero h1 { margin-bottom: .1em; }
.hero h1 span { display: block; font-weight: 700; }
.hero__tagline {
  font-family: var(--font-body); font-size: 1.125rem; font-weight: 400;
  line-height: 1.6; margin: .35rem 0 1.5rem;
}
.hero__device { position: relative; display: grid; place-items: center; }
.hero__glow {
  position: absolute; z-index: 0; width: 185%; max-width: none;
  top: 30%; opacity: 1; pointer-events: none;
}
.hero__device .device { position: relative; z-index: 1; width: 100%; }
.device__screen { background: #000; }
.device__screen iframe { width: 100%; height: 100%; border: 0; display: block; }

/* device (laptop) mockup used on the hero and the Religious Confusion block */
.device {
  position: relative; border-radius: 10px;
  padding: 1.1% 1.1% 0;
  background: linear-gradient(160deg, #16215c, #070a24);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
}
.device__screen {
  position: relative; aspect-ratio: 16 / 10;
  border-radius: 6px; overflow: hidden; background: #000;
}
.device::after {
  content: ""; display: block; height: 14px; margin: 1.1% -5% 0;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(180deg, #1d2b7d, #0b1040);
}

/* --------------------------------------------------------- video slots */
.video-slot { position: relative; width: 100%; height: 100%; background: #000; }
.video-slot__play {
  display: block; width: 100%; height: 100%;
  padding: 0; border: 0; background: #000; cursor: pointer; position: relative;
}
.video-slot__play img { width: 100%; height: 100%; object-fit: cover; }
.video-slot__icon {
  position: absolute; inset: 0; margin: auto;
  width: 68px; height: 48px; border-radius: 12px;
  background: #f00 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center / 26px no-repeat;
  transition: background-color .18s ease, transform .18s ease;
}
.video-slot__play:hover .video-slot__icon { background-color: #ff2b2b; transform: scale(1.06); }
.video-slot iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-slot--empty {
  display: grid; place-items: center; aspect-ratio: 16 / 9;
  border: 1px dashed var(--hairline); border-radius: 12px;
  background: rgba(255, 255, 255, .03);
  color: var(--muted); font-size: .8125rem; letter-spacing: .08em;
  text-transform: uppercase;
}
.video-slot--portrait { aspect-ratio: 9 / 16; border-radius: 18px; overflow: hidden; }

/* -------------------------------------------------------------- sections */
.section { padding: var(--section-y) 0; position: relative; }
.section__head { max-width: 78ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section--center .section__head { margin-inline: auto; text-align: center; }
.section--glow-cyan::before,
.section--glow-magenta::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
.section--glow-cyan::before {
  background: radial-gradient(45vw 45vw at 12% 45%, rgba(4, 109, 188, .5), transparent 65%);
}
/* Deliberately empty. The purple comes from each button's own glow — a
   section-wide wash reads as a stray coloured panel behind the content. */
.section--glow-magenta::before { background: none; }

/* two-column media + copy (e-book blocks, Religious Confusion) */
.split {
  width: min(90%, var(--wrap)); margin-inline: auto;
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  /* Copy column is the wider of the two, as on the original — a 50/50 split
     forced the e-book headings onto an extra line. */
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__copy { max-width: none; }
.split__media img { margin-inline: auto; }
.split__media--cover img {
  width: 100%; max-height: 470px; aspect-ratio: 16 / 9; object-fit: contain;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, .65));
}

/* ------------------------------------------------------------ card grids */
.card-grid {
  display: grid; gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid--4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

.feature-card { display: flex; flex-direction: column; }
.feature-card a { text-decoration: none; }
.feature-card__thumb {
  border-radius: var(--radius); overflow: hidden;
  border: 2px solid var(--cyan-bright);
  box-shadow: 0 0 26px rgba(34, 229, 240, .28);
  aspect-ratio: 1; margin-bottom: 1.1rem;
}
.feature-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.feature-card h3 { margin-bottom: .5rem; }
.feature-card p { color: var(--muted); font-size: .9375rem; }
.feature-card a:hover .feature-card__thumb { box-shadow: 0 0 40px rgba(34, 229, 240, .5); }

/* topic tiles (Media page) */
.topic-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius); padding: 1.5rem;
  min-height: 210px; display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--navy);
  isolation: isolate;
}
/* Target the background explicitly. A bare `.topic-card > picture img`
   also matches the icon, which then gets stretched across the whole card. */
.topic-card__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; opacity: .38;
}
.topic-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, .55));
}
.topic-card--prophecy  { background: #6b1414; }
.topic-card--strange   { background: #0d4034; }
.topic-card--news      { background: #0e1c56; }
.topic-card__icon { width: 42px; height: auto; object-fit: contain; margin-bottom: auto; }
.topic-card h3 {
  font-size: 1.0625rem; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: .5rem;
}
.topic-card p { font-size: .875rem; color: rgba(255, 255, 255, .85); margin: 0; }

/* ------------------------------------------------------------- carousels */
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; }
.carousel__track {
  display: flex; margin: 0; padding: 0; list-style: none;
  transition: transform .45s cubic-bezier(.22, .8, .3, 1);
}
.carousel__slide { flex: 0 0 100%; min-width: 0; }
.carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--hairline); background: rgba(0, 0, 0, .45);
  color: #fff; cursor: pointer;
}
.carousel__btn:hover { background: var(--accent); border-color: transparent; }
.carousel__btn--prev { left: .25rem; }
.carousel__btn--next { right: .25rem; }
.carousel__btn svg { width: 1.1rem; height: 1.1rem; fill: currentColor; }
.carousel__dots {
  display: flex; justify-content: center; gap: .5rem;
  list-style: none; margin: 1.75rem 0 0; padding: 0;
}
.carousel__dots button {
  width: .55rem; height: .55rem; padding: 0; border-radius: 50%;
  border: 0; background: rgba(255, 255, 255, .3); cursor: pointer;
}
.carousel__dots [aria-current="true"] { background: var(--accent); }

/* merch band */
/* Full-bleed washes are painted on a pseudo-element and masked to
   transparent at top and bottom, so no section boundary is ever visible. */
.merch { position: relative; isolation: isolate; }
.merch::before {
  content: ""; position: absolute; inset: -6% 0; z-index: -1;
  background: linear-gradient(105deg, #04314f 0%, #0a63a8 55%, #1183d6 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
}
.merch .split { align-items: center; }
.merch h2 { font-size: clamp(1.5rem, 3.2vw, 2.25rem); }
.merch ul { margin: 0 0 1.6rem; padding-left: 1.1rem; font-size: .9375rem; }
.merch li { margin-bottom: .3rem; }
.merch__product img { max-height: 470px; width: auto; max-width: 100%;
  object-fit: contain; margin-inline: auto; }

/* testimonials band */
.testimonials { position: relative; isolation: isolate; }
.testimonials::before {
  content: ""; position: absolute; inset: -6% 0; z-index: -2;
  background: linear-gradient(100deg, #7a0f4e 0%, #4a1263 50%, #16256e 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
}
.testimonials > picture img {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%; object-fit: cover; opacity: .28;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
}
.testimonials h2 { text-transform: uppercase; }
.testimonials h2 strong { font-weight: 900; }
.quote-card {
  background: var(--navy); border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  height: 100%; display: flex; flex-direction: column; gap: 1.25rem;
}
.quote-card blockquote { margin: 0; font-size: .9375rem; line-height: 1.65; }
.quote-card figcaption {
  display: flex; align-items: center; gap: .75rem; margin-top: auto;
  font-family: var(--font-head); font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.quote-card figcaption img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonials .carousel__slide { flex-basis: 50%; padding-inline: .75rem; }
@media (max-width: 720px) { .testimonials .carousel__slide { flex-basis: 100%; } }

/* --------------------------------------------------------------- shorts */
.shorts-grid {
  display: grid; gap: clamp(1rem, 2.5vw, 1.75rem);
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.short h3 {
  font-size: 1.0625rem; margin: 1rem 0 0; font-weight: 700;
}
.short__frame {
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  background: #0b0b14;
}
.shorts-more { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }
[data-shorts-hidden="true"] { display: none; }

/* ----------------------------------------------------------- statistics */
.stats { display: grid; gap: 1.5rem; }
.stat { display: flex; align-items: center; gap: 1.25rem; }
.stat__value {
  display: flex; align-items: center; gap: .3rem;
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.25rem); color: var(--cyan-bright);
}
.stat__digit {
  display: grid; place-items: center;
  min-width: 2.6ch; padding: .1em .15em;
  border-radius: 10px;
  background: linear-gradient(180deg, #3a3d45 0%, #1b1d22 49%, #2e3138 51%, #14161a 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}
.stat__suffix { color: var(--cyan-bright); }
.stat__label {
  font-family: var(--font-head); font-weight: 700; font-size: .9375rem;
  letter-spacing: .06em; text-transform: uppercase; line-height: 1.3;
}

/* --------------------------------------------------------------- events */
.event-list { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(1.5rem, 4vw, 2.75rem); }
.event {
  display: grid; gap: clamp(1.25rem, 3vw, 2.5rem);
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  align-items: start;
}
.event__media {
  border: 2px solid var(--teal); border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4 / 3; background: #05060a;
}
.event__media img { width: 100%; height: 100%; object-fit: cover; }
.event__media--empty { display: grid; place-items: center; color: var(--muted); font-size: .8125rem; }
.event h3 { margin-bottom: .3rem; }
.event__date {
  font-family: var(--font-head); font-weight: 700; font-size: .9375rem;
  margin-bottom: .5rem;
}
.event__place { color: var(--muted); margin-bottom: .75rem; }
.events-year {
  font-family: var(--font-head); font-weight: 700; color: var(--teal);
  font-size: clamp(1.25rem, 3vw, 1.75rem); text-align: center; margin: 0 0 2rem;
}
.photo-strip {
  display: grid; gap: 1rem; list-style: none; margin: 0 0 clamp(2rem, 5vw, 4rem); padding: 0;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.photo-strip img { border-radius: 12px; aspect-ratio: 3 / 4; object-fit: cover; width: 100%; }

/* ---------------------------------------------------------------- forms */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .35rem; }
.field label {
  font-size: .8125rem; letter-spacing: .04em; color: var(--muted);
}
.field input,
.field textarea {
  width: 100%; font: inherit; color: #fff;
  background: transparent; border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .45);
  padding: .55rem 0; border-radius: 0;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { border-bottom-color: var(--cyan-bright); }
.field--check { grid-template-columns: auto 1fr; align-items: start; gap: .6rem; }
.field--check input { width: 1rem; height: 1rem; margin-top: .25rem; }
.field--check label { color: var(--ink); font-size: .875rem; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form .btn { justify-self: start; margin-top: .5rem; }
.form__notice { border-radius: 10px; padding: .8rem 1rem; font-size: .9375rem; margin: 0; }
.form__notice--ok    { background: rgba(31, 191, 160, .18); border: 1px solid var(--teal); }
.form__notice--error { background: rgba(235, 72, 105, .16); border: 1px solid var(--accent); }
.form__note { font-size: .75rem; color: var(--muted); margin: 0; }

.get-in-touch { padding: 0 var(--gutter) var(--section-y); }
.get-in-touch__inner {
  width: min(100%, 1300px); margin-inline: auto;
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 26px;
  background:
    radial-gradient(60% 90% at 18% 40%, rgba(190, 20, 40, .85), transparent 70%),
    radial-gradient(70% 90% at 85% 20%, rgba(10, 110, 130, .85), transparent 70%),
    linear-gradient(150deg, #4a0d1c 0%, #251047 45%, #10307e 100%);
}
.get-in-touch h2 { text-transform: uppercase; }

.newsletter { padding: var(--section-y) var(--gutter); position: relative; isolation: isolate; }
.newsletter::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(70vw 60vw at 78% 45%, rgba(15, 45, 165, .85), transparent 72%),
    linear-gradient(180deg, transparent 0%, #06103a 40%, #06103a 60%, transparent 100%);
}
.newsletter__inner {
  width: min(90%, var(--wrap)); margin-inline: auto;
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: center;
}
.newsletter__media { width: 100%; }
.newsletter__media .video-slot,
.newsletter__media iframe { width: 100%; aspect-ratio: 9 / 16; border-radius: 18px; overflow: hidden; }
.newsletter__media { max-width: 380px; margin-inline: auto; }
.newsletter__card {
  width: 100%;
  background: rgba(20, 21, 28, .92);
  border-radius: 20px; padding: clamp(1.75rem, 4vw, 2.75rem);
}
@media (max-width: 860px) {
  .newsletter__inner { grid-template-columns: minmax(0, 1fr); }
  .newsletter__media { order: 2; }
}
.newsletter h2 {
  font-size: clamp(1.375rem, 2.6vw, 1.875rem);
  text-transform: uppercase; font-weight: 400;
}
.newsletter h2 strong { font-weight: 700; }
.newsletter p { font-size: .9375rem; color: var(--muted); }
.form--newsletter .btn { justify-self: stretch; text-align: center; }

/* --------------------------------------------------------- donate page */
.donate-widget {
  background: #fff; color: #111; border-radius: 6px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}
.donate-widget h2 { color: #111; font-size: 1.125rem; }
.embed-slot {
  border: 2px dashed var(--hairline); border-radius: 14px;
  padding: clamp(1.5rem, 4vw, 2.5rem); text-align: center; color: var(--muted);
  background: rgba(255, 255, 255, .03);
}
.embed-slot h3 { color: var(--ink); font-size: 1.0625rem; }
.embed-slot code {
  font-size: .8125rem; background: rgba(0, 0, 0, .5);
  padding: .15rem .4rem; border-radius: 4px;
}
.support-details h3 { font-size: 1rem; margin-bottom: .35rem; }
.support-details p { font-size: .9375rem; }
.support-details address { font-style: normal; color: var(--muted); }

/* ---------------------------------------------------------- article page */
.article-hero { position: relative; isolation: isolate; }
.article-hero > picture img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.article-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .9) 100%);
}
.article-hero__inner {
  width: min(100% - (var(--gutter) * 2), var(--wrap)); margin-inline: auto;
  padding: clamp(4rem, 12vw, 9rem) 0 clamp(2.5rem, 6vw, 4rem);
}
.article-hero h1 { font-weight: 700; font-size: clamp(1.875rem, 4.5vw, 3rem); }
.article-hero p { max-width: 70ch; color: rgba(255, 255, 255, .88); }
.article-body { width: min(100% - (var(--gutter) * 2), 960px); margin: 0 auto; padding: var(--section-y) 0; }
.article-body .video-slot { aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; }

/* --------------------------------------------------------------- footer */
.site-footer {
  padding: clamp(3rem, 7vw, 5.5rem) var(--gutter) 2rem;
  position: relative; isolation: isolate;
}
.site-footer::before {
  content: ""; position: absolute; inset: -18% 0 0 0; z-index: -1;
  background: radial-gradient(50vw 45vw at 84% 74%, rgba(10, 150, 130, .38), transparent 72%);
  pointer-events: none;
}
.site-footer { overflow: visible; }
.site-footer__inner {
  width: min(100%, 1300px); margin-inline: auto;
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.site-footer__brand img { width: 150px; margin-bottom: 1.75rem; }
.footer-nav { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.footer-nav a {
  font-family: var(--font-head); font-size: .8125rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  color: rgba(255, 255, 255, .8);
}
.footer-nav a:hover { color: #fff; }
.site-footer__community { display: grid; gap: 1.5rem; justify-items: end; }
.patreon-card {
  background: var(--card); border-radius: 20px;
  padding: clamp(1.5rem, 3.5vw, 2.25rem); width: 100%;
}
.patreon-card h2 {
  font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 700;
}
.patreon-card p { font-size: .875rem; color: var(--muted); }
.site-footer__legal {
  width: min(100%, 1300px); margin: 3rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .8125rem; color: var(--muted);
}
.site-footer__legal p { margin: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .site-header__inner { grid-template-columns: auto 1fr auto; }
  .site-header__meta { order: 3; grid-column: 1 / -1; }
  .broadcast { justify-content: center; font-size: .6875rem; letter-spacing: .1em; }
  .primary-nav ul { padding-left: 0; justify-content: center; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .social--header { display: none; }
  .primary-nav {
    display: none;
    margin-top: 1rem; padding: 1rem 0;
    border-top: 1px solid var(--hairline);
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; gap: .25rem; align-items: stretch; }
  .primary-nav a { display: block; padding: .75rem .25rem; border-bottom: 1px solid rgba(255,255,255,.07); }
  .primary-nav a:hover, .primary-nav a[aria-current="page"] { border-color: var(--accent); }

  .hero__inner,
  .split,
  .get-in-touch__inner,
  .site-footer__inner,
  .event { grid-template-columns: minmax(0, 1fr); }
  .split--reverse .split__media { order: 0; }
  .hero__device { order: -1; }
  .newsletter__card { margin-inline: auto; }
  .site-footer__community { justify-items: stretch; }
  .event__media { max-width: 420px; }
  .stat__value { font-size: clamp(1.75rem, 9vw, 2.5rem); }
}

@media (max-width: 560px) {
  .brand img, .site-footer__brand img { width: 124px; }
  .btn { padding: .8rem 1.5rem; font-size: .875rem; }
  .site-footer__legal { flex-direction: column; }
}

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

/* ------------------------------------------------------- presenter card */
.presenter-card {
  margin: 0; background: var(--navy); border-radius: var(--radius);
  overflow: hidden; max-width: 410px; margin-inline: auto;
}
.presenter-card img { width: 100%; height: auto; }
.presenter-card figcaption {
  display: grid; gap: .15rem;
  padding: 1.1rem 1.35rem 1.5rem;
  font-family: var(--font-head);
}
.presenter-card strong {
  font-size: .875rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
}
.presenter-card span { font-size: .875rem; color: var(--muted); }

/* ------------------------------------------------------------ blockquote */
blockquote { margin: 0 0 1.5rem; padding-left: 1.1rem; border-left: 2px solid var(--cyan); }
blockquote p { color: rgba(255, 255, 255, .9); }
blockquote footer { font-size: .8125rem; color: var(--muted); }

/* --------------------------------------------------------- interview grid */
.interviews { position: relative; isolation: isolate; }
.interviews > picture img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; opacity: .55;
}
.interviews::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.75));
}
.interview__frame {
  border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, .16); background: #000;
}
.interview h3 { font-size: 1rem; margin: .9rem 0 0; }

/* ------------------------------------------------------ production items */
.doc { display: grid; gap: 1rem; }
.doc__frame {
  border-radius: 14px; overflow: hidden; aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, .14); background: #000;
}
.doc h3 { margin: 0; font-size: 1.125rem; }
.doc p { font-size: .9375rem; color: var(--muted); margin: 0; }

/* ------------------------------------------------ media page topic layout */
.topic-layout {
  display: grid; gap: clamp(1rem, 2.5vw, 1.75rem);
  grid-template-columns: 1fr minmax(220px, .8fr) 1fr;
  align-items: start; text-align: left;
}
.topic-layout__col { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
.topic-layout__short { align-self: center; }
@media (max-width: 900px) {
  .topic-layout { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .topic-layout__short { grid-column: 1 / -1; max-width: 300px; margin-inline: auto; }
}

/* -------------------------------------------------- heading case matching
   The previous site rendered its section headings in caps. Kept as a
   presentational transform so the underlying markup stays readable, with
   .tc ("title case") for the headings that were not capitalised. */
h1, h2 { text-transform: uppercase; }
.tc, h1.tc, h2.tc { text-transform: none; }

/* Images that already contain their own device frame need no wrapper.
   Scoped with a class: a bare `.split__media > picture > img` also matched the
   merch product shots and stretched them (width:100% beating width:auto). */
.split__media--full > picture > img { width: 100%; height: auto; }
