:root {
  color-scheme: dark;
  --ink: #fff8f3;
  --muted: #d4c2cf;
  --soft: rgba(255, 248, 243, 0.74);
  --panel: rgba(17, 10, 24, 0.76);
  --panel-strong: rgba(16, 10, 23, 0.94);
  --line: rgba(255, 232, 214, 0.16);
  --cyan: #ff6b8f;
  --magenta: #b965ff;
  --gold: #ffd071;
  --green: #72f0b5;
  --danger: #ff6d7a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #08050d;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.app-shell {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 107, 143, 0.18), transparent 28rem),
    radial-gradient(circle at 82% 34%, rgba(185, 101, 255, 0.14), transparent 26rem),
    linear-gradient(180deg, #08050d 0%, #140c20 50%, #09070f 100%);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  grid-template-rows: auto 1fr;
  isolation: isolate;
  padding: max(18px, env(safe-area-inset-top)) clamp(16px, 4vw, 44px) 28px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/hero-gta-cover.jpg");
  background-size: cover;
  background-position: center 34%;
  background-repeat: no-repeat;
  filter: brightness(1.06) saturate(1.1) contrast(1.03);
  background-color: #08050d;
  transition:
    filter 220ms ease,
    opacity 220ms ease;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(8, 5, 13, 0.52) 0%, rgba(8, 5, 13, 0.34) 38%, rgba(8, 5, 13, 0.4) 70%, #08050d 100%),
    linear-gradient(90deg, rgba(8, 5, 13, 0.76), rgba(26, 11, 31, 0.22) 54%, rgba(8, 5, 13, 0.34));
}

.topbar {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand,
.status-pill,
.action,
.icon-button,
.music-toggle {
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 8px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(12, 8, 18, 0.54);
  border-radius: 999px;
  font-weight: 750;
  font-size: 0.9rem;
}

.brand__mark {
  width: 30px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  color: #031018;
  font-weight: 950;
}

.status-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(12, 8, 18, 0.54);
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 720;
  text-transform: uppercase;
}

.music-toggle {
  flex: 0 0 auto;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(12, 8, 18, 0.54);
  color: var(--soft);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 780;
}

.music-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.music-toggle.is-playing {
  border-color: rgba(255, 208, 113, 0.38);
  color: var(--ink);
  box-shadow: 0 0 24px rgba(255, 208, 113, 0.12);
}

.status-dot {
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.hero__content {
  width: min(1040px, 100%);
  align-self: center;
  margin: 0 auto;
  padding: 56px 0 42px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 14px 0 0;
  font-size: clamp(2.55rem, 8vw, 5.9rem);
  line-height: 0.96;
  font-weight: 950;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.62);
}

.hero__copy {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(248, 251, 255, 0.82);
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  line-height: 1.55;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.hero__actions,
.verdict-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.action {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.action svg,
.icon-button svg,
.mini-card__icon svg,
.evidence-empty svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.action:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.action:focus-visible,
.icon-button:focus-visible {
  outline: 3px solid rgba(255, 208, 113, 0.42);
  outline-offset: 3px;
}

.music-toggle:focus-visible {
  outline: 3px solid rgba(255, 208, 113, 0.42);
  outline-offset: 3px;
}

.action--primary {
  border-color: rgba(255, 208, 113, 0.46);
  background: linear-gradient(135deg, rgba(255, 208, 113, 0.98), rgba(255, 107, 143, 0.96));
  color: #170813;
  box-shadow: 0 16px 40px rgba(255, 107, 143, 0.23);
}

.action--ghost,
.action--small {
  background: rgba(17, 10, 24, 0.62);
}

.action--small {
  min-height: 40px;
  padding: 0 12px;
  font-size: 0.88rem;
}

.dashboard,
.evidence-zone,
.timeline {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 16px;
  padding: 26px 0 16px;
}

.countdown-panel,
.mini-card,
.evidence-card,
.verdict-card,
.milestone {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.countdown-panel,
.evidence-card,
.verdict-card {
  padding: clamp(18px, 4vw, 28px);
}

.panel-heading,
.mini-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.panel-heading h2,
.mini-card h3,
.verdict-card h2,
.milestone h3 {
  margin: 5px 0 0;
  line-height: 1.04;
}

.panel-heading h2,
.verdict-card h2 {
  font-size: clamp(1.55rem, 4vw, 2.45rem);
}

.date-badge {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 202, 102, 0.28);
  border-radius: 999px;
  background: rgba(255, 202, 102, 0.1);
  color: #ffe1a1;
  padding: 8px 11px;
  font-size: 0.78rem;
  font-weight: 900;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.time-tile {
  min-width: 0;
  min-height: clamp(94px, 15vw, 132px);
  display: grid;
  align-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  text-align: center;
  overflow: hidden;
}

.time-tile strong {
  display: block;
  font-size: clamp(2.05rem, 7vw, 4.7rem);
  line-height: 0.92;
  font-variant-numeric: tabular-nums;
  font-weight: 950;
}

.time-tile span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.progress-wrap {
  margin-top: 22px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.progress-track,
.meter {
  position: relative;
  height: 11px;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.progress-track span,
.meter span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--gold));
  box-shadow: 0 0 24px rgba(255, 107, 143, 0.28);
  transition: width 500ms ease;
}

.quote {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(1.1rem, 3vw, 1.55rem);
  line-height: 1.28;
  font-weight: 850;
}

.reaction-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px;
  border: 1px solid rgba(255, 208, 113, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 208, 113, 0.12), rgba(255, 107, 143, 0.06)),
    rgba(255, 255, 255, 0.04);
}

.reaction-banner img {
  width: clamp(62px, 14vw, 86px);
  aspect-ratio: 1;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 208, 113, 0.52);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.38),
    0 0 24px rgba(255, 208, 113, 0.1);
}

.reaction-banner span,
.verdict-card__inner span {
  display: block;
}

.reaction-banner span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.reaction-banner strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  line-height: 1.18;
}

.side-stack {
  display: grid;
  gap: 16px;
}

.mini-card {
  padding: 18px;
}

.promise-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
  background:
    linear-gradient(145deg, rgba(48, 20, 42, 0.72), rgba(17, 10, 24, 0.88)),
    var(--panel);
}

.promise-portrait {
  width: 74px;
  aspect-ratio: 1;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #003391, #ffcd00);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 232, 214, 0.12);
}

.promise-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
  background: #08050d;
}

.excuse-heading {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 11px;
}

.excuse-heading img {
  width: 54px;
  aspect-ratio: 1;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 208, 113, 0.42);
  background: #08050d;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

.mini-card__icon {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 208, 113, 0.13);
  color: var(--gold);
}

.mini-card h3 {
  font-size: 1.16rem;
}

.mini-card p:not(.section-kicker),
.verdict-card p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.sworn-quote {
  position: relative;
  margin: 15px 0 0;
  padding: 15px 14px 13px;
  overflow: hidden;
  border: 1px solid rgba(255, 208, 113, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 208, 113, 0.13), rgba(255, 107, 143, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.sworn-quote::before {
  content: "“";
  position: absolute;
  top: -24px;
  right: 12px;
  color: rgba(255, 208, 113, 0.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7.6rem;
  line-height: 1;
}

.sworn-quote blockquote {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.36rem, 4.8vw, 1.75rem);
  font-style: italic;
  font-weight: 800;
  line-height: 1.08;
}

.sworn-quote figcaption {
  position: relative;
  margin-top: 8px;
  color: rgba(255, 248, 243, 0.64);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.35;
}

.icon-button {
  flex: 0 0 auto;
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
}

.meter {
  height: 10px;
}

.evidence-zone {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 16px;
  padding: 16px 0;
}

.evidence-drop {
  position: relative;
  min-height: 310px;
  display: grid;
  place-items: center;
  margin-top: 18px;
  overflow: hidden;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 208, 113, 0.08), rgba(255, 107, 143, 0.1)),
    rgba(255, 255, 255, 0.04);
}

.evidence-drop img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.24);
}

.evidence-drop .evidence-reaction {
  position: absolute;
  left: clamp(12px, 4%, 24px);
  bottom: clamp(12px, 4%, 24px);
  z-index: 4;
  width: clamp(74px, 20vw, 112px);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 208, 113, 0.68);
  background: #08050d;
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.54),
    0 0 26px rgba(255, 208, 113, 0.16);
}

/* Lupa artistica que amplia la fecha de lanzamiento */
.loupe {
  position: absolute;
  top: 50%;
  right: 5%;
  z-index: 3;
  width: clamp(148px, 46%, 250px);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translateY(-50%) rotate(-7deg);
  transform-origin: center;
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.55));
  animation: loupe-float 6.5s ease-in-out infinite;
}

.loupe__glass {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image: url("assets/evidence-date-zoom.jpg");
  background-repeat: no-repeat;
  background-size: 112%;
  background-position: 50% 47%;
  background-color: #170d15;
  border: 7px solid #150d14;
  box-shadow:
    0 0 0 3px rgba(255, 208, 113, 0.62),
    0 0 22px rgba(255, 208, 113, 0.22),
    inset 0 0 0 2px rgba(255, 255, 255, 0.16),
    inset 0 20px 42px rgba(0, 0, 0, 0.5),
    inset 0 -14px 32px rgba(0, 0, 0, 0.45);
}

/* Brillo del vidrio */
.loupe__glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(60% 45% at 32% 22%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 62%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 38%);
  mix-blend-mode: screen;
}

/* Mango de la lupa */
.loupe__handle {
  position: absolute;
  top: 66%;
  right: 4%;
  width: 13%;
  height: 50%;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe0a0 0%, #d49a3e 42%, #8a5d1f 100%);
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.55),
    inset 0 2px 3px rgba(255, 255, 255, 0.6),
    inset 0 -3px 6px rgba(0, 0, 0, 0.45);
  transform: rotate(45deg);
  transform-origin: 50% 0;
}

@keyframes loupe-float {
  0%,
  100% {
    transform: translateY(-50%) rotate(-7deg);
  }
  50% {
    transform: translateY(calc(-50% - 10px)) rotate(-4deg);
  }
}

.evidence-drop:hover .loupe {
  animation-play-state: paused;
  transform: translateY(-50%) rotate(-3deg) scale(1.06);
  transition: transform 260ms ease;
}

.verdict-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 310px;
  background:
    linear-gradient(145deg, rgba(255, 202, 102, 0.12), transparent 42%),
    var(--panel-strong);
}

.verdict-card__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
}

.verdict-card__inner img {
  width: clamp(78px, 14vw, 104px);
  aspect-ratio: 1;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 208, 113, 0.52);
  background: #08050d;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(255, 208, 113, 0.12);
}

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

.milestone {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 88px;
  padding: 16px;
}

.milestone > img {
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: #08050d;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32);
}

.milestone.is-done > img {
  border-color: rgba(114, 240, 181, 0.58);
  box-shadow: 0 0 0 7px rgba(101, 242, 165, 0.12);
}

.milestone.is-active > img {
  border-color: rgba(255, 208, 113, 0.7);
  box-shadow: 0 0 0 7px rgba(255, 202, 102, 0.14);
}

.milestone p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.milestone h3 {
  font-size: 1rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 20;
  width: min(420px, calc(100% - 28px));
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 12, 24, 0.9);
  color: var(--ink);
  text-align: center;
  font-weight: 780;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translate(-50%, 16px);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(8, 5, 13, 0.78), rgba(8, 5, 13, 0.92)),
    rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(14px);
}

.age-gate.is-hidden {
  display: none;
}

.age-gate__panel {
  width: min(460px, 100%);
  padding: clamp(20px, 5vw, 30px);
  border: 1px solid rgba(255, 232, 214, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(48, 20, 42, 0.84), rgba(17, 10, 24, 0.94)),
    var(--panel-strong);
  box-shadow: var(--shadow);
  text-align: center;
}

.welcome-crest {
  width: min(190px, 56vw);
  aspect-ratio: 1;
  margin: 0 auto 18px;
  padding: 5px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, #003391, #ffcd00 46%, #003391),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 232, 214, 0.16),
    0 0 42px rgba(255, 205, 0, 0.14);
}

.welcome-crest img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
  background: #08050d;
}

.age-gate__panel h2 {
  margin: 6px 0 0;
  font-size: clamp(2.15rem, 9vw, 3.25rem);
  line-height: 0.96;
}

.age-gate__panel p:not(.section-kicker) {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.age-gate__actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.confetti-canvas {
  position: fixed;
  inset: 0;
  z-index: 18;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@media (max-width: 820px) {
  .hero {
    min-height: 86svh;
    padding-inline: 16px;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(8, 5, 13, 0.5) 0%, rgba(8, 5, 13, 0.32) 42%, rgba(8, 5, 13, 0.42) 69%, #08050d 100%),
      linear-gradient(90deg, rgba(8, 5, 13, 0.68), rgba(26, 11, 31, 0.24));
  }

  .hero__bg {
    background-size: cover;
    background-position: center top;
  }

  .topbar {
    align-items: flex-start;
  }

  .brand {
    max-width: 58vw;
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .status-pill {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 0.7rem;
  }

  .music-toggle {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 0;
  }

  .music-toggle svg {
    width: 17px;
    height: 17px;
  }

  .hero__content {
    align-self: start;
    padding-top: clamp(62px, 18svh, 140px);
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero__copy {
    max-width: 34rem;
  }

  .dashboard,
  .evidence-zone,
  .timeline {
    width: min(100% - 24px, 680px);
  }

  .dashboard,
  .evidence-zone,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .time-tile {
    min-height: 108px;
  }

  .panel-heading {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 85svh;
  }

  .hero__content {
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(2.42rem, 14vw, 4rem);
  }

  .hero__actions,
  .verdict-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .action {
    width: 100%;
  }

  .panel-heading {
    flex-direction: column;
  }

  .date-badge {
    align-self: flex-start;
  }

  .evidence-drop {
    min-height: 260px;
  }
}

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