/* ---------- fonts ---------- */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/asset-2c3287428a81.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/asset-84ddb2768e89.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/asset-c36f509c0a8f.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/asset-a76f53ca6612.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/asset-ad4580d8cb4b.woff2") format("woff2");
}

/* ---------- tokens ---------- */
:root {
  --bg: #0a0a0a;
  --bg-raised: #141412;
  --bg-raised-2: #1b1a17;
  --ink: #f4f2ee;
  --ink-dim: #9c988f;
  --ink-faint: #66625a;
  --hairline: rgba(244,242,238,0.11);
  --hairline-strong: rgba(244,242,238,0.22);
  --gold: #f2c759;
  --gold-ink: #171205;
  --gold-dim: rgba(242,199,89,0.14);
  --gold-hairline: rgba(242,199,89,0.35);

  --serif: "Fraunces", ui-serif, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --edge: 1px solid var(--hairline);
  --container: 760px;
  --wide: 1080px;
}

/* Yonder's own product UI is committed, single-theme black — this site mirrors
   that deliberately rather than offering a light mode the app itself doesn't have. */

* { box-sizing: border-box; }
html { background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--ink); color: var(--bg); }

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

#guide { scroll-margin-top: 90px; }
#guide h2 { margin: 14px 0 20px; max-width: 24ch; line-height: 1.25; }
#guide .btn { margin-top: 24px; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.wide { max-width: var(--wide); margin: 0 auto; padding: 0 28px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; margin: 0; text-wrap: balance; letter-spacing: -0.01em; }
em, .accent-word { font-family: "Fraunces", serif; font-style: italic; font-weight: 500; }

p { margin: 0; color: var(--ink-dim); text-wrap: pretty; max-width: 62ch; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.eyebrow.gold { color: var(--gold); }
.eyebrow .dot { color: var(--ink-faint); }

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: var(--edge);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.brand img { width: 22px; height: 22px; opacity: 0.96; }
.brand span { font-family: var(--serif); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.navlinks { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.navlinks a {
  text-decoration: none; color: var(--ink-dim); font-size: 14.5px;
  transition: color 0.15s ease;
}
.navlinks a:hover, .navlinks a:focus-visible { color: var(--ink); }
.navlinks { }
.nav-cta {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-faint); border: 1px solid var(--hairline-strong); border-radius: 999px;
  padding: 7px 14px; white-space: nowrap; text-decoration: none; transition: border-color 0.15s ease, color 0.15s ease;
}
.nav-cta:hover { border-color: var(--ink); color: var(--ink); }
.navlinks-wrap { display: flex; align-items: center; gap: 18px; }
@media (max-width: 720px) {
  .navlinks { display: none; }
}
@media (max-width: 480px) {
  .nav { padding: 16px 18px; }
  .nav-cta { display: none; }
  .navlinks-wrap { gap: 12px; }
}

.lang-toggle {
  display: flex; align-items: center; border: 1px solid var(--hairline-strong);
  border-radius: 999px; padding: 3px; gap: 2px; font-family: var(--mono); flex-shrink: 0;
}
.lang-toggle a {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  padding: 5px 10px; border-radius: 999px; border: none; background: transparent;
  color: var(--ink-faint); cursor: pointer; text-decoration: none; transition: all 0.15s ease;
}
.lang-toggle a.active { background: var(--ink); color: var(--bg); }
.lang-toggle a:not(.active):hover { color: var(--ink-dim); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  padding: 13px 22px; border-radius: 999px; text-decoration: none;
  border: 1px solid transparent; cursor: default;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--hairline-strong); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-gold { background: var(--gold); color: var(--gold-ink); }
.btn[disabled], .btn.soon { opacity: 1; cursor: default; }
.btn.soon { background: var(--bg-raised); color: var(--ink-dim); border-color: var(--hairline-strong); }

.apple-mark { width: 13px; height: 13px; flex: none; fill: currentColor; vertical-align: -2px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 108px 0 96px;
  border-bottom: var(--edge);
  overflow: hidden;
}
.hero-watermark {
  position: absolute; top: 64px; right: -140px; width: 520px; height: 520px;
  opacity: 0.055; pointer-events: none; user-select: none;
}
@media (max-width: 860px) {
  .hero-watermark { top: 48px; right: -170px; width: 420px; height: 420px; }
}
.hero-inner {
  max-width: var(--wide); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1.05fr 0.85fr; gap: 64px; align-items: center;
  position: relative;
}
.hero h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.04;
  margin: 22px 0 24px;
}
.hero p.lede { font-size: 18px; max-width: 46ch; color: var(--ink-dim); }
.hero-ctas { display: flex; align-items: center; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.hero-note { margin-top: 14px; font-size: 13px; color: var(--ink-faint); }

/* timer demo card */
.timer-card {
  background: var(--bg-raised);
  border: var(--edge);
  border-radius: 22px;
  padding: 34px 30px 28px;
  text-align: center;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7);
}
.timer-card .eyebrow { display: block; margin-bottom: 18px; }

/* flip clock — mirrors the app's FlipClockDigitView/FlipClockView look */
.flip-clock {
  --fd-w: 44px;
  --fd-h: 62px;
  --fd-radius: 7px;
  --fd-bg: #1f1f1f;
  --fd-line: #101010;
  --fd-ink: #f2f2f2;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 0 auto 16px;
}
.flip-unit { display: flex; gap: 4px; }
.flip-colon { display: flex; flex-direction: column; gap: 8px; align-self: center; }
.flip-colon span {
  width: 5px; height: 5px; border-radius: 50%; background: var(--ink-faint); display: block;
  opacity: 0.5; transition: opacity 0.3s ease;
}
.flip-clock.is-running .flip-colon span { opacity: 1; animation: flipColonPulse 0.9s ease-in-out infinite; }
@keyframes flipColonPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.32; } }

.flip-digit { position: relative; width: var(--fd-w); height: var(--fd-h); perspective: 240px; }
.flip-digit .fd-card {
  position: absolute; left: 0; width: 100%; overflow: hidden;
  background: var(--fd-bg); border-radius: var(--fd-radius);
}
.flip-digit .fd-card span {
  position: absolute; left: 0; top: 0; width: 100%; height: var(--fd-h);
  display: flex; align-items: center; justify-content: center;
  font-family: ui-rounded, "SF Pro Rounded", var(--sans);
  font-weight: 700; font-size: calc(var(--fd-h) * 0.62); color: var(--fd-ink);
  font-variant-numeric: tabular-nums;
}
.flip-digit .fd-back { top: 0; height: 100%; }
.flip-digit .fd-top-static,
.flip-digit .fd-top-flip {
  top: 0; height: 50%; border-radius: var(--fd-radius) var(--fd-radius) 0 0;
}
.flip-digit .fd-top-static { z-index: 2; transition: opacity 0.15s ease-out; }
.flip-digit.is-flipping .fd-top-static { opacity: 0; transition: none; }
.flip-digit .fd-top-flip {
  z-index: 3; display: none; transform-origin: bottom center; backface-visibility: hidden;
}
.flip-digit.is-flipping .fd-top-flip { display: block; animation: flipDown 0.25s ease-in forwards; }
@keyframes flipDown { from { transform: rotateX(0deg); } to { transform: rotateX(-89.9deg); } }
.flip-digit .fd-divider {
  position: absolute; left: 0; top: calc(50% - 0.5px); width: 100%; height: 1px;
  background: var(--fd-line); z-index: 4;
}
.timer-state {
  margin: 4px 0 0; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em;
  color: var(--ink-faint); text-transform: uppercase; text-align: center;
}
.timer-controls { display: flex; gap: 10px; justify-content: center; margin-top: 18px; }
.timer-controls button {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 16px; border-radius: 999px; border: 1px solid var(--hairline-strong);
  background: transparent; color: var(--ink-dim); cursor: pointer;
  transition: all 0.15s ease;
}
.timer-controls button.primary { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.timer-controls button:hover { border-color: var(--ink); color: var(--ink); }
.timer-controls button.primary:hover { opacity: 0.88; }
.timer-work { margin-top: 18px; font-size: 12.5px; color: var(--ink-faint); }
.timer-work span { color: var(--ink-dim); }

/* ---------- feature sections ---------- */
.feature {
  padding: 96px 0;
  border-bottom: var(--edge);
}
.feature-inner {
  max-width: var(--wide); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.feature.reverse .feature-inner { direction: rtl; }
.feature.reverse .feature-inner > * { direction: ltr; }
.feature-text .eyebrow { margin-bottom: 16px; }
.feature-text h2 { font-size: clamp(28px, 3.2vw, 38px); margin-bottom: 18px; }
.feature-text p { font-size: 16px; margin-bottom: 18px; }
.feature-detail {
  font-family: var(--mono); font-size: 12.5px; color: var(--ink-faint);
  border-top: 1px solid var(--hairline); padding-top: 14px; margin-top: 22px;
  display: inline-block;
}
.feature-detail b { color: var(--ink-dim); font-weight: 500; }
.feature-visual { display: flex; align-items: center; justify-content: center; }

/* work areas chips */
.chip-field {
  display: flex; flex-wrap: wrap; gap: 10px; max-width: 420px;
}
.chip {
  background: var(--bg-raised); border: var(--edge); border-radius: 999px;
  padding: 10px 16px; display: flex; flex-direction: column; gap: 2px;
}
.chip .name { font-size: 13.5px; color: var(--ink); }
.chip .dur { font-family: var(--mono); font-size: 10.5px; color: var(--ink-faint); }
.chip.locked { opacity: 0.55; }
.chip.locked .name::after { content: " · locked"; color: var(--ink-faint); font-size: 11px; }
:root[data-lang="tr"] .chip.locked .name::after { content: " · kilitli"; }

/* focus room card */
.room-card {
  background: var(--bg-raised); border: var(--edge); border-radius: 20px;
  padding: 30px; width: 100%; max-width: 360px;
}
.room-card .rc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.room-code { font-family: var(--mono); font-size: 26px; letter-spacing: 0.24em; font-weight: 500; }
.room-live { display: flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; }
.room-live .pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.room-people { display: flex; gap: -8px; margin-bottom: 16px; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%; background: var(--bg-raised-2);
  border: 1px solid var(--hairline-strong); display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 12px; color: var(--ink-dim); margin-right: -10px;
}
.room-status { font-size: 13px; color: var(--ink-dim); }
.room-status b { color: var(--ink); font-weight: 500; }

/* live activity mockup */
.island-mock {
  background: #000; border: 1px solid var(--hairline-strong); border-radius: 999px;
  padding: 10px 20px 10px 14px; display: inline-flex; align-items: center; gap: 12px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.8);
}
.island-mock .im-icon {
  width: 26px; height: 26px; border-radius: 50%; background: var(--bg-raised-2);
  display: flex; align-items: center; justify-content: center;
}
.island-mock .im-icon img { width: 15px; height: 15px; }
.island-mock .im-time { font-family: var(--mono); font-size: 17px; font-weight: 500; letter-spacing: 0.02em; }
.island-mock .im-label { font-family: var(--mono); font-size: 9px; color: var(--ink-faint); letter-spacing: 0.1em; text-transform: uppercase; }
.island-wrap { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.lockscreen-hint { font-family: var(--mono); font-size: 11px; color: var(--ink-faint); text-align: center; }

/* reports mockup */
.report-card { background: var(--bg-raised); border: var(--edge); border-radius: 20px; padding: 28px 26px; width: 100%; max-width: 380px; }
.report-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; }
.report-total { font-family: var(--mono); font-size: 22px; font-weight: 500; }
.report-week { font-family: var(--mono); font-size: 11px; color: var(--ink-faint); letter-spacing: 0.08em; text-transform: uppercase; }
.bars { display: flex; align-items: flex-end; gap: 10px; height: 90px; margin-bottom: 10px; }
.bars .bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; gap: 8px; }
.bars .bar { width: 100%; background: var(--bg-raised-2); border-radius: 4px 4px 2px 2px; }
.bars .bar-col.peak .bar { background: var(--ink); }
.bars .bar-day { font-family: var(--mono); font-size: 10px; color: var(--ink-faint); }

/* sync/privacy */
.privacy-points { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.privacy-points li { display: flex; gap: 12px; font-size: 15px; color: var(--ink-dim); }
.privacy-points li::before { content: "—"; color: var(--ink-faint); flex-shrink: 0; }
.privacy-more { margin-top: 20px; }
.privacy-more summary { cursor: pointer; font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.05em; color: var(--ink-faint); }
.privacy-more summary:hover { color: var(--ink-dim); }
.privacy-more[open] summary { color: var(--ink); margin-bottom: 12px; }
.privacy-more .pm-body { font-size: 14.5px; color: var(--ink-dim); border-left: 1px solid var(--hairline); padding-left: 16px; }
.privacy-more .pm-body p { margin-bottom: 10px; max-width: none; }
.privacy-more .pm-body p:last-child { margin-bottom: 0; }

/* ---------- pro section ---------- */
.pro-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #100d05 100%);
  border-bottom: var(--edge);
}
.pro-head { max-width: var(--wide); margin: 0 auto 56px; padding: 0 28px; text-align: center; }
.pro-head h2 { font-size: clamp(30px, 3.6vw, 44px); margin: 18px auto 16px; max-width: 16ch; }
.pro-head p { margin: 0 auto; text-align: center; }

.pro-grid { max-width: var(--wide); margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }

.compare {
  border: 1px solid var(--gold-hairline); border-radius: 18px; overflow: hidden;
  background: var(--bg-raised);
}
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 15px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--hairline); }
.compare th { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 500; }
.compare td:first-child { color: var(--ink-dim); }
.compare td.free { color: var(--ink-faint); font-family: var(--mono); font-size: 13px; }
.compare td.pro { color: var(--gold); font-family: var(--mono); font-size: 13px; font-weight: 500; }
.compare tr:last-child td, .compare tr:last-child th { border-bottom: none; }
.compare th.free-h, .compare th.pro-h { text-align: left; width: 130px; }

.plans { display: flex; flex-direction: column; gap: 16px; }
.plan-card {
  border: 1px solid var(--hairline-strong); border-radius: 18px; padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.plan-card.featured { border-color: var(--gold-hairline); background: var(--gold-dim); }
.plan-name { font-family: var(--serif); font-size: 18px; font-weight: 600; }
.plan-sub { font-family: var(--mono); font-size: 11.5px; color: var(--ink-faint); margin-top: 4px; letter-spacing: 0.04em; }
.plan-card.featured .plan-sub { color: rgba(242,199,89,0.75); }
.plan-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--gold); color: var(--gold-ink); padding: 4px 9px; border-radius: 999px;
}
.pro-cta { margin-top: 6px; }

/* ---------- faq ---------- */
.faq { padding: 96px 0; border-bottom: var(--edge); }
.faq-inner { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.faq-head { margin-bottom: 44px; }
.faq-head h2 { font-size: clamp(28px, 3.2vw, 38px); margin-top: 16px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--hairline); padding: 22px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif); font-size: 18px; font-weight: 600; gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { font-family: var(--mono); font-size: 18px; color: var(--ink-faint); transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item .faq-a { margin-top: 14px; font-size: 15.5px; max-width: 66ch; }

/* ---------- footer ---------- */
footer { padding: 64px 0 40px; }
.footer-inner { max-width: var(--wide); margin: 0 auto; padding: 0 28px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-bottom: 48px; }
.footer-brand .brand { margin-bottom: 12px; }
.footer-brand p { font-size: 14px; max-width: 32ch; }
.footer-links { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 500; margin: 0 0 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { text-decoration: none; color: var(--ink-dim); font-size: 14.5px; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--hairline); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12.5px; color: var(--ink-faint); }

/* ---------- reveal ---------- */
.reveal { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
.js-reveal .reveal { opacity: 0; transform: translateY(18px); }
.js-reveal .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- intro (page-load only, echoes the flip-clock's own flip motion) ---------- */
@keyframes introLogoFlip {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}
.brand { perspective: 240px; }
.brand img { animation: introLogoFlip 0.9s cubic-bezier(.3,.1,.2,1) 0.15s both; }

@keyframes introUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-copy > * { opacity: 0; animation: introUp 0.7s cubic-bezier(.2,.7,.2,1) both; }
.hero-copy > *:nth-child(1) { animation-delay: 0.55s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.65s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.75s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.85s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.95s; }
.hero .timer-card.reveal { transition-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  .brand img { animation: none; }
  .hero-copy > * { opacity: 1; animation: none; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .feature-inner { grid-template-columns: 1fr; gap: 40px; }
  .feature.reverse .feature-inner { direction: ltr; }
  .feature-visual { order: -1; }
  .pro-grid { grid-template-columns: 1fr; }
  .hero { padding: 88px 0 72px; }
  .feature { padding: 72px 0; }
}
@media (max-width: 480px) {
  .container, .wide { padding: 0 20px; }
  .hero-inner, .feature-inner, .pro-head, .pro-grid, .faq-inner, .footer-inner { padding: 0 20px; }
  .footer-top { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
