/* ==========================================================================
   BEABIAI — static site styles
   Plain CSS · system fonts · no external dependencies · light + dark
   ========================================================================== */

:root {
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --bg-card: #ffffff;
  --text: #0f1b2d;
  --text-soft: #46566b;
  --text-muted: #6a7a90;
  --border: #e4eaf2;
  --border-strong: #cbd6e4;
  --brand: #4f46e5; /* indigo */
  --brand-2: #2563eb; /* blue */
  --brand-dark: #3730a3;
  --brand-soft: #eef0ff;
  --accent: #0ea5a4; /* teal */
  --ring: rgba(79, 70, 229, 0.35);
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(15, 27, 45, 0.06), 0 1px 1px rgba(15, 27, 45, 0.04);
  --shadow: 0 10px 30px rgba(15, 27, 45, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 27, 45, 0.14);
  --maxw: 1120px;
  --header-bg: rgba(255, 255, 255, 0.82);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
    "Liberation Mono", monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b1220;
    --bg-soft: #0f1828;
    --bg-card: #131e30;
    --text: #eaf0f8;
    --text-soft: #b3c1d4;
    --text-muted: #8595aa;
    --border: #233246;
    --border-strong: #324358;
    --brand: #7c83ff;
    --brand-2: #5b8dff;
    --brand-dark: #6366f1;
    --brand-soft: #1a2238;
    --accent: #2dd4bf;
    --ring: rgba(124, 131, 255, 0.45);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 26px 64px rgba(0, 0, 0, 0.6);
    --header-bg: rgba(11, 18, 32, 0.78);
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  line-height: 1.18;
  color: var(--text);
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.25rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.55rem, 3.6vw, 2.25rem);
  font-weight: 750;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
}

code {
  font-family: var(--mono);
  font-size: 0.88em;
  background: var(--brand-soft);
  color: var(--brand-dark);
  padding: 2px 6px;
  border-radius: 6px;
  word-break: break-word;
}

@media (prefers-color-scheme: dark) {
  code {
    color: var(--text);
  }
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 100;
}

.skip-link:focus {
  left: 0;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--text);
  letter-spacing: -0.03em;
}

.brand:hover {
  text-decoration: none;
}

.brand .logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2) 55%, var(--accent));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-soft);
  padding: 9px 13px;
  border-radius: 9px;
  font-size: 0.95rem;
  font-weight: 550;
}

.nav-links a:hover {
  background: var(--bg-soft);
  color: var(--text);
  text-decoration: none;
}

.nav-cta {
  background: var(--brand);
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.nav-cta:hover {
  background: var(--brand-dark) !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 9px;
  padding: 8px 11px;
  cursor: pointer;
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 22px 20px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .nav-links .nav-cta {
    margin-top: 6px;
    text-align: center;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 11px;
  font-weight: 650;
  font-size: 1rem;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.05s ease, box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.28);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-soft);
  border-color: var(--text-muted);
}

.btn-block {
  width: 100%;
}

/* ---------- Sections ---------- */
section {
  padding: 72px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head p {
  color: var(--text-soft);
  font-size: 1.1rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 15px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 92px 0 84px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(820px 420px at 78% -8%, var(--brand-soft), transparent 70%),
    radial-gradient(
      640px 380px at -5% 4%,
      rgba(14, 165, 164, 0.13),
      transparent 62%
    );
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(79, 70, 229, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(79, 70, 229, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(
    700px 360px at 60% 0%,
    #000 30%,
    transparent 75%
  );
  mask-image: radial-gradient(700px 360px at 60% 0%, #000 30%, transparent 75%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero h1 {
  max-width: 16ch;
}

.hero-lead {
  font-size: 1.18rem;
  color: var(--text-soft);
  max-width: 56ch;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  margin-top: 22px;
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 52ch;
}

.hero-note svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--accent);
}

/* Hero illustrative flow card (pure CSS, not a screenshot) */
.hero-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 22px;
}

.hv-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}

.hv-bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--border-strong);
  display: inline-block;
}

.hv-bar span {
  margin-left: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hv-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  background: var(--bg);
}

.hv-row:last-child {
  margin-bottom: 0;
}

.hv-ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex: 0 0 auto;
}

.hv-ic svg {
  width: 20px;
  height: 20px;
}

.hv-ic.yt {
  background: #ff0000;
}

.hv-ic.tt {
  background: #111827;
}

.hv-ic.ok {
  background: var(--accent);
}

.hv-meta {
  flex: 1 1 auto;
  min-width: 0;
}

.hv-meta b {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}

.hv-meta small {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.hv-status {
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.hv-status.green {
  color: #047857;
  background: rgba(16, 185, 129, 0.14);
}

.hv-status.blue {
  color: var(--brand-2);
  background: rgba(37, 99, 235, 0.13);
}

@media (prefers-color-scheme: dark) {
  .hv-status.green {
    color: #34d399;
  }
}

/* ---------- Trust strip ---------- */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 22px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-soft);
}

.trust-item svg {
  color: var(--accent);
  flex: 0 0 auto;
}

/* ---------- Grid / cards ---------- */
.grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 920px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.card.hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  color: var(--text-soft);
  margin-bottom: 0;
  font-size: 0.98rem;
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon svg {
  width: 24px;
  height: 24px;
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 750;
  margin-bottom: 15px;
  box-shadow: 0 6px 14px rgba(79, 70, 229, 0.3);
}

/* Two-column feature split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

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

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 13px;
  color: var(--text-soft);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(14, 165, 164, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230ea5a4' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Platform badges */
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.platform {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 26px;
  font-weight: 650;
  box-shadow: var(--shadow-sm);
}

.platform .pic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.platform .pic svg {
  width: 20px;
  height: 20px;
}

.pic.yt {
  background: #ff0000;
}

.pic.tt {
  background: #111827;
}

.platform small {
  display: block;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ---------- FAQ accordion ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 19px 22px;
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}

.faq-trigger:hover {
  background: var(--bg-soft);
}

.faq-trigger .chev {
  flex: 0 0 auto;
  transition: transform 0.2s ease;
  color: var(--text-muted);
}

.faq-trigger .chev svg {
  width: 20px;
  height: 20px;
  display: block;
}

.faq-trigger[aria-expanded="true"] .chev {
  transform: rotate(180deg);
  color: var(--brand);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-panel-inner {
  padding: 0 22px 19px;
}

.faq-panel p {
  color: var(--text-soft);
  margin: 0;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 52px 44px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    500px 200px at 80% 0%,
    rgba(255, 255, 255, 0.18),
    transparent 70%
  );
  pointer-events: none;
}

.cta-band h2 {
  color: #fff;
  position: relative;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 60ch;
  margin: 0 auto 26px;
  position: relative;
}

.cta-band .cta-actions {
  position: relative;
}

.cta-band .btn-secondary {
  background: #fff;
  color: var(--brand-dark);
  border-color: #fff;
}

.cta-band .btn-secondary:hover {
  background: #eef2ff;
}

.cta-band .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.cta-band .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Legal / content pages ---------- */
.page-hero {
  position: relative;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 62px 0 46px;
}

.page-hero p {
  color: var(--text-soft);
  max-width: 72ch;
  margin-bottom: 0;
  font-size: 1.06rem;
}

.meta-dates {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.prose {
  max-width: 780px;
  margin: 0 auto;
  padding: 52px 0 72px;
}

.prose h2 {
  margin-top: 2.1em;
  font-size: 1.45rem;
  scroll-margin-top: 90px;
}

.prose h2:first-of-type {
  margin-top: 0;
}

.prose h3 {
  margin-top: 1.7em;
}

.prose p,
.prose li {
  color: var(--text-soft);
}

.prose ul,
.prose ol {
  padding-left: 24px;
  margin: 0 0 1rem;
}

.prose li {
  margin-bottom: 9px;
}

.callout {
  background: var(--brand-soft);
  border: 1px solid rgba(79, 70, 229, 0.28);
  border-left-width: 4px;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 26px 0;
}

.callout p {
  margin: 0;
  color: var(--text);
}

.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

.toc h2 {
  margin: 0 0 12px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}

.toc ul {
  margin: 0;
  padding-left: 18px;
  columns: 2;
  column-gap: 28px;
}

@media (max-width: 600px) {
  .toc ul {
    columns: 1;
  }
}

.toc li {
  margin-bottom: 7px;
}

/* Contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.contact-card {
  text-align: center;
}

.contact-card .icon {
  margin-left: auto;
  margin-right: auto;
}

.contact-card .role {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-card a.email {
  font-weight: 650;
  font-size: 1.02rem;
  word-break: break-word;
}

.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 30px;
  box-shadow: var(--shadow-sm);
}

.info-box dl {
  margin: 0;
}

.info-box dt {
  font-weight: 700;
  color: var(--text);
  margin-top: 16px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-box dt:first-child {
  margin-top: 0;
}

.info-box dd {
  margin: 4px 0 0;
  color: var(--text-soft);
}

.steps-ol {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps-ol > li {
  position: relative;
  padding: 0 0 26px 56px;
  border-left: 2px solid var(--border);
  margin-left: 18px;
}

.steps-ol > li:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.steps-ol > li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -18px;
  top: -2px;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 750;
  box-shadow: 0 5px 12px rgba(79, 70, 229, 0.3);
}

.steps-ol > li h3 {
  margin: 2px 0 6px;
}

.steps-ol > li p {
  color: var(--text-soft);
  margin: 0;
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 56px 0 34px;
  margin-top: 8px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
}

@media (max-width: 860px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.93rem;
  max-width: 44ch;
}

.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 13px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 9px;
}

.footer-col a {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 84ch;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.lead {
  font-size: 1.12rem;
  color: var(--text-soft);
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
