/* ============================================================
   NOONCHI DESIGNS — style.css
   ============================================================ */

/* ============================================================
   DESIGN TOKENS — dark mode (default)
   Palette: Korean material culture
   · Celadon  #7BAAA0  — Goryeo 청자 celadon glaze
   · Lacquer  #96382E  — Ottchil 옻칠 cinnabar
   · Gold     #C4984A  — Korean gilt 금박 bronze
   ============================================================ */
:root {
  /* Backgrounds — warm-tinted near-blacks, like ink on hanji */
  --bg-base:       #0C0A09;
  --bg-surface:    #141210;
  --bg-elevated:   #1C1916;
  --border:        rgba(255, 255, 255, 0.07);
  --border-hover:  rgba(255, 255, 255, 0.14);
  --text-primary:  #F2EDE8;
  --text-muted:    #847870;

  /* Three-accent palette */
  --celadon:       #7BAAA0;   /* secondary: icons, card arrows, eyebrows on hover */
  --lacquer:       #96382E;   /* primary: CTAs, focus rings */
  --lacquer-light: #B0453A;   /* primary hover */
  --gold:          #C4984A;   /* highlight: logo dot, bento em, divider */

  /* Gradient — reserved for structural lines & badge borders only */
  --gradient:      linear-gradient(135deg, #96382E 0%, #C4984A 100%);
  --glow:          rgba(150, 56, 46, 0.35);

  /* Semantic utility */
  --nav-scrolled-bg:     rgba(12, 10, 9, 0.90);
  --nav-scrolled-border: rgba(255, 255, 255, 0.07);
  --surface-tint:        rgba(255, 255, 255, 0.04);
  --card-glow:           rgba(123, 170, 160, 0.18);
  --card-border-accent:  rgba(123, 170, 160, 0.42);
  --bento-corner-glow:   rgba(150, 56, 46, 0.14);
  --bento-icon-bg:       rgba(123, 170, 160, 0.13);

  --section-py:    120px;
  --container-max: 1200px;
  --font-base:     'Plus Jakarta Sans', sans-serif;
  --font-display:  'Gloock', Georgia, serif;
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-h:         72px;
}

/* ============================================================
   LIGHT MODE — hanji paper warmth
   ============================================================ */
[data-theme="light"] {
  --bg-base:       #F5F0E8;
  --bg-surface:    #EDE7DC;
  --bg-elevated:   #E4DDD0;
  --border:        rgba(0, 0, 0, 0.08);
  --border-hover:  rgba(0, 0, 0, 0.18);
  --text-primary:  #1A1410;
  --text-muted:    #7A7068;

  --nav-scrolled-bg:     rgba(245, 240, 232, 0.94);
  --nav-scrolled-border: rgba(0, 0, 0, 0.08);
  --surface-tint:        rgba(0, 0, 0, 0.04);
  --card-glow:           rgba(123, 170, 160, 0.14);
  --card-border-accent:  rgba(123, 170, 160, 0.40);
  --bento-corner-glow:   rgba(150, 56, 46, 0.08);
  --bento-icon-bg:       rgba(123, 170, 160, 0.12);
}

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

html {
  scroll-padding-top: var(--nav-h);
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-base);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.4s ease, color 0.3s ease;
}

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

img, svg {
  display: block;
}

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

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* ============================================================
   ACCENT TEXT — solid color, no animation
   ============================================================ */
.gradient-text {
  color: var(--celadon);
}

/* Logo dot specifically gets gold */
.logo-dot {
  color: var(--gold);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 100px;
  font-family: var(--font-base);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  outline: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--lacquer);
  outline-offset: 3px;
}

.btn:active {
  transform: scale(0.97) !important;
}

/* Primary: solid lacquer — confident, no gradient */
.btn-primary {
  background: var(--lacquer);
  color: #fff;
  padding: 14px 28px;
  font-size: 15px;
  box-shadow: 0 0 0 0 var(--glow);
}

.btn-primary:hover {
  background: var(--lacquer-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px var(--glow);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 13px;
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  padding: 14px 28px;
  font-size: 15px;
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--border-hover);
  background: var(--surface-tint);
  transform: translateY(-2px);
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

@supports (animation-timeline: scroll()) {
  @keyframes nav-blur-in {
    from {
      background: transparent;
      backdrop-filter: blur(0px);
      -webkit-backdrop-filter: blur(0px);
      border-bottom-color: transparent;
    }
    to {
      background: var(--nav-scrolled-bg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom-color: var(--nav-scrolled-border);
    }
  }

  #navbar {
    animation: nav-blur-in linear both;
    animation-timeline: scroll(root block);
    animation-range: 0px 80px;
  }
}

#navbar.scrolled {
  background: var(--nav-scrolled-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--nav-scrolled-border);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

/* ============================================================
   THEME TOGGLE
   ============================================================ */
.theme-toggle {
  position: relative;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
  color: var(--text-muted);
}

.theme-toggle:hover {
  background: var(--border);
  color: var(--text-primary);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--lacquer);
  outline-offset: 2px;
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  position: absolute;
  transition: opacity 0.3s ease, transform 0.35s var(--ease-spring);
  display: flex;
}

.theme-toggle .icon-sun  { opacity: 1; transform: rotate(0deg) scale(1); }
.theme-toggle .icon-moon { opacity: 0; transform: rotate(-45deg) scale(0.6); }

[data-theme="light"] .theme-toggle .icon-sun  { opacity: 0; transform: rotate(45deg) scale(0.6); }
[data-theme="light"] .theme-toggle .icon-moon { opacity: 1; transform: rotate(0deg) scale(1); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--nav-h); /* clears the fixed nav, centering is relative to space below */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 32px 24px 80px;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg-surface), var(--bg-surface)) padding-box,
    var(--gradient) border-box;
}

.badge-lottie {
  display: flex;
  align-items: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(54px, 8.5vw, 104px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--text-primary);
}

/* Celadon accent words — editorial, deliberate */
.hero-headline .gradient-text {
  color: var(--celadon);
  font-style: italic;
}

.headline-break {
  display: block;
  height: 0.08em;
}

.word {
  display: inline-block;
}

.hero-sub {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.35; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.8;  transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}

.marquee-viewport {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.marquee-viewport:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  min-width: 100%;
  animation: marquee-scroll 30s linear infinite;
  padding-right: 48px;
}

.marquee-track span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  flex-shrink: 0;
}

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

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ============================================================
   COLLECTIONS / CARDS
   ============================================================ */
#collections {
  padding: var(--section-py) 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease-spring),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-accent);
  box-shadow: 0 12px 40px var(--card-glow);
}

.card-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--thumb-a), var(--thumb-b));
  position: relative;
  overflow: hidden;
}

.card-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.09) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  background-position: 200% 0;
  transition: background-position 0.6s ease;
}

.card:hover .card-thumb::before {
  background-position: -50% 0;
}

.card-thumb-inner {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.10) 0%, transparent 60%);
}

.card-body {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

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

.card-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s var(--ease-spring);
}

.card:hover .card-arrow {
  color: var(--celadon);
  transform: translateX(4px);
}

/* ============================================================
   GRADIENT DIVIDER — lacquer to gold structural line
   ============================================================ */
.gradient-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(150, 56, 46, 0.50) 25%,
    rgba(196, 152, 74, 0.60) 65%,
    transparent 100%
  );
  margin: 0;
}

/* ============================================================
   BENTO / ABOUT
   ============================================================ */
#about {
  padding: var(--section-py) 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 0% 0%, var(--bento-corner-glow), transparent 60%);
  pointer-events: none;
}

.bento-card:hover {
  border-color: var(--border-hover);
}

.bento-main {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.bento-small {
  grid-column: 2;
}

.bento-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.18;
}

/* Gold italic — no gradient, just gold */
.bento-title em {
  font-style: italic;
  color: var(--gold);
}

.bento-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
}

.bento-icon-wrap {
  margin-bottom: 20px;
}

.bento-download-icon,
.bento-check-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bento-icon-bg);
  border-radius: 12px;
}

.bento-card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.bento-card-sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   MARKETPLACES
   ============================================================ */
#marketplaces {
  padding: var(--section-py) 0;
}

.marketplace-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.marketplace-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  min-width: 240px;
  transition: transform 0.25s var(--ease-spring), border-color 0.25s ease, box-shadow 0.25s ease;
}

.marketplace-active {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg-surface), var(--bg-surface)) padding-box,
    var(--gradient) border-box;
}

.marketplace-active:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px var(--glow);
}

.marketplace-soon {
  opacity: 0.45;
  cursor: not-allowed;
}

.marketplace-logo {
  flex-shrink: 0;
}

.marketplace-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  flex: 1;
}

/* Lacquer for active action link */
.marketplace-action {
  font-size: 13px;
  font-weight: 600;
  color: var(--lacquer);
  flex-shrink: 0;
}

[data-theme="light"] .marketplace-action {
  color: var(--lacquer-light);
}

.coming-soon {
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .nav-logo {
  font-size: 19px;
  margin-bottom: 14px;
  display: inline-block;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-social {
  display: flex;
  flex-direction: column;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  transition: color 0.2s ease;
}

.social-link:hover {
  color: var(--text-primary);
}

.footer-bar {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-made {
  font-style: italic;
}

/* ============================================================
   LOTTIE FALLBACK
   ============================================================ */
.lottie-fallback {
  display: block;
}

.lottie-fallback.hidden {
  display: none;
}

/* ============================================================
   RESPONSIVE — TABLET ≤900px
   ============================================================ */
@media (max-width: 900px) {
  :root { --section-py: 80px; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-main  { grid-column: 1; grid-row: auto; }
  .bento-small { grid-column: 1; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — MOBILE ≤640px
   ============================================================ */
@media (max-width: 640px) {
  :root {
    --section-py: 56px;
    --nav-h: 60px;
  }

  /* --- Nav: clean to logo + toggle, CTA lives in sticky bar --- */
  .nav-logo { font-size: 14px; letter-spacing: -0.01em; }
  #navbar .btn-primary { display: none; }

  /* --- Hero --- */
  .hero-content {
    padding: 16px 22px 88px;
    gap: 20px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
    gap: 6px;
  }

  .hero-headline {
    font-size: clamp(46px, 13.5vw, 68px);
    letter-spacing: -0.03em;
    line-height: 0.97;
  }

  .headline-break { display: none; }

  .hero-sub {
    font-size: 16px;
    line-height: 1.62;
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
    gap: 10px;
  }

  .hero-ctas .btn {
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
  }

  /* --- Section headers --- */
  .section-header { margin-bottom: 32px; }

  .section-title { font-size: clamp(28px, 7.5vw, 38px); }

  /* --- Cards --- */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .card-thumb { height: 170px; }

  /* Touch feedback on cards (hover doesn't fire on touch) */
  .card:active {
    transform: scale(0.985);
    border-color: var(--card-border-accent);
  }

  /* --- Bento --- */
  .bento-grid { gap: 12px; }

  .bento-card { padding: 28px 22px; }

  .bento-main { gap: 16px; }

  .bento-title { font-size: clamp(26px, 7vw, 34px); }

  /* --- Marketplaces --- */
  .marketplace-row { gap: 10px; }

  .marketplace-badge {
    min-width: unset;
    width: 100%;
    padding: 16px 18px;
    gap: 12px;
    border-radius: 12px;
  }

  .marketplace-badge:active { transform: scale(0.98); }

  /* --- Footer --- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Larger tap targets on footer links */
  .footer-links a { padding: 10px 0; }
  .social-link { padding: 10px 0; }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  /* Body bottom padding clears the sticky CTA bar */
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }
}

/* ============================================================
   MOBILE STICKY CTA BAR
   Hidden on desktop, slides in on mobile after hero scrolls away
   ============================================================ */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 640px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    background: var(--nav-scrolled-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--border);
    transform: translateY(110%);
    transition: transform 0.35s var(--ease-out), background 0.3s ease;
  }

  .mobile-cta-bar.visible {
    transform: translateY(0);
  }

  .mobile-cta-bar .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 15px;
    border-radius: 12px;
    letter-spacing: 0.01em;
  }
}

/* Theme toggle: slightly larger tap target on mobile */
@media (max-width: 640px) {
  .theme-toggle {
    width: 40px;
    height: 40px;
  }
}

/* ============================================================
   UTILITY ANIMATIONS
   ============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
