/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Base ── */
:root {
  --bg:       #F8FAFC;
  --surface:  #FFFFFF;
  --border:   #E2E8F0;
  --text:     #0F172A;
  --text-2:   #475569;
  --text-3:   #64748B;
  --primary:  #2563EB;
  --primary-d:#1D4ED8;
  --success:  #16A34A;
  --warn:     #D97706;
  --danger:   #DC2626;
  --radius:   12px;
  --shadow:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
}

html { scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); }

/* ── Layout helpers ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-body {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 640px;
  line-height: 1.7;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ── Card ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

/* ── Icon wrap ── */
.icon-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}
.icon-blue   { background: #DBEAFE; color: #2563EB; }
.icon-green  { background: #DCFCE7; color: #16A34A; }
.icon-amber  { background: #FEF3C7; color: #D97706; }
.icon-indigo { background: #EEF2FF; color: #4F46E5; }
.icon-violet { background: #F3E8FF; color: #7C3AED; }
.icon-teal   { background: #CCFBF1; color: #0F766E; }
.icon-slate  { background: #F1F5F9; color: #475569; }

.card-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.card-text {
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background .15s, box-shadow .15s;
  line-height: 1;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-d); box-shadow: 0 4px 12px rgba(37,99,235,.25); }
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-ghost:hover { background: #EFF6FF; }
.btn-muted {
  background: #F1F5F9;
  color: var(--text-3);
  cursor: default;
  font-size: .82rem;
  padding: 8px 14px;
  border-radius: 20px;
}

/* ── Site header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #EFF6FF;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.brand-sub {
  font-size: .7rem;
  color: var(--text-3);
  font-weight: 500;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.site-nav a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.site-nav a:hover,
.site-nav a.active { color: var(--primary); background: #EFF6FF; }

.header-cta {
  flex-shrink: 0;
  margin-left: 8px;
  font-size: .82rem;
  padding: 8px 16px;
}

/* ── Hero ── */
.hero-section {
  background: linear-gradient(160deg, #F0F6FF 0%, #F8FAFC 60%);
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-content { max-width: 520px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #DBEAFE;
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 5px 12px;
}
.trust-badge svg { color: var(--success); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.hero-privacy-note {
  font-size: .78rem;
  color: var(--text-3);
  line-height: 1.6;
  max-width: 420px;
}
.hero-privacy-note strong { color: var(--text-2); }

/* ── Hero mockup ── */
.hero-visual {
  display: flex;
  justify-content: center;
}

.mockup-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.06);
  width: 100%;
  max-width: 480px;
  overflow: hidden;
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #F1F5F9;
  border-bottom: 1px solid var(--border);
}
.m-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-title-text {
  font-size: .72rem;
  color: var(--text-3);
  font-weight: 500;
  margin-left: 6px;
  flex: 1;
}

.mockup-body { padding: 16px; }

.mockup-scores {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-bottom: 14px;
  align-items: center;
}

.score-card-main {
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  color: #fff;
  min-width: 90px;
}
.score-number {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2px;
}
.score-denom { font-size: .7rem; opacity: .75; margin-bottom: 6px; }
.score-label-main { font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: .85; }
.score-bar-track {
  height: 4px;
  background: rgba(255,255,255,.25);
  border-radius: 2px;
  margin-top: 8px;
}
.score-bar-fill {
  height: 4px;
  background: #fff;
  border-radius: 2px;
  width: 82%;
}

.mockup-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.stat-cell {
  background: #F8FAFC;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
}
.stat-val {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2px;
}
.stat-val.v-warn  { color: var(--warn); }
.stat-val.v-danger { color: var(--danger); }
.stat-val.v-muted { color: var(--text-3); }
.stat-lbl { font-size: .65rem; color: var(--text-3); font-weight: 500; }

.mockup-table {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  font-size: .72rem;
}
.mockup-table-hdr {
  display: grid;
  grid-template-columns: 60px 70px 90px 1fr;
  gap: 0;
  background: #F1F5F9;
  padding: 6px 10px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .65rem;
}
.mockup-table-row {
  display: grid;
  grid-template-columns: 60px 70px 90px 1fr;
  gap: 0;
  padding: 7px 10px;
  border-top: 1px solid var(--border);
  align-items: center;
  color: var(--text-2);
}
.mockup-table-row:nth-child(even) { background: #FAFBFC; }

.sev-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: .63rem;
  font-weight: 700;
  line-height: 1.5;
}
.sev-high { background: #FEE2E2; color: #B91C1C; }
.sev-med  { background: #FEF3C7; color: #92400E; }
.sev-low  { background: #F0FDF4; color: #15803D; }

/* ── Problem section ── */
.problem-section { background: var(--surface); border-bottom: 1px solid var(--border); }

/* ── How it works ── */
.hiw-section { background: var(--bg); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(33.3% + 12px);
  right: calc(33.3% + 12px);
  height: 1px;
  background: var(--border);
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.step-text {
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── Features ── */
.features-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

/* ── Outputs ── */
.outputs-section { background: var(--bg); }

.outputs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.output-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
}
.output-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.output-card-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.output-card-text {
  font-size: .83rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── Audience ── */
.audience-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── Privacy section ── */
.privacy-trust-section {
  background: linear-gradient(160deg, #F0F9FF 0%, #F8FAFC 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.trust-card .card-title { font-size: .875rem; }

.privacy-links {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.privacy-links a {
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.privacy-links a:hover { text-decoration: underline; }

/* ── Permissions ── */
.permissions-section {
  background: var(--bg);
}

.permissions-table {
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.perm-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.perm-row:last-child { border-bottom: none; }
.perm-scope {
  padding: 16px 20px;
  background: #F8FAFC;
  border-right: 1px solid var(--border);
}
.perm-scope-name {
  font-size: .875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.perm-scope-tag {
  font-size: .7rem;
  color: var(--text-3);
  font-family: ui-monospace, monospace;
  word-break: break-all;
}
.perm-desc {
  padding: 16px 20px;
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── Screenshots ── */
.screenshots-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.screenshot-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.screenshot-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #EFF6FF 0%, #F0F9FF 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
}
.screenshot-placeholder svg { color: #93C5FD; }
.screenshot-placeholder-label {
  font-size: .75rem;
  color: var(--text-3);
  text-align: center;
  font-weight: 500;
}

/* mini sidebar mockup inside screenshot cards */
.mini-sidebar {
  width: 88%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  font-size: .65rem;
  color: var(--text-2);
}
.mini-sidebar-title {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  font-size: .68rem;
}
.mini-check-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 0;
  border-bottom: 1px solid #F1F5F9;
}
.mini-check-row:last-child { border-bottom: none; }
.mini-checkbox {
  width: 10px; height: 10px;
  border: 1.5px solid #93C5FD;
  border-radius: 2px;
  background: #DBEAFE;
  flex-shrink: 0;
}

/* mini table mockup */
.mini-table { width: 88%; font-size: .65rem; }
.mini-table-hdr {
  display: grid;
  grid-template-columns: 45px 1fr;
  background: #F1F5F9;
  border-radius: 4px 4px 0 0;
  padding: 4px 6px;
  font-weight: 700;
  color: var(--text-3);
  font-size: .6rem;
  text-transform: uppercase;
}
.mini-table-row {
  display: grid;
  grid-template-columns: 45px 1fr;
  padding: 4px 6px;
  border: 1px solid var(--border);
  border-top: none;
  color: var(--text-2);
  align-items: center;
}
.mini-table-row:last-child { border-radius: 0 0 4px 4px; }

.screenshot-info { padding: 16px 18px; }
.screenshot-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.screenshot-desc {
  font-size: .8rem;
  color: var(--text-2);
  line-height: 1.55;
}

/* ── FAQ ── */
.faq-section { background: var(--bg); }

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-item summary {
  list-style: none;
  padding: 18px 20px;
  font-size: .925rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: background .1s;
}
.faq-item summary:hover { background: #FAFBFC; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0;
  color: var(--text-3);
  transition: transform .2s;
}
.faq-item[open] summary .faq-chevron { transform: rotate(180deg); }
.faq-item[open] summary { background: #F8FAFC; }

.faq-answer {
  padding: 0 20px 18px;
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ── Final CTA section ── */
.cta-section {
  background: linear-gradient(135deg, #1E3A8A 0%, #1D4ED8 50%, #2563EB 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section .section-label { color: #93C5FD; }
.cta-section .section-title { color: #fff; margin-bottom: 16px; }
.cta-section .section-body { color: #BFDBFE; max-width: 560px; margin: 0 auto 36px; }

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-primary {
  background: #fff;
  color: #1D4ED8;
  padding: 13px 26px;
  font-size: .95rem;
}
.btn-cta-primary:hover { background: #F0F9FF; box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.btn-cta-ghost {
  background: transparent;
  color: #BFDBFE;
  border: 1.5px solid rgba(191,219,254,.4);
  padding: 13px 26px;
  font-size: .95rem;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,.08); color: #fff; }

/* ── Footer ── */
.site-footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 56px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { grid-column: span 2; }

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo {
  width: 32px; height: 32px;
  border-radius: 7px;
  background: #1E293B;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand-name {
  font-size: .95rem;
  font-weight: 700;
  color: #E2E8F0;
}
.footer-tagline {
  font-size: .83rem;
  color: #64748B;
  line-height: 1.6;
  max-width: 320px;
}
.footer-col-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #CBD5E1;
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: .83rem;
  color: #64748B;
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: #94A3B8; }

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: .77rem;
  color: #475569;
}
.footer-trademark {
  font-size: .72rem;
  color: #334155;
  max-width: 540px;
  line-height: 1.55;
  text-align: right;
}

/* ── Policy summary box ── */
.summary-box {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-left: 4px solid var(--primary);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.summary-box-title {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
  margin-bottom: 10px;
}
.summary-box p {
  font-size: .9rem !important;
  color: #1E3A8A !important;
  line-height: 1.7;
  margin-bottom: 0 !important;
}

/* ── Inner pages ── */
.inner-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.content {
  background: var(--surface);
  border-radius: 16px;
  padding: 40px 44px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.content .page-title { font-size: 1.6rem; font-weight: 800; color: var(--primary); margin-bottom: 6px; letter-spacing: -.02em; }
.content .meta { font-size: .82rem; color: #999; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid #F0F0F8; }
.content h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin: 28px 0 8px; }
.content h4 { font-size: .9rem; font-weight: 700; color: var(--text); margin: 20px 0 6px; }
.content p  { font-size: .9rem; color: var(--text-2); margin-bottom: 10px; line-height: 1.75; }
.content ul,
.content ol { padding-left: 24px; margin: 0 0 14px; }
.content ul li,
.content ol li {
  font-size: .9rem;
  color: var(--text-2);
  margin-bottom: 8px;
  line-height: 1.7;
  padding-left: 4px;
}
.content ul li:last-child,
.content ol li:last-child { margin-bottom: 0; }
.content ol { list-style: decimal; }
.content ol li::marker { color: var(--text-3); font-weight: 600; }
.content ul li::marker { color: var(--text-3); }
.content li > p { margin-bottom: 6px; }
.content li > p:last-child { margin-bottom: 0; }
.content ul + p,
.content ol + p { margin-top: 14px; }
.content a { color: var(--primary); text-decoration: none; }
.content a:hover { text-decoration: underline; }
.content code { font-family: ui-monospace, monospace; font-size: .82em; background: #F1F5F9; padding: 1px 5px; border-radius: 3px; }

/* release notes */
.release {
  background: var(--surface);
  border-radius: 16px;
  padding: 40px 44px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.release-header { display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid #F0F0F8; }
.release-date { font-size: 1.1rem; font-weight: 800; color: var(--primary); letter-spacing: -.01em; }
.release-tag { background: #EFF6FF; color: var(--primary); font-size: .72rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; border: 1px solid #BFDBFE; }
.release-section { margin-bottom: 20px; }
.release-section h4 { font-size: .82rem; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.release-section ul { padding-left: 18px; }
.release-section ul li { font-size: .88rem; color: var(--text-2); margin-bottom: 5px; line-height: 1.6; }

/* support contact box */
.contact-box {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-box .icon { font-size: 2rem; }
.contact-box h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.contact-box p  { font-size: .88rem; color: var(--text-2); }
.contact-box a  { color: var(--primary); font-weight: 600; text-decoration: none; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-h1 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-trademark { text-align: left; }
}

@media (max-width: 720px) {
  .site-nav { display: none; }
  .section { padding: 56px 0; }
  .section-title { font-size: 1.6rem; }
  .grid-2, .grid-3, .grid-4,
  .features-grid, .outputs-grid, .trust-grid,
  .steps, .screenshots-grid { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .perm-row { grid-template-columns: 1fr; }
  .perm-scope { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; }
  .footer-trademark { text-align: left; }
  .content, .release { padding: 28px 20px; }
  .inner-main { padding: 32px 16px 60px; }
  .hero-section { padding: 56px 0 48px; }
}

/* ── Scope-to-feature table (privacy policy) ── */
.scope-table {
  width: 100%;
  margin: 16px 0 24px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  font-size: .9rem;
  table-layout: fixed;
}
.scope-table thead { background: #F8FAFC; }
.scope-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-3);
  border-bottom: 1px solid var(--border);
}
.scope-table td {
  padding: 14px 16px;
  vertical-align: top;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
  word-break: break-word;
}
.scope-table tbody tr:last-child td { border-bottom: none; }
.scope-table tbody tr:nth-child(even) td { background: #FAFBFC; }
.scope-table th:nth-child(1),
.scope-table td:nth-child(1) { width: 26%; }
.scope-table th:nth-child(2),
.scope-table td:nth-child(2) { width: 28%; }
.scope-table th:nth-child(3),
.scope-table td:nth-child(3) { width: 46%; }
.scope-table td:first-child {
  font-weight: 600;
  color: var(--text);
}
.scope-table td:first-child code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .82rem;
  color: var(--primary-d);
  background: rgba(37, 99, 235, .06);
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-block;
  word-break: break-all;
}
.scope-table code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .85em;
}

@media (max-width: 720px) {
  .scope-table,
  .scope-table thead,
  .scope-table tbody,
  .scope-table tr,
  .scope-table th,
  .scope-table td { display: block; width: 100%; }
  .scope-table { padding: 0; }
  .scope-table thead { display: none; }
  .scope-table tbody tr {
    border-bottom: 1px solid var(--border);
    padding: 4px 0;
  }
  .scope-table tbody tr:last-child { border-bottom: none; }
  .scope-table tbody tr:nth-child(even) td { background: transparent; }
  .scope-table td {
    border-bottom: none;
    padding: 8px 16px;
  }
  .scope-table td::before {
    content: attr(data-label);
    display: block;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text-3);
    margin-bottom: 4px;
  }
  .scope-table td:first-child {
    background: #F8FAFC;
    padding: 12px 16px 8px;
  }
  .scope-table th:nth-child(1),
  .scope-table td:nth-child(1),
  .scope-table th:nth-child(2),
  .scope-table td:nth-child(2),
  .scope-table th:nth-child(3),
  .scope-table td:nth-child(3) { width: 100%; }
}
