/* =============================================================
   Lima Bookkeeping Solutions
   Warm, bright, friendly. Native CSS with custom tokens, no
   third-party design system.

   PAGE THEME LOCK: light only. The brand is deliberately bright,
   so there is no dark variant and color-scheme is pinned to light.

   RADIUS SYSTEM (documented rule, applied everywhere):
     interactive pills (buttons, chips) ..... 999px
     surfaces (cells, panels, plans) ........ 28px
     inputs ................................. 16px

   ACCENT LOCK: one hue (bright cyan) across the whole page.
     --accent      bright, for fills and large shapes
     --accent-deep same hue darkened, for accent text on light
     --accent-soft same hue tinted, for the light background fills
   ============================================================= */

:root {
  --paper:      #F6FDFE;
  --paper-2:    #E4F6FB;
  --surface:    #FFFFFF;

  --ink:        #0B1F26;   /* exact ink from the supplied brand icon */
  --ink-2:      #4E626C;

  --line:       rgb(11 31 38 / .10);
  --line-2:     rgb(11 31 38 / .20);

  --accent:      #22D2EC;  /* exact cyan from the supplied brand icon */
  --accent-deep: #0B6480;  /* darkened so accent text clears AA on the cyan fill */
  --accent-soft: #CFF3FA;
  --accent-ink:  #04252B;

  --shadow-sm: 0 2px 8px rgb(12 90 110 / .08);
  --shadow-md: 0 14px 34px -16px rgb(12 90 110 / .28);
  --shadow-lg: 0 26px 60px -26px rgb(12 90 110 / .38);

  --r-pill: 999px;
  --r-surface: 28px;
  --r-input: 16px;

  --wrap: 1280px;
  --gutter: clamp(1.25rem, 5vw, 4rem);

  --ease: cubic-bezier(.16, 1, .3, 1);
  --bounce: cubic-bezier(.34, 1.56, .64, 1);

  --z-grain: 90;
  --z-nav: 70;
  --z-menu: 80;

  color-scheme: light;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Outfit", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--accent-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: var(--accent-ink);
  padding: .75rem 1.25rem; z-index: 100; border-radius: 0 0 var(--r-input) 0;
  font-weight: 500;
}
.skip:focus { left: 0; }

/* paper texture: fixed, never on a scrolling container */
.grain {
  position: fixed; inset: 0; z-index: var(--z-grain);
  pointer-events: none; opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- type ---------- */
.h2 {
  font-size: clamp(2rem, 4.3vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 600;
  margin: 0 0 1.5rem;
  max-width: 19ch;
  text-wrap: balance;
}

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--accent-soft);
  padding: .45rem 1rem;
  border-radius: var(--r-pill);
  margin: 0 0 1.25rem;
}

.section { padding-block: clamp(5rem, 12vw, 8.5rem); }

/* ---------- buttons ----------
   Hover does three things at once: a lift with a slight overshoot, a deeper
   shadow, and a specular shine that sweeps across the face. The shine is a
   pseudo-element on z-index -1 inside the button's own stacking context, so it
   paints above the background but below the label and never dims the text. */
.btn {
  --btn-py: 1rem;
  --shine: rgb(255 255 255 / .55);
  position: relative;
  isolation: isolate;           /* keeps the -1 shine layer inside the button */
  overflow: hidden;             /* clips the sweep to the pill */
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: var(--btn-py) 1.9rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  font: inherit; font-weight: 600; font-size: 1rem;
  line-height: 1;
  white-space: nowrap;          /* CTA labels never wrap */
  text-decoration: none;
  cursor: pointer;
  transition: transform .4s var(--bounce), background-color .25s var(--ease),
              border-color .25s var(--ease), color .25s var(--ease),
              box-shadow .3s var(--ease);
}

.btn::after {
  content: "";
  position: absolute; z-index: -1;
  top: -10%; bottom: -10%; left: 0;
  width: 45%;
  background: linear-gradient(100deg, transparent, var(--shine), transparent);
  transform: translateX(-200%) skewX(-16deg);
  pointer-events: none;
}
.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(340%) skewX(-16deg);
  transition: transform .85s cubic-bezier(.22, .61, .36, 1);
}

.btn--sm { --btn-py: .72rem; padding-inline: 1.35rem; font-size: .93rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--accent); color: var(--accent-ink);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background: var(--surface); color: var(--ink); border-color: var(--line-2);
  --shine: rgb(11 100 128 / .14);  /* white would be invisible on a white button */
}
.btn--ghost:hover {
  border-color: var(--accent); color: var(--accent-deep);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-sm);
}

.btn:active { transform: translateY(0) scale(.97); }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav);
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-stuck {
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: var(--shadow-sm);
}
@media (prefers-reduced-transparency: reduce) {
  .nav.is-stuck { background: var(--paper); backdrop-filter: none; -webkit-backdrop-filter: none; }
}

.nav__inner {
  height: 76px;                 /* nav height cap */
  max-width: var(--wrap); margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}

.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  text-decoration: none; color: var(--ink); flex-shrink: 0;
}
/* The brand icon is the supplied SVG, which already carries its own cyan
   rounded-square container, so no background or radius is added here. */
.brand__mark { width: 40px; height: 40px; flex-shrink: 0; }
/* Wordmark set as live text rather than the raster lockup: same structure,
   but it stays sharp at any density and has no baked-in background. */
.brand__word {
  display: flex; flex-direction: column; gap: .12em;
  font-weight: 700; letter-spacing: -.025em; line-height: 1; font-size: 1.22rem;
}
.brand__sub {
  font-weight: 500; font-size: .64rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--ink-2); line-height: 1;
}

.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  text-decoration: none; color: var(--ink-2); font-size: .96rem; font-weight: 500;
  transition: color .2s var(--ease);
}
.nav__links a:hover { color: var(--accent-deep); }

.nav__end { display: flex; align-items: center; gap: .75rem; }

.nav__toggle {
  display: none;
  background: var(--surface); border: 2px solid var(--line-2); color: var(--ink);
  width: 46px; height: 46px; border-radius: var(--r-pill);
  align-items: center; justify-content: center; font-size: 1.3rem; cursor: pointer;
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__end .btn--primary { display: none; }
}

.mobilemenu {
  position: fixed; inset: 76px 0 auto 0; z-index: var(--z-menu);
  background: var(--paper); box-shadow: var(--shadow-md);
  padding: 1.5rem var(--gutter) 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  border-radius: 0 0 var(--r-surface) var(--r-surface);
}
.mobilemenu[hidden] { display: none; }
.mobilemenu nav { display: flex; flex-direction: column; }
.mobilemenu a:not(.btn) {
  padding: .9rem 0; text-decoration: none; font-size: 1.2rem; font-weight: 500;
  border-bottom: 1px solid var(--line);
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex; align-items: center;
  padding-top: 6rem;              /* <= pt-24 cap */
  padding-bottom: 4rem;
  overflow: hidden;
  background:
    radial-gradient(70% 60% at 82% 34%, var(--accent-soft), transparent 68%),
    radial-gradient(50% 50% at 8% 88%, #DDF4FB, transparent 70%),
    var(--paper);
}
.hero__inner {
  position: relative;
  width: 100%; max-width: var(--wrap); margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
/* Copy occupies the left band, the photograph the right.
   Column width and type scale are tuned together so the headline holds 2 lines. */
.hero__copy { max-width: 36rem; }

.hero__art {
  position: relative;
  aspect-ratio: 4 / 4.4;
  /* on short viewports the frame gets shorter rather than pushing the hero
     past the fold; object-fit on the image absorbs the ratio change */
  max-height: calc(100dvh - 13rem);
  justify-self: center;   /* stays centred in its column once max-height shrinks it */
  border-radius: var(--r-surface);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--accent-soft);
}
.hero__art img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero__title {
  /* capped so "closed by the fifth." holds one line inside the copy column */
  font-size: clamp(2.3rem, 4.3vw, 3.9rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 600;
  margin: 0 0 1.6rem;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .08em; }
.hero__title .line > span { display: block; will-change: transform; }
.hero__title em { font-style: normal; color: var(--accent-deep); }

.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--ink-2);
  max-width: 40ch;
  margin: 0 0 2.25rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; }

@media (max-width: 860px) {
  .hero { padding-top: 5.5rem; padding-bottom: 3rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__copy { max-width: none; }
  .hero__sub { margin-bottom: 1.75rem; }
  .hero__art { aspect-ratio: 16 / 9; }
}

/* =============================================================
   LOGO MARQUEE (the only marquee on the page)
   ============================================================= */
.strip {
  padding-block: clamp(3rem, 7vw, 4.5rem);
  background: var(--paper-2);
}
.strip__label {
  text-align: center; color: var(--ink-2); font-size: .98rem; font-weight: 500;
  margin: 0 0 2.25rem;
}
.marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex; align-items: center; gap: clamp(3rem, 7vw, 6rem);
  width: max-content;
  will-change: transform;
}
.marquee__set {
  display: flex; align-items: center; gap: clamp(3rem, 7vw, 6rem);
  flex-shrink: 0;
}
.logo {
  display: block;
  width: 34px; height: 34px; flex-shrink: 0;
  background-color: var(--ink-2);
  -webkit-mask: var(--mark) center / contain no-repeat;
          mask: var(--mark) center / contain no-repeat;
  opacity: .72;
  transition: opacity .3s var(--ease), background-color .3s var(--ease);
}
.logo:hover { opacity: 1; background-color: var(--accent-deep); }

/* =============================================================
   SERVICES BENTO  (4 items -> exactly 4 cells)
   ============================================================= */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.cell {
  position: relative;
  border-radius: var(--r-surface);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.6rem, 2.6vw, 2.4rem);
  overflow: hidden;
  transition: transform .4s var(--bounce), box-shadow .4s var(--ease);
}
.cell:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cell h3 {
  font-size: 1.4rem; font-weight: 600; letter-spacing: -.02em;
  margin: 0 0 .6rem;
}
.cell p { margin: 0; color: var(--ink-2); max-width: 46ch; }
.cell__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: var(--r-pill);
  background: var(--accent-soft); color: var(--accent-deep);
  font-size: 1.5rem; margin-bottom: 1.2rem;
}

.cell--a { grid-column: span 4; grid-row: span 2; padding: 0; display: flex; flex-direction: column; min-height: 400px; }
.cell--a .cell__img { width: 100%; flex: 1; object-fit: cover; filter: saturate(1.06) contrast(1.02); }
.cell--a .cell__body { padding: clamp(1.6rem, 2.6vw, 2.4rem); }

.cell--b { grid-column: span 2; }
.cell--c { grid-column: span 2; background: var(--accent-soft); }
.cell--c .cell__icon { background: var(--surface); }

.cell--d {
  grid-column: span 6;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
  background: linear-gradient(120deg, #E9F7FC 0%, var(--surface) 55%);
}
.cell__d-fig {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: .95rem;
  background: var(--surface);
  border-radius: var(--r-input);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.minirow {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .68rem 0; color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.minirow b { color: var(--ink); font-weight: 500; }
.minirow--out { border-bottom: none; border-top: 2px solid var(--accent); color: var(--ink); padding-top: .9rem; }
.minirow--out b { color: var(--accent-deep); }

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; }
  .cell--a, .cell--b, .cell--c, .cell--d { grid-column: 1 / -1; grid-row: auto; }
  .cell--a { min-height: 0; }
  .cell--a .cell__img { height: 230px; flex: none; }
  .cell--d { grid-template-columns: 1fr; }
}

/* =============================================================
   PROCESS: header, then three steps side by side on one screen
   ============================================================= */
.steps {
  background: var(--paper-2);
  padding-block: clamp(3.5rem, 7vw, 5.25rem);
}
.steps__head { margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.steps__head .h2 { margin-bottom: .85rem; max-width: 22ch; }
.steps__note { color: var(--ink-2); margin: 0; max-width: 52ch; }

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.8vw, 1.5rem);
}
/* Items stretch to a shared row height, so the offset middle step staggers the
   tops while all three bottoms still line up. */
.steps__grid > :nth-child(2) { margin-top: clamp(1rem, 2.4vw, 2.25rem); }

.panel {
  border-radius: var(--r-surface);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  padding: clamp(1.6rem, 2.4vw, 2.25rem);
  display: flex; flex-direction: column;
}
.panel__icon {
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: var(--r-pill);
  background: var(--accent); color: var(--accent-ink);
  font-size: 1.7rem; margin-bottom: 1.5rem;
}
.panel h3 {
  font-size: clamp(1.5rem, 2.1vw, 1.95rem); font-weight: 600;
  letter-spacing: -.03em; margin: 0 0 .6rem;
}
.panel p { margin: 0; color: var(--ink-2); }

@media (max-width: 900px) {
  .steps__grid { grid-template-columns: 1fr; gap: 1rem; }
  .steps__grid > :nth-child(2) { margin-top: 0; }
  .panel__icon { margin-bottom: 1.2rem; }
}


/* =============================================================
   PRICING: two asymmetric plans
   ============================================================= */
/* Sections alternate paper / paper-2 for rhythm. Pricing sits on plain paper
   so it does not merge with the tinted Process band directly above it. */
.pricing { background: var(--paper); }
.plans {
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: 18px; align-items: start;
}
.plan {
  border-radius: var(--r-surface);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.8rem, 3vw, 2.8rem);
}
.plan--feature {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: var(--shadow-lg);
}
.plan__name { font-size: 1.05rem; font-weight: 600; margin: 0 0 1rem; }
.plan__price { margin: 0 0 1rem; display: flex; align-items: baseline; gap: .6rem; }
.plan__price span {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem); font-weight: 500;
  letter-spacing: -.045em; line-height: 1;
}
.plan__price small { color: var(--ink-2); font-size: .92rem; }
.plan--feature .plan__price small { color: var(--accent-ink); opacity: .78; }
.plan__for { color: var(--ink-2); margin: 0 0 1.85rem; font-size: .97rem; max-width: 44ch; }
.plan--feature .plan__for { color: var(--accent-ink); opacity: .86; }
.plan__list { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: .85rem; }
.plan__list--two { grid-template-columns: 1fr 1fr; column-gap: 1.75rem; }
.plan__list li { display: flex; gap: .65rem; align-items: flex-start; font-size: .97rem; color: var(--ink-2); }
.plan--feature .plan__list li { color: var(--accent-ink); }
.plan__list i { color: var(--accent-deep); font-size: 1.1rem; line-height: 1.5; flex-shrink: 0; }
.plan--feature .plan__list i { color: var(--accent-ink); }
.plan--feature .btn--primary { background: var(--accent-ink); color: #E9F9FD; --shine: rgb(255 255 255 / .3); }
.plan--feature .btn--primary:hover { background: #011218; }
.plans__foot { margin: 1.85rem 0 0; color: var(--ink-2); font-size: .95rem; }

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

/* =============================================================
   CONTACT
   ============================================================= */
.contact { padding-block: clamp(5rem, 12vw, 8.5rem); }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact__intro p { color: var(--ink-2); max-width: 38ch; margin: 0 0 2rem; font-size: 1.05rem; }
.contact__meta { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.contact__meta li { display: flex; align-items: center; gap: .8rem; }
.contact__meta i {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: var(--r-pill);
  background: var(--accent-soft); color: var(--accent-deep); font-size: 1.1rem;
}
/* min-height keeps these comfortably tappable on a phone */
.contact__meta a {
  color: var(--ink); text-decoration: none; font-weight: 500;
  display: inline-flex; align-items: center; min-height: 44px;
}
.contact__meta a:hover { color: var(--accent-deep); }

.form {
  display: grid; gap: 1.3rem;
  background: var(--surface);
  border-radius: var(--r-surface);
  box-shadow: var(--shadow-md);
  padding: clamp(1.6rem, 3vw, 2.5rem);
}
.field { display: grid; gap: .5rem; }
.field label { font-size: .92rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit; font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--r-input);
  padding: .9rem 1.1rem;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 6rem; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--line-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent); background: var(--surface);
  outline: 3px solid var(--accent-soft); outline-offset: 0;
}
.field .hint { margin: 0; font-size: .85rem; color: var(--ink-2); }
.field .err { margin: 0; font-size: .85rem; color: #B3261E; font-weight: 500; }
.field[data-invalid] input, .field[data-invalid] select { border-color: #B3261E; }

#submitBtn { margin-top: .4rem; }
.btn__spin { display: none; width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--accent-ink) 30%, transparent);
  border-top-color: var(--accent-ink); animation: spin .7s linear infinite; }
#submitBtn.is-loading .btn__spin { display: block; }
#submitBtn.is-loading { pointer-events: none; opacity: .85; }
@keyframes spin { to { transform: rotate(360deg); } }

.form__done {
  margin: 0; display: flex; align-items: center; gap: .55rem;
  color: var(--accent-deep); font-size: .98rem; font-weight: 500;
}
.form__done[hidden] { display: none; }

.form__error {
  margin: 0;
  background: #FDECEA;
  color: #8C1D18;
  border-radius: var(--r-input);
  padding: .9rem 1.1rem;
  font-size: .95rem; font-weight: 500;
}
.form__error a { color: inherit; font-weight: 600; }
.form__error[hidden] { display: none; }

/* Spam trap: off-screen rather than display:none, which some bots skip. */
.hp {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

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

/* =============================================================
   FOOTER
   ============================================================= */
.foot { padding-block: 3rem; background: var(--paper-2); }
.foot__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.foot__nav { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.foot__nav a {
  color: var(--ink-2); text-decoration: none; font-size: .95rem; font-weight: 500;
  display: inline-flex; align-items: center; min-height: 44px;
}
.foot__nav a:hover { color: var(--accent-deep); }
.foot__legal { margin: 0; color: var(--ink-2); font-size: .88rem; }

/* =============================================================
   MOTION
   ============================================================= */
/* Only hide reveal targets when JavaScript is alive to bring them back.
   Scoping to .js means a scripting failure renders a plain, readable
   page rather than a blank one. */
.js [data-reveal] { opacity: 0; transform: translateY(28px); }
.no-motion [data-reveal],
.js.no-motion [data-reveal] { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .marquee__track { transform: none !important; }
  .hero__title .line > span { transform: none !important; }
  .btn:hover, .cell:hover { transform: none !important; }
  .btn::after { display: none !important; }   /* no shine sweep */
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}
