/* Ai Notice — site.css
   Tokens and patterns: docs/DESIGN-SYSTEM.md
   Do not add colours, border-radius, or font sizes not listed there.
   Fonts loaded via <link> in HTML <head> — not @import. */

/* ─── Design-system tokens ───────────────────────── */
:root {
  --navy:         #0B1423;
  --navy-mid:     #152035;
  --slate:        #1E3A5F;
  --accent:       #2563EB;
  --accent-light: #3B82F6;

  --green:        #059669;
  --green-light:  #D1FAE5;
  --green-border: #A7F3D0;
  --green-dark:   #065F46;
  --green-darker: #166534;

  --amber:        #D97706;

  --red:          #DC2626;
  --red-dark:     #991B1B;
  --red-darker:   #7F1D1D;
  --red-light:    #FEF2F2;
  --red-border:   #FECACA;
  --red-rose:     #F87171;

  --text:         #0F172A;
  --text-mid:     #334155;
  --text-light:   #64748B;
  --text-faint:   #94A3B8;

  --white:        #FFFFFF;
  --bg:           #F8FAFC;
  --bg-blue:      #F0F4FF;
  --border-light: #F1F5F9;
  --border:       #E2E8F0;
  --modal-body:   #FAFAFA;
}

/* ─── Skip link ─────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 200;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 8px; }

/* ─── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scrollbar-gutter: stable; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mid);
  background: var(--white);
}
img { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; transition: opacity 0.15s; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
h1, h2, h3 { margin: 0; }

/* ─── Navigation ─────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,20,35,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav-logo:hover { opacity: 0.85; text-decoration: none; }
.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: white; background: rgba(255,255,255,.08); text-decoration: none; }
.nav-link.active,
.nav-link[aria-current="page"] {
  color: white;
  background: rgba(255,255,255,.08);
}
.nav-cta {
  margin-left: 8px;
  padding: 7px 16px;
  border-radius: 20px;
  background: var(--accent);
  color: white;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s;
  flex-shrink: 0;
}
.nav-cta:hover { opacity: 0.85; text-decoration: none; }

/* ─── Hero (homepage) ────────────────────────────── */
.section-hero {
  background: linear-gradient(160deg, #0B1423 0%, #0D1F3C 60%, #0B2240 100%);
  padding: 80px 24px 48px;
  position: relative;
  overflow: hidden;
}
.section-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-left { position: relative; }
.hero-headline {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  line-height: 1.1;
  margin: 16px 0 20px;
}
.hero-headline .accent { color: var(--accent-light); }
.hero-body-primary {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 420px;
}
.hero-body-secondary {
  font-size: 15px;
  color: rgba(255,255,255,.4);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 420px;
}
/* legacy alias */
.hero-body {
  font-size: 17px;
  color: rgba(255,255,255,.62);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-bullets li {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.hero-bullets li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-light);
  flex-shrink: 0;
}
.hero-bullets strong { color: white; font-weight: 600; }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.platform-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.platform-pills-label {
  font-size: 11px;
  color: rgba(255,255,255,.25);
  font-family: 'DM Mono', monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-right: 4px;
}
.platform-pill {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  padding: 3px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
}
.platform-sep {
  font-size: 11.5px;
  color: rgba(255,255,255,.2);
  margin: 0 -2px;
  align-self: center;
}
/* Modal preview in hero right column */
.hero-modal-preview {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.hero-modal-preview img {
  max-width: 300px;
  width: 100%;
}

/* ─── Page hero (inner pages) ────────────────────── */
.page-hero {
  background: linear-gradient(160deg, #0B1423 0%, #0D1F3C 60%, #0B2240 100%);
  padding: 60px 24px 52px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.page-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.page-headline {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  line-height: 1.1;
  margin: 14px 0 14px;
}
.page-intro {
  font-size: 16px;
  color: rgba(255,255,255,.62);
  line-height: 1.65;
  max-width: 520px;
}

/* ─── Tab nav (inside page-hero) ─────────────────── */
.tab-nav {
  display: flex;
  gap: 0;
  margin-top: 32px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.4);
  cursor: pointer;
  font-family: 'DM Sans', system-ui, sans-serif;
  margin-bottom: -1px;
  transition: color 0.15s, border-bottom-color 0.15s;
  white-space: nowrap;
}
.tab-btn:hover { color: rgba(255,255,255,.7); }
.tab-btn.active {
  color: white;
  border-bottom-color: var(--accent-light);
  font-weight: 600;
}
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ─── Stats bar ──────────────────────────────────── */
.section-stats {
  background: var(--bg-blue);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}
.stats-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  display: block;
  margin-top: 3px;
}

/* ─── Section types ──────────────────────────────── */
.section-white      { background: var(--white);   padding: 80px 24px; }
.section-alt        { background: var(--bg);       padding: 64px 24px; }
.section-enterprise {
  background: var(--bg-blue);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
}
.section-cta {
  background: var(--navy);
  padding: 80px 24px;
  text-align: center;
}
/* Legacy aliases */
.section            { padding: 72px 24px; }
.section--white     { background: var(--white); }
.section--bg        { background: var(--bg); }
.section--compact   { padding: 56px 24px; }
.section--dark      { background: var(--navy); text-align: center; }

.section-inner {
  max-width: 680px;
  margin: 0 auto;
}

/* ─── Section tag component ──────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px 5px 7px;
  border-radius: 20px;
  border: 1px solid #BFDBFE;
  background: #EFF6FF;
  margin-bottom: 16px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.02em;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.section-tag--dark {
  border-color: rgba(37,99,235,.35);
  background: rgba(37,99,235,.08);
}
.section-tag__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ─── Section headlines ──────────────────────────── */
.section-headline {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
  margin: 10px 0 10px;
}
.section-headline--white { color: white; }
.section-subline {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 480px;
}
.section-subline--white { color: rgba(255,255,255,.62); margin: 0 auto; }

/* ─── Tags ───────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid;
  font-family: 'DM Mono', monospace;
}
.tag--blue      { color: var(--accent-light); background: #EFF6FF;              border-color: #BFDBFE; }
.tag--blue-dark { color: var(--accent-light); background: rgba(37,99,235,.15);  border-color: rgba(37,99,235,.3); }
.tag--green     { color: var(--green);        background: var(--green-light);   border-color: var(--green-border); }
.tag--amber     { color: var(--amber);        background: #FFFBEB;              border-color: #FDE68A; }
.tag--neutral   { color: var(--text-light);   background: var(--bg);            border-color: var(--border); }

/* ─── Label (uppercase mono caption) ────────────── */
.label {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 6px;
  font-family: 'DM Mono', monospace;
}

/* ─── Buttons ────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 12px;
  background: var(--accent);
  color: white;
  border: none;
  font-size: 14px;
  font-weight: 700;
  font-family: 'DM Sans', system-ui, sans-serif;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,99,235,.4);
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.85; text-decoration: none; }

.btn-secondary {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', system-ui, sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn-secondary:hover { opacity: 0.8; text-decoration: none; }

.btn-dark {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 10px;
  background: var(--navy);
  color: white;
  border: none;
  font-size: 13px;
  font-weight: 600;
  font-family: 'DM Sans', system-ui, sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn-dark:hover { opacity: 0.85; text-decoration: none; }

.btn-text {
  background: none;
  border: none;
  font-size: 13.5px;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', system-ui, sans-serif;
  text-decoration: none;
}
.btn-text:hover { text-decoration: underline; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.62);
  text-decoration: none;
  transition: color 0.15s;
}
.btn-ghost:hover { color: white; text-decoration: none; }

/* ─── Cards ──────────────────────────────────────── */
.card {
  padding: 22px 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg);
}
.card-elevated,
.card--elevated {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--white);
}
.card-dark {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
}
.info-green {
  padding: 16px 20px;
  border-radius: 12px;
  background: #F0FDF4;
  border: 1px solid var(--green-border);
  font-size: 14px;
  color: var(--green-dark);
  line-height: 1.5;
}
.info-dark {
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--navy);
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.card-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.card-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ─── Promise items ──────────────────────────────── */
.promise-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 12px;
}
.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}
.promise-item:last-child { border-bottom: none; }
.promise-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--text-light);
}
.promise-content { flex: 1; }
.promise-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  display: block;
}
.promise-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

/* ─── Audit checklist ────────────────────────────── */
.audit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.audit-item {
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
}
.audit-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.audit-instruction {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}
.audit-result {
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 8px;
  background: #F0FDF4;
  border: 1px solid var(--green-border);
  font-size: 13px;
  color: var(--green-darker);
  line-height: 1.5;
}
.audit-result::before {
  content: '✓ ';
  font-weight: 700;
}

/* ─── Enterprise 2-column grid ──────────────────── */
.enterprise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 760px;
}
.enterprise-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.enterprise-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.5;
}
.enterprise-check { color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ─── Vertical timeline (how it works) ──────────── */
.timeline {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}
.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 36px;
}
.timeline-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.timeline-connector {
  width: 1px;
  flex: 1;
  min-height: 20px;
  background: var(--border);
  margin: 4px 0;
}
.timeline-content {
  flex: 1;
  padding-bottom: 28px;
}
.timeline-content strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}
.timeline-content p {
  margin: 0;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── Privacy summary strip ──────────────────────── */
.privacy-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
.privacy-summary-card {
  padding: 16px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  text-align: center;
}
.privacy-summary-icon {
  font-size: 20px;
  display: block;
  margin-bottom: 8px;
  color: var(--text-light);
}
.privacy-summary-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  display: block;
}

/* ─── Step flow ──────────────────────────────────── */
.step-flow {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  counter-reset: step;
}
.step-flow li {
  counter-increment: step;
  padding: 20px 0 20px 52px;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}
.step-flow li:last-child { border-bottom: none; }
.step-flow li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 20px;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  font-family: 'DM Mono', monospace;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-flow strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}
.step-flow p {
  margin: 0;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── Three-step columns ─────────────────────────── */
.step-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.step-col {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg);
}
.step-col-num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  font-family: 'DM Mono', monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.step-col strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.step-col p {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── Dark callout box ───────────────────────────── */
.callout-dark {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 12px;
  background: var(--navy);
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.65;
}

/* ─── Trust signal cards ─────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.trust-card {
  padding: 22px 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--white);
}
.trust-icon {
  font-size: 20px;
  margin-bottom: 12px;
  display: block;
}
.trust-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  display: block;
}
.trust-body {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* ─── Content typography ─────────────────────────── */
.section-inner h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 36px 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.section-inner h2:first-child { margin-top: 0; }
.section-inner p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0 0 12px;
}
.section-inner p:last-child { margin-bottom: 0; }
.section-inner ul,
.section-inner ol {
  padding-left: 20px;
  margin: 0 0 12px;
  color: var(--text-mid);
}
.section-inner li {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 8px;
  color: var(--text-mid);
}
.section-inner li strong { color: var(--text); }
.section-inner strong { color: var(--text); font-weight: 600; }
.section-inner a { color: var(--accent); }

code {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--text-light);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 8px;
}

/* ─── Tables ─────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
}
.table-wrap table { margin: 0; }
table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 13px;
  line-height: 1.55;
}
thead th {
  text-align: left;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
  color: var(--text-light);
  padding: 10px 12px 10px 0;
  border-bottom: 1px solid var(--border);
}
thead th:nth-child(1) { width: 22%; }
thead th:nth-child(2) { width: 38%; }
thead th:nth-child(3) { width: 26%; }
thead th:nth-child(4) { width: 14%; }
tbody td {
  padding: 12px 12px 12px 0;
  color: var(--text-mid);
  vertical-align: top;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
}
tbody tr:last-child td { border-bottom: none; }
td strong { color: var(--text); }

/* ─── Policy metadata ────────────────────────────── */
.policy-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  line-height: 1.7;
}

/* ─── Footer ─────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 32px 24px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: white;
  flex-shrink: 0;
}
.footer-brand {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}
.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: rgba(255,255,255,.7); text-decoration: none; }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner       { grid-template-columns: 1fr; gap: 32px; }
  .hero-modal-preview { justify-content: center; }
  .hero-modal-preview img { max-width: 260px; }
  .enterprise-grid  { grid-template-columns: 1fr; }
  .tab-nav          { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table             { table-layout: auto; min-width: 480px; }
}
@media (max-width: 640px) {
  .hero-headline    { font-size: 34px; }
  .page-headline    { font-size: 28px; }
  .section-headline { font-size: 24px; }
  .section-hero     { padding: 56px 20px 40px; }
  .page-hero        { padding: 48px 20px 40px; }
  .section-white    { padding: 56px 20px; }
  .section-alt      { padding: 48px 20px; }
  .section-cta      { padding: 56px 20px; }
  .section-enterprise { padding: 48px 20px; }
  .section          { padding: 56px 20px; }
  .section--compact { padding: 44px 20px; }
  .nav-cta          { display: none; }
  .stats-inner      { gap: 16px; }
  .card-grid        { grid-template-columns: 1fr; }
  .step-cols        { grid-template-columns: 1fr; }
  .step-col         { padding: 16px; }
  .trust-grid       { grid-template-columns: 1fr; }
  .trust-card       { padding: 16px 18px; }
  .privacy-summary  { grid-template-columns: 1fr; }
  .hero-modal-preview img { max-width: 220px; }
  .audit-header     { flex-wrap: wrap; }
}
