/* =========================================================================
   Ready Berry — site.css
   Warm farm-market editorial design system.
   Self-hosted Fraunces (display) + Nunito Sans (body).
   ========================================================================= */

/* ---------- Fonts (self-hosted variable woff2) ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-var.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("/assets/fonts/nunitosans-var.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  color-scheme: light;

  /* Brand */
  --berry: #e53935;
  --berry-pink: #e36c96;
  --berry-pink-dark: #c4517b;
  --berry-deep: #9f416b;
  --green: #43a047;
  --green-deep: #00701a;

  /* Surfaces & text */
  --cream: #f7f3ee;
  --cream-deep: #efe7dc;
  --surface: #ffffff;
  --ink: #1a1a2e;
  --muted: #5b6470;        /* AA on cream & white */
  --border: #e7e1d8;
  --border-strong: #d9d0c4;

  /* Accents / tints */
  --pink-tint: #fdeef4;
  --green-tint: #eaf6eb;
  --amber: #b46a00;        /* readable amber for pills */
  --amber-tint: #fbf1dd;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(26, 26, 46, 0.05);
  --shadow-md: 0 12px 32px rgba(159, 65, 107, 0.10);
  --shadow-lg: 0 24px 60px rgba(159, 65, 107, 0.14);
  --ring: 0 0 0 3px rgba(227, 108, 150, 0.45);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --container: 1120px;
  --container-narrow: 760px;

  /* Fluid type scale */
  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.92rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1: clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
  --step-2: clamp(1.45rem, 1.3rem + 0.75vw, 1.9rem);
  --step-3: clamp(1.8rem, 1.55rem + 1.25vw, 2.6rem);
  --step-4: clamp(2.2rem, 1.7rem + 2.5vw, 3.6rem);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  min-height: 100dvh;
  background: var(--cream);
  color: var(--ink);
  font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--berry-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
a:hover {
  color: var(--berry-pink-dark);
}
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 {
  font-size: var(--step-4);
}
h2 {
  font-size: var(--step-3);
}
h3 {
  font-size: var(--step-1);
}
p {
  margin: 0 0 1em;
  max-width: 68ch;
}

/* ---------- Accessibility helpers ---------- */
:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 6px;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--surface);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-weight: 700;
  transition: top 0.18s ease;
}
.skip-link:focus {
  top: 12px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 40px);
}
.section {
  padding-block: clamp(48px, 8vw, 96px);
}
.section--tight {
  padding-block: clamp(32px, 5vw, 56px);
}
.section-head {
  max-width: var(--container-narrow);
  margin-bottom: clamp(28px, 4vw, 48px);
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--berry-deep);
  margin-bottom: 14px;
}
.lead {
  font-size: var(--step-1);
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 238, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.32rem;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover {
  color: var(--ink);
}
.brand img {
  width: 34px;
  height: 34px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  transition: background 0.18s ease, color 0.18s ease;
}
.nav a:hover {
  background: var(--pink-tint);
  color: var(--berry-deep);
}
.nav a[aria-current="page"] {
  background: var(--pink-tint);
  color: var(--berry-deep);
}
.nav__cta {
  margin-left: 6px;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg {
  width: 22px;
  height: 22px;
}
.nav-toggle .icon-close {
  display: none;
}
.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}
.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px clamp(18px, 5vw, 40px) 22px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.is-open {
    display: flex;
  }
  .nav a {
    padding: 13px 14px;
    font-size: 1.05rem;
  }
  .nav__cta {
    margin-left: 0;
    margin-top: 6px;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  background: var(--berry-pink);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--berry-pink-dark);
  color: #fff;
}
.btn--ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--berry-pink);
  color: var(--berry-deep);
}
.btn--green {
  background: var(--green);
  color: #fff;
}
.btn--green:hover {
  background: var(--green-deep);
  color: #fff;
}
.btn--block {
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .btn:hover {
    transform: none;
  }
}

/* Store buttons (App Store / Google Play) */
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px 11px 18px;
  min-height: 56px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: var(--shadow-sm);
}
.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #fff;
  background: #2a2a40;
}
.store-btn svg {
  width: 26px;
  height: 26px;
  flex: none;
}
.store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}
.store-btn span small {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.85;
}
.store-btn span strong {
  font-size: 1.08rem;
  font-weight: 800;
}
@media (prefers-reduced-motion: reduce) {
  .store-btn:hover {
    transform: none;
  }
}

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: 0.01em;
}
.pill svg {
  width: 14px;
  height: 14px;
}
.pill--pilot {
  background: var(--amber-tint);
  color: var(--amber);
}
.pill--green {
  background: var(--green-tint);
  color: var(--green-deep);
}
.pill--berry {
  background: var(--pink-tint);
  color: var(--berry-deep);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      120% 120% at 85% -10%,
      var(--pink-tint) 0%,
      rgba(253, 238, 244, 0) 55%
    ),
    radial-gradient(90% 90% at 0% 100%, var(--green-tint) 0%, rgba(234, 246, 235, 0) 50%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 88px);
}
.hero h1 {
  margin-bottom: 18px;
}
.hero .lead {
  margin-bottom: 28px;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__note {
  font-size: var(--step--1);
  color: var(--muted);
  margin: 0;
}
.hero__art {
  position: relative;
  display: grid;
  place-items: center;
}
.phone-mock {
  width: min(320px, 78vw);
  aspect-ratio: 9 / 17.5;
  border-radius: 38px;
  background: linear-gradient(160deg, #fff 0%, #fff6fa 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone-mock__notch {
  width: 42%;
  height: 22px;
  background: var(--ink);
  border-radius: var(--radius-pill);
  margin: 2px auto 6px;
  opacity: 0.9;
}
.phone-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-card img {
  width: 40px;
  height: 40px;
}
.phone-card b {
  display: block;
  font-size: 0.95rem;
}
.phone-card small {
  color: var(--muted);
  font-size: 0.82rem;
}
.float-berry {
  position: absolute;
  width: 64px;
  opacity: 0.9;
  filter: drop-shadow(0 10px 18px rgba(159, 65, 107, 0.22));
}
.float-berry--1 {
  top: 4%;
  left: 2%;
  width: 72px;
}
.float-berry--2 {
  bottom: 6%;
  right: 0;
  width: 56px;
}

@media (max-width: 860px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero__art {
    order: -1;
  }
  .float-berry {
    display: none;
  }
}

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: clamp(16px, 2.5vw, 24px);
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 860px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .grid--2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card--hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
@media (prefers-reduced-motion: reduce) {
  .card--hover:hover {
    transform: none;
  }
}
.card h3 {
  margin-bottom: 8px;
}
.card p {
  color: var(--muted);
  margin-bottom: 0;
}
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 16px;
  background: var(--pink-tint);
  color: var(--berry-deep);
}
.card__icon svg {
  width: 26px;
  height: 26px;
}
.card__icon--green {
  background: var(--green-tint);
  color: var(--green-deep);
}
.card__icon--amber {
  background: var(--amber-tint);
  color: var(--amber);
}

/* Feature row (alternating media + text) */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.feature-row + .feature-row {
  margin-top: clamp(40px, 6vw, 72px);
}
.feature-row__media {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  place-items: center;
  min-height: 220px;
}
.feature-row__media img {
  width: clamp(120px, 28vw, 180px);
}
@media (max-width: 860px) {
  .feature-row {
    grid-template-columns: 1fr;
  }
  .feature-row--rev .feature-row__media {
    order: -1;
  }
}

/* Lists */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-tint)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300701a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>")
    center / 13px no-repeat;
}
.x-list li::before {
  background: var(--pink-tint)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239f416b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>")
    center / 12px no-repeat;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--berry-pink) 0%, var(--berry-deep) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-band h2 {
  color: #fff;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.92);
  margin-inline: auto;
}
.cta-band .store-buttons {
  justify-content: center;
  margin-top: 24px;
}

/* ---------- Prose (legal / content pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--pink-tint) 0%, rgba(253, 238, 244, 0) 100%);
  padding-block: clamp(40px, 6vw, 72px) clamp(24px, 4vw, 40px);
}
.prose {
  max-width: var(--container-narrow);
}
.prose h2 {
  font-size: var(--step-2);
  margin-top: 1.6em;
  padding-top: 0.4em;
}
.prose h3 {
  margin-top: 1.4em;
}
.prose p,
.prose li {
  color: #33363f;
}
.prose ul,
.prose ol {
  padding-left: 1.3em;
  margin: 0 0 1.1em;
}
.prose li {
  margin-bottom: 0.5em;
}
.prose a {
  font-weight: 700;
}
.prose .updated {
  display: inline-block;
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--muted);
  background: var(--cream-deep);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}
.callout {
  border: 1px solid var(--border);
  background: var(--surface);
  border-left: 4px solid var(--berry-pink);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 1.4em 0;
  box-shadow: var(--shadow-sm);
}
.callout p:last-child {
  margin-bottom: 0;
}
.callout--green {
  border-left-color: var(--green);
}
.callout--amber {
  border-left-color: var(--amber);
}
.toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.toc h2 {
  font-size: var(--step-1);
  margin: 0 0 10px;
}
.toc ol {
  margin: 0;
  columns: 2;
  gap: 24px;
}
@media (max-width: 600px) {
  .toc ol {
    columns: 1;
  }
}

/* Definition-style info rows */
.info-grid {
  display: grid;
  gap: 14px;
}
.info-grid .card {
  display: grid;
  gap: 6px;
}
.info-grid .card b {
  font-size: 1.02rem;
}

/* ---------- Invite / focus card pages ---------- */
.focus-wrap {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.focus-main {
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 56px) 18px;
}
.focus-card {
  width: min(560px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(26px, 5vw, 40px);
  text-align: center;
}
.focus-card .brand {
  justify-content: center;
  margin-bottom: 18px;
}
.focus-card h1 {
  font-size: var(--step-2);
}
.focus-card .lead {
  font-size: var(--step-0);
}
.invite-meta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 4px 0 18px;
}
.code-box {
  margin: 22px 0 8px;
  text-align: left;
}
.code-box label {
  display: block;
  font-weight: 800;
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
}
.code-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.code-value {
  flex: 1;
  font-family: "Nunito Sans", ui-monospace, monospace;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.15rem;
  background: var(--cream);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  word-break: break-all;
  display: flex;
  align-items: center;
}
.copy-btn {
  flex: none;
  min-width: 112px;
  border: 1px solid var(--berry-pink);
  background: #fff;
  color: var(--berry-deep);
  border-radius: var(--radius-sm);
  font-weight: 800;
  cursor: pointer;
  padding: 0 16px;
  transition: background 0.18s ease, color 0.18s ease;
}
.copy-btn:hover {
  background: var(--pink-tint);
}
.copy-btn.copied {
  background: var(--green-tint);
  border-color: var(--green);
  color: var(--green-deep);
}
.divider {
  height: 1px;
  background: var(--border);
  margin: 22px 0;
}
.muted-note {
  font-size: var(--step--1);
  color: var(--muted);
}
.state-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.state-icon svg {
  width: 32px;
  height: 32px;
}
.state-icon--warn {
  background: var(--amber-tint);
  color: var(--amber);
}
.state-icon--ok {
  background: var(--green-tint);
  color: var(--green-deep);
}
.state-icon--info {
  background: var(--pink-tint);
  color: var(--berry-deep);
}
[hidden] {
  display: none !important;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #d9dae3;
  padding-block: clamp(40px, 6vw, 64px) 28px;
  margin-top: clamp(48px, 8vw, 96px);
}
.site-footer a {
  color: #d9dae3;
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
}
@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-brand .brand {
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand p {
  color: #a9abbb;
  font-size: 0.95rem;
  max-width: 32ch;
}
.footer-col h4 {
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer-col a {
  font-size: 0.96rem;
}
.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: #9a9cad;
}
.footer-bottom .store-buttons .store-btn {
  background: rgba(255, 255, 255, 0.08);
  min-height: 48px;
}
.footer-bottom .store-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* ---------- Utilities ---------- */
.text-center {
  text-align: center;
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.stack > * + * {
  margin-top: 1rem;
}
.flex-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
