/* ==========================================================================
   Faijas V — Personal Brand / Lead-Gen Site
   Design system v2 — "Rich White" premium light theme (Mercury-inspired).
   Light base · refined indigo accent · soft shadows · clean capsules.
   Same class names as v1 (dark) — only the visual layer changed.
   ========================================================================== */

/* ---- Design tokens ---------------------------------------------------- */
:root {
  /* Surfaces — rich white family */
  --bg:        #ffffff;   /* rich white base                       */
  --surface:   #ffffff;   /* cards (lifted with border + shadow)   */
  --surface-2: #f3f3f8;   /* subtle fills (avatars, chips)         */
  --band:      #f7f7fb;   /* alternating section background        */

  /* Ink / text */
  --text:      #15151f;   /* headings + primary text (near-black)  */
  --muted-2:   #44454f;   /* secondary body text (readable gray)   */
  --muted:     #71727f;   /* labels / tertiary                     */

  /* Accent — refined indigo/violet (kept on the --lime var names
     so every existing rule picks it up automatically)             */
  --lime:      #5b57e6;
  --lime-deep: #4a45d6;
  --lime-soft: rgba(91, 87, 230, .10);

  /* Hairlines */
  --line:      rgba(20, 22, 50, .08);
  --line-2:    rgba(20, 22, 50, .14);

  /* Premium soft shadows */
  --shadow-sm: 0 1px 2px rgba(28, 30, 70, .04), 0 4px 12px rgba(28, 30, 70, .05);
  --shadow:    0 6px 24px rgba(28, 30, 70, .08);
  --shadow-lg: 0 18px 50px rgba(28, 30, 70, .12);

  /* Typography */
  --display: 'Bricolage Grotesque', Georgia, serif;
  --body:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Scale */
  --r:    clamp(16px, 2vw, 24px);
  --r-sm: 12px;
  --maxw: 1140px;
  --gut:  clamp(20px, 5vw, 48px);

  /* Fluid type scale */
  --fs-hero: clamp(2.6rem, 7vw, 5rem);
  --fs-h2:   clamp(1.9rem, 4.2vw, 3rem);
  --fs-h3:   clamp(1.25rem, 2.4vw, 1.6rem);
  --fs-body: clamp(1rem, 1.05vw + .6rem, 1.125rem);
  --fs-sm:   .9rem;
}

/* ---- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--lime); color: #fff; }

/* Accessible focus ring */
:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Layout helpers --------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(56px, 9vw, 120px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--lime); color: #fff;
  padding: 10px 16px; border-radius: 8px; font-weight: 700; z-index: 200;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ---- Typography ------------------------------------------------------- */
.eyebrow {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lime);
  display: inline-flex; align-items: center; gap: .5em;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--lime); display: inline-block;
}
.eyebrow--center { justify-content: center; }

h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; color: var(--text); }
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.2; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--muted-2); max-width: 60ch; }
p { max-width: 68ch; }
.text-lime { color: var(--lime); }
.text-muted { color: var(--muted); }
mark { background: var(--lime-soft); color: var(--lime-deep); padding: 0 .12em; border-radius: 3px; }

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .9em 1.6em; border-radius: 999px;
  font-weight: 700; font-size: 1rem; letter-spacing: -.01em;
  min-height: 48px; text-align: center;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s, color .18s;
  will-change: transform;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: linear-gradient(135deg, #6360ec, #5b57e6);
  color: #fff;
  box-shadow: 0 6px 18px rgba(91, 87, 230, .28);
}
.btn--primary:hover { background: linear-gradient(135deg, #5450df, #4a45d6); box-shadow: 0 10px 26px rgba(91, 87, 230, .38); transform: translateY(-2px); }

.btn--ghost { border: 1px solid var(--line-2); color: var(--text); background: #fff; }
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); box-shadow: var(--shadow-sm); }

.btn--wa { background: #25D366; color: #06351a; box-shadow: 0 6px 18px rgba(37,211,102,.25); }
.btn--wa:hover { background: #1ebe5b; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37,211,102,.32); }

.btn--lg { padding: 1.05em 2em; font-size: 1.08rem; min-height: 56px; }
.btn--block { width: 100%; }
/* keep primary-button text white even inside the nav (where .nav-links a sets a color) */
.nav-links a.btn--primary, .nav-cta a.btn--primary { color: #fff; }
.nav-links a.btn--primary:hover, .nav-cta a.btn--primary:hover { color: #fff; }

/* ---- Header / Nav ----------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 68px; }
.brand { display: inline-flex; align-items: baseline; gap: .35ch; font-family: var(--display); font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em; color: var(--text); }
.brand .dot { color: var(--lime); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: .95rem; color: var(--muted); transition: color .15s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-cta { display: inline-flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 10px; border: 1px solid var(--line-2); background: #fff; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; inset: 68px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 8px var(--gut) 20px;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .22s;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav .desktop-cta { display: none; }
}

/* ---- Hero ------------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(48px, 8vw, 96px); overflow: hidden; }
/* soft Mercury-style gradient mesh */
.hero::before {
  content: ""; position: absolute; inset: -25% 20% auto -15%; height: 560px;
  background:
    radial-gradient(closest-side, rgba(91,87,230,.16), transparent 70%),
    radial-gradient(closest-side, rgba(120,170,255,.12), transparent 70%);
  background-position: 0 0, 60% 20%;
  background-size: 70% 100%, 60% 90%;
  background-repeat: no-repeat;
  filter: blur(6px);
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: ""; position: absolute; inset: auto -10% -30% 40%; height: 420px;
  background: radial-gradient(closest-side, rgba(255,170,150,.10), transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero h1 { margin-top: 18px; }
.hero .lead { margin-top: 22px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { margin-top: 26px; display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: var(--fs-sm); }
.hero-trust strong { color: var(--text); }

.portrait {
  position: relative; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line); background: var(--surface-2);
  aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait .ph {
  position: absolute; inset: 0; display: grid; place-content: center; gap: 8px; text-align: center;
  color: var(--muted); font-family: var(--mono); font-size: .82rem; padding: 24px;
  background: repeating-linear-gradient(135deg, #f4f4f9, #f4f4f9 12px, #ececf4 12px, #ececf4 24px);
}
.portrait .badge {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  background: rgba(255,255,255,.85); backdrop-filter: blur(8px);
  border: 1px solid var(--line-2); border-radius: 12px; padding: 10px 14px;
  font-size: .82rem; color: var(--text); display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-sm);
}
.badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(91,87,230,.5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(91,87,230,0); } 100% { box-shadow: 0 0 0 0 rgba(91,87,230,0); } }

@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; }
  .portrait { max-width: 360px; aspect-ratio: 1/1; order: -1; }
}

/* ---- Stats / count-up ------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.stat { background: var(--surface); padding: clamp(22px, 3vw, 34px) 20px; }
.stat .num { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--lime); line-height: 1.1; letter-spacing: -.03em; white-space: nowrap; font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
.stat .label { margin-top: 10px; font-size: var(--fs-sm); color: var(--muted); }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---- Section headers -------------------------------------------------- */
.section-head { max-width: 64ch; margin-bottom: clamp(28px, 4vw, 52px); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; color: var(--muted-2); }

/* ---- Cards / grids ---------------------------------------------------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.card .ico {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-content: center;
  background: var(--lime-soft); color: var(--lime); margin-bottom: 16px; font-size: 1.3rem;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted-2); font-size: 1rem; }

/* numbered "what's inside" cards */
.module .n { font-family: var(--mono); color: var(--lime); font-size: .85rem; letter-spacing: .1em; }

/* ---- Problem / agitate band ------------------------------------------ */
.band { background: var(--band); border-block: 1px solid var(--line); }
.checklist { list-style: none; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted-2); }
.checklist li::before { content: "✕"; color: #e5484d; font-weight: 700; margin-top: 1px; }
.checklist--yes li::before { content: "✓"; color: var(--lime); }

/* ---- Mechanism / steps ------------------------------------------------ */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.step .num-badge {
  counter-increment: step; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--lime); color: var(--lime); background: var(--lime-soft);
  display: grid; place-content: center; font-family: var(--mono); font-weight: 700;
}
.step .num-badge::before { content: counter(step, decimal-leading-zero); }

/* ---- Proof / case ----------------------------------------------------- */
.case {
  background: linear-gradient(180deg, #ffffff, #fafaff);
  border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow);
}
.case-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 24px; }
.case-stats .num { font-family: var(--display); font-weight: 800; font-size: 1.9rem; color: var(--lime); white-space: nowrap; font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
.case-stats .label { font-size: .85rem; color: var(--muted); }

/* testimonial carousel */
.carousel { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform .5s ease; }
.testimonial { flex: 0 0 100%; padding: 4px; }
.testimonial .quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(24px, 4vw, 40px); font-size: 1.2rem; line-height: 1.5; box-shadow: var(--shadow-sm); }
.testimonial .quote::before { content: "“"; font-family: var(--display); color: var(--lime); font-size: 3rem; line-height: 0; vertical-align: -.4em; margin-right: .1em; }
.testimonial .who { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.testimonial .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--lime-soft); border: 1px solid var(--line-2); display: grid; place-content: center; color: var(--lime); font-weight: 700; }
.testimonial .who .meta b { display: block; }
.testimonial .who .meta span { color: var(--muted); font-size: .85rem; }
.carousel-dots { display: flex; gap: 8px; justify-content: center; margin-top: 22px; }
.carousel-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); transition: .2s; padding: 0; }
.carousel-dots button[aria-selected="true"] { background: var(--lime); width: 22px; border-radius: 4px; }

/* review grid cards (premium, Mercury-style soft cards) */
.card.review { display: flex; flex-direction: column; }
.card.review .quote-mark { font-family: var(--display); color: var(--lime); font-size: 2.4rem; line-height: .5; }
.card.review .stars { color: #f5a623; letter-spacing: 3px; font-size: .95rem; margin-bottom: 4px; }
.card.review blockquote { color: var(--muted-2); font-size: 1.02rem; line-height: 1.55; margin: 8px 0 0; }
.card.review .who { margin-top: auto; padding-top: 20px; display: flex; align-items: center; gap: 12px; }
.card.review .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--lime-soft); color: var(--lime); display: grid; place-content: center; font-weight: 700; flex: 0 0 42px; }
.card.review .who .meta b { display: block; color: var(--text); }
.card.review .who .meta span { color: var(--muted); font-size: .85rem; }

/* placeholder note for things owner must add */
.placeholder-note {
  border: 1px dashed var(--line-2); border-radius: var(--r-sm);
  padding: 14px 16px; color: var(--muted); font-family: var(--mono); font-size: .82rem;
  background: #fafaff;
}

/* ---- Offer ------------------------------------------------------------ */
.offer { background: linear-gradient(160deg, #f3f2ff, #ffffff 70%); border: 1px solid var(--lime-soft); border-radius: var(--r); padding: clamp(26px, 4vw, 48px); box-shadow: var(--shadow); }
.value-stack { list-style: none; padding: 0; display: grid; gap: 14px; margin: 22px 0; }
.value-stack li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted-2); }
.value-stack li::before { content: "✓"; color: var(--lime); font-weight: 800; }
.price-line { font-family: var(--mono); color: var(--muted); }
.price-line b { color: var(--text); font-size: 1.1rem; }

/* ---- FAQ -------------------------------------------------------------- */
.faq { display: grid; gap: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 4px 22px; box-shadow: var(--shadow-sm); transition: box-shadow .2s, border-color .2s; }
.faq details[open] { border-color: var(--line-2); box-shadow: var(--shadow); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 0; font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: var(--text); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--lime); font-size: 1.5rem; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 20px; color: var(--muted-2); }

/* ---- CTA band --------------------------------------------------------- */
.cta-band { position: relative; text-align: center; border-radius: var(--r); overflow: hidden; background: linear-gradient(135deg, #f4f3ff, #eef2ff); border: 1px solid var(--lime-soft); padding: clamp(40px, 6vw, 72px) var(--gut); box-shadow: var(--shadow); }
.cta-band::before { content: ""; position: absolute; inset: auto -10% -60% 30%; height: 320px; background: radial-gradient(closest-side, rgba(91,87,230,.16), transparent 70%); }
.cta-band > * { position: relative; }
.cta-band .hero-cta { justify-content: center; }

/* ---- Forms ------------------------------------------------------------ */
.form-wrap { max-width: 560px; margin-inline: auto; }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-lg); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .92rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.field .req { color: var(--lime); }
.field input, .field select, .field textarea {
  width: 100%; background: #fcfcfe; border: 1px solid var(--line-2); color: var(--text);
  border-radius: var(--r-sm); padding: 13px 15px; font-size: 1rem; transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--lime); box-shadow: 0 0 0 3px var(--lime-soft); outline: none; background: #fff; }
.field input::placeholder, .field textarea::placeholder { color: #9a9aa6; }
.field select { appearance: none; 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='%2371727f' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 42px; }
.field .err-msg { display: none; color: #e5484d; font-size: .82rem; margin-top: 6px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #e5484d; }
.field.invalid .err-msg { display: block; }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; color: var(--muted-2); }
.consent input { width: 20px; height: 20px; flex: 0 0 20px; margin-top: 2px; accent-color: var(--lime); }
.consent a { color: var(--lime); text-decoration: underline; }

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-microcopy { text-align: center; font-size: .85rem; color: var(--muted); margin-top: 14px; }
.form-microcopy.error { color: #e5484d; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

/* trust row under form */
.mini-trust { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-top: 22px; color: var(--muted); font-size: .82rem; }
.mini-trust span { display: inline-flex; align-items: center; gap: 6px; }

/* ---- Thank you -------------------------------------------------------- */
.ty-hero { text-align: center; max-width: 640px; margin-inline: auto; }
.ty-check { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 26px; display: grid; place-content: center; background: var(--lime-soft); color: var(--lime); border: 1px solid var(--lime); font-size: 2.4rem; animation: pop .5s ease; }
@keyframes pop { 0% { transform: scale(.6); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.ty-steps { display: grid; gap: 14px; text-align: left; max-width: 520px; margin: 36px auto; }
.ty-steps .step-row { display: flex; gap: 14px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 16px 18px; box-shadow: var(--shadow-sm); }
.ty-steps .n { font-family: var(--mono); color: var(--lime); font-weight: 700; }

/* ---- Footer (soft tinted white — harmonised with the main color) ------ */
.site-footer { border-top: 1px solid var(--line); background: var(--band); padding-block: clamp(40px, 6vw, 64px) 32px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.footer-grid h4 { font-family: var(--mono); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-grid a { color: var(--muted-2); display: inline-block; padding: 4px 0; transition: color .15s; }
.footer-grid a:hover { color: var(--lime); }
.footer-about p { color: var(--muted); font-size: .92rem; margin-top: 12px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-about { grid-column: 1 / -1; } }

/* ---- Reveal on scroll ------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---- Utilities -------------------------------------------------------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.divider { height: 1px; background: var(--line); border: 0; margin-block: 0; }
.tagpill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); border: 1px solid var(--line-2); border-radius: 999px; padding: 7px 14px; background: #fff; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
