/* ===================== DearRecruiter landing page ===================== */
:root {
  --brand: #23a559;
  --brand-dark: #1b8546;
  --accent: #34c759;
  --ink: #14241b;
  --muted: #5e7569;
  --line: #e4ede7;
  --soft: #eef8f1;
  --bg: #ffffff;
  --bg-tint: #f5faf7;
  --shadow: 0 18px 48px rgba(20, 36, 27, 0.10);
  --shadow-sm: 0 8px 22px rgba(20, 36, 27, 0.07);
  --radius: 18px;
  --maxw: 1140px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.accent { color: var(--brand); }
.muted { color: var(--muted); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15px; line-height: 1;
  padding: 13px 20px; border-radius: 12px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .15s, border-color .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 16px 26px; font-size: 16px; border-radius: 14px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 22px rgba(35,165,89,.28); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-white { background: #fff; color: var(--brand); }
.btn-white:hover { background: #f2fbf5; }

.chrome-ic {
  width: 20px; height: 20px; border-radius: 50%; flex: 0 0 auto;
  background:
    radial-gradient(circle at 50% 50%, #1a73e8 0 30%, #fff 30% 42%, rgba(255,255,255,0) 42%),
    conic-gradient(from 90deg, #ea4335 0 .3333turn, #34a853 0 .6666turn, #fbbc05 0 1turn);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 4px 18px rgba(20,36,27,.05); }
.nav-inner { display: flex; align-items: center; gap: 20px; height: 66px; }
.brand { display: inline-flex; align-items: center; gap: 9px; }
.brand-logo { width: 34px; height: 34px; object-fit: contain; }
.brand-name { font-weight: 800; font-size: 19px; letter-spacing: -.02em; }
.nav-links { display: flex; gap: 26px; margin-left: 18px; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: 15px; transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: auto; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; margin: 4px 0; transition: .25s; }

/* ---------- hero ---------- */
.hero { padding: 64px 0 56px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(680px 420px at 78% 8%, rgba(52,199,89,.10), transparent 70%),
    radial-gradient(560px 420px at 10% 30%, rgba(35,165,89,.07), transparent 70%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--soft); color: var(--brand-dark);
  font-weight: 700; font-size: 13px; padding: 6px 13px; border-radius: 999px;
  border: 1px solid #d6ecdf;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(35,165,89,.18); }
.hero h1 { font-size: 54px; line-height: 1.05; font-weight: 900; letter-spacing: -.03em; margin: 18px 0 16px; }
.lede { font-size: 18px; color: var(--muted); margin: 0 0 28px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 18px; padding: 0; margin: 0; }
.hero-trust li { font-size: 14px; font-weight: 600; color: var(--muted); }

/* hero visual: browser mock */
.hero-visual { position: relative; }
.hero-glow { position: absolute; inset: 8% 6% -10% 6%; background: radial-gradient(closest-side, rgba(52,199,89,.22), transparent); filter: blur(28px); z-index: -1; }
.browser {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow);
}
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #f3f6f4; border-bottom: 1px solid var(--line); }
.bdot { width: 11px; height: 11px; border-radius: 50%; }
.bdot.r { background: #ff5f57; } .bdot.y { background: #febc2e; } .bdot.g { background: #28c840; }
.burl { margin-left: 8px; flex: 1; background: #fff; border: 1px solid var(--line); border-radius: 7px; padding: 5px 11px; font-size: 12px; color: var(--muted); }
.browser-body { position: relative; padding: 22px; background: #f3f2ef; min-height: 280px; }
.li-post { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px; box-shadow: var(--shadow-sm); }
.li-head { display: flex; align-items: center; gap: 11px; margin-bottom: 10px; }
.li-ava { width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto; background: linear-gradient(135deg,#d7c3b0,#b89a82); }
.li-ava.sm { width: 18px; height: 18px; }
.li-name { font-weight: 700; font-size: 14px; line-height: 1.2; }
.li-meta { font-size: 12px; color: var(--muted); }
.li-badge { margin-left: auto; background: #0a66c2; color: #fff; font-weight: 800; font-size: 13px; border-radius: 5px; padding: 3px 5px; }
.li-badge.sm { font-size: 11px; margin-left: 0; }
.li-text { font-size: 14px; margin: 0 0 8px; color: #2b3a31; }
.li-mail { color: #0a66c2; }
.li-tags { font-size: 13px; color: #0a66c2; margin: 0; }

.floating-apply {
  position: absolute; right: 22px; bottom: 20px;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--brand); color: #fff; border: none; cursor: pointer;
  font-weight: 700; font-size: 15px; font-family: inherit;
  padding: 10px 20px 10px 10px; border-radius: 999px;
  box-shadow: 0 10px 26px rgba(35,165,89,.4);
  animation: bob 2.6s ease-in-out infinite;
}
.floating-apply:hover { background: var(--brand-dark); }
.fa-logo { width: 34px; height: 34px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: 0 1px 3px rgba(0,0,0,.14); }
.fa-logo img { width: 26px; height: 26px; object-fit: contain; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* realistic LinkedIn feed mock (hero) */
.lk { position: relative; background: #f4f2ee; min-height: 320px; }
.lk-nav {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border-bottom: 1px solid #e6e6e6;
  padding: 9px 14px;
}
.lk-logo { width: 26px; height: 26px; border-radius: 6px; background: #0a66c2; color: #fff; font-weight: 800; font-size: 15px; display: grid; place-items: center; flex: 0 0 auto; }
.lk-search { display: inline-flex; align-items: center; gap: 7px; background: #edf3f8; border-radius: 6px; padding: 7px 12px; font-size: 12px; color: #5b6b7b; min-width: 150px; }
.lk-search-i { width: 12px; height: 12px; border: 1.6px solid #5b6b7b; border-radius: 50%; position: relative; }
.lk-search-i::after { content: ""; position: absolute; right: -3px; bottom: -2px; width: 5px; height: 1.6px; background: #5b6b7b; transform: rotate(45deg); }
.lk-spacer { flex: 1; }
.lk-nav-ic { width: 18px; height: 18px; border-radius: 4px; background: #e0e0e0; flex: 0 0 auto; }
.lk-me { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg,#cfe9d8,#9bd3b0); margin-left: 4px; flex: 0 0 auto; }

.lk-feed { padding: 16px; }
.lk-post { background: #fff; border: 1px solid #e6e6e6; border-radius: 10px; box-shadow: 0 1px 2px rgba(0,0,0,.06); overflow: hidden; }
.lk-post-h { display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px 6px; }
.lk-ava { width: 48px; height: 48px; border-radius: 50%; flex: 0 0 auto; background: linear-gradient(135deg,#d7c3b0,#b89a82); }
.lk-meta { min-width: 0; }
.lk-name { font-weight: 700; font-size: 14px; color: #1b1f23; line-height: 1.2; }
.lk-deg { color: #5b6b7b; font-weight: 400; }
.lk-headline { font-size: 12px; color: #5b6b7b; line-height: 1.3; }
.lk-time { font-size: 11.5px; color: #5b6b7b; }
.lk-connect { margin-left: auto; color: #0a66c2; font-weight: 700; font-size: 14px; white-space: nowrap; }
.lk-body { padding: 4px 16px 12px; }
.lk-body p { margin: 0 0 8px; font-size: 13.5px; line-height: 1.5; color: #1b1f23; }
.lk-link { color: #0a66c2; }
.lk-tags { color: #0a66c2 !important; margin-bottom: 0 !important; }
.lk-social { display: flex; align-items: center; gap: 7px; padding: 8px 16px; font-size: 12px; color: #5b6b7b; border-top: 1px solid #eee; }
.lk-emojis { letter-spacing: -2px; font-size: 12px; }
.lk-counts { margin-left: auto; }
.lk-actions { display: flex; justify-content: space-between; padding: 6px 16px 12px; font-size: 12.5px; color: #5b6b7b; font-weight: 600; }
.lk-apply { right: 18px; bottom: 16px; }

/* ---------- trust strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-tint); }
.strip-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; padding: 18px 24px; font-size: 15px; color: var(--muted); }
.strip-inner strong { color: var(--ink); }
.strip .sep { color: var(--line); }

/* ---------- generic section ---------- */
.section { padding: 84px 0; }
.section-soft { background: var(--bg-tint); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.kicker { display: inline-block; color: var(--brand); font-weight: 800; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.section-head h2 { font-size: 36px; line-height: 1.15; font-weight: 800; letter-spacing: -.02em; margin: 0 0 12px; }
.section-sub { font-size: 17px; color: var(--muted); margin: 0; }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm);
}
.step-num {
  position: absolute; top: -14px; left: 26px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--brand); color: #fff; font-weight: 800; font-size: 14px;
  display: grid; place-items: center; box-shadow: 0 6px 14px rgba(35,165,89,.35); border: 3px solid #fff;
}
.step-ic { width: 56px; height: 56px; border-radius: 16px; background: var(--soft); color: var(--brand); display: grid; place-items: center; margin: 8px 0 16px; }
.step-ic svg { width: 30px; height: 30px; }
.step-card h3 { font-size: 19px; margin: 0 0 8px; }
.step-card p { font-size: 15px; color: var(--muted); margin: 0; }

/* ---------- demo ---------- */
.section-demo { background: linear-gradient(180deg, #fff, var(--bg-tint)); }
.demo { max-width: 1000px; margin: 0 auto; }
.demo-browser { box-shadow: var(--shadow); }
/* browser split: LinkedIn feed (left) + docked side panel (right) */
.demo-stage { display: grid; grid-template-columns: 1.3fr 1fr; min-height: 540px; background: #f4f2ee; }

/* left: LinkedIn */
.demo-feed { position: relative; display: flex; flex-direction: column; border-right: 1px solid #d8d3cb; }
.demo-feed .lk-feed { padding: 16px; }
.demo-feed .lk-post { box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.lk-apply { right: 18px; bottom: 16px; }

/* right: docked side panel */
.demo-sp { background: #fff; display: flex; flex-direction: column; }
.sp-chrome { display: flex; align-items: center; gap: 7px; padding: 9px 14px; background: #faf9f7; border-bottom: 1px solid #ececec; font-size: 13px; font-weight: 700; color: var(--ink); }
.sp-icons { margin-left: auto; display: inline-flex; gap: 10px; color: #9aa6a0; font-size: 12px; }
.sp-title { display: inline-flex; align-items: center; gap: 8px; }
.sp-mark { width: 20px; height: 20px; flex: 0 0 auto; } .sp-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.sp-head { display: flex; align-items: center; gap: 9px; padding: 14px 16px; border-bottom: 1px solid var(--line); font-weight: 800; font-size: 16px; }
.sp-head .sp-mark { width: 26px; height: 26px; }
.sp-menu { margin-left: auto; color: var(--muted); font-size: 17px; }
.sp-body { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.sp-idle { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 16px; padding: 28px; color: var(--muted); }
.idle-ic { width: 60px; height: 60px; opacity: .9; } .idle-ic img { width: 100%; height: 100%; object-fit: contain; }
.sp-idle p { margin: 0; font-size: 14px; max-width: 240px; }
.sp-progress { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 28px 30px; }
.sp-email { flex: 1; display: flex; flex-direction: column; padding: 16px; }

.prog-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.prog-steps li { position: relative; display: flex; align-items: center; gap: 14px; padding: 12px 0; font-size: 15px; color: var(--muted); transition: color .3s; }
/* connecting timeline line between dots */
.prog-steps li:not(:last-child)::after {
  content: ""; position: absolute; left: 10px; top: 50%; z-index: 0;
  width: 2px; height: 100%; background: var(--line); transition: background .3s;
}
.prog-steps li.done:not(:last-child)::after { background: var(--brand); }
.prog-dot { position: relative; z-index: 1; width: 22px; height: 22px; border-radius: 50%; flex: 0 0 auto; border: 2px solid var(--line); background: #fff; display: grid; place-items: center; transition: .3s; }
.prog-steps li.active { color: var(--ink); font-weight: 700; }
.prog-steps li.active .prog-dot { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(35,165,89,.16); }
.prog-steps li.done { color: var(--ink); }
.prog-steps li.done .prog-dot { background: var(--brand); border-color: var(--brand); }
.prog-steps li.done .prog-dot::after { content: "✓"; color: #fff; font-size: 12px; font-weight: 800; }
.prog-hint { margin: 26px 0 0; font-size: 13px; line-height: 1.55; color: var(--muted); text-align: center; }

.em-field { margin-bottom: 12px; }
.em-field-msg { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.em-field label { display: block; font-size: 11.5px; font-weight: 700; color: var(--muted); margin-bottom: 5px; }
.em-input { border: 1px solid var(--line); border-radius: 9px; padding: 9px 11px; font-size: 13px; color: var(--ink); }
.em-msg { flex: 1; border: 1.5px solid var(--brand); border-radius: 9px; padding: 12px; font-size: 13px; line-height: 1.55; color: #2b3a31; background: #fff; min-height: 150px; white-space: pre-wrap; box-shadow: 0 0 0 3px rgba(35,165,89,.12); overflow: auto; }
.em-msg .cursor { display: inline-block; width: 2px; background: var(--brand); animation: blink 1s steps(1) infinite; vertical-align: text-bottom; height: 1em; }
@keyframes blink { 50% { opacity: 0; } }
.em-attach { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 9px; padding: 9px 12px; font-size: 13px; color: var(--ink); background: #f7faf8; margin: 12px 0; }
.em-actions { display: flex; gap: 10px; }
.em-btn { flex: 1; font-size: 13.5px; font-weight: 700; padding: 12px; border-radius: 11px; text-align: center; cursor: pointer; font-family: inherit; }
.em-btn.ghost { border: 1px solid var(--line); background: #fff; color: var(--ink); }
.em-btn.send { background: var(--brand); color: #fff; border: 1px solid var(--brand); }

.demo-controls { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }

/* ---------- benefits ---------- */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.benefit-ic { width: 48px; height: 48px; border-radius: 50%; background: var(--soft); color: var(--brand); display: grid; place-items: center; margin-bottom: 16px; }
.benefit-ic svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 17px; margin: 0 0 7px; }
.benefit p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ---------- compare ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 900px; margin: 0 auto; }
.compare-col { border-radius: var(--radius); padding: 28px 26px; border: 1px solid var(--line); }
.compare-col.without { background: #fff; }
.compare-col.with { background: var(--soft); border-color: #cfe9d8; }
.compare-top { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 17px; margin-bottom: 16px; }
.ct-ic { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; background: #f1d9d9; color: #c0392b; }
.ct-ic.ok { background: var(--brand); color: #fff; }
.compare-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.compare-col li { font-size: 15px; color: var(--muted); padding-left: 26px; position: relative; }
.compare-col.without li::before { content: "✕"; position: absolute; left: 0; color: #c0392b; font-weight: 700; }
.compare-col.with li { color: var(--ink); }
.compare-col.with li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 800; }

/* ---------- privacy ---------- */
.privacy-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; }
.privacy-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.privacy-list li { display: flex; gap: 15px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; box-shadow: var(--shadow-sm); }
.pl-ic { width: 44px; height: 44px; border-radius: 12px; flex: 0 0 auto; background: var(--soft); color: var(--brand); display: grid; place-items: center; }
.pl-ic svg { width: 22px; height: 22px; }
.privacy-list strong { display: block; font-size: 16px; margin-bottom: 2px; }
.privacy-list span { font-size: 14px; color: var(--muted); }

/* ---------- faq ---------- */
.faq-wrap { max-width: 780px; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 4px 20px; box-shadow: var(--shadow-sm); }
.faq-item summary { cursor: pointer; list-style: none; padding: 16px 28px 16px 0; font-weight: 700; font-size: 16px; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--brand); font-weight: 400; transition: transform .2s; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { margin: 0 0 16px; color: var(--muted); font-size: 15px; }

/* ---------- final cta ---------- */
.cta-band { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); padding: 76px 0; text-align: center; color: #fff; }
.cta-inner { max-width: 640px; }
.cta-logo { width: 64px; height: 64px; object-fit: contain; margin: 0 auto 18px; filter: drop-shadow(0 8px 18px rgba(0,0,0,.25)); }
.cta-band h2 { font-size: 38px; font-weight: 900; letter-spacing: -.02em; margin: 0 0 12px; }
.cta-band p { font-size: 18px; opacity: .92; margin: 0 0 26px; }
.cta-fine { display: block; margin-top: 16px; font-size: 13.5px; opacity: .85; }

/* ---------- legal pages (privacy / terms) ---------- */
.legal { padding: 56px 0 76px; }
.legal-head { max-width: 780px; margin: 0 auto 14px; }
.legal-head h1 { font-size: 38px; font-weight: 900; letter-spacing: -.02em; margin: 0 0 10px; }
.legal-updated { color: var(--muted); font-size: 14px; }
.legal-body { max-width: 780px; margin: 0 auto; }
.legal-body h2 { font-size: 21px; font-weight: 800; letter-spacing: -.01em; margin: 36px 0 10px; }
.legal-body h3 { font-size: 16px; font-weight: 700; margin: 22px 0 6px; }
.legal-body p, .legal-body li { font-size: 15.5px; line-height: 1.75; color: #38473e; }
.legal-body ul { padding-left: 22px; margin: 8px 0 16px; }
.legal-body li { margin-bottom: 7px; }
.legal-body a { color: var(--brand); text-decoration: underline; }
.legal-body strong { color: var(--ink); }
.legal-body code { background: var(--soft); color: var(--brand-dark); padding: 1px 6px; border-radius: 5px; font-size: 13.5px; }
.legal-note { background: var(--soft); border: 1px solid #d5ebde; border-radius: 14px; padding: 16px 20px; margin: 22px 0; font-size: 14.5px; color: #38473e; }
.legal-toc { background: #f7faf8; border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; margin: 24px 0 34px; }
.legal-toc h4 { margin: 0 0 10px; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.legal-toc ol { margin: 0; padding-left: 20px; columns: 2; gap: 24px; }
.legal-toc a { color: var(--ink); text-decoration: none; font-size: 14px; line-height: 1.9; }
.legal-toc a:hover { color: var(--brand); }
@media (max-width: 620px) { .legal-toc ol { columns: 1; } .legal-head h1 { font-size: 30px; } }

/* ---------- footer ---------- */
.footer { background: #fff; color: var(--muted); padding: 54px 0 28px; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1.7fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.footer .brand-name { color: var(--ink); }
.footer-brand p { margin: 14px 0 0; font-size: 14px; max-width: 320px; color: var(--muted); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-cols h4 { color: var(--ink); font-size: 14px; margin: 0 0 14px; }
.footer-cols a { display: block; font-size: 14px; color: var(--muted); margin-bottom: 9px; transition: color .15s; }
.footer-cols a:hover { color: var(--brand); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 8px; }

/* ---------- scroll reveal (progressive enhancement: only hide when JS is on) ---------- */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .floating-apply { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .hero h1 { font-size: 42px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps, .benefits-grid { grid-template-columns: 1fr 1fr; }
  .demo { max-width: 520px; }
  .demo-stage { grid-template-columns: 1fr; min-height: 0; }
  .demo-feed { border-right: none; border-bottom: 1px solid #d8d3cb; }
  .compare, .privacy-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 66px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 24px 18px; margin: 0;
  }
  .nav.open .nav-cta { display: block; position: absolute; top: 100%; }
  .section { padding: 60px 0; }
  .hero h1 { font-size: 34px; }
  .section-head h2, .cta-band h2 { font-size: 28px; }
  .steps, .benefits-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 30px; }
  .lede { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
}
