/* ============================================================
   FIRST BATCH CO — style.css
   Type + hierarchy borrowed from grabbly.in (Inter, 800 heads,
   black on white/cream, pill buttons). Logo: Anonymous Pro.
   Theme: "Mixed Batch" — four vivid tints (butter/peach/mint/
   lilac) used as the theme across all pages, not one repeated
   accent. Each page/section picks one of the four washes;
   pillar cards and hero imagery show all four together.
   ============================================================ */

:root {
  --black:       #22271F;
  --text:        #262B21;
  --muted:       #6E7566;
  --border:      #E7E0CC;
  --white:       #FFFFFF;
  --cream:       #FCF8ED;   /* neutral for small UI bits (badges, row hover) */
  --coral:       #FFE1D1;   /* legacy alias, kept = peach */
  --accent:      #E0603A;   /* generic inline links / default kicker */
  --accent-soft: #FFE1D1;   /* light peach tint */
  --clay:        #9A5236;   /* cert badges */
  --yellow:      #FFDE45;
  --butter:      #FFF3C4;   /* the four core tints — used as page/section washes */
  --peach:       #FFE1D1;
  --mint:        #DFF0E2;
  --lilac:       #E8E3F5;
  --accent-butter: #C9971A; /* mustard */
  --accent-peach:  #E0603A; /* coral/tomato */
  --accent-mint:   #2F8F5B; /* grass green */
  --accent-lilac:  #7C6BC4; /* violet */
  --radius-card: 20px;
  --radius-btn:  50px;
  --shadow:       0 2px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.14);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-logo: 'Anonymous Pro', 'Courier New', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--black); color: var(--white); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

h1 { font-size: clamp(44px, 7.5vw, 84px); font-weight: 800; line-height: 1.04; letter-spacing: -0.03em; color: var(--black); }
h2 { font-size: clamp(32px, 4.5vw, 54px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; color: var(--black); }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 700; line-height: 1.25; color: var(--black); }
p  { font-size: 16px; line-height: 1.65; }

a { color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; background: none; }
input, select, textarea { font-family: inherit; }

/* ── NAV ───────────────────────────────────────────────────── */
/* ================= NAVBAR ================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner{
    width:100%;
    max-width:none;
    height:68px;

    display:flex;
    align-items:center;

    padding:0 48px;
}

.logo {
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
  margin-right: auto;
}

.nav-links{
    display:flex;
    align-items:center;
    list-style:none;

    flex:1;

    justify-content:flex-end;

    gap:36px;

    margin:0;
    padding:0;
    margin-left:220px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color .15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
}

.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  font-weight: 600 !important;
  transition: transform .15s, background .15s !important;
}

.nav-cta:hover {
  background: #333;
  transform: translateY(-1px);
}

.nav-partner{
    margin-left:72px;
    padding-left:28px;
    border-left:1px solid var(--border);
}

.nav-partner a {
  font-family: var(--font-logo);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  margin: 5px auto;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-block; font-weight: 600; font-size: 16px;
  text-decoration: none; border-radius: var(--radius-btn);
  padding: 15px 32px; transition: transform .15s, background .15s, box-shadow .15s;
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: #333; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-ghost {
  background: transparent; color: var(--black);
  box-shadow: inset 0 0 0 1.5px var(--black);
}
.btn-ghost:hover { background: var(--black); color: var(--white); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  background: var(--cream);
  padding: 160px 0 90px;
  border-bottom: none;
  border-top: 6px solid;
  border-image: linear-gradient(90deg, var(--butter), var(--peach), var(--mint), var(--lilac)) 1;
}
/* inner pages keep a tinted hero via wash-* classes */
.hero .hero-sub { color: var(--muted); }
.mix-dots { display: flex; gap: 7px; margin: 0 0 18px; }
.mix-dots span { width: 11px; height: 11px; border-radius: 4px; border: 1px solid rgba(34,39,31,0.2); }
.mix-dots span:nth-child(1) { background: var(--butter); }
.mix-dots span:nth-child(2) { background: var(--peach); }
.mix-dots span:nth-child(3) { background: var(--mint); }
.mix-dots span:nth-child(4) { background: var(--lilac); }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 48px; align-items: center;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-logo);
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 26px;
}
.hero-kicker::before { content: ''; width: 26px; height: 2px; background: var(--accent); }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: clamp(1.02rem, 1.8vw, 1.2rem); color: var(--muted);
  max-width: 600px; margin: 26px 0 38px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art { display: flex; justify-content: center; }
.hero-art svg { width: 100%; max-width: 420px; height: auto; }

/* Page hero (inner pages) */
.page-hero { padding: 140px 0 64px; }
.page-hero h1 { font-size: clamp(38px, 5.5vw, 64px); max-width: 820px; }
.page-hero .hero-sub { margin-bottom: 0; }

/* Wash utilities — each page/section picks one of the four tints
   instead of the whole site sharing a single accent wash. */
.wash-butter { background: var(--butter) !important; }
.wash-peach  { background: var(--peach)  !important; }
.wash-mint   { background: var(--mint)   !important; }
.wash-lilac  { background: var(--lilac)  !important; }

/* ── SECTIONS ──────────────────────────────────────────────── */
.section { padding: 90px 0; }
.section-cream { background: var(--cream); }
.section-kicker {
  font-family: var(--font-logo);
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.section h2 { max-width: 720px; margin-bottom: 18px; }
.section-lead { font-size: 1.12rem; color: var(--muted); max-width: 620px; margin-bottom: 28px; }
.pillar-note { margin-top: 32px; font-size: 1rem; color: var(--muted); }
.pillar-note a { color: var(--accent); font-weight: 600; text-decoration: none; }
.pillar-note a:hover { text-decoration: underline; }

/* ── PILLAR FLOW (homepage) ────────────────────────────────── */
.pillar-flow {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px;
}
.pillar {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 30px 26px; position: relative; transition: box-shadow .2s, transform .2s;
}
.pillar:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.pillar--butter { background: var(--butter); border: none; }
.pillar--peach  { background: var(--peach);  border: none; }
.pillar--mint   { background: var(--mint);   border: none; }
.pillar--lilac  { background: var(--lilac);  border: none; }
.pillar-icon { margin-bottom: 18px; }
.pillar-icon svg { width: 44px; height: 44px; }
.pillar-step {
  font-family: var(--font-logo); font-size: 12.5px; font-weight: 700;
  color: var(--accent); letter-spacing: 0.05em; margin-bottom: 10px;
}
.pillar h3 { font-size: 1.1rem; margin-bottom: 10px; }
.pillar p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.pillar-arrow {
  position: absolute; right: -16px; top: 50%; transform: translateY(-50%);
  color: var(--accent); font-size: 18px; z-index: 2; font-weight: 700;
}
/* each pillar keeps its own accent instead of one repeated green */
.pillar--butter .pillar-step, .pillar--butter .pillar-arrow { color: var(--accent-butter); }
.pillar--peach  .pillar-step, .pillar--peach  .pillar-arrow { color: var(--accent-peach); }
.pillar--mint   .pillar-step, .pillar--mint   .pillar-arrow { color: var(--accent-mint); }
.pillar--lilac  .pillar-step, .pillar--lilac  .pillar-arrow { color: var(--accent-lilac); }

/* ── PROOF CARDS ───────────────────────────────────────────── */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.proof-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 32px 28px; box-shadow: var(--shadow);
}
.proof-card.pillar--butter { background: var(--butter); border: none; }
.proof-card.pillar--peach  { background: var(--peach);  border: none; }
.proof-card.pillar--mint   { background: var(--mint);   border: none; }
.proof-card.pillar--lilac  { background: var(--lilac);  border: none; }
.proof-tag {
  display: inline-block; font-family: var(--font-logo);
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--accent); background: var(--accent-soft);
  padding: 4px 12px; border-radius: var(--radius-btn); margin-bottom: 18px;
}
.proof-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.proof-card p { font-size: 14.5px; color: var(--muted); }

/* ── LANES (What We Do) ────────────────────────────────────── */
.lane {
  display: grid; grid-template-columns: 110px 1fr; gap: 32px;
  padding: 48px 0; border-top: 1px solid var(--border);
  align-items: start;
}
.lane:last-of-type { border-bottom: 1px solid var(--border); }
.lane-icon svg { width: 56px; height: 56px; }
.lane-num {
  font-family: var(--font-logo); font-size: 15px; font-weight: 700;
  color: var(--accent); margin-top: 10px;
}
.lane h3 { font-size: 1.55rem; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 12px; }
.lane p { font-size: 1.05rem; color: var(--muted); max-width: 640px; }

/* ── STEPS (How It Works) ──────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.step {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 36px 30px; box-shadow: var(--shadow);
}
.step-num {
  width: 46px; height: 46px; border-radius: 14px; background: var(--black);
  color: var(--white); font-family: var(--font-logo); font-weight: 700; font-size: 20px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.step h3 { font-size: 1.25rem; margin-bottom: 12px; }
.step p { font-size: 15px; color: var(--muted); }

.callout {
  margin-top: 48px; padding: 32px 36px; border-radius: var(--radius-card);
  background: var(--peach); border: 1px solid #F2C6A5;
  font-size: 1.2rem; font-weight: 600; letter-spacing: -0.01em;
  color: var(--black); max-width: 760px;
}

/* ── STATS BAND ────────────────────────────────────────────── */
.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px;
}
.stat { border-left: 3px solid var(--accent); padding-left: 20px; }
.stat:nth-child(4n+1) { border-color: var(--accent-butter); }
.stat:nth-child(4n+2) { border-color: var(--accent-mint); }
.stat:nth-child(4n+3) { border-color: var(--accent-lilac); }
.stat:nth-child(4n)   { border-color: var(--accent-peach); }
.stat-num { font-family: var(--font-logo); font-size: 2.5rem; font-weight: 700; line-height: 1.1; color: var(--black); }
.stat-label { font-size: 14px; color: var(--muted); margin-top: 4px; }

/* ── META CHIPS ────────────────────────────────────────────── */
.meta-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.meta-chip {
  font-size: 13.5px; font-weight: 500; padding: 8px 16px; border-radius: var(--radius-btn);
  border: 1.5px solid var(--black); background: var(--cream); color: var(--text);
}

/* ── TABLE + DATABASE ──────────────────────────────────────── */
.db-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin: 40px 0 18px;
}
.db-search {
  flex-basis: 100%; display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-btn);
  padding: 12px 18px; margin-bottom: 4px;
}
.db-search svg { width: 17px; height: 17px; color: var(--muted); flex-shrink: 0; }
.db-search input {
  border: none; outline: none; font-size: 15px; width: 100%; background: none; color: var(--text);
}
.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-dropdown { position: relative; }
.filter-btn {
  font-size: 14px; font-weight: 500;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-btn);
  padding: 9px 18px; display: flex; align-items: center; gap: 8px;
  transition: border-color .15s;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--black); }
.clear-filters-btn {
  font-size: 14px; font-weight: 600; color: var(--accent);
  padding: 9px 4px; text-decoration: underline; text-underline-offset: 2px;
}
.clear-filters-btn.hidden { display: none; }
.filter-badge {
  background: var(--accent); color: var(--white); font-size: 11px; font-weight: 700;
  border-radius: var(--radius-btn); padding: 1px 7px;
}
.fchev { font-size: 10px; color: var(--muted); }
.filter-panel {
  display: none; position: absolute; top: calc(100% + 8px); left: 0; z-index: 50;
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--shadow-hover); padding: 8px; min-width: 230px;
  max-height: 320px; overflow-y: auto;
}
.filter-panel.open { display: block; }
.filter-item {
  display: flex; align-items: center; gap: 10px; padding: 8px 12px;
  font-size: 14px; border-radius: 8px; cursor: pointer;
}
.filter-item:hover { background: var(--cream); }
.filter-checkbox {
  width: 16px; height: 16px; border: 1.5px solid var(--border); border-radius: 4px;
  flex-shrink: 0; transition: background .1s, border-color .1s;
}
.filter-item.selected .filter-checkbox { background: var(--accent); border-color: var(--accent); }
.count-label { font-size: 14px; color: var(--muted); }

.table-wrap {
  position: relative; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-card); overflow-x: auto; overflow-y: auto;
  -webkit-overflow-scrolling: touch; max-height: 640px;
}
.table-locked { max-height: 460px; overflow: hidden; }
.table-locked table { filter: blur(5px); pointer-events: none; user-select: none; }

table { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 1000px; }
thead th {
  position: sticky; top: 0; background: var(--black); color: var(--white);
  font-family: var(--font-logo); font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  text-align: left; padding: 14px 16px; white-space: nowrap; z-index: 5;
}
tbody td { padding: 14px 16px; border-top: 1px solid var(--border); vertical-align: top; }
tbody tr:hover { background: var(--cream); }
.td-name { font-weight: 600; min-width: 180px; }
.td-location { white-space: nowrap; }
.td-categories { max-width: 280px; }
.td-website a { color: var(--accent); text-decoration: none; }
.td-website a:hover { text-decoration: underline; }

.badge {
  display: inline-block; font-size: 11.5px; font-weight: 500;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-btn); padding: 2px 9px; margin: 2px 3px 2px 0; white-space: nowrap;
}
.badge.type { background: var(--accent-soft); border-color: transparent; color: var(--accent); font-weight: 600; }
.badge.cert { background: #F4E9E1; border-color: #E3CFC2; color: var(--clay); }
.badge.more { background: none; border-style: dashed; color: var(--accent); cursor: pointer; font-weight: 600; }
.badge.more:hover { background: var(--accent-soft); }

/* A single category entry is sometimes one long unbroken phrase rather
   than several short tags — without this, that one badge's nowrap text
   spills straight past the column into whatever sits next to it. */
.td-categories .badge { white-space: normal; word-break: break-word; max-width: 100%; }

#table-loading { padding: 60px; text-align: center; color: var(--muted); }
.link-btn {
  color: var(--accent); font-weight: 600; text-decoration: underline;
  text-underline-offset: 2px; cursor: pointer; font-size: inherit;
}

.lock-overlay {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; text-align: center; padding: 32px;
  background: linear-gradient(180deg, rgba(245,243,234,0.3), rgba(245,243,234,0.94) 70%);
}
.lock-overlay.hidden { display: none; }
.lock-overlay h3 { font-size: 1.5rem; font-weight: 800; }
.lock-overlay p { color: var(--muted); max-width: 400px; font-size: 15px; }

.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-top: 24px;
}
.pagination:empty { display: none; }
.table-locked ~ .pagination { display: none; }
.page-btn {
  font-size: 14px; font-weight: 600;
  background: var(--white); border: 1.5px solid var(--black); border-radius: var(--radius-btn);
  padding: 9px 20px; transition: background .15s, color .15s;
}
.page-btn:hover:not(:disabled) { background: var(--black); color: var(--white); }
.page-btn:disabled { opacity: 0.35; cursor: default; }
.page-info { font-size: 14px; color: var(--muted); }

/* ── MODAL ─────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(17,17,17,0.55); backdrop-filter: blur(6px);
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius-card); padding: 40px;
  width: 100%; max-width: 460px; position: relative;
}
.modal h4 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 6px; }
.modal-sub { font-size: 14.5px; color: var(--muted); margin-bottom: 24px; }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  font-size: 22px; color: var(--muted); line-height: 1;
}

/* ── FORMS ─────────────────────────────────────────────────── */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; }
.req-mark { color: #C0392B; }
.input-field, .field textarea, .field select {
  width: 100%; font-size: 15px;
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 12px;
  background: var(--white); transition: border-color .15s; color: var(--text);
}
.input-field:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--black);
}
.input-field.has-error { border-color: #C0392B; }
.field-error { display: none; font-size: 12.5px; color: #C0392B; margin-top: 5px; }
.field-error.show { display: block; }
.btn-submit { width: 100%; margin-top: 6px; }
.field-check {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
  padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 12px;
  margin-bottom: 18px; background: var(--cream);
}
.field-check input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--black); flex-shrink: 0; }
.field-check span { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.hp-wrap {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.btn-submit:disabled { opacity: 0.6; cursor: default; transform: none; }

.success-state { text-align: center; padding: 24px 0; }
.success-check {
  width: 56px; height: 56px; border-radius: 50%; background: var(--accent);
  color: var(--white); font-size: 26px; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 18px;
}
.success-state h4 { font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.success-state p { color: var(--muted); font-size: 15px; }

.form-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 44px; max-width: 620px; margin-top: 48px; box-shadow: var(--shadow);
}

/* ── PROSE (About) ─────────────────────────────────────────── */
.prose { max-width: 660px; margin-top: 40px; }
.prose p { font-size: 1.13rem; line-height: 1.75; margin-bottom: 26px; }
.prose .sig { font-family: var(--font-logo); font-weight: 700; font-size: 1.02rem; }

/* ── CTA BAND ──────────────────────────────────────────────── */
.cta-band {
  background: var(--black); color: var(--white);
  padding: 96px 0; text-align: center;
  border-top: 6px solid; border-image: linear-gradient(90deg, var(--butter), var(--peach), var(--mint), var(--lilac)) 1;
}
.cta-band h2 { color: var(--white); margin: 0 auto 20px; }
.cta-band p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 480px; margin: 0 auto 36px; }
.cta-band .btn-primary { background: var(--white); color: var(--black); }
.cta-band .btn-primary:hover { background: var(--cream); }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer { background: var(--black); color: rgba(255,255,255,0.6); padding: 56px 0 28px; }
.footer .logo { color: var(--white); font-size: 17px; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap;
  gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-tag { font-size: 13.5px; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 10px; }
.social-chip {
  width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.09); color: var(--white); transition: background .15s, transform .15s, color .15s;
}
.social-chip svg { width: 18px; height: 18px; }
.social-chip:hover { transform: translateY(-3px); }
.social-chip.chip-linkedin:hover { background: var(--lilac); color: var(--black); }
.social-chip.chip-instagram:hover { background: var(--peach); color: var(--black); }
.social-chip.chip-whatsapp:hover { background: var(--mint); color: var(--black); }
.footer-nav-title {
  font-family: var(--font-logo); font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; list-style: none; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: var(--white); }
.footer-note { font-size: 13px; margin-top: 20px; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .pillar-flow, .steps, .proof-grid { grid-template-columns: 1fr 1fr; }
  .pillar-arrow { display: none; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-art svg { max-width: 300px; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 20px 24px 28px; gap: 18px; border-bottom: 1px solid var(--border);
    margin-left: 0; width: 100%;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-partner { border-left: none; padding-left: 0; margin-left: 0; }
  .nav-cta {
    background: none; color: var(--muted) !important; font-weight: 500 !important;
    padding: 0; border-radius: 0;
  }
  .nav-cta:hover { background: none; transform: none; color: var(--black) !important; }
  .prose .sig { font-size: 0.72rem; letter-spacing: -0.01em; }
  .pillar-flow, .steps, .proof-grid { grid-template-columns: 1fr; }
  .lane { grid-template-columns: 1fr; gap: 12px; padding: 36px 0; }
  .hero { padding: 120px 0 40px; }
  .page-hero { padding: 110px 0 32px; }
  .section { padding: 40px 0; }
  .pillar-flow, .proof-grid, .steps { margin-top: 28px; }
  .form-card { padding: 28px 22px; }
  .modal { padding: 30px 22px; }
  /* iOS Safari renders position:sticky inside a border-radius + overflow:auto
     ancestor incorrectly (rows visually overlapping) — fall back to a
     non-sticky header on small screens where this combination triggers it. */
  thead th { position: static; }
}
