/* Blanks landing — ink navy + warm paper, editorial. Palette vars from general.css. */

:root {
  --green:       var(--color-green-500);   /* #14213D ink navy */
  --green-deep:  var(--color-green-700);   /* #0C1528 */
  --mint:        var(--color-green-400);   /* #C5D4E8 soft highlight */
  --ivory:       #F7F5F1;
  --beige:       #EEEAE3;
  --beige-2:     #E7E2D9;
  --ink:         #14181F;
  --muted:       #5C6470;
  --line:        #DDD8CF;
  --line-strong: #D0C9BD;
  --amber:       #9A6B1F;
  --amber-bg:    #F5EEDA;
  --gold:        #8B7355;
  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body.blanks-landing {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.blanks-landing h1,
body.blanks-landing h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}
body.blanks-landing h1 em,
body.blanks-landing h2 em {
  font-style: italic;
  color: var(--green);
}

.inner { max-width: 68rem; margin: 0 auto; }
.inner.narrow { max-width: 44rem; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.9rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 38rem;
  margin-top: 1rem;
}

/* ── Logo ── */
.logo { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--ink); }
.logo-tile {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green); color: var(--ivory);
  font-family: var(--serif); font-style: italic; font-size: 1.05rem;
  border-radius: 7px; flex-shrink: 0;
}
.logo-tile.sm { width: 26px; height: 26px; font-size: 0.92rem; }
.logo-word { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; letter-spacing: -0.01em; }

/* ── Nav ── */
nav.blanks-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 3rem;
  background: rgba(247, 245, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.88rem; font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green); color: var(--ivory);
  padding: 0.55rem 1.2rem; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600; text-decoration: none;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--green-deep); }
.nav-mobile-toggle {
  display: none; background: transparent; border: 1px solid var(--line-strong);
  color: var(--ink); border-radius: 8px; padding: 0.45rem; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-burger {
  position: relative;
  width: 18px;
  height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nav-burger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(5.25px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-5.25px) rotate(-45deg); }
.nav-links-cta { display: none; }
@media (max-width: 900px) {
  nav.blanks-nav { padding: 0.75rem 1.15rem; }
  .nav-cta-desktop { display: none; }
  .nav-mobile-toggle { display: flex; min-width: 42px; min-height: 42px; }
  .nav-links {
    display: none;
  }
  nav.blanks-nav.mobile-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(247, 245, 241, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.5rem 1.15rem 1.35rem;
    border-bottom: 1px solid var(--line);
    gap: 0.15rem;
    box-shadow: 0 18px 40px -24px rgba(20, 33, 61, 0.25);
  }
  nav.blanks-nav.mobile-open .nav-links a {
    display: block;
    padding: 0.85rem 0.2rem;
    font-size: 1rem;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }
  nav.blanks-nav.mobile-open .nav-links li:last-child a { border-bottom: none; }
  .nav-links-cta {
    display: block;
    padding-top: 0.55rem;
  }
  nav.blanks-nav.mobile-open .nav-links-cta .nav-cta {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.2rem;
    font-size: 0.95rem;
    border-bottom: none;
  }
  body.nav-locked { overflow: hidden; }
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 4rem;
  align-items: center;
  max-width: 76rem;
  margin: 0 auto;
  padding: 9.5rem 3rem 6rem;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 1.3rem;
}
.hero-sub {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.hero-note { font-size: 0.85rem; color: var(--muted); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.6rem; border-radius: 9px;
  font-size: 0.92rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
  border: none; transition: all 0.15s;
  font-family: var(--sans);
}
.btn-primary { background: var(--green); color: var(--ivory); }
.btn-primary:hover { background: var(--green-deep); }
.btn-primary:disabled { opacity: 0.6; cursor: default; }
.btn-ghost { background: transparent; color: var(--green); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--green); background: rgba(20, 33, 61, 0.04); }

/* ── Hero panel (control panel mock) ── */
.hero-panel { min-width: 0; }
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 60px -24px rgba(20, 33, 61, 0.18);
  overflow: hidden;
}
.panel-head {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.95rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.panel-title { font-size: 0.86rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.panel-sub { font-size: 0.72rem; color: var(--muted); }
.panel-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  padding: 1rem 1.25rem 0.4rem;
}
.pstat {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
}
.pstat-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem; font-weight: 600; color: var(--green);
  line-height: 1.15;
}
.pstat-label { font-size: 0.68rem; color: var(--muted); line-height: 1.4; display: block; margin-top: 0.1rem; }

.queue { padding: 0.9rem 1.25rem 1.15rem; }
.queue-head {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.76rem; font-weight: 600; color: var(--ink);
  margin-bottom: 0.6rem;
}
.queue-flag {
  font-size: 0.66rem; font-weight: 600; color: var(--amber);
  background: var(--amber-bg); border: 1px solid #E5D6B8;
  padding: 0.1rem 0.5rem; border-radius: 20px;
}
.queue-hidden { margin-left: auto; font-size: 0.68rem; font-weight: 400; color: var(--muted); }
.qrow {
  display: flex; align-items: baseline; gap: 0.7rem;
  padding: 0.55rem 0.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}
.qrow.attention { background: #F7F1E4; }
.qstatus {
  flex-shrink: 0; width: 4.4rem;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.qstatus.ok   { color: var(--green); }
.qstatus.warn { color: var(--amber); }
.qstatus.done { color: #7A8490; }
.qname { font-weight: 600; color: var(--ink); flex-shrink: 0; }
.qdesc { color: var(--muted); font-size: 0.74rem; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.qaction {
  margin-left: auto; flex-shrink: 0;
  font-size: 0.7rem; font-weight: 600; color: var(--green);
  border: 1px solid var(--line-strong); border-radius: 7px;
  padding: 0.14rem 0.6rem;
}

/* ── Sections ── */
section { padding: 5.5rem 3rem; }
section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.18; }

/* ── How ── */
.how { background: var(--beige); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 3rem;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem 1.4rem;
}
.step-num {
  font-family: var(--serif); font-style: italic;
  font-size: 0.95rem; color: var(--green);
  display: block; margin-bottom: 0.8rem;
}
.step h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--ink); }
.step p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

.setup-note {
  margin-top: 2.6rem;
  background: var(--green);
  color: var(--ivory);
  border-radius: 14px;
  padding: 2rem 2.2rem;
}
.setup-note h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.3rem; margin-bottom: 0.6rem;
  color: var(--mint);
}
.setup-note p { font-size: 0.95rem; line-height: 1.72; color: rgba(247, 245, 241, 0.85); max-width: 52rem; }

/* ── Trust ── */
.trust-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  gap: 3.5rem; margin-top: 3rem; align-items: start;
}
.tpoint { padding: 1.4rem 0; border-top: 1px solid var(--line); }
.tpoint:first-child { border-top: none; padding-top: 0; }
.tpoint h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.45rem; }
.tpoint p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.4rem;
  box-shadow: 0 18px 44px -20px rgba(20, 33, 61, 0.16);
}
.rc-head { font-size: 0.92rem; font-weight: 600; margin-bottom: 0.9rem; }
.rc-flag {
  background: var(--amber-bg); border: 1px solid #E5D6B8;
  border-radius: 10px; padding: 0.75rem 0.9rem; margin-bottom: 0.8rem;
}
.rc-flag-title { font-size: 0.76rem; font-weight: 700; color: var(--amber); display: block; margin-bottom: 0.25rem; }
.rc-flag p { font-size: 0.79rem; color: var(--ink); line-height: 1.55; }
.rc-quote {
  font-family: var(--serif); font-style: italic;
  font-size: 0.86rem; color: var(--muted); line-height: 1.6;
  border-left: 2px solid var(--line-strong);
  padding-left: 0.85rem; margin-bottom: 0.8rem;
}
.rc-quote span { font-style: normal; font-family: var(--sans); font-size: 0.72rem; }
.rc-suggest {
  background: var(--ivory); border: 1px solid var(--line);
  border-radius: 10px; padding: 0.75rem 0.9rem; margin-bottom: 0.9rem;
}
.rc-suggest p { font-size: 0.8rem; color: var(--ink); line-height: 1.55; }
.rc-suggest strong { color: var(--green); }
.rc-btn {
  width: 100%; border: none; cursor: default;
  background: var(--green); color: var(--ivory);
  font-family: var(--sans); font-size: 0.85rem; font-weight: 600;
  padding: 0.7rem 1rem; border-radius: 9px;
}

/* ── Why ── */
.why { background: var(--beige); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  margin-top: 3rem;
}
.wcard {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 1.6rem 1.6rem;
}
.wcard h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 0.5rem; }
.wcard p { font-size: 0.9rem; color: var(--muted); line-height: 1.68; }

.compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-top: 14px;
}
.compare-col {
  border: 1px solid var(--line); border-radius: 12px;
  padding: 1.5rem 1.6rem; background: #fff;
}
.compare-col.us { background: var(--green); border-color: var(--green); }
.compare-col h4 {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1rem;
}
.compare-col.us h4 { color: var(--mint); }
.compare-col ul { list-style: none; }
.compare-col li {
  font-size: 0.89rem; color: var(--muted); line-height: 1.55;
  padding: 0.42rem 0 0.42rem 1.4rem; position: relative;
}
.compare-col li::before { content: '—'; position: absolute; left: 0; color: var(--line-strong); }
.compare-col.us li { color: rgba(247, 245, 241, 0.92); }
.compare-col.us li::before { content: '✓'; color: var(--mint); }

/* ── Founders ── */
.founders {
  background: var(--beige);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.founders-head { max-width: 36rem; }
.founders-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 3rem 3.5rem;
  margin-top: 2.6rem;
  align-items: start;
}
.founders-story {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding-top: 0.35rem;
}
.founders-story p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}
.founders-people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 44px -24px rgba(20, 33, 61, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px -20px rgba(20, 33, 61, 0.22);
}
.fcard-photo-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--beige-2);
}
.fcard-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.fcard-body { padding: 1.15rem 1.2rem 1.35rem; }
.fcard-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.fcard-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.65rem;
}
.fcard-bio {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── CTA ── */
.cta-section { background: var(--beige); border-top: 1px solid var(--line); text-align: center; padding-bottom: 6.5rem; }
.cta-section h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
.cta-lead { color: var(--muted); font-size: 1rem; margin: 1rem auto 2.4rem; max-width: 32rem; }
.cta-form { max-width: 32rem; margin: 0 auto; text-align: left; }
.cta-form-grid { display: grid; gap: 1rem; }
.cta-form-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 1.4rem; }
.form-label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.cta-form .form-input {
  background: #fff;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  border-radius: 9px;
  font-size: 0.95rem;
}
.cta-form .form-input:focus { border-color: var(--green); }
.cta-form .form-input::placeholder { color: #9AA3AE; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--line);
  padding: 1.6rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  background: var(--ivory);
}
footer p { font-size: 0.8rem; color: var(--muted); }
footer a { color: var(--green); }

/* ── Cookie consent (light editorial, matches landing) ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 10000;
  background: rgba(247, 245, 241, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 40px -20px rgba(20, 33, 61, 0.18);
  animation: slideUpCookie 0.3s ease-out;
}
.cookie-banner-inner {
  max-width: 68rem;
  margin: 0 auto;
  padding: 1.1rem 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}
.cookie-banner-copy { flex: 1; min-width: 16rem; }
.cookie-banner-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.cookie-banner-text {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--muted);
}
.cookie-link {
  display: inline;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  color: var(--green);
  font: inherit;
  font-size: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.cookie-link:hover { color: var(--green-deep); }
.cookie-banner-actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
}

.cookie-modal {
  z-index: 10001;
  background: rgba(20, 33, 61, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  animation: fadeIn 0.25s ease;
}
.cookie-modal-panel {
  position: relative;
  width: min(100%, 26rem);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.75rem 1.6rem 1.5rem;
  box-shadow: 0 24px 60px -24px rgba(20, 33, 61, 0.28);
  animation: slideUp 0.3s ease;
}
.cookie-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  border: none;
  background: none;
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.35rem;
}
.cookie-modal-close:hover { color: var(--ink); }
.cookie-modal-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
  letter-spacing: -0.015em;
  padding-right: 1.5rem;
}
.cookie-modal-lead {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.35rem;
}
.cookie-pref {
  background: var(--beige);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.05rem;
  margin-bottom: 0.75rem;
}
.cookie-pref:last-of-type { margin-bottom: 1.35rem; }
.cookie-pref-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}
.cookie-pref-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.cookie-pref-badge {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(20, 33, 61, 0.08);
  padding: 0.22rem 0.55rem;
  border-radius: 20px;
}
.cookie-pref-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}
.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;
}
.cookie-toggle {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.cookie-toggle-track {
  position: relative;
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background: var(--line-strong);
  transition: background 0.2s;
}
.cookie-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(20, 33, 61, 0.2);
  transition: transform 0.2s;
}
.cookie-toggle-track.on { background: var(--green); }
.cookie-toggle-track.on .cookie-toggle-thumb { transform: translateX(18px); }
.cookie-modal-actions {
  display: flex;
  gap: 0.65rem;
}
.cookie-modal-actions .cookie-btn { flex: 1; }

@media (max-width: 768px) {
  .cookie-banner {
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .cookie-banner-inner { padding: 0.95rem 1.15rem; gap: 0.85rem; }
  .cookie-banner-copy { min-width: 0; }
  .cookie-banner-title { font-size: 0.98rem; }
  .cookie-banner-text { font-size: 0.8rem; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .cookie-btn { flex: 1; min-height: 44px; }
  .cookie-modal { padding: 0.85rem; align-items: flex-end; }
  .cookie-modal-panel {
    width: 100%;
    max-height: min(88vh, 36rem);
    border-radius: 16px 16px 12px 12px;
    padding: 1.45rem 1.2rem calc(1.2rem + env(safe-area-inset-bottom, 0));
  }
  .cookie-modal-actions { flex-direction: column-reverse; }
  .cookie-modal-actions .cookie-btn { min-height: 44px; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    padding: 8rem 1.75rem 4.5rem;
  }
  .hero-copy { max-width: 40rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; gap: 2rem; }
  .review-card { max-width: 30rem; }
  .founders-grid { grid-template-columns: 1fr; gap: 2rem; }
  .founders-people { max-width: 36rem; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 1.15rem; }
  section h2 { font-size: clamp(1.65rem, 7vw, 2.15rem); }
  .section-sub { font-size: 0.98rem; margin-top: 0.85rem; }

  .hero { padding: 6.75rem 1.15rem 3.25rem; gap: 2rem; }
  .hero-copy h1 {
    font-size: clamp(2.05rem, 8.4vw, 2.55rem);
    margin-bottom: 1rem;
  }
  .hero-sub {
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-bottom: 1rem;
  }
  .hero-actions .btn { width: 100%; min-height: 48px; }
  .hero-note { font-size: 0.82rem; line-height: 1.5; }

  .panel { border-radius: 12px; }
  .panel-head { padding: 0.85rem 1rem; }
  .panel-title { font-size: 0.82rem; }
  .panel-stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0.85rem 1rem 0.25rem;
  }
  .panel-stats .pstat:last-child { grid-column: 1 / -1; }
  .pstat { padding: 0.65rem 0.75rem; }
  .pstat-num { font-size: 1.3rem; }
  .queue { padding: 0.75rem 1rem 1rem; }
  .qrow {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "status name action"
      "desc desc desc";
    gap: 0.2rem 0.55rem;
    align-items: center;
    padding: 0.7rem 0.45rem;
  }
  .qstatus { grid-area: status; width: auto; }
  .qname {
    grid-area: name;
    font-size: 0.76rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }
  .qaction { grid-area: action; margin-left: 0; }
  .qdesc {
    grid-area: desc;
    display: block;
    white-space: normal;
    font-size: 0.7rem;
    line-height: 1.4;
    padding-left: 0.1rem;
  }
  .qrow:not(.attention) .qaction { display: none; }
  .qrow:not(.attention) {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "status name"
      "desc desc";
  }

  .steps { gap: 10px; margin-top: 2rem; }
  .step { padding: 1.2rem 1.1rem; }
  .setup-note { padding: 1.4rem 1.25rem; margin-top: 1.75rem; border-radius: 12px; }
  .setup-note h3 { font-size: 1.15rem; }
  .setup-note p { font-size: 0.9rem; }

  .trust-grid { margin-top: 2rem; }
  .tpoint { padding: 1.15rem 0; }
  .review-card { max-width: none; padding: 1.15rem; }

  .why-cards, .compare { grid-template-columns: 1fr; gap: 10px; margin-top: 2rem; }
  .wcard, .compare-col { padding: 1.25rem 1.15rem; }
  .compare { margin-top: 10px; }

  .founders-story p { font-size: 0.98rem; }
  .founders-people {
    max-width: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .fcard { border-radius: 12px; }
  .fcard:hover { transform: none; }
  .fcard-photo-wrap { aspect-ratio: 1 / 1; }
  .fcard-body { padding: 0.85rem 0.85rem 1rem; }
  .fcard-name { font-size: 1.05rem; }
  .fcard-role { font-size: 0.68rem; margin-bottom: 0.4rem; }
  .fcard-bio { font-size: 0.76rem; line-height: 1.45; }

  .cta-section { padding-bottom: 5rem; }
  .cta-section h2 { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .cta-lead { font-size: 0.95rem; margin: 0.85rem auto 1.75rem; }
  .cta-form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-form-actions .btn { width: 100%; min-height: 48px; }
  .cta-form .form-input {
    font-size: 16px; /* prevent iOS zoom */
    min-height: 48px;
  }
  .cta-form textarea.form-input { min-height: 100px; }

  footer {
    padding: 1.25rem 1.15rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .panel-stats { grid-template-columns: 1fr; }
  .panel-stats .pstat:last-child { grid-column: auto; }
  .queue-hidden { display: none; }
  .founders-people { gap: 8px; }
  .fcard-bio { display: none; }
  .hero-copy h1 { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .fcard, .fcard:hover { transition: none; transform: none; }
}
