/* Countdown page — Classified Vault revamp */

:root {
  --sg-gold: #d4af37;
  --sg-gold-soft: #f0d78a;
  --sg-gold-bright: #ffe9a8;
  --sg-gold-dim: rgba(212, 175, 55, 0.42);
  --sg-ember: #9e3a42;
  --sg-ember-glow: rgba(158, 58, 66, 0.55);
  --sg-jade: #5ecf9a;
  --sg-jade-dim: rgba(94, 207, 154, 0.35);
  --sg-jade-glow: rgba(94, 207, 154, 0.45);
  --sg-ink: #030201;
  --sg-panel: rgba(12, 10, 8, 0.94);
  --sg-glass: rgba(16, 13, 10, 0.78);
  --sg-max: 1100px;
  --sg-radius: 8px;
}

/* ── Shell & atmosphere ── */
.tmf-seal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding:
    max(10px, env(safe-area-inset-top, 0px))
    max(14px, env(safe-area-inset-right, 0px))
    max(12px, env(safe-area-inset-bottom, 0px))
    max(14px, env(safe-area-inset-left, 0px));
  cursor: default;
  background: var(--sg-ink);
  box-sizing: border-box;
  isolation: isolate;
}

.tmf-seal::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 70% at 50% -8%, rgba(212, 175, 55, 0.22), transparent 55%),
    radial-gradient(ellipse 55% 45% at 12% 88%, rgba(94, 207, 154, 0.08), transparent 50%),
    radial-gradient(ellipse 50% 40% at 92% 78%, rgba(158, 58, 66, 0.12), transparent 48%),
    linear-gradient(175deg, #030202 0%, #0d0b09 42%, #060504 100%);
}

.tmf-seal::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 3px,
    rgba(0, 0, 0, 0.04) 3px,
    rgba(0, 0, 0, 0.04) 4px
  );
}

.tmf-seal > .film-stock {
  position: fixed;
  inset: 0;
  z-index: 1;
  visibility: visible;
  pointer-events: none;
  opacity: 0.38;
  mix-blend-mode: soft-light;
}

body.tmf-locked .tmf-seal > .film-stock .film-grain {
  opacity: 0.09;
}

body.tmf-locked .tmf-seal > .film-stock .film-scratches,
body.tmf-locked .tmf-seal > .film-stock .film-scratches-b {
  opacity: 0.08;
}

body.tmf-locked .tmf-seal > .film-stock .film-flicker {
  opacity: 0.04;
}

.tmf-seal-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.tmf-seal-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: sg-orb-drift 18s ease-in-out infinite alternate;
}

.tmf-seal-orb--gold {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  top: -18%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.35), transparent 68%);
}

.tmf-seal-orb--ember {
  width: 280px;
  height: 280px;
  bottom: 8%;
  left: -6%;
  background: radial-gradient(circle, var(--sg-ember-glow), transparent 70%);
  animation-delay: -6s;
}

.tmf-seal-orb--jade {
  width: 220px;
  height: 220px;
  top: 42%;
  right: -4%;
  background: radial-gradient(circle, var(--sg-jade-dim), transparent 72%);
  animation-delay: -11s;
}

.tmf-seal-vault-grid {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 65% at 50% 40%, black, transparent);
}

.tmf-seal-scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.5) 2px,
    rgba(0, 0, 0, 0.5) 3px
  );
  mix-blend-mode: overlay;
}

@keyframes sg-orb-drift {
  0% { transform: translateX(-50%) translateY(0) scale(1); }
  100% { transform: translateX(-48%) translateY(12px) scale(1.06); }
}

/* ── Telemetry chrome ── */
.tmf-seal-chrome {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  max-width: var(--sg-max);
  margin: 0 auto 12px;
  flex-shrink: 0;
  pointer-events: none;
}

.tmf-seal-chrome > * {
  pointer-events: auto;
}

body.tmf-locked .tmf-seal-chrome .tmf-presence-widget--seal,
body.tmf-locked .tmf-seal-chrome .tmf-visitor-widget--seal {
  border-radius: var(--sg-radius);
  backdrop-filter: blur(10px);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

body.tmf-locked .tmf-seal-chrome .tmf-presence-widget--seal {
  border-color: rgba(94, 207, 154, 0.45);
  background:
    linear-gradient(145deg, rgba(94, 207, 154, 0.12), transparent 55%),
    var(--sg-glass);
}

body.tmf-locked .tmf-seal-chrome .tmf-visitor-widget--seal {
  border-color: rgba(212, 175, 55, 0.42);
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.14), transparent 55%),
    var(--sg-glass);
}

/* ── Main dossier panel ── */
.tmf-seal-stage {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.tmf-seal-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--sg-max);
  max-height: 100%;
  margin: 0 auto;
  padding: 30px 28px 28px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: calc(var(--sg-radius) + 4px);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.09) 0%, transparent 22%),
    linear-gradient(0deg, rgba(94, 207, 154, 0.04) 0%, transparent 14%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, transparent 14%),
    var(--sg-panel);
  backdrop-filter: blur(18px) saturate(1.15);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.22),
    0 0 0 5px rgba(0, 0, 0, 0.4),
    0 40px 120px rgba(0, 0, 0, 0.8),
    0 0 140px rgba(212, 175, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tmf-seal-frame {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--sg-radius);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.4);
}

.tmf-seal-corner {
  position: absolute;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: rgba(212, 175, 55, 0.35);
  line-height: 1;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

.tmf-seal-corner--tl { top: 2px; left: 6px; }
.tmf-seal-corner--tr { top: 2px; right: 6px; }
.tmf-seal-corner--bl { bottom: 2px; left: 6px; }
.tmf-seal-corner--br { bottom: 2px; right: 6px; }

.tmf-seal-wax {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 35% 30%, #8b2630, #4a1218 55%, #2a0a0e 100%);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.6),
    inset 0 2px 4px rgba(255, 120, 120, 0.25),
    0 0 24px var(--sg-ember-glow);
  transform: rotate(12deg);
  opacity: 0.92;
}

.tmf-seal-wax span {
  font-family: 'Cinzel Decorative', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 220, 200, 0.75);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.tmf-seal-classified-ribbon {
  display: inline-block;
  margin: 0 auto 14px;
  padding: 6px 20px;
  font-family: 'Special Elite', monospace;
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 210, 210, 0.95);
  background: linear-gradient(90deg, rgba(158, 58, 66, 0.65), rgba(90, 20, 28, 0.8), rgba(158, 58, 66, 0.65));
  border: 1px solid rgba(220, 100, 110, 0.5);
  box-shadow:
    0 0 28px var(--sg-ember-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: rotate(-1.5deg);
  animation: sg-ribbon-flicker 4s ease-in-out infinite;
}

@keyframes sg-ribbon-flicker {
  0%, 100% { opacity: 1; }
  48% { opacity: 0.92; }
  52% { opacity: 1; }
}

.tmf-seal-hero {
  flex-shrink: 0;
  padding: 8px 8px 0;
  position: relative;
}

.tmf-seal-kicker {
  font-family: 'Special Elite', monospace;
  font-size: 10px;
  letter-spacing: 0.34em;
  color: rgba(200, 90, 98, 0.95);
  margin: 0 0 10px;
}

.tmf-seal-title {
  position: relative;
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(30px, 7vw, 56px);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.06;
  margin: 0 0 14px;
  background: linear-gradient(
    180deg,
    var(--sg-gold-bright) 0%,
    var(--sg-gold-soft) 35%,
    var(--sg-gold) 70%,
    #7a6218 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.85)) drop-shadow(0 0 36px rgba(212, 175, 55, 0.4));
  animation: sg-title-breathe 5s ease-in-out infinite;
}

@keyframes sg-title-breathe {
  0%, 100% { filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.85)) drop-shadow(0 0 32px rgba(212, 175, 55, 0.35)); }
  50% { filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.85)) drop-shadow(0 0 48px rgba(212, 175, 55, 0.55)); }
}

.tmf-seal-date {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sg-gold-dim);
  margin: 0 0 12px;
}

.tmf-seal-lead {
  font-family: 'IM Fell English', 'EB Garamond', serif;
  font-size: clamp(15px, 2.4vw, 18px);
  line-height: 1.55;
  color: rgba(200, 185, 160, 0.88);
  margin: 0 auto 20px;
  max-width: 34em;
}

.tmf-countdown-eyebrow {
  margin: 0 0 14px;
  font-family: 'Cinzel', serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.55);
}

.tmf-countdown,
.tmf-countdown--vault {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
  max-width: 600px;
  margin: 0 auto;
  padding: 16px 14px;
  border-radius: calc(var(--sg-radius) + 2px);
  background:
    radial-gradient(ellipse 90% 80% at 50% 0%, rgba(212, 175, 55, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.4));
  box-shadow:
    inset 0 0 0 1px rgba(212, 175, 55, 0.25),
    inset 0 0 40px rgba(0, 0, 0, 0.5),
    0 20px 48px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(212, 175, 55, 0.1);
}

.tmf-countdown::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: calc(var(--sg-radius) - 2px);
  border: 1px dashed rgba(212, 175, 55, 0.12);
  pointer-events: none;
}

.tmf-countdown-unit {
  position: relative;
  flex: 1 1 72px;
  min-width: 68px;
  max-width: 128px;
  padding: 16px 10px 12px;
  margin: 0 4px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 38%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, transparent 30%),
    rgba(6, 5, 4, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -10px 24px rgba(0, 0, 0, 0.55),
    0 6px 16px rgba(0, 0, 0, 0.4);
}

.tmf-countdown-unit::before,
.tmf-countdown-unit::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: rgba(212, 175, 55, 0.35);
  border-style: solid;
  pointer-events: none;
}

.tmf-countdown-unit::before {
  top: 5px;
  left: 5px;
  border-width: 1px 0 0 1px;
}

.tmf-countdown-unit::after {
  bottom: 5px;
  right: 5px;
  border-width: 0 1px 1px 0;
}

.tmf-countdown-unit:not(:last-child)::after {
  content: ':';
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translateY(-58%);
  font-family: 'Cinzel Decorative', serif;
  font-size: 22px;
  color: rgba(212, 175, 55, 0.45);
  pointer-events: none;
  z-index: 2;
}

.tmf-countdown-unit span {
  display: block;
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(28px, 5.5vw, 44px);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: #fff8eb;
  text-shadow:
    0 0 24px rgba(212, 175, 55, 0.35),
    0 2px 0 rgba(0, 0, 0, 0.8);
}

.tmf-countdown-unit small {
  display: block;
  margin-top: 10px;
  font-family: 'Cinzel', serif;
  font-size: 7px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(130, 110, 85, 0.95);
}

.tmf-countdown-unit--pulse span {
  animation: sg-sec-glow 1s ease-in-out infinite;
}

@keyframes sg-sec-glow {
  0%, 100% { text-shadow: 0 0 16px rgba(212, 175, 55, 0.2); }
  50% { text-shadow: 0 0 24px rgba(212, 175, 55, 0.55); }
}

.tmf-seal-divider {
  margin: 20px auto 0;
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.45);
}

.tmf-seal-divider span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 18px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  line-height: 1.4;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.06);
}

.tmf-seal-divider span::before,
.tmf-seal-divider span::after {
  content: '';
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

/* ── Column headers ── */
.tmf-seal-col-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  text-align: left;
}

.tmf-seal-col-head--signal {
  border-bottom-color: rgba(94, 207, 154, 0.2);
}

.tmf-seal-col-tag {
  font-family: 'Special Elite', monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  color: rgba(212, 175, 55, 0.55);
}

.tmf-seal-col-head--signal .tmf-seal-col-tag {
  color: rgba(94, 207, 154, 0.65);
}

.tmf-seal-col-title {
  font-family: 'Cinzel', serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(160, 145, 120, 0.7);
}

/* ── Grid body ── */
.tmf-seal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 24px;
  text-align: left;
  flex-shrink: 0;
}

body.tmf-locked .tmf-seal-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

body.tmf-locked .tmf-seal-side .tmf-community-terminal--seal {
  flex: 1 1 0;
  min-height: 0;
}

/* ── Contact + credits (scroll with dossier) ── */
.tmf-seal-meta {
  flex-shrink: 0;
  width: 100%;
  margin-top: 26px;
  padding: 22px 0 8px;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  box-sizing: border-box;
}

.tmf-seal-citations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-width: 0;
}

.tmf-seal-citation {
  position: relative;
  min-width: 0;
  padding: 13px 14px 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--sg-radius);
  text-align: left;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 48%),
    rgba(0, 0, 0, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(212, 175, 55, 0.06),
    0 8px 22px rgba(0, 0, 0, 0.34);
}

.tmf-seal-citation::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.8), rgba(94, 207, 154, 0.34));
  opacity: 0.8;
}

.tmf-seal-citation--final::before {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.7), rgba(158, 58, 66, 0.48));
}

.tmf-seal-citation-label {
  display: block;
  margin: 0 0 7px;
  font-family: 'Special Elite', monospace;
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.58);
}

.tmf-seal-credit-plain {
  margin: 0;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(220, 205, 180, 0.92);
  overflow-wrap: anywhere;
}

.tmf-seal-credit-plain strong {
  font-weight: 600;
  color: var(--sg-gold-soft);
}

.tmf-seal-credit-plain .tmf-credit-name {
  position: relative;
  display: inline-block;
  min-width: 7.5ch;
  vertical-align: baseline;
  white-space: nowrap;
}

.tmf-seal-credit-plain .tmf-credit-name::before,
.tmf-seal-credit-plain .tmf-credit-name::after {
  text-align: left;
}

.tmf-seal-credit-plain a {
  color: rgba(212, 175, 55, 0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tmf-seal-credit-plain--lore {
  font-size: 13px;
  color: rgba(190, 175, 150, 0.82);
}

.tmf-seal-credit-plain--lore strong {
  color: rgba(212, 175, 55, 0.75);
}

.tmf-seal-credit.tmf-credit-glitch,
.tmf-seal-note.tmf-credit-glitch {
  display: none;
}

.tmf-seal-credit {
  margin: 0;
  font-family: 'Special Elite', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(212, 175, 55, 0.62);
  text-transform: uppercase;
}

.tmf-seal-note {
  margin: 0;
  font-family: 'Special Elite', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: rgba(212, 175, 55, 0.35);
}

html[data-tmf-kv-readonly='1'] body.tmf-locked .tmf-seal {
  padding-top: calc(max(10px, env(safe-area-inset-top, 0px)) + var(--tmf-kv-banner-h, 36px));
}

/* Forum terminal visuals — community-chat.css */

/* ── Responsive ── */
@media (min-width: 720px) {
  .tmf-seal-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: 26px;
    align-items: stretch;
    min-height: min(460px, 52vh);
  }

  body.tmf-locked .tmf-seal-side {
    min-height: 100%;
  }

  .tmf-seal-meta {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    grid-template-areas: "citations contact";
    gap: 18px;
    align-items: stretch;
  }

  .tmf-seal-meta .tmf-contact--seal {
    grid-area: contact;
    height: 100%;
    text-align: left;
  }

  .tmf-seal-citations {
    grid-area: citations;
    align-content: stretch;
  }
}

@media (min-width: 900px) {
  .tmf-seal-inner {
    padding: 32px 34px 26px;
  }

  .tmf-countdown {
    max-width: 620px;
    padding: 16px 18px;
  }
}

@media (max-width: 520px) {
  .tmf-seal-inner {
    padding: 20px 14px 16px;
  }

  .tmf-seal-wax {
    width: 42px;
    height: 42px;
    top: 12px;
    right: 12px;
  }

  .tmf-seal-wax span {
    font-size: 9px;
  }

  .tmf-countdown {
    padding: 10px 6px;
  }

  .tmf-countdown-unit {
    min-width: 56px;
    margin: 0 4px;
    padding: 10px 6px 9px;
  }

  .tmf-countdown-unit:not(:last-child)::after {
    right: -9px;
    font-size: 18px;
  }

  .tmf-seal-meta {
    margin-top: 18px;
    padding-top: 16px;
  }

  .tmf-seal-citation {
    padding: 11px 12px 12px;
  }

}

@media (max-width: 420px) {
  .tmf-seal-date,
  .tmf-countdown-eyebrow,
  .tmf-seal-divider,
  .tmf-seal-col-tag,
  .tmf-seal-col-title,
  .tmf-seal-citation-label {
    letter-spacing: 0.14em;
  }

  .tmf-countdown-unit {
    flex: 1 1 40%;
    max-width: none;
  }

  .tmf-countdown-unit:nth-child(2)::after,
  .tmf-countdown-unit:nth-child(4)::after {
    content: none;
  }
}

@media (max-width: 719px) {
  .tmf-seal-hero {
    margin-bottom: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tmf-seal-orb,
  .tmf-seal-vault-grid,
  .tmf-countdown-unit--pulse span,
  .tmf-seal-title,
  .tmf-seal-classified-ribbon,
}
