/* ============================================================
   КОРОЛЕВСКИЙ КРАБ — Landing Page
   ============================================================ */

/* === 1. ROOT VARIABLES === */
:root {
  --color-bg:            #0A0A0A;
  --color-surface:       #141414;
  --color-surface-2:     #1C1C1C;
  --color-border:        #2A2A2A;
  --color-border-gold:   rgba(245, 197, 24, 0.2);
  --color-gold:          #F5C518;
  --color-gold-light:    #FFD966;
  --color-gold-dim:      #B8960C;
  --color-gold-subtle:   rgba(245, 197, 24, 0.08);
  --color-crab:          #D77E70;
  --color-profit:        #4ADE80;
  --color-loss:          #F87171;
  --color-text-primary:  #F5F5F0;
  --color-text-secondary:#9CA3AF;
  --color-text-muted:    #6B7280;

  --font-display: 'Montserrat', sans-serif;
  --font-number:  'Bebas Neue', sans-serif;
  --font-body:    'Karla', sans-serif;

  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === 2. RESET === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  background-image: url("data:image/svg+xml,%3Csvg width='4' height='4' viewBox='0 0 4 4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3h1v1H1V3zm2-2h1v1H3V1z' fill='%23ffffff' fill-opacity='0.015'/%3E%3C/svg%3E");
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* === 3. LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container { padding: 0 24px; }
}

.section {
  padding: 64px 0;
  position: relative;
}

@media (min-width: 768px) {
  .section { padding: 96px 0; }
}

/* === 4. SECTION LABEL === */
.section-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 40px;
  display: block;
}

/* === 5. SECTION DIVIDER === */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #2A2A2A 20%, #2A2A2A 80%, transparent);
  border: none;
  margin: 0;
}

/* === 6. LOGO === */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.logo__crown {
  font-family: var(--font-number);
  font-size: 22px;
  color: var(--color-gold);
  line-height: 1;
  display: block;
}

.logo__name {
  display: flex;
  gap: 4px;
}

.logo__royal {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--color-text-primary);
  letter-spacing: 0.03em;
}

.logo__crab {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--color-crab);
  letter-spacing: 0.03em;
}

/* === 7. BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 32px;
  border-radius: var(--radius-md);
  background: var(--color-gold);
  color: #0A0A0A;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  box-shadow: 0 0 8px rgba(245, 197, 24, 0.4);
  transition: background 150ms ease, box-shadow 150ms ease, transform 150ms ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--color-gold-light);
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.6);
  transform: translateY(-1px);
}

.btn-primary:active {
  background: var(--color-gold-dim);
  transform: scale(0.98);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

.btn--sm {
  height: 40px;
  padding: 0 18px;
  font-size: 14px;
  border-radius: 10px;
}

.btn--glow {
  animation: glow-pulse 2.5s ease-in-out infinite;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  transition: border-color 150ms ease, color 150ms ease;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: rgba(245, 197, 24, 0.3);
  color: var(--color-gold);
}

.btn-secondary:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

/* Navbar label variants */
.btn-label--full { display: none; }
.btn-label--short { display: inline; }

@media (min-width: 600px) {
  .btn-label--full  { display: inline; }
  .btn-label--short { display: none; }
}

/* === 8. SUITS === */
.suits-row {
  display: flex;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 14px;
  user-select: none;
  margin-bottom: 14px;
}

.suit--black { color: #3A3A3A; }
.suit--red   { color: #2A1515; }

.suits-row--animated .suit {
  animation: suit-pulse 4s ease-in-out infinite;
  opacity: 0.3;
}
.suits-row--animated .suit:nth-child(2) { animation-delay: 0.8s; }
.suits-row--animated .suit:nth-child(3) { animation-delay: 1.6s; }
.suits-row--animated .suit:nth-child(4) { animation-delay: 2.4s; }

/* === 9. NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 52px;
  background: var(--color-bg);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}

.navbar.scrolled {
  border-bottom-color: var(--color-border);
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

@media (min-width: 768px) {
  .navbar { height: 60px; }
}

/* === 10. HERO === */
.hero {
  overflow: hidden;
  padding-bottom: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(245, 197, 24, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
}

.hero__content {
  flex: 1;
  min-width: 0;
}

.hero__h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.05;
  color: var(--color-text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

@media (min-width: 1024px) {
  .hero__h1 { font-size: 62px; }
}

.accent {
  color: var(--color-gold);
}

.hero__sub {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
}

@media (min-width: 768px) {
  .hero__sub { font-size: 18px; }
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

@media (min-width: 480px) {
  .hero__actions {
    flex-direction: row;
    align-items: center;
  }
}

.hero__phone {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  width: 80%;
  max-width: 300px;
}

@media (min-width: 1024px) {
  .hero__phone {
    width: auto;
  }
}

.hero__fade {
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, var(--color-bg) 100%);
  margin-top: -20px;
  position: relative;
  z-index: 1;
}

/* === 11. PHONE FRAME === */
.phone-wrap {
  position: relative;
  display: inline-block;
}

.phone-frame {
  width: 260px;
  aspect-ratio: 9 / 19;
  border-radius: 38px;
  border: 2px solid #222;
  background: #0D0D0D;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 0 1px #1A1A1A,
    0 32px 64px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(245, 197, 24, 0.07);
}

@media (min-width: 768px) {
  .phone-frame { width: 290px; }
}

.phone-glow {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 48px;
  background: radial-gradient(ellipse, rgba(245, 197, 24, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* === 12. APP MOCKUP — SHARED === */
.mockup {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #0A0A0A;
  font-family: var(--font-body);
  overflow: hidden;
}

.mockup__statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px 4px;
  font-size: 9px;
  font-weight: 600;
  color: #666;
  flex-shrink: 0;
}

.mockup__signals {
  font-size: 7px;
  letter-spacing: 1px;
  color: #555;
}

/* Top bar */
.mockup__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0 10px;
  border-bottom: 1px solid #1C1C1C;
  flex-shrink: 0;
  gap: 6px;
}

.mockup__nav-arrow {
  font-size: 20px;
  color: var(--color-gold);
  line-height: 1;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1C1C1C;
  border-radius: 8px;
  flex-shrink: 0;
}

.mockup__topbar-title {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mockup__screen-name {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: 0.01em;
}

/* Live badge */
.mockup__live-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 20px;
  padding: 2px 7px;
  flex-shrink: 0;
}

.mockup__live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22C55E;
  animation: live-pulse 2s ease-in-out infinite;
}

.mockup__live-text {
  font-size: 8px;
  font-weight: 600;
  color: #22C55E;
  letter-spacing: 0.05em;
}

/* Bank card — gold border, matches real app */
.mockup__bank-card {
  margin: 8px 8px 6px;
  background: #141414;
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.mockup__bank-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.mockup__bank-num {
  font-family: var(--font-number);
  font-size: 38px;
  color: var(--color-gold);
  line-height: 1;
  text-shadow: 0 0 16px rgba(245, 197, 24, 0.4);
}

.mockup__bank-sub {
  font-size: 8px;
  color: var(--color-text-muted);
  margin-top: 3px;
}

/* Section sub-label */
.mockup__section-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 12px;
  font-size: 8px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.mockup__add-btn {
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 400;
}

/* Players list */
.mockup__players {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 2px 8px;
  overflow: hidden;
}

/* Player row — matches h-14 card from real app */
.mockup__player-row {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 8px;
  border-radius: 10px;
  border: 1px solid #2A2A2A;
  background: #141414;
}

.mockup__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--av-color, #444);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.mockup__avatar--sm {
  width: 24px;
  height: 24px;
  font-size: 10px;
}

.mockup__player-name {
  flex: 1;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-primary);
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Rebuy counter — font-number, gold if > 0 */
.mockup__rebuy-count {
  font-family: var(--font-number);
  font-size: 13px;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.mockup__rebuy-count--active {
  color: var(--color-gold);
}

/* Rebuy icon button */
.mockup__rebuy-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid #2A2A2A;
  background: #1C1C1C;
  color: var(--color-text-secondary);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: -0.5px;
}

/* Finish button */
.mockup__finish {
  margin: 6px 8px 10px;
  height: 38px;
  border-radius: 10px;
  background: var(--color-gold);
  color: #0A0A0A;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(245, 197, 24, 0.35);
  flex-shrink: 0;
}

/* === 13. APP MOCKUP — LEADERBOARD === */
.mockup__topbar--lb {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 48px;
}

.mockup__season-tag {
  font-size: 9px;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.mockup__lb {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 8px 4px;
  overflow: hidden;
}

/* Leaderboard row — matches h-14 + gap-3 from real app */
.mockup__lb-row {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 8px;
  border-radius: 10px;
  border: 1px solid #2A2A2A;
  background: #141414;
}

.mockup__lb-row--gold {
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.08), rgba(245, 197, 24, 0.02));
  border-color: rgba(245, 197, 24, 0.2);
  animation: row-glow 2s ease-in-out infinite;
}

.mockup__lb-rank {
  font-family: var(--font-number);
  font-size: 14px;
  color: var(--color-text-muted);
  width: 12px;
  text-align: center;
  flex-shrink: 0;
  line-height: 1;
}

.mockup__lb-rank--gold {
  color: var(--color-gold);
}

.mockup__lb-name {
  flex: 1;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-primary);
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mockup__lb-name--gold {
  color: var(--color-gold);
  font-weight: 600;
}

/* Right column: points + balance stacked */
.mockup__lb-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 1px;
}

.mockup__lb-pts {
  font-family: var(--font-number);
  font-size: 16px;
  color: var(--color-text-primary);
  line-height: 1;
}

.mockup__lb-pts--gold {
  color: var(--color-gold);
  text-shadow: 0 0 8px rgba(245, 197, 24, 0.5);
}

.mockup__lb-bal {
  font-family: var(--font-number);
  font-size: 10px;
  line-height: 1;
}

.mockup__lb-bal--profit { color: var(--color-profit); }
.mockup__lb-bal--loss   { color: var(--color-loss); }

/* Bottom tab bar — matches real app grid grid-cols-4 */
.mockup__tabbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 48px;
  border-top: 1px solid #1C1C1C;
  background: #0D0D0D;
  flex-shrink: 0;
}

.mockup__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.mockup__tab-icon {
  font-size: 13px;
  color: #3A3A3A;
  line-height: 1;
}

.mockup__tab-label {
  font-size: 7px;
  font-weight: 500;
  color: #3A3A3A;
  letter-spacing: 0.02em;
}

.mockup__tab--active .mockup__tab-icon {
  color: var(--color-gold);
  filter: drop-shadow(0 0 4px rgba(245, 197, 24, 0.5));
}

.mockup__tab--active .mockup__tab-label {
  color: var(--color-gold);
}

/* === 14. GRIDS === */
.grid {
  display: grid;
  gap: 16px;
}

.grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* === 15. PAIN CARDS === */
.pain-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.pain-card__x {
  display: block;
  font-size: 22px;
  color: var(--color-loss);
  margin-bottom: 12px;
  line-height: 1;
}

.pain-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.pain-card__text {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* === 16. FEATURE CARDS === */
.feat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 200ms ease, background 200ms ease;
}

.feat-card:hover {
  border-color: var(--color-border-gold);
  background: #1A1A1A;
}

.feat-card__num {
  display: block;
  font-family: var(--font-number);
  font-size: 32px;
  color: var(--color-gold);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 10px;
}

.feat-card__icon {
  display: block;
  font-size: 22px;
  color: var(--color-gold);
  margin-bottom: 12px;
  line-height: 1;
}

.feat-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.feat-card__text {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* === 17. STEPS === */
/* Mobile: vertical line on the left of the whole block */
.steps {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
  border-left: 1px dashed var(--color-border);
}

.step {
  padding-bottom: 0;
}

.step__connector {
  height: 28px;
  /* visual gap; the border is on .steps itself */
}

.step__num {
  display: block;
  font-family: var(--font-number);
  font-size: 48px;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.step__text {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* Desktop: horizontal */
@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    align-items: flex-start;
    padding-left: 0;
    border-left: none;
    gap: 0;
  }

  .step {
    flex: 1;
    padding-right: 32px;
  }

  .step:last-child {
    padding-right: 0;
  }

  .step__connector {
    height: 1px;
    width: 48px;
    flex-shrink: 0;
    border-top: 1px dashed var(--color-border);
    margin-top: 28px; /* align with center of step number */
    align-self: flex-start;
  }
}

/* === 18. SPLIT (MOCKUP + TEXT) === */
.split {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .split {
    flex-direction: row;
    gap: 80px;
    align-items: center;
  }
}

.split__text {
  flex: 1;
  min-width: 0;
}

.split__h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  margin-top: 12px;
}

@media (min-width: 768px) {
  .split__h2 { font-size: 40px; }
}

.split__body {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .split__body { font-size: 18px; }
}

.split__phone {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

/* === 19. FINAL CTA === */
.section--cta {
  text-align: center;
  border-top: 1px solid var(--color-border);
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(245, 197, 24, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.cta__inner .suits-row {
  justify-content: center;
  margin-bottom: 0;
  font-size: 16px;
  letter-spacing: 0.5em;
}

.cta__h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.1;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .cta__h2 { font-size: 48px; }
}

.cta__sub {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.cta__note {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: -4px;
}

/* === 20. FOOTER === */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 40px 0 28px;
}

.footer__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .footer__main {
    flex-direction: row;
    justify-content: space-between;
    text-align: right;
  }
}

.footer__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__copy {
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer__tagline {
  font-size: 13px;
  color: #4B5563;
}

.footer__disclaimer {
  border-top: 1px solid #1C1C1C;
  margin-top: 24px;
  padding-top: 20px;
  text-align: center;
}

.footer__disclaimer p {
  font-size: 11px;
  color: #4B5563;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.footer__suits {
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.5em;
  color: #232323;
}

/* === 21. ANIMATIONS === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 420ms ease-out, transform 420ms ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll[data-delay="1"] { transition-delay:  80ms; }
.animate-on-scroll[data-delay="2"] { transition-delay: 160ms; }
.animate-on-scroll[data-delay="3"] { transition-delay: 240ms; }

@keyframes suit-pulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.75; }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 8px  rgba(245, 197, 24, 0.45); }
  50%       { box-shadow: 0 0 28px rgba(245, 197, 24, 0.75); }
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

@keyframes row-glow {
  0%, 100% { box-shadow: 0 0 8px  rgba(245, 197, 24, 0.15); }
  50%       { box-shadow: 0 0 20px rgba(245, 197, 24, 0.3); }
}

/* === 22. REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .suits-row--animated .suit,
  .btn--glow {
    animation: none;
    opacity: 1;
  }
}
