/* ─── Fonts ────────────────────────────────────────────────── */
@font-face {
  font-family: 'DM Serif Display';
  src: url('fonts/DMSerifDisplay_400Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Serif Display';
  src: url('fonts/DMSerifDisplay_400Regular_Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Topa! Design Tokens — Speakeasy Vibes (dark) + Tiki Menu (light) ── */
  --color-bg:          #171414;   /* palette.midnight */
  --color-bg-tiki:     #F0ECE8;   /* palette.midnight */
  --color-bg-section:  #F6F3EF;   /* palette.creamSand */
  --color-bg-card:     #2D2827;   /* palette.mahoganyRoom */
  --color-surface:     #4B413E;   /* palette.barrelWood */
  --color-border:      #4A413F;   /* palette.burntCocoa */
  --color-amber:       #dc5e19;   /* palette.burntOrange — primary CTA */
  --color-amber-light: #f6a623;   /* palette.goldenSyrup */
  --color-amber-glow:  rgba(220,94,25,0.15);
  --color-bg-tint:     rgba(0,0,0,0.75);
  --color-highlight:   #ffd166;   /* palette.yuzuPeel */
  --color-text:        #F6F3EF;   /* palette.creamSand */
  --color-text-muted:  #9A8F8A;   /* palette.cigarAsh */
  --color-text-dark:   #3a3330;   /* palette.warmInk */
  --color-text-mid:    #6a5e59;   /* palette.cigarAsh */
  --color-green:       #9fbf7a;   /* palette.sugarcane */
  --color-amber-badge: #f6a623;   /* palette.goldenSyrup */
  --color-red:         #cb371c;   /* palette.systemError */
  --color-aqua:        #3fd0c9;   /* palette.brightAqua */
  --font-serif:        'DM Serif Display', Georgia, serif;
  --font-sans:         'Inter', system-ui, sans-serif;
  --max-width:         1100px;
  --radius:            16px;
  --radius-sm:         10px;
  --section-pad:       clamp(80px, 10vw, 140px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-color: var(--color-bg-tiki);
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ─── Typography ───────────────────────────────────────────── */
.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  display: block;
}

.headline-xl {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}

.headline-lg {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.headline-md {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.body-lg {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: var(--color-text-muted);
}

.body-md {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background: var(--color-amber);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-amber-light);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--color-border);
  color: #fff;
}
.btn-secondary:hover {
  background: var(--color-bg-card);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-amber);
  color: var(--color-amber);
}

/* ─── Store Badges ─────────────────────────────────────────── */
.store-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.store-badge img{
  width:150px;
  height:auto;
}
.store-badge:hover {
  background: rgba(74,65,63,0.6);
  border-color: var(--color-amber);
  transform: translateY(-1px);
}
.store-badge svg { flex-shrink: 0; }
.store-badge-sub { font-size: 10px; font-weight: 400; opacity: 0.65; display: block; }
.store-badge-text { display: flex; flex-direction: column; line-height: 1.2; }

/* ─── Nav ──────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 20px;
  right: 20px;
  z-index: 100;
  padding: 40px clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.4s ease, left 0.4s ease, right 0.4s ease, padding 0.4s ease;
  border-radius: 24px;
  background: var(--color-bg);
  margin-top: 20px;
}
nav.scrolled {
  left: 25%;
  right: 25%;
  padding: 26px;
}
nav.hidden {
  transform: translateY(-130%);
}

.nav-logo svg {
  height: 38px;
  width: auto;
  display: block;
  fill: var(--color-text);
  transition: fill 0.2s ease;
}
.nav-logo:hover svg { fill: var(--color-amber); }

.footer-logo svg {
  height: 22px;
  width: auto;
  display: block;
  fill: var(--color-text-muted);
  transition: fill 0.2s ease;
}
.footer-logo:hover svg { fill: var(--color-text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-bg-section);
  transition: color 0.2s;
  padding:12px 22px;
  border-radius: 999px;
  transition: all 0.5s;
}
.nav-links a:hover { color: var(--color-text);background-color:var(--color-bg-card); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* ─── Hero ─────────────────────────────────────────────────── */
#hero {
  min-height: 94svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  margin:20px;
  padding:20px;
  border-radius:24px;
  background-color: var(--color-bg);
  background-image: url('images/hero/hero-bg.jpg');
  background-size: 70%;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content { max-width: 720px; }
.hero-content .label{ margin-bottom:0; } 

.hero-headline { margin-bottom: 24px; }

.hero-headline em {
  font-style: normal;
  color: var(--color-amber);
}

.hero-sub {
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badges { margin-top: 20px; }

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 10px 20px;

  border-radius: 999px;
  background-color: var(--color-bg-tint);
  backdrop-filter: blur(20px);
}
.stars { color: var(--color-amber); font-size: 15px; letter-spacing: 1px; }
.rating-text { font-size: 13px; color: var(--color-text-muted); }
.rating-text strong { color: var(--color-text); }

/* Hero mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}


.badge-green { background: rgba(76,175,130,0.18); color: var(--color-green); }
.badge-amber { background: rgba(232,160,48,0.18); color: var(--color-amber-badge); }

.phone-cocktail-card {
  background: var(--color-surface);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cocktail-emoji { font-size: 24px; }
.cocktail-info { flex: 1; }
.cocktail-name { font-size: 12px; font-weight: 600; color: var(--color-text); margin-bottom: 2px; }
.cocktail-meta { font-size: 10px; color: var(--color-text-muted); }



@media (max-width: 900px) {
  .store-badges { justify-content: center; }
  .hero-rating { justify-content: center; }
}

/* ─── Hero Phones ──────────────────────────────────────────── */
.hero-content {
  position: relative;
  z-index: 3;
}

.hero-phones {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}

.hero-phone {
  position: absolute;
  bottom: 0;
  width: clamp(155px, 15vw, 235px);
  pointer-events: all;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), z-index 0s 0.4s;
  cursor: pointer;
}

/* Left pair */
.hero-phone--l1 {
  left: 1%;
  transform: rotate(-14deg) translateY(180px);
}
.hero-phone--l2 {
  left: 14%;
  transform: rotate(-6deg) translateY(110px);
  z-index: 2;
}

/* Right pair */
.hero-phone--r1 {
  right: 14%;
  transform: rotate(6deg) translateY(110px);
  z-index: 2;
}
.hero-phone--r2 {
  right: 1%;
  transform: rotate(14deg) translateY(180px);
}

/* Hover — lift up, ease off rotation, jump to front */
.hero-phone:hover {
  z-index: 10;
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), z-index 0s 0s;
}
.hero-phone--l1:hover { transform: rotate(-5deg)  translateY(40px)  scale(1.15); }
.hero-phone--l2:hover { transform: rotate(-2deg)  translateY(20px)  scale(1.15); }
.hero-phone--r1:hover { transform: rotate(2deg)   translateY(20px)  scale(1.15); }
.hero-phone--r2:hover { transform: rotate(5deg)   translateY(40px)  scale(1.15); }

@media (max-width: 1024px) {
  .hero-phone--l1,
  .hero-phone--r2 { display: none; }
  .hero-phone--l2 { left: 2%; }
  .hero-phone--r1 { right: 2%; }
}
@media (max-width: 640px) {
  .hero-phones { display: none; }
}

/* Phone frame */
.hphone-frame {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.5));
}
.hphone-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ─── Social Proof ─────────────────────────────────────────── */
#social-proof {
  padding: var(--section-pad) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  border-color: rgba(220,94,25,0.3);
  transform: translateY(-2px);
}

.testimonial-stars { color: var(--color-amber); font-size: 13px; margin-bottom: 14px; }
.testimonial-quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ─── How It Works ─────────────────────────────────────────── */
#how-it-works {
  padding: var(--section-pad) 0;
  color: var(--color-text-dark);
}

#how-it-works .label { color: var(--color-text-muted); }
#how-it-works .headline-lg { color: var(--color-text-dark); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.6% + 28px);
  right: calc(16.6% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--color-amber) 0%, var(--color-amber-light) 50%, var(--color-amber) 100%);
  opacity: 0.3;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-amber);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-serif);
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.step-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-mid);
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
}

/* ─── Features ─────────────────────────────────────────────── */
#features {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}

.features-header {
  max-width: 600px;
  margin-bottom: 64px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-amber), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: rgba(220,94,25,0.25);
  transform: translateY(-3px);
}
.feature-card:hover::before { opacity: 1; }

.feature-card.featured {
  background: var(--color-amber-glow);
  border-color: rgba(220,94,25,0.3);
  grid-column: span 2;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-amber-glow);
  border: 1px solid rgba(220,94,25,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.feature-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.feature-benefit {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.feature-micro {
  font-size: 12px;
  color: var(--color-amber);
  margin-top: 12px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card.featured { grid-column: span 2; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.featured { grid-column: span 1; }
}

/* ─── Differentiation ──────────────────────────────────────── */
#differentiation {
  padding: var(--section-pad) 0;
  color: var(--color-text-dark);
}

#differentiation .label { color: var(--color-text-muted); }
#differentiation .headline-lg { color: var(--color-text-dark); margin-bottom: 16px; }
#differentiation .body-lg { color: var(--color-text-mid); max-width: 560px; margin-bottom: 60px; }

.diff-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top:32px;
}

/* ── Bullets ── */
/* min-height = fully expanded state so row height never changes when accordions open */
.diff-points { display: flex; flex-direction: column; gap: 4px; min-height: 480px; }

.diff-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
}

.diff-point.active::before { transform: translateY(-50%) scaleY(1); }
.diff-point.active { background: rgba(220,94,25,0.07); }
.diff-point:hover:not(.active) { background: rgba(0,0,0,0.03); }

.diff-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-text-mid);
  margin-top: 6px;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}


.diff-point-title {
  font-weight: 600;
  font-size: 18px;
  color: var(--color-text-mid);
  margin-bottom: 0;
  transition: color 0.3s ease;
}
.diff-point.active .diff-point-title { color: var(--color-text-dark); }

.diff-point-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-mid);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}
.diff-point.active .diff-point-body {
  max-height: 120px;
  opacity: 1;
  margin-top: 6px;
}

/* ── Screenshot viewer ── */
.diff-screens {
  position: sticky;
  top: 120px;
  width: 100%;
  max-width: 300px;
  height: 560px;
  margin: 0 auto;
}

.diff-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  will-change: transform, opacity;
}
.diff-screen.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
/* Fade out in place (no slide) before the next screen enters */
.diff-screen.exit {
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.diff-screen-inner {
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.diff-screen-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}

/* Video sits behind the phone frame overlay, inset to match the screen area */
.diff-video {
  position: absolute;
  inset: 1% 5% 4% 10%;
  z-index: 0;
  object-fit: cover;
  object-position: top;
  border-radius: 24px;
  width:80%;
  border-radius:50px;
}

.diff-frame {
  position: relative;
  z-index: 1;
  pointer-events: none;
  transform: scale(0.96);
  transform-origin: center top;
}


.dsm-bar {
  height: 14px;
  border-radius: 6px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .diff-grid { grid-template-columns: 1fr;  }
  .diff-screens { max-width: 260px; aspect-ratio: 9/16; }
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table tr:hover td { background: #F9F7F6; }

.check { color: var(--color-green); font-size: 17px; font-weight: 700; }
.cross { color: #bfb6b1; font-size: 17px; }
.sometimes { font-size: 12px; color: var(--color-text-mid); }

.topa-col { color: var(--color-amber); font-weight: 700; }

@media (max-width: 900px) {
  .diff-grid { grid-template-columns: 1fr; }
}

/* ─── Pricing ──────────────────────────────────────────────── */
#pricing {
  padding: var(--section-pad) 0;
}

.pricing-header { text-align: center; max-width: 560px; margin: 0 auto 64px; color: var(--color-text-dark); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1024px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border: 1px solid #D9D4CC;
  border-radius: 24px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-card.featured {
  background: var(--color-bg-card);
  border-color: rgba(220,94,25,0.4);
  position: relative;
}

.pricing-pill {
  background: var(--color-amber);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.pricing-tier-row .pricing-tier {
  margin-bottom: 0;
}

.pricing-tier {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing:-5;
}
.pricing-card .pricing-price{
  color: var(--color-text-dark);
}
.pricing-card.featured .pricing-price{
  color: #fff;
}

.pricing-price span { font-size: 1rem; font-family: var(--font-sans); font-weight: 500; color: var(--color-text-muted); }

.pricing-alt {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  margin-top:16px !important;
}

.pricing-features li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 16px;
  color: var(--color-text-mid);
  line-height: 1.4;
}

.pricing-card.featured .pricing-features li {
  color: #fff;
}

.pricing-features li svg {
  flex-shrink: 0;
}

.pricing-features li::before {
  content: none;
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 28px;
}

@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ─── Final CTA ────────────────────────────────────────────── */
#cta {
  padding: var(--section-pad) 0;
  text-align: center;
}

#cta .headline-xl { color: var(--color-text-dark); max-width: 700px; margin: 0 auto 20px; }
#cta .body-lg { color: var(--color-text-mid); max-width: 480px; margin: 0 auto 40px; }
#cta .store-badges { justify-content: center; }

.cta-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: var(--color-text-dark);
  border: 1.5px solid transparent;
  border-radius: 12px;
  transition: all 0.2s ease;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.cta-store-badge:hover {
  background: #2D2827;
  border-color: var(--color-amber);
  transform: translateY(-1px);
}

.cta-tagline {
  margin-top: 28px;
  font-size: 13px;
  color: var(--color-text-mid);
  font-style: italic;
}

/* ─── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 40px clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-text); }

.footer-copy {
  font-size: 12px;
  color: var(--color-text-muted);
  opacity: 0.5;
}

/* ─── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Scroll-triggered */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
