/* ==================================================================
   B33T · ANTHEMS · subpage styles
   builds on site.css — only adds what's new for this page
   ================================================================== */

.anthems-body { background: #050307; }

/* Active state for the nav button on this page */
.nav-anthems-btn.is-active {
  color: #000;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(201,144,74,0.45);
}
.nav-anthems-btn.is-active::before { border-color: rgba(0,0,0,0.4); }
.nav-anthems-btn.is-active .anthems-corner { background: #000; }

/* ===================== TICKER ===================== */
.ticker {
  position: relative;
  margin-top: 84px;          /* clear fixed nav */
  border-top: 1px solid rgba(201,144,74,0.18);
  border-bottom: 1px solid rgba(201,144,74,0.18);
  background: linear-gradient(90deg, rgba(201,144,74,0.06), rgba(107,63,160,0.04), rgba(201,144,74,0.06));
  overflow: hidden;
  height: 36px;
}
.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  gap: 28px;
  padding: 10px 0;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  animation: ticker 60s linear infinite;
}
.ticker-track > span { opacity: 0.85; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===================== HERO ===================== */
.anthems-hero {
  position: relative;
  min-height: 80vh;
  padding: 100px var(--gutter-desktop) 120px;
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.anthems-hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(circle at 18% 30%, rgba(107,63,160,0.22), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(201,144,74,0.20), transparent 60%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 4px),
    #050307;
}
.anthems-hero-vignette {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at center, transparent 30%, #050307 95%);
  pointer-events: none;
}
.anthems-sigil {
  position: absolute;
  right: clamp(-40px, 4vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 38vw, 520px);
  aspect-ratio: 1 / 1;
  opacity: 0.85;
  pointer-events: none;
  animation: sigil-spin 80s linear infinite;
  filter: drop-shadow(0 0 30px rgba(201,144,74,0.35));
}
@keyframes sigil-spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}
.anthems-hero-content {
  position: relative;
  max-width: 720px;
  z-index: 1;
}
.anthems-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.36em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.dot-pulse {
  width: 8px; height: 8px;
  background: var(--gold-glow);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(232,185,122,0.9);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50%      { opacity: 1;   transform: scale(1.15); }
}
.anthems-title {
  font-family: 'Cormorant Garamond', serif;
  margin: 0 0 24px;
  line-height: 0.92;
}
.anthems-title-pre {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 64px);
  color: var(--grey-bright);
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.anthems-title-main {
  display: block;
  font-weight: 600;
  font-size: clamp(64px, 11vw, 168px);
  letter-spacing: -0.01em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(201,144,74,0.85);
  text-shadow:
    0 0 40px rgba(201,144,74,0.25),
    0 0 80px rgba(107,63,160,0.18);
}
.anthems-lede {
  max-width: 540px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--grey-bright);
  margin: 0 0 36px;
}
.anthems-hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
}

/* ===================== SECTION HEAD ===================== */
.anthems-section-head {
  text-align: center;
  margin-bottom: 56px;
}
.anthems-section-head .anthems-eyebrow { margin-bottom: 18px; }
.anthems-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(40px, 6vw, 84px);
  letter-spacing: -0.005em;
  margin: 0 0 14px;
  color: var(--grey-bright);
  line-height: 1;
}
.anthems-section-sub {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold-dim);
}

/* ===================== ARCHIVE ===================== */
.archive {
  padding: 120px var(--gutter-desktop);
  border-top: 1px solid rgba(201,144,74,0.12);
}
.anthem-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1080px;
  display: grid;
  gap: 14px;
}
.anthem-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 26px 30px;
  border: 1px solid rgba(201,144,74,0.18);
  background:
    linear-gradient(180deg, rgba(201,144,74,0.04), rgba(0,0,0,0)),
    #08060c;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.anthem-card::before,
.anthem-card::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.7;
  pointer-events: none;
}
.anthem-card::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.anthem-card::after  { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
.anthem-card:hover {
  border-color: rgba(201,144,74,0.55);
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(201,144,74,0.08), rgba(0,0,0,0)),
    #0a0810;
}
.ac-num {
  font-family: 'Share Tech Mono', monospace;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--gold);
  align-self: start;
  padding-top: 4px;
  min-width: 60px;
}
.ac-meta {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold-dim);
  margin-bottom: 10px;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.ac-meta .ac-dot { color: rgba(201,144,74,0.4); }
.ac-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: 0.01em;
  margin: 0 0 8px;
  color: var(--grey-bright);
  line-height: 1.15;
}
.ac-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey-mid);
  margin: 0 0 14px;
  max-width: 60ch;
}
.ac-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  padding: 4px 10px;
  border: 1px solid rgba(201,144,74,0.3);
  color: var(--gold);
  background: rgba(201,144,74,0.04);
}
.ac-play {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,144,74,0.5);
  background: transparent;
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.ac-play:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 18px rgba(201,144,74,0.5);
}

/* Feature card (single-anthem treatment) */
.anthem-feature {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  border: 1px solid rgba(201,144,74,0.35);
  background:
    linear-gradient(180deg, rgba(201,144,74,0.06), rgba(0,0,0,0)),
    #08060c;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6),
    0 30px 80px rgba(0,0,0,0.5),
    inset 0 0 60px rgba(201,144,74,0.04);
}
.anthem-feature::before,
.anthem-feature::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.anthem-feature::before { top: -7px; left: -7px; border-width: 1px 0 0 1px; }
.anthem-feature::after  { bottom: -7px; right: -7px; border-width: 0 1px 1px 0; }

.af-stamp {
  position: absolute;
  top: 18px; right: 22px;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 2px;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--gold);
  z-index: 2;
}
.af-stamp-n {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--gold-glow);
}
.af-stamp-d {
  color: var(--gold-dim);
}

.af-art {
  border-right: 1px solid rgba(201,144,74,0.2);
  background: #060409;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
.af-body {
  padding: 36px 40px 36px;
  display: flex; flex-direction: column;
  gap: 0;
}
.af-meta {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold-dim);
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 14px;
  margin-top: 14px;
}
.af-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 60px);
  letter-spacing: 0.005em;
  margin: 0 0 6px;
  color: var(--grey-bright);
  line-height: 1;
}
.af-tag {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin: 0 0 18px;
}
.af-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--grey-mid);
  margin: 0 0 20px;
  max-width: 56ch;
}
.af-spotify {
  margin-top: 24px;
  border: 1px solid rgba(201,144,74,0.18);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(20,16,28,0.4);
}
.af-spotify iframe {
  display: block;
}
.af-actions {
  margin-top: 22px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.af-play {
  width: auto;
  padding: 0 20px 0 16px;
  height: 48px;
  display: inline-flex; align-items: center; gap: 12px;
}
.af-play-label {
  font-size: 11px;
  letter-spacing: 0.32em;
}
.af-cta { padding: 14px 22px; font-size: 11px; }

@media (max-width: 760px) {
  .anthem-feature { grid-template-columns: 1fr; }
  .af-art { border-right: none; border-bottom: 1px solid rgba(201,144,74,0.2); }
  .af-body { padding: 28px 22px 28px; }
  .af-stamp { top: 12px; right: 14px; }
}

.archive-foot {
  margin: 56px auto 0;
  max-width: 1080px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  display: flex; justify-content: center; align-items: center; gap: 14px;
}
.archive-foot span:first-child {
  font-size: 16px; color: var(--gold);
  animation: spin 6s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===================== REQUEST CONSOLE ===================== */
.request {
  padding: 120px var(--gutter-desktop) 140px;
  border-top: 1px solid rgba(201,144,74,0.12);
  background:
    radial-gradient(circle at 70% 20%, rgba(107,63,160,0.06), transparent 50%),
    #050307;
}
.console {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(201,144,74,0.4);
  background:
    linear-gradient(180deg, #08060c 0%, #060409 100%);
  position: relative;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6),
    0 30px 80px rgba(0,0,0,0.6),
    inset 0 0 60px rgba(201,144,74,0.04);
}
.console::before,
.console::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.console::before { top: -8px; left: -8px; border-width: 1px 0 0 1px; }
.console::after  { bottom: -8px; right: -8px; border-width: 0 1px 1px 0; }

.console-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(201,144,74,0.25);
  background: rgba(201,144,74,0.05);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold);
}
.console-bar-l { display: flex; gap: 8px; }
.bar-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,144,74,0.4);
  box-shadow: 0 0 6px rgba(201,144,74,0.4);
}
.bar-dot:first-child { background: var(--gold-glow); box-shadow: 0 0 8px rgba(232,185,122,0.8); }
.console-bar-c { text-align: center; color: var(--grey-bright); }
.console-bar-r {
  display: flex; align-items: center; gap: 8px;
  color: var(--gold-glow);
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-glow);
  box-shadow: 0 0 10px rgba(232,185,122,0.9);
  animation: pulse 1.6s ease-in-out infinite;
}

/* Console form */
.console-form {
  padding: 36px 40px 40px;
}
.console-form .hp { position: absolute; left: -5000px; }

.console-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
  margin-bottom: 28px;
}
.field { display: block; }
.field-block { display: block; margin-bottom: 28px; }
.field-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 8px;
}
.field-hint {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--grey-dim);
  text-transform: lowercase;
  font-weight: normal;
}
.field-input {
  background: rgba(201,144,74,0.04);
  border: 1px solid rgba(201,144,74,0.3);
  padding: 13px 16px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  color: var(--grey-bright);
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.field-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,144,74,0.08);
  box-shadow: 0 0 0 1px rgba(201,144,74,0.3), 0 0 20px rgba(201,144,74,0.15);
}
.field-input::placeholder { color: var(--grey-dim); }

.field-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  letter-spacing: 0.01em;
}
.field-counter {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold-dim);
  text-align: right;
  margin-top: 6px;
}

/* Phrases */
.phrases legend { padding: 0; }
.phrases-stage {
  border: 1px dashed rgba(201,144,74,0.3);
  background: rgba(201,144,74,0.02);
  padding: 18px;
}
.phrase-chips {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
  min-height: 0;
}
.phrase-chips:empty { margin-bottom: 0; }
.phrase-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px 7px 12px;
  border: 1px solid rgba(201,144,74,0.45);
  background: linear-gradient(180deg, rgba(201,144,74,0.12), rgba(201,144,74,0.04));
  color: var(--grey-bright);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.2;
  max-width: 100%;
  animation: chipIn 0.2s ease;
}
.phrase-chip-num {
  font-family: 'Share Tech Mono', monospace;
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-right: 4px;
}
.phrase-chip button {
  border: 0;
  background: transparent;
  color: var(--gold);
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  opacity: 0.7;
}
.phrase-chip button:hover { opacity: 1; color: var(--gold-glow); }
@keyframes chipIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.phrase-input-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}
.phrase-prompt {
  color: var(--gold-glow);
  font-size: 18px;
  padding-left: 4px;
}
.phrase-input {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
}
.phrase-add {
  background: transparent;
  border: 1px solid rgba(201,144,74,0.4);
  color: var(--gold);
  padding: 11px 14px;
  font-size: 10px;
  letter-spacing: 0.28em;
  cursor: pointer;
  transition: all 0.2s ease;
}
.phrase-add:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 14px rgba(201,144,74,0.4);
}
.phrase-add:disabled {
  opacity: 0.35; cursor: not-allowed;
}
.phrase-counter {
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--gold-dim);
}
.phrase-counter-hint { color: var(--grey-dim); }
.phrase-counter.is-full { color: var(--gold-glow); }

/* Tone pills */
.tone-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.tone-pill {
  position: relative;
  cursor: pointer;
  user-select: none;
}
.tone-pill input { position: absolute; opacity: 0; pointer-events: none; }
.tone-pill span {
  display: inline-block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  padding: 9px 14px;
  border: 1px solid rgba(201,144,74,0.3);
  color: var(--gold);
  background: transparent;
  transition: all 0.2s ease;
}
.tone-pill:hover span { border-color: var(--gold); color: var(--gold-glow); }
.tone-pill input:checked + span {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 0 14px rgba(201,144,74,0.4);
}
.tone-pill input:focus-visible + span {
  outline: 1px dashed var(--gold-glow); outline-offset: 3px;
}

/* Timeline / tier cards */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 820px) { .tier-grid { grid-template-columns: repeat(2, 1fr); } }
.tier-card {
  position: relative;
  cursor: pointer;
  user-select: none;
}
.tier-card input { position: absolute; opacity: 0; pointer-events: none; }
.tier-card-inner {
  border: 1px solid rgba(201,144,74,0.32);
  background: rgba(14,10,20,0.55);
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.18s ease;
  height: 100%;
}
.tier-card:hover .tier-card-inner {
  border-color: var(--gold);
  background: rgba(201,144,74,0.06);
}
.tier-card input:checked + .tier-card-inner {
  border-color: var(--gold);
  background: rgba(201,144,74,0.12);
  box-shadow: 0 0 18px rgba(201,144,74,0.25), inset 0 0 0 1px rgba(232,185,122,0.4);
}
.tier-card input:focus-visible + .tier-card-inner {
  outline: 1px dashed var(--gold-glow); outline-offset: 3px;
}
.tier-card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.tier-days {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0.9;
}
.tier-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 28px;
  color: var(--gold-glow);
  line-height: 1;
}
.tier-card-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(201,144,74,0.6);
}
.tier-card input:checked + .tier-card-inner .tier-card-tag { color: var(--gold-glow); }
.tier-disclaimer {
  margin-top: 14px;
  padding: 12px 14px;
  border-left: 1px solid rgba(201,144,74,0.4);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: rgba(201,144,74,0.72);
  background: rgba(14,10,20,0.4);
}

/* Submit row */
.console-submit-row {
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px dashed rgba(201,144,74,0.25);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.console-foot {
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--gold-dim);
  display: flex; align-items: center; gap: 12px;
}

/* ===================== PROCESS STRIP ===================== */
.process-strip {
  list-style: none;
  margin: 80px auto 0;
  padding: 0;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(201,144,74,0.18);
}
.process-strip li {
  padding: 24px 18px;
  border-right: 1px solid rgba(201,144,74,0.18);
  display: flex; flex-direction: column; gap: 6px;
  text-align: left;
  background: linear-gradient(180deg, rgba(201,144,74,0.03), transparent);
}
.process-strip li:last-child { border-right: none; }
.ps-n {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.ps-t {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--grey-bright);
}
.ps-d {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold-dim);
}

/* Footer extras */
.footer-back {
  color: var(--gold);
  letter-spacing: 0.28em;
  font-size: 11px;
  transition: color 0.2s ease;
}
.footer-back:hover { color: var(--gold-glow); text-shadow: 0 0 12px rgba(232,185,122,0.5); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .anthems-hero { padding: 80px var(--gutter-tablet) 100px; min-height: auto; }
  .archive, .request { padding-left: var(--gutter-tablet); padding-right: var(--gutter-tablet); }
  .anthems-sigil { width: 60vw; opacity: 0.4; right: -10vw; }
  .process-strip { grid-template-columns: 1fr 1fr; }
  .process-strip li { border-bottom: 1px solid rgba(201,144,74,0.18); }
  .process-strip li:nth-child(2n) { border-right: none; }
  .process-strip li:nth-last-child(-n+2):not(:nth-last-child(odd)) { border-bottom: none; }
}
@media (max-width: 720px) {
  .ticker { margin-top: 70px; }
  .anthems-hero { padding: 60px var(--gutter-mobile) 80px; }
  .archive, .request { padding-top: 80px; padding-bottom: 80px; padding-left: var(--gutter-mobile); padding-right: var(--gutter-mobile); }
  .anthems-sigil { display: none; }
  .anthem-card { grid-template-columns: 1fr; gap: 14px; padding: 22px 20px; }
  .ac-num { font-size: 18px; padding-top: 0; }
  .ac-play { justify-self: end; }
  .console-form { padding: 24px 20px 28px; }
  .console-grid { grid-template-columns: 1fr; gap: 18px; }
  .console-submit-row { grid-template-columns: 1fr; }
  .console-bar-c { display: none; }
  .process-strip { grid-template-columns: 1fr; }
  .process-strip li { border-right: none; border-bottom: 1px solid rgba(201,144,74,0.18); }
  .process-strip li:last-child { border-bottom: none; }
}
