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

:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --text: #e8e8e8;
  --text-muted: #555555;
  --accent: #c8c8c8;
  --border: #1a1a1a;
  --font: 'IBM Plex Mono', monospace;

  --space-xs: clamp(0.4rem, 1.5vw, 0.55rem);
  --space-sm: clamp(0.75rem, 2.5vw, 1rem);
  --space-md: clamp(1rem, 3vw, 1.75rem);
  --space-lg: clamp(1.5rem, 4vw, 2.5rem);
  --space-xl: clamp(2rem, 6vw, 3rem);

  --text-xs: clamp(0.5rem, 1.8vw, 0.55rem);
  --text-sm: clamp(0.55rem, 2vw, 0.65rem);
  --text-md: clamp(0.6rem, 2.2vw, 0.7rem);

  --nav-clearance: 2.75rem;
  --footer-h: clamp(2.5rem, 8vw, 3.5rem);
  --bull-size: min(
    400px,
    88vw,
    calc(100dvh - var(--nav-clearance) - var(--footer-h) - 11rem),
    calc(100dvw - 2rem)
  );

  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

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

html, body {
  width: 100%;
  min-height: 100%;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  margin: 0;
}

body.body--main {
  overflow: hidden;
}

body.body--main #main,
body.body--main #main.screen {
  position: fixed;
  inset: 0;
  display: block;
  height: 100%;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  padding: 0;
}

.fx-svg {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

#main.page-motion--active::before,
#main.page-motion--active::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: soft-light;
  transition: opacity 0.12s ease;
  z-index: 9999;
}

#main.page-motion--active::before {
  opacity: min(calc(var(--fx-speed, 0) * 0.0015), 0.035);
  background: radial-gradient(
    ellipse at 50% 45%,
    rgba(90, 90, 90, 0.18) 0%,
    rgba(50, 50, 50, 0.06) 45%,
    transparent 72%
  );
}

#main.page-motion--active::after {
  display: none;
}

.screen {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  background: var(--bg);
  padding:
    calc(var(--safe-top) + var(--space-sm))
    calc(var(--safe-right) + var(--space-sm))
    calc(var(--safe-bottom) + var(--space-sm))
    calc(var(--safe-left) + var(--space-sm));
}

.screen--active {
  opacity: 1;
  visibility: visible;
}

.screen--exit {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ── Splash ── */

#splash {
  justify-content: center;
  align-items: center;
}

.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  width: 100%;
  max-width: 24rem;
  padding-inline: var(--space-sm);
}

.splash-label {
  font-size: var(--text-sm);
  letter-spacing: clamp(0.2em, 4vw, 0.35em);
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  width: min(280px, 100%);
}

.loader-track {
  width: 100%;
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.loader-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.05s linear;
}

.loader-percent {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.enter-btn {
  margin-top: 0;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font);
  font-size: var(--text-sm);
  letter-spacing: clamp(0.25em, 5vw, 0.4em);
  text-transform: uppercase;
  padding: clamp(0.75rem, 3vw, 0.85rem) clamp(1.75rem, 8vw, 2.5rem);
  min-height: 44px;
  min-width: 44px;
  cursor: default;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease, color 0.3s ease, border-color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.enter-btn--visible {
  opacity: 1;
  transform: translateY(0);
}

.enter-btn:not(:disabled) {
  cursor: pointer;
  color: var(--text);
  border-color: var(--text-muted);
}

@media (hover: hover) {
  .enter-btn:not(:disabled):hover {
    border-color: var(--accent);
    color: var(--accent);
  }
}

.enter-btn:not(:disabled):active {
  border-color: var(--accent);
  color: var(--accent);
}

.splash-copy {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  color: var(--text-muted);
}

.splash-footer {
  position: absolute;
  bottom: calc(var(--safe-bottom) + var(--space-md));
  left: calc(var(--safe-left) + var(--space-md));
  right: calc(var(--safe-right) + var(--space-md));
  font-size: var(--text-xs);
  letter-spacing: clamp(0.08em, 2vw, 0.15em);
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.5rem;
  text-align: center;
  line-height: 1.6;
}

.splash-footer .dot {
  opacity: 0.4;
}

/* ── Main ── */

#main {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg);
  transition: background-color 0.8s ease;
}

#main.screen {
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
}

.top-bar {
  position: fixed;
  top: calc(var(--safe-top) + var(--space-sm));
  left: calc(var(--safe-left) + var(--space-sm));
  right: calc(var(--safe-right) + var(--space-sm));
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  pointer-events: none;
}

.top-bar__left,
.top-bar__right {
  display: flex;
  align-items: center;
  gap: clamp(0.45rem, 2.5vw, 1.25rem);
  pointer-events: auto;
}

.top-bar__left {
  justify-content: flex-start;
}

.top-bar__right {
  justify-content: flex-end;
}

.nav-link {
  font-size: clamp(0.62rem, 2.4vw, 0.75rem);
  letter-spacing: clamp(0.05em, 1.2vw, 0.12em);
  text-transform: uppercase;
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.5rem 0.15rem;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

@media (hover: hover) {
  .nav-link:hover {
    color: var(--text);
  }
}

.nav-link:active {
  color: var(--text);
}

.nav-link--active {
  color: #4ade80;
}

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

.page-fx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.mood-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.mood-layer--green {
  background:
    radial-gradient(
      ellipse 120% 55% at 50% 18%,
      rgba(34, 197, 94, 0.28) 0%,
      rgba(22, 163, 74, 0.1) 42%,
      rgba(10, 10, 10, 0) 72%
    ),
    radial-gradient(
      ellipse 100% 45% at 50% 100%,
      rgba(34, 197, 94, 0.14) 0%,
      rgba(22, 163, 74, 0.05) 50%,
      rgba(10, 10, 10, 0) 78%
    );
  mix-blend-mode: screen;
}

.mood-layer--red {
  background:
    radial-gradient(
      ellipse 120% 50% at 50% 15%,
      rgba(140, 30, 30, 0.2) 0%,
      rgba(80, 15, 15, 0.08) 45%,
      rgba(10, 10, 10, 0) 72%
    ),
    linear-gradient(
      to bottom,
      rgba(80, 15, 15, 0.04) 0%,
      rgba(140, 30, 30, 0.12) 55%,
      rgba(180, 40, 40, 0.18) 100%
    );
  mix-blend-mode: soft-light;
}

.corner-lights {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.corner-light {
  position: absolute;
  width: clamp(80px, 18vw, 160px);
  height: clamp(80px, 18vw, 160px);
  opacity: var(--corner-op, 0.12);
  filter: hue-rotate(var(--corner-hue, 0deg));
  animation: corner-flicker var(--corner-speed, 2.8s) ease-in-out infinite;
}

.corner-light--tl {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 0% 0%, var(--corner-color, rgba(255,255,255,0.5)) 0%, transparent 70%);
  animation-delay: 0s;
}

.corner-light--tr {
  top: 0;
  right: 0;
  background: radial-gradient(circle at 100% 0%, var(--corner-color, rgba(255,255,255,0.5)) 0%, transparent 70%);
  animation-delay: 0.7s;
}

.corner-light--bl {
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at 0% 100%, var(--corner-color, rgba(255,255,255,0.5)) 0%, transparent 70%);
  animation-delay: 1.4s;
}

.corner-light--br {
  bottom: 0;
  right: 0;
  background: radial-gradient(circle at 100% 100%, var(--corner-color, rgba(255,255,255,0.5)) 0%, transparent 70%);
  animation-delay: 2.1s;
}

@keyframes corner-flicker {
  0%, 100% { opacity: calc(var(--corner-op, 0.12) * 0.5); }
  12% { opacity: calc(var(--corner-op, 0.12) * 1.2); }
  28% { opacity: calc(var(--corner-op, 0.12) * 0.65); }
  45% { opacity: calc(var(--corner-op, 0.12) * 1); }
  62% { opacity: calc(var(--corner-op, 0.12) * 0.4); }
  78% { opacity: calc(var(--corner-op, 0.12) * 0.95); }
}

.page-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: calc(var(--safe-top) + var(--nav-clearance) + var(--space-sm));
  transform-origin: center center;
  will-change: transform, filter;
  backface-visibility: hidden;
}

.page-content > .hero,
.page-content > .main-footer {
  position: relative;
  z-index: 1;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: clamp(0.75rem, 2vh, 1.25rem);
  padding:
    var(--space-sm)
    clamp(0.5rem, 3vw, 1.5rem)
    var(--space-md);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 2vh, 1.25rem);
  width: 100%;
  max-width: min(520px, 100%);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.hero-visual--visible {
  opacity: 1;
  transform: translateY(0);
}

.ca-notif {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-family: var(--font);
  font-size: clamp(0.48rem, 1.6vw, 0.55rem);
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  max-width: var(--bull-size);
}

@media (hover: hover) {
  .ca-notif:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.07);
  }
}

.ca-notif--copied {
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.45);
  background: rgba(74, 222, 128, 0.08);
}

.hero-status {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--text-muted);
  text-align: center;
  min-height: 1.2em;
  transition: color 0.2s ease;
}

.hero-status--bullish {
  color: #4ade80;
}

.hero-status--euphoric {
  color: #86efac;
  text-shadow: 0 0 12px rgba(74, 222, 128, 0.4);
}

.hero-status--bleeding {
  color: #f87171;
  text-shadow: 0 0 12px rgba(248, 113, 113, 0.35);
}

.bull-hint {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--text-muted);
  text-align: center;
  animation: hint-pulse 2.4s ease-in-out infinite;
  pointer-events: none;
  transition: opacity 0.4s ease, color 0.3s ease;
}

.bull-hint--urgent {
  color: #f87171;
  animation: hint-shake 0.6s ease-in-out infinite;
}

.bull-hint--hype {
  color: #4ade80;
  animation: hint-pulse 0.8s ease-in-out infinite;
}

.bull-alert {
  font-size: clamp(0.6rem, 2.2vw, 0.75rem);
  letter-spacing: 0.28em;
  text-transform: lowercase;
  color: #fbbf24;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
  text-shadow: 0 0 16px rgba(251, 191, 36, 0.35);
}

.bull-alert--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: alert-pulse 1.8s ease-in-out infinite;
}

.bull-alert--urgent {
  color: #ef4444;
  animation: alert-pulse 0.9s ease-in-out infinite;
}

@keyframes alert-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@keyframes hint-pulse {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

@keyframes hint-shake {
  0%, 100% { transform: translateX(0); opacity: 1; }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

.bull-stage {
  position: relative;
  width: var(--bull-size);
  height: var(--bull-size);
  max-width: 100%;
}

.bull-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--text-muted);
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.bull-loading[hidden] {
  display: none;
}

.bull-container {
  position: relative;
  width: 100%;
  height: 100%;
  flex-shrink: 1;
  cursor: grab;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
}

.bull-container--dragging {
  cursor: grabbing;
}

.bull-hp {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  max-width: var(--bull-size);
}

.bull-hp__label {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--text-muted);
  flex-shrink: 0;
}

.bull-hp__track {
  flex: 1;
  height: 2px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.bull-hp__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--text-muted);
  transform-origin: left center;
  transform: scaleX(1);
  transition: transform 0.08s linear, background 0.4s ease;
}

.bull-hp__fill--low {
  background: #ef4444;
}

.bull-hp__fill--mid {
  background: #fbbf24;
}

.bull-hp__fill--high {
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.45);
}

.bull-jump {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.bull-jump--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bull-jump__stage {
  position: relative;
  flex: 1;
  min-height: 0;
  width: 100%;
  height: 100%;
}

.runner-loading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--text-muted);
  pointer-events: none;
}

.runner-loading[hidden] {
  display: none;
}

.runner-canvas {
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
}

.runner-ui {
  position: absolute;
  top: calc(var(--nav-clearance) + var(--safe-top));
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  pointer-events: none;
}

.runner-score {
  font-size: clamp(0.7rem, 2.5vw, 0.85rem);
  letter-spacing: 0.25em;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.runner-hint {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--text-muted);
  opacity: 0.65;
}

.runner-msg {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-align: center;
  color: #ef4444;
  line-height: 1.7;
  max-width: 90%;
}

.hero-visual {
  position: relative;
}

.bull-container--dead {
  opacity: 0.25;
  filter: grayscale(0.9);
  pointer-events: none;
  transition: opacity 0.5s ease, filter 0.5s ease;
}

.bull-revive {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 25;
  background: none;
  border: 1px solid var(--border);
  font-family: var(--font);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: var(--text);
  padding: 0.65rem 1.4rem;
  cursor: pointer;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.bull-revive[hidden] {
  display: none;
}

@media (hover: hover) {
  .bull-revive:hover {
    border-color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
  }
}

.bull-revive:active {
  border-color: #4ade80;
  color: #4ade80;
}

#bull-canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 0.35s ease;
}

#bull-canvas.bull-canvas--ready {
  opacity: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2.5vh, 1.5rem);
  max-width: min(36rem, 92vw);
  padding-inline: var(--space-sm);
  padding-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
  --story-text: #555555;
  --story-chapter: rgba(74, 222, 128, 0.55);
  --story-live: #666666;
  --story-tagline: var(--text);
}

.hero-copy--bleed {
  --story-text: #6b4545;
  --story-chapter: rgba(248, 113, 113, 0.75);
  --story-live: #f87171;
  --story-tagline: #fca5a5;
}

.hero-copy--euphoric {
  --story-text: #5a7a62;
  --story-chapter: rgba(74, 222, 128, 0.95);
  --story-live: #86efac;
  --story-tagline: #bbf7d0;
}

.hero-copy--dead {
  --story-text: #444444;
  --story-chapter: rgba(120, 120, 120, 0.6);
  --story-live: #888888;
  --story-tagline: #777777;
}

.hero-copy--visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-tagline {
  font-size: clamp(0.65rem, 2.4vw, 0.75rem);
  letter-spacing: clamp(0.08em, 2vw, 0.14em);
  text-align: center;
  line-height: 1.8;
  color: var(--story-tagline);
  text-transform: lowercase;
  transition: color 0.5s ease;
}

.story-live {
  font-size: clamp(0.55rem, 1.9vw, 0.65rem);
  letter-spacing: 0.16em;
  text-transform: lowercase;
  text-align: center;
  color: var(--story-live);
  transition: color 0.5s ease;
  min-height: 1.4em;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  text-align: center;
}

.story-chapter {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--story-chapter);
  transition: color 0.5s ease;
}

.story-text {
  font-size: var(--text-xs);
  letter-spacing: 0.07em;
  line-height: clamp(1.75, 4vw, 2.05);
  color: var(--story-text);
  transition: color 0.5s ease;
}

.hero-motto {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--story-live);
  opacity: 0.85;
  padding-top: var(--space-xs);
  border-top: 1px solid var(--border);
  width: 100%;
  text-align: center;
  transition: color 0.5s ease;
}

.main-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  color: var(--text-muted);
  padding:
    var(--space-md)
    var(--space-md)
    calc(var(--safe-bottom) + var(--space-lg));
  min-height: var(--footer-h);
}

/* ── Breakpoints ── */

@media (max-width: 480px) {
  :root {
    --bull-size: min(
      92vw,
      calc(100dvh - var(--nav-clearance) - var(--footer-h) - 9.5rem)
    );
  }

  .splash-footer .dot {
    display: none;
  }

  .splash-footer span:not(.dot) {
    display: block;
    width: 100%;
  }
}

@media (max-width: 360px) {
  .top-bar__left,
  .top-bar__right {
    gap: 0.3rem;
  }

  .nav-link {
    letter-spacing: 0.05em;
    font-size: clamp(0.55rem, 2vw, 0.62rem);
    padding: 0.4rem 0.12rem;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  :root {
    --bull-size: min(
      42dvh,
      calc(100dvw - 12rem),
      320px
    );
    --nav-clearance: 2.25rem;
    --footer-h: clamp(2rem, 6vw, 2.5rem);
  }

  .hero {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: var(--space-sm);
  }

  .hero-visual {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }

  .bull-container {
    order: 1;
  }

  .hero-copy {
    order: 3;
    width: 100%;
  }

  .hero-tagline br {
    display: none;
  }
}

@media (min-width: 768px) {
  :root {
    --bull-size: min(420px, 48vw, calc(100dvh - var(--nav-clearance) - var(--footer-h) - 14rem));
  }
}

@media (min-width: 1200px) {
  :root {
    --bull-size: min(440px, 36vw, calc(100dvh - 17rem));
  }
}

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

  .screen {
    transition: none;
  }

  .hero-visual,
  .hero-copy,
  .enter-btn {
    transition: none;
  }
}
