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

:root {
  --bg: #050208;
  --surface: rgba(12, 8, 24, 0.72);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);
  --gold: #f0b429;
  --gold-hot: #ffe066;
  --gold-dim: #b8860b;
  --purple: #7c3aed;
  --purple-glow: #a855f7;
  --red-accent: #ef4444;
  --text: #faf7f2;
  --text-muted: rgba(250, 247, 242, 0.55);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
}

/* ── Background layers ── */
.hero-bg {
  position: absolute;
  inset: -4%;
  background: url("../images/background.png") center 30% / cover no-repeat;
  z-index: 0;
  animation: bg-breathe 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes bg-breathe {
  from { transform: scale(1.08) translate3d(-0.5%, 0, 0); }
  to   { transform: scale(1.14) translate3d(0.5%, -1%, 0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 70% at 70% 50%, rgba(124, 58, 237, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(240, 180, 41, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, rgba(5, 2, 8, 0.75) 0%, rgba(5, 2, 8, 0.2) 35%, rgba(5, 2, 8, 0.55) 70%, rgba(5, 2, 8, 0.95) 100%);
}

.mesh-orbs {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orb-float 12s ease-in-out infinite;
}

.orb-1 {
  width: 480px;
  height: 480px;
  top: -10%;
  right: 10%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.45), transparent 70%);
}

.orb-2 {
  width: 360px;
  height: 360px;
  bottom: 10%;
  left: -5%;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.35), transparent 70%);
  animation-delay: -4s;
}

.orb-3 {
  width: 280px;
  height: 280px;
  top: 40%;
  left: 35%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.15), transparent 70%);
  animation-delay: -8s;
}

@keyframes orb-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33%       { transform: translate3d(30px, -20px, 0) scale(1.05); }
  66%       { transform: translate3d(-20px, 15px, 0) scale(0.95); }
}

.noise {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

.vignette {
  position: absolute;
  inset: 0;
  z-index: 19;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, rgba(5, 2, 8, 0.6) 100%);
}

/* ── Clouds ── */
.clouds {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.cloud {
  position: absolute;
  background: radial-gradient(ellipse at center, rgba(200, 180, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.cloud-1 { width: 600px; height: 200px; top: 5%; left: -15%; animation: cloud-a 50s linear infinite; }
.cloud-2 { width: 500px; height: 180px; top: 20%; right: -10%; animation: cloud-b 60s linear infinite; opacity: 0.6; }
.cloud-3 { width: 700px; height: 220px; top: 35%; left: 25%; animation: cloud-a 70s linear infinite; opacity: 0.4; }
.cloud-4 { width: 400px; height: 150px; top: 8%; left: 50%; animation: cloud-b 45s linear infinite; opacity: 0.5; }

@keyframes cloud-a {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(100vw + 600px)); }
}

@keyframes cloud-b {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100vw - 500px)); }
}

/* ── Canvas effects ── */
#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

/* ── Header ── */
.hero-header {
  position: relative;
  z-index: 30;
  padding: 1.25rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  justify-content: center;
}

.header-glass {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(920px, 100%);
  padding: 0.65rem 0.65rem 0.65rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 20px 50px rgba(0, 0, 0, 0.4);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-hot), var(--gold-dim));
  box-shadow: 0 0 16px rgba(240, 180, 41, 0.8);
  animation: mark-pulse 2s ease-in-out infinite;
}

@keyframes mark-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(240, 180, 41, 0.6); transform: scale(1); }
  50%       { box-shadow: 0 0 24px rgba(255, 224, 102, 1); transform: scale(1.15); }
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-name {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-ticker {
  font-size: 1.1rem;
  margin-left: 0.25rem;
}

.social-nav {
  display: flex;
  gap: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: transform 0.3s var(--ease-spring), background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.social-link--accent {
  width: auto;
  padding: 0 1rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(240, 180, 41, 0.2), rgba(240, 180, 41, 0.05));
  border-color: rgba(240, 180, 41, 0.35);
  color: var(--gold-hot);
}

.social-link:hover {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.social-link--accent:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(240, 180, 41, 0.25);
}

/* ── Hero content ── */
.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  min-height: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fade-up 1s var(--ease-out) both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.25rem;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fca5a5;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 12px #ef4444;
  animation: live-blink 1.5s ease-in-out infinite;
}

@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero-title {
  margin-bottom: 1rem;
  line-height: 0.92;
}

.title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.title-word {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 11vw, 5.5rem);
  letter-spacing: -0.03em;
  background: linear-gradient(165deg, #fff 0%, var(--gold-hot) 45%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  filter: drop-shadow(0 4px 30px rgba(240, 180, 41, 0.35));
}

.title-word--outline {
  background: none;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px rgba(255, 224, 102, 0.85);
  color: transparent;
  filter: drop-shadow(0 0 40px rgba(240, 180, 41, 0.5));
}

.title-emoji {
  font-size: clamp(2rem, 8vw, 3.5rem);
  animation: emoji-float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(240, 180, 41, 0.6));
}

@keyframes emoji-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-8px) rotate(3deg); }
}

.hero-tagline {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 1.5rem;
}

.tagline-highlight {
  color: rgba(250, 247, 242, 0.85);
  font-weight: 500;
}

.stat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.chip {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 1rem;
  min-width: 88px;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(16px);
  transition: transform 0.3s var(--ease-spring), border-color 0.2s;
}

.chip:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 180, 41, 0.35);
}

.chip--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.ca-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 480px;
  margin-bottom: 1.75rem;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid rgba(240, 180, 41, 0.25);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(16px);
  color: var(--text);
  font-family: "DM Sans", monospace;
  font-size: 0.78rem;
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring), border-color 0.2s, box-shadow 0.2s;
}

.ca-bar:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 180, 41, 0.5);
  box-shadow: 0 8px 32px rgba(240, 180, 41, 0.15);
}

.ca-bar.copied {
  border-color: rgba(74, 222, 128, 0.5);
  box-shadow: 0 8px 32px rgba(74, 222, 128, 0.15);
}

.ca-label {
  flex-shrink: 0;
  padding: 0.2rem 0.5rem;
  background: rgba(240, 180, 41, 0.15);
  border-radius: 6px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--gold-hot);
}

.ca-address {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(250, 247, 242, 0.85);
  letter-spacing: 0.02em;
}

.ca-copy-icon {
  flex-shrink: 0;
  display: flex;
  color: var(--gold-hot);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.ca-copy-icon svg {
  width: 16px;
  height: 16px;
}

.ca-bar:hover .ca-copy-icon {
  opacity: 1;
}

.ca-copied {
  flex-shrink: 0;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  color: #4ade80;
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: opacity 0.2s, width 0.2s;
}

.ca-bar.copied .ca-copied {
  opacity: 1;
  width: auto;
}

.ca-bar.copied .ca-copy-icon {
  display: none;
}

.chip-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.chip-value {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-hot);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.3s;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-hot) 0%, var(--gold) 50%, var(--gold-dim) 100%);
  color: #1a0a00;
  box-shadow:
    0 4px 0 rgba(0, 0, 0, 0.25),
    0 12px 40px rgba(240, 180, 41, 0.45);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 6px 0 rgba(0, 0, 0, 0.2),
    0 20px 50px rgba(240, 180, 41, 0.55);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3), 0 8px 24px rgba(240, 180, 41, 0.35);
}

.btn-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.45) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: btn-shine 4s ease-in-out infinite;
}

@keyframes btn-shine {
  0%, 80%, 100% { transform: translateX(-120%); }
  40%           { transform: translateX(120%); }
}

.btn-text,
.btn-arrow {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-spring);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-glass {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  color: var(--text);
  backdrop-filter: blur(16px);
}

.btn-glass svg {
  width: 16px;
  height: 16px;
}

.btn-glass:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* ── Character stage ── */
.character-stage {
  position: relative;
  width: min(340px, 78vw);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fade-up 1s 0.15s var(--ease-out) both;
}

.stage-glow {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(240, 180, 41, 0.35) 0%, rgba(124, 58, 237, 0.15) 40%, transparent 70%);
  filter: blur(30px);
  z-index: 0;
  animation: stage-glow-pulse 3s ease-in-out infinite;
}

@keyframes stage-glow-pulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}

.stage-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240, 180, 41, 0.15);
  pointer-events: none;
}

.stage-ring--outer {
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  aspect-ratio: 1;
  animation: ring-spin 30s linear infinite;
  border-style: dashed;
  opacity: 0.4;
}

.stage-ring--inner {
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  aspect-ratio: 1;
  animation: ring-spin 20s linear infinite reverse;
  border-color: rgba(168, 85, 247, 0.2);
  opacity: 0.5;
}

@keyframes ring-spin {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(360deg); }
}

.stage-platform {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 12px;
  background: linear-gradient(90deg, transparent, rgba(240, 180, 41, 0.5), rgba(168, 85, 247, 0.4), transparent);
  border-radius: 50%;
  filter: blur(2px);
  box-shadow: 0 0 40px rgba(240, 180, 41, 0.4);
}

.character-main {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.7));
  transition: transform 0.4s var(--ease-out);
}

.hand-item {
  position: absolute;
  z-index: 4;
  bottom: 12%;
  left: 50%;
  transform: translateX(-58%);
  width: 38%;
  pointer-events: none;
}

.item-orbit {
  position: absolute;
  inset: -35%;
  border: 1px solid rgba(240, 180, 41, 0.25);
  border-radius: 50%;
  animation: orbit-spin 6s linear infinite;
}

.item-orbit::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-hot);
  box-shadow: 0 0 12px var(--gold-hot);
  transform: translateX(-50%);
}

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.character-item {
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: item-pulse 2.2s var(--ease-out) infinite;
  filter: drop-shadow(0 0 20px rgba(240, 180, 41, 0.9));
}

.item-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(255, 224, 102, 0.5) 0%, rgba(240, 180, 41, 0.2) 40%, transparent 70%);
  animation: glow-pulse 2.2s ease-in-out infinite;
  z-index: -1;
}

@keyframes item-pulse {
  0%, 100% {
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 16px rgba(240, 180, 41, 0.8));
  }
  50% {
    transform: scale(1.14) translateY(-4px);
    filter: drop-shadow(0 0 32px rgba(255, 224, 102, 1)) drop-shadow(0 0 60px rgba(240, 180, 41, 0.4));
  }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.25); }
}

/* ── Marquee ── */
.marquee {
  position: relative;
  z-index: 15;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  background: rgba(5, 2, 8, 0.6);
  backdrop-filter: blur(12px);
  padding: 0.65rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  flex-shrink: 0;
  padding-right: 3rem;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 180, 41, 0.7);
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Footer ── */
.hero-footer {
  position: relative;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.85rem 1rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--gold-hot);
}

.footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

/* ── Desktop layout ── */
@media (min-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0 clamp(2rem, 6vw, 5rem);
    align-items: center;
  }

  .hero-copy {
    align-items: flex-start;
    text-align: left;
    order: 1;
  }

  .character-stage {
    width: min(420px, 42vw);
    order: 2;
    margin: 0;
  }

  .title-row {
    justify-content: flex-start;
  }

  .stat-chips,
  .ca-bar,
  .hero-actions {
    justify-content: flex-start;
  }

  .hand-item {
    bottom: 12%;
    transform: translateX(-60%);
    width: 36%;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    grid-template-columns: 1.1fr 0.9fr;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
  }

  .character-stage {
    width: min(480px, 38vw);
  }
}

@media (max-width: 480px) {
  .header-glass {
    padding: 0.55rem 0.55rem 0.55rem 0.85rem;
  }

  .brand-sub {
    display: none;
  }

  .social-link:not(.social-link--accent) {
    width: 36px;
    height: 36px;
  }

  .character-stage {
    width: min(300px, 82vw);
  }

  .chip {
    min-width: 76px;
    padding: 0.5rem 0.75rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}

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