/* ── Variables (palette logo Hazapps) ── */
:root {
  --brown: #7B4E2A;
  --brown-dark: #5C3A1F;
  --brown-light: #A06B3D;
  --teal: #2B5D7A;
  --teal-dark: #1E4558;
  --teal-light: #3A7A9E;
  --cream: #F2EBE1;
  --cream-dark: #E8DFD3;
  --tan: #D9B48F;
  --tan-light: #EDD5B8;
  --text: #3D2B1F;
  --text-muted: #6B5344;
  --white: #FFFCF8;
  --shadow: 0 8px 32px rgba(123, 78, 42, 0.12);
  --shadow-lg: 0 16px 48px rgba(43, 93, 122, 0.15);
  --radius: 20px;
  --radius-lg: 28px;
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* Kyojin Quizz */
  --kq-navy: #0B141E;
  --kq-navy-light: #141E2E;
  --kq-red: #E31919;
  --kq-red-glow: rgba(227, 25, 25, 0.45);
  --kq-orange: #FF6B35;
  --kq-text: #E8EDF2;
  --kq-text-muted: #8A9BB0;

  /* Soirée à 2 */
  --sa2-black: #0A0A0A;
  --sa2-crimson: #A50B0B;
  --sa2-crimson-light: #C41E1E;
  --sa2-cream: #F2EFE9;
  --sa2-glow: rgba(165, 11, 11, 0.35);
  --sa2-text-muted: #B8A8A8;

  /* Darties */
  --dt-deep: #0A1214;
  --dt-mid: #121C1F;
  --dt-brick: #9C2F2A;
  --dt-brass: #C9A84C;
  --dt-cream: #EDE4D0;
  --dt-muted: #A89878;
  --dt-glow: rgba(201, 168, 76, 0.35);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Background orbs ── */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float 12s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--tan);
  top: -100px;
  right: -100px;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: var(--teal-light);
  bottom: 20%;
  left: -120px;
  animation-delay: -4s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--brown-light);
  bottom: -80px;
  right: 20%;
  animation-delay: -8s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* ── Social bar ── */
.social-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--teal);
  box-shadow: 0 4px 20px rgba(30, 69, 88, 0.25);
}

.social-bar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.social-bar__label {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan-light);
}

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transition: all 0.3s var(--spring);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: var(--brown);
  color: var(--white);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 16px rgba(123, 78, 42, 0.4);
}

.social-link:active {
  transform: translateY(0) scale(0.95);
}

/* ── Hero ── */
main {
  position: relative;
  z-index: 1;
}

.hero {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero__logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  animation: logoEnter 0.8s var(--spring) both;
}

.hero__logo {
  width: min(280px, 70vw);
  height: auto;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 24px rgba(123, 78, 42, 0.2));
}

.hero__logo-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, var(--tan) 0%, transparent 70%);
  opacity: 0.4;
  border-radius: 50%;
  z-index: 0;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes logoEnter {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.05); }
}

.hero__slogan {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  line-height: 1.25;
  color: var(--brown-dark);
  margin-bottom: 0.75rem;
  animation: fadeUp 0.7s var(--smooth) 0.2s both;
}

.hero__fun {
  color: var(--teal);
  display: inline-block;
  position: relative;
  animation: funBounce 2s var(--spring) infinite;
}

@keyframes funBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-4px) rotate(-2deg); }
  75% { transform: translateY(-2px) rotate(2deg); }
}

.hero__tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 400;
  animation: fadeUp 0.7s var(--smooth) 0.35s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Apps section ── */
.apps {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 1.5rem 4rem;
}

.apps__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ── Tabs ── */
.tabs {
  position: relative;
  display: flex;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 6px;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.tab {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-radius: calc(var(--radius-lg) - 6px);
  transition: color 0.35s var(--smooth);
}

.tab--kyojin {
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tab--soiree {
  font-family: 'Montserrat', sans-serif;
}

.tab--darties {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.04em;
}

.tab__beta {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.25);
  color: var(--dt-brass);
  border: 1px solid rgba(201, 168, 76, 0.45);
}

.tab.active .tab__beta {
  background: rgba(10, 18, 20, 0.35);
  color: var(--dt-cream);
  border-color: rgba(237, 228, 208, 0.35);
}

.tab__logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.4s var(--spring);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tab__logo--wide {
  width: auto;
  height: 22px;
  border-radius: 0;
  object-fit: contain;
  filter: brightness(0.7);
  transition: filter 0.3s, transform 0.4s var(--spring);
}

.tab:hover .tab__logo {
  transform: scale(1.12);
}

.tab.active .tab__logo--wide {
  filter: brightness(1.1);
}

.tab.active {
  color: var(--white);
}

.tabs__slider {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(33.333% - 4px);
  height: calc(100% - 12px);
  border-radius: calc(var(--radius-lg) - 6px);
  background: linear-gradient(135deg, var(--kq-navy-light), var(--kq-navy));
  border: 1px solid rgba(227, 25, 25, 0.3);
  box-shadow: 0 4px 20px var(--kq-red-glow);
  transition: transform 0.5s var(--spring), background 0.4s var(--smooth), box-shadow 0.4s var(--smooth), border-color 0.4s var(--smooth);
  z-index: 1;
}

.tabs[data-active="soiree"] .tabs__slider {
  transform: translateX(100%);
  background: linear-gradient(135deg, #1a0505, var(--sa2-black));
  border-color: rgba(165, 11, 11, 0.4);
  box-shadow: 0 4px 20px var(--sa2-glow);
}

.tabs[data-active="darties"] .tabs__slider {
  transform: translateX(200%);
  background: linear-gradient(135deg, var(--dt-mid), var(--dt-deep));
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 4px 20px var(--dt-glow);
}

/* ── Panels ── */
.panels {
  position: relative;
  min-height: 480px;
}

.panel {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2rem;
  opacity: 0;
  transform: translateX(40px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.45s var(--smooth), transform 0.55s var(--spring);
  overflow: hidden;
}

.panel--kyojin {
  background: radial-gradient(ellipse at 20% 80%, rgba(227, 25, 25, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 40%),
              linear-gradient(160deg, var(--kq-navy-light) 0%, var(--kq-navy) 100%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: var(--kq-text);
}

.panel--soiree {
  background: radial-gradient(ellipse at 50% 100%, var(--sa2-glow) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, rgba(165, 11, 11, 0.12) 0%, transparent 40%),
              linear-gradient(180deg, #120808 0%, var(--sa2-black) 100%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(242, 239, 233, 0.04);
  color: var(--sa2-cream);
}

.panel--darties {
  background: radial-gradient(ellipse at 30% 80%, rgba(156, 47, 42, 0.18) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.12) 0%, transparent 45%),
              linear-gradient(160deg, var(--dt-mid) 0%, var(--dt-deep) 100%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(201, 168, 76, 0.08);
  color: var(--dt-cream);
}

.panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.panel--kyojin::before {
  background: linear-gradient(90deg, var(--kq-red), var(--kq-orange), var(--kq-red));
}

.panel--soiree::before {
  background: linear-gradient(90deg, transparent, var(--sa2-crimson), transparent);
}

.panel--darties::before {
  background: linear-gradient(90deg, var(--dt-brick), var(--dt-brass), var(--dt-brick));
}

.panel.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  position: relative;
}

.panel.exit-left {
  opacity: 0;
  transform: translateX(-40px) scale(0.97);
}

.panel__content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: center;
}

.panel__visual {
  display: flex;
  justify-content: center;
}

/* App showcase */
.app-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.app-showcase--kyojin {
  width: 100%;
  max-width: 280px;
  min-height: 300px;
}

.app-showcase__character {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  max-height: 320px;
  object-fit: contain;
  object-position: center;
  opacity: 0.75;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
  z-index: 1;
  transform: translate(-50%, -50%);
  animation: characterFloat 4s ease-in-out infinite;
}

@keyframes characterFloat {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 8px)); }
}

.app-showcase__logo-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(227, 25, 25, 0.25);
  z-index: 2;
  animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.8; }
}

.app-showcase__logo {
  position: relative;
  z-index: 3;
  width: 150px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(227, 25, 25, 0.35));
  animation: logoFloat 3.5s ease-in-out infinite;
}

.app-showcase__logo--wide {
  width: min(280px, 90%);
  filter: drop-shadow(0 8px 32px var(--sa2-glow));
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.app-showcase--soiree {
  padding: 1.5rem;
}

.app-showcase--darties {
  position: relative;
  padding: 1.5rem;
}

.app-showcase__logo--darties {
  width: 170px;
  border-radius: 28px;
  filter: drop-shadow(0 8px 28px rgba(201, 168, 76, 0.35));
}

.app-showcase__glow--darties {
  background: radial-gradient(ellipse, var(--dt-glow) 0%, transparent 70%);
}

.beta-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(156, 47, 42, 0.9);
  color: var(--dt-cream);
  border: 1px solid rgba(201, 168, 76, 0.5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.app-showcase__glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(ellipse, var(--sa2-glow) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.panel__name--kyojin {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--kq-text);
}

.panel__name--kyojin::after {
  content: '?';
  color: var(--kq-red);
  margin-left: 0.15em;
}

.panel__name--soiree {
  display: flex;
  align-items: baseline;
  gap: 0.15em;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.panel__name-script {
  font-family: 'Great Vibes', cursive;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--sa2-crimson-light);
}

.panel__name-a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--sa2-cream);
  opacity: 0.9;
}

.panel__name-serif {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--sa2-crimson-light);
}

.panel__name--darties {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  color: var(--dt-brass);
  margin-bottom: 0.75rem;
}

.panel--kyojin .panel__desc {
  font-family: 'Exo 2', sans-serif;
  color: var(--kq-text-muted);
}

.panel--soiree .panel__desc {
  font-family: 'Montserrat', sans-serif;
  color: var(--sa2-text-muted);
}

.panel--darties .panel__desc {
  font-family: 'Libre Baskerville', serif;
  color: var(--dt-muted);
}

.panel__desc {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.panel__features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.panel--kyojin .panel__features li {
  font-family: 'Exo 2', sans-serif;
  color: var(--kq-text);
}

.panel--soiree .panel__features li {
  font-family: 'Montserrat', sans-serif;
  color: var(--sa2-cream);
  opacity: 0.9;
}

.panel--darties .panel__features li {
  font-family: 'Libre Baskerville', serif;
  color: var(--dt-cream);
  opacity: 0.92;
}

.panel__features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0;
  font-size: 0.92rem;
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.panel--kyojin .feature-dot {
  background: var(--kq-red);
  box-shadow: 0 0 8px var(--kq-red-glow);
}

.panel--soiree .feature-dot {
  background: var(--sa2-crimson);
  box-shadow: 0 0 8px var(--sa2-glow);
}

.panel--darties .feature-dot {
  background: var(--dt-brass);
  box-shadow: 0 0 8px var(--dt-glow);
}

.panel__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.panel__actions--stores {
  align-items: center;
  gap: 0.85rem;
}

.store-badge {
  display: inline-flex;
  transition: transform 0.3s var(--spring), filter 0.3s var(--smooth);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.store-badge:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.store-badge__svg {
  height: 44px;
  width: auto;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--spring);
  letter-spacing: 0.03em;
}

.btn--kyojin {
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
}

.btn--soiree {
  font-family: 'Montserrat', sans-serif;
}

.btn--darties {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.04em;
}

.btn--primary {
  color: var(--white);
}

.btn--kyojin.btn--primary {
  background: var(--kq-red);
  box-shadow: 0 4px 20px var(--kq-red-glow);
}

.btn--soiree.btn--primary {
  background: var(--sa2-crimson);
  box-shadow: 0 4px 20px var(--sa2-glow);
}

.btn--darties.btn--primary {
  background: var(--dt-brick);
  box-shadow: 0 4px 20px rgba(156, 47, 42, 0.4);
  color: var(--dt-cream);
}

.btn--disabled {
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}

.btn--ghost {
  background: transparent;
}

.btn--kyojin.btn--ghost {
  color: var(--kq-text);
  border-color: rgba(227, 25, 25, 0.5);
}

.btn--kyojin.btn--ghost:hover {
  background: rgba(227, 25, 25, 0.1);
  border-color: var(--kq-red);
}

.btn--soiree.btn--ghost {
  color: var(--sa2-cream);
  border-color: rgba(165, 11, 11, 0.5);
}

.btn--soiree.btn--ghost:hover {
  background: rgba(165, 11, 11, 0.15);
  border-color: var(--sa2-crimson-light);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn:active {
  transform: translateY(0);
}

/* Stats */
.panel__stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
  text-align: center;
}

.stat__value {
  display: block;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.panel--kyojin .stat__value {
  font-family: 'Rajdhani', sans-serif;
  color: var(--kq-red);
  text-shadow: 0 0 20px var(--kq-red-glow);
}

.panel--soiree .stat__value {
  font-family: 'Playfair Display', serif;
  color: var(--sa2-crimson-light);
}

.panel--darties .stat__value {
  font-family: 'Cinzel', serif;
  color: var(--dt-brass);
  text-shadow: 0 0 18px var(--dt-glow);
}

.stat__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.panel--kyojin .stat__label {
  font-family: 'Exo 2', sans-serif;
  color: var(--kq-text-muted);
}

.panel--soiree .stat__label {
  font-family: 'Montserrat', sans-serif;
  color: var(--sa2-text-muted);
}

.panel--darties .stat__label {
  font-family: 'Libre Baskerville', serif;
  color: var(--dt-muted);
}

/* ── Footer ── */
.footer {
  text-align: center;
  padding: 2rem 1.5rem 2.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

.footer__logo {
  width: 48px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .panel__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .panel__visual {
    order: -1;
  }

  .app-showcase--kyojin {
    max-width: 240px;
    min-height: 260px;
    margin: 0 auto;
  }

  .app-showcase__character {
    height: 95%;
    max-height: 280px;
  }

  .app-showcase__logo {
    width: 120px;
  }

  .panel__name--soiree {
    justify-content: center;
  }

  .panel__name-script {
    font-size: 2.2rem;
  }

  .panel__name-serif {
    font-size: 2.4rem;
  }

  .panel__features li {
    justify-content: center;
  }

  .panel__actions {
    justify-content: center;
  }

  .panel__stats {
    gap: 1.5rem;
  }

  .tab__label {
    font-size: 0.8rem;
  }

  .tab__beta {
    font-size: 0.55rem;
  }

  .store-badge__svg {
    height: 40px;
  }

  .panels {
    min-height: 720px;
  }
}

@media (max-width: 480px) {
  .social-bar__label {
    display: none;
  }

  .tab__logo {
    width: 26px;
    height: 26px;
  }

  .tab__logo--wide {
    height: 18px;
  }

  .tab {
    padding: 0.75rem 0.35rem;
    flex-direction: column;
    gap: 0.2rem;
  }

  .tab__label {
    font-size: 0.65rem;
  }

  .tab__beta {
    font-size: 0.5rem;
    padding: 0.1rem 0.3rem;
  }

  .store-badge__svg {
    height: 38px;
  }

  .panel__actions--stores {
    justify-content: center;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
