:root {
  --ink: #0F1923;
  --ink-2: #1a2534;
  --muted: #525252;
  --muted-2: #737373;
  --muted-3: #a3a3a3;
  --line: #e5e5e5;
  --line-2: #f0f0f0;
  --line-3: #f7f7f7;
  --paper: #ffffff;
  --paper-2: #fafafa;
  --paper-3: #f5f5f5;
  --accent: #B08D57;
  --accent-hover: #8F6F3E;
  --accent-soft: #F7F1E6;
  --accent-soft-2: #FBF7F0;
  --green: #2f7a4d;
  --green-soft: #f0f7f3;
  --green-on-dark: #3FA86A;
  --red: #c94a3e;
  --red-soft: #fbe9e7;
  --red-on-dark: #E27F75;
  --amber: #b87f2a;
  --amber-soft: #f7eedf;
  --amber-on-dark: #E0A458;
  --blue: #3b5ea5;
  --blue-soft: #eef2f8;
  --blue-on-dark: #5C8AD9;
  --purple-on-dark: #B69BE0;
  --ff-body: 'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  --ff-mono: 'DM Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --max-w: 1440px;
  --inner-pad: 32px;
  --ease-smooth: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.15s;
  --dur-base: 0.3s;
  --dur-slow: 0.7s;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--ff-body); color: var(--ink); background: var(--paper);
  line-height: 1.5; text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: 0; background: none; padding: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; line-height: 1.1; font-weight: 600; }
p { margin: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.wrap { max-width: var(--max-w); margin: 0 auto; padding-left: var(--inner-pad); padding-right: var(--inner-pad); }
main > section { padding: 96px var(--inner-pad); border-bottom: 1px solid var(--line); }
main > section.section-tight { padding: 80px var(--inner-pad); }
.bg-paper-2 { background: var(--paper-2); }
.bg-ink { background: var(--ink); color: #fff; }

/* Type */
.eyebrow { font-size: 15px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.lede { font-size: 18px; line-height: 1.6; color: var(--muted); }
.h-display { font-size: clamp(48px, 5.2vw, 76px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; }
.h-section { font-size: clamp(40px, 4.2vw, 60px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; }
.h-section-sm { font-size: clamp(36px, 3.8vw, 52px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
.h-section-xs { font-size: clamp(32px, 3.4vw, 44px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.12; }
.mono { font-family: var(--ff-mono); }
.num { font-variant-numeric: tabular-nums; }

/* TBD flag — visible reminder that EDMA team needs to fill in */
.tbd {
  font-family: var(--ff-mono); font-size: 0.85em;
  padding: 0 5px;
  background: rgba(184, 127, 42, 0.12);
  color: var(--amber);
  border: 1px dashed rgba(184, 127, 42, 0.55);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.bg-ink .tbd { background: rgba(224, 164, 88, 0.14); color: var(--amber-on-dark); border-color: rgba(224, 164, 88, 0.55); }

/* Buttons */
.btn {
  font-family: inherit; font-size: 16px; font-weight: 500;
  padding: 13px 22px; border: 1px solid transparent; border-radius: 0;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; white-space: nowrap; text-decoration: none;
  transition: background var(--dur-fast) var(--ease-smooth),
              color var(--dur-fast) var(--ease-smooth),
              border-color var(--dur-fast) var(--ease-smooth),
              transform var(--dur-fast) var(--ease-smooth),
              box-shadow var(--dur-base) var(--ease-smooth);
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); transition-duration: 0s; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-hover); box-shadow: 0 10px 28px -10px rgba(176, 141, 87, 0.55); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-2); box-shadow: 0 10px 28px -10px rgba(15, 25, 35, 0.5); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--paper-2); }
.btn-ghost-inv { background: transparent; color: #fff; border-color: rgba(255,255,255,0.25); }
.btn-ghost-inv:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.04); }
.btn-lg { padding: 16px 26px; font-size: 17px; font-weight: 600; }

/* ============== HEADER (shared) ============== */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--paper); border-bottom: 1px solid var(--line); }
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s ease-in-out infinite; flex: none; }
.site-nav { background: var(--paper); }
.site-nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 14px var(--inner-pad); display: flex; align-items: center; justify-content: space-between; }
.site-nav-left { display: flex; align-items: center; gap: 44px; }
.site-nav-right { display: flex; align-items: center; gap: 10px; }
.nav-list { display: flex; align-items: center; gap: 22px; }
.nav-link { font-size: 16.5px; font-weight: 500; color: var(--ink); padding: 8px 4px; transition: color var(--dur-fast); }
.nav-link:hover { color: var(--accent); }
.nav-link.is-current { color: var(--accent); position: relative; }
.nav-link.is-current::after { content: ""; position: absolute; left: 4px; right: 4px; bottom: 0; height: 2px; background: var(--accent); }
.nav-signin { font-size: 16px; padding: 8px 12px; color: var(--ink); }
.nav-signin:hover { color: var(--accent); }
.nav-cta { padding: 10px 18px; }
.nav-hamburger { display: none; width: 36px; height: 36px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; padding: 0; background: none; border: 0; }
.nav-hamburger span { display: block; width: 20px; height: 2px; background: var(--ink); }
.edma-logo { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; }
.edma-logo .phoenix { height: 34px; width: auto; display: block; }
.edma-wordmark { font-family: var(--ff-body); }

/* ============== HERO ============== */
.s-hero { padding-bottom: 56px; }
.s-hero-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: end; }
.s-hero .eyebrow { display: inline-block; margin-bottom: 28px; }
.s-hero h1 { margin-bottom: 24px; }
.s-hero h1 em { font-style: normal; color: var(--accent); font-weight: 600; }
.s-hero .lede { max-width: 720px; margin-bottom: 32px; }
.cta-row { display: inline-flex; gap: 12px; flex-wrap: wrap; }

/* Hero right column — security posture card */
.hero-posture {
  background: var(--ink); color: #fff;
  padding: 28px 28px 24px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.hero-posture::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
}
.hero-posture .ph {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; border-bottom: 1px dashed rgba(255,255,255,0.12);
}
.hero-posture .ph .pl {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono); font-size: 12.5px; color: var(--accent);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.hero-posture .ph .pl .sq { width: 8px; height: 8px; background: var(--accent); }
.hero-posture .ph .pr {
  font-family: var(--ff-mono); font-size: 12.5px;
  color: rgba(255,255,255,0.55); letter-spacing: 0.06em;
}
.hero-posture h2 {
  font-family: var(--ff-mono); font-size: 13px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-posture-rows {
  display: flex; flex-direction: column; gap: 0;
}
.hero-posture-rows .r {
  display: grid; grid-template-columns: 130px 1fr auto;
  gap: 16px; align-items: center;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  font-family: var(--ff-mono); font-size: 14px;
}
.hero-posture-rows .r:last-child { border-bottom: 0; }
.hero-posture-rows .k { color: rgba(255,255,255,0.5); letter-spacing: 0.04em; text-transform: uppercase; font-size: 12.5px; }
.hero-posture-rows .v { color: #fff; }
.hero-posture-rows .s {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 2px 8px;
  background: rgba(63,168,106,0.14); color: var(--green-on-dark);
  border: 1px solid rgba(63,168,106,0.4);
}
.hero-posture-rows .s.is-renew { background: rgba(224,164,88,0.12); color: var(--amber-on-dark); border-color: rgba(224,164,88,0.4); }
.hero-posture-rows .s.is-roadmap { background: rgba(92,138,217,0.12); color: var(--blue-on-dark); border-color: rgba(92,138,217,0.4); }
.hero-posture-rows .s .pip { width: 5px; height: 5px; background: currentColor; border-radius: 50%; }

.hero-kpi { max-width: var(--max-w); margin: 64px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.hero-kpi-cell { padding: 22px 24px; border-right: 1px solid var(--line-2); }
.hero-kpi-cell:last-child { border-right: 0; }
.hero-kpi-label { font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); }
.hero-kpi-val { margin-top: 10px; font-family: var(--ff-mono); font-size: 22px; color: var(--ink); letter-spacing: -0.01em; }
.hero-kpi-val .unit { display: block; font-size: 14px; color: var(--muted-2); margin-top: 6px; letter-spacing: 0.02em; line-height: 1.4; }
.hero-kpi-val .accent { color: var(--accent); }
.hero-kpi-val .small { font-size: 16px; color: var(--muted-2); margin-left: 6px; }

/* ============== SECTION HEADER (shared) ============== */
.s-head { max-width: 1040px; margin-bottom: 56px; }
.s-head h2 { margin-top: 16px; margin-bottom: 16px; }
.s-head .lede { max-width: 820px; }

/* ============== § 2 · CERTIFICATIONS ============== */
.cert-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--paper);
}
.cert {
  padding: 28px 24px 24px;
  border-right: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 460px;
  background: var(--paper);
  transition: background var(--dur-base);
}
.cert:last-child { border-right: 0; }
.cert:hover { background: var(--paper-2); }
.cert-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding-bottom: 16px; border-bottom: 1px dashed var(--line); }
.cert-badge {
  width: 56px; height: 56px; flex: none;
  border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background: var(--accent-soft-2);
}
.cert-badge::before {
  content: ""; position: absolute; inset: 4px;
  border: 1px solid rgba(176,141,87,0.4);
}
.cert-badge .cb-label {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 600;
  color: var(--accent); letter-spacing: 0.08em; text-align: center;
  line-height: 1.1;
}
.cert-status {
  font-family: var(--ff-mono); font-size: 11.5px;
  padding: 2px 8px;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(63,168,106,0.1); color: var(--green); border: 1px solid rgba(63,168,106,0.35);
}
.cert-status.is-conditional { background: rgba(184,127,42,0.08); color: var(--amber); border-color: rgba(184,127,42,0.35); }
.cert h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.18; color: var(--ink); }
.cert h3 .v { color: var(--muted-2); font-weight: 500; font-size: 0.78em; margin-left: 4px; }
.cert-meta {
  display: flex; flex-direction: column; gap: 0;
  font-family: var(--ff-mono); font-size: 13px;
}
.cert-meta .r {
  display: grid; grid-template-columns: 84px 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line-2);
}
.cert-meta .r:last-child { border-bottom: 0; }
.cert-meta .r .k { color: var(--muted-2); letter-spacing: 0.06em; text-transform: uppercase; font-size: 11.5px; }
.cert-meta .r .v { color: var(--ink); line-height: 1.5; }
.cert-meta .r .v.acc { color: var(--accent); }
.cert-foot {
  margin-top: auto; padding-top: 12px;
  font-size: 14.5px; line-height: 1.55; color: var(--muted);
  border-top: 1px dashed var(--line);
}
.cert-foot strong { color: var(--ink); font-weight: 500; }

.cert-roadmap {
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15.5px; line-height: 1.65; color: var(--muted);
}
.cert-roadmap .ic {
  font-family: var(--ff-mono); font-weight: 600;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--accent); color: var(--accent);
  font-size: 13px; flex: none;
}
.cert-roadmap strong { color: var(--ink); font-weight: 500; }

/* ============== § 3 · RESIDENCY MAP ============== */
.s-resid { background: var(--ink); color: #fff; }
.s-resid .s-head h2 { color: #fff; }
.s-resid .s-head .lede { color: rgba(255,255,255,0.65); }
.s-resid .s-head .eyebrow { color: var(--accent); }

.resid-frame {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}
.resid-map-wrap {
  position: relative;
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  min-height: 460px;
}
.resid-map-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--ff-mono); font-size: 12.5px;
  color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase;
  padding-bottom: 14px; border-bottom: 1px dashed rgba(255,255,255,0.1);
  margin-bottom: 18px;
}
.resid-map-head .acc { color: var(--accent); }
.resid-map { width: 100%; height: auto; display: block; }
.resid-map .dot-grid { fill: rgba(255,255,255,0.15); }
.resid-map .region-fill { fill: rgba(176,141,87,0.08); stroke: rgba(176,141,87,0.4); stroke-width: 1; stroke-dasharray: 4 3; }
.resid-map .region-pin { fill: var(--accent); }
.resid-map .region-pin-ring { fill: none; stroke: var(--accent); stroke-width: 1.5; opacity: 0.5; }
.resid-map .region-label-bg { fill: rgba(0,0,0,0.65); stroke: rgba(176,141,87,0.45); stroke-width: 1; }
.resid-map text { fill: #fff; font-family: var(--ff-mono); font-size: 11.5px; letter-spacing: 0.05em; }
.resid-map text.label-code { fill: var(--accent); font-weight: 500; }
.resid-map text.label-sub { fill: rgba(255,255,255,0.65); font-size: 10px; }

.resid-sidebar {
  padding: 0;
  display: flex; flex-direction: column;
}
.resid-region {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 10px;
}
.resid-region:last-child { border-bottom: 0; }
.resid-region .rh {
  display: flex; align-items: center; gap: 10px;
}
.resid-region .rh .rn {
  font-family: var(--ff-mono); font-size: 13px; color: var(--accent);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.resid-region .rh .rt {
  font-size: 17px; font-weight: 600; color: #fff;
  letter-spacing: -0.005em;
}
.resid-region .rh .rt .city { color: rgba(255,255,255,0.55); font-weight: 400; margin-left: 4px; font-size: 15px; }
.resid-region .rh .tier {
  margin-left: auto;
  font-family: var(--ff-mono); font-size: 11.5px;
  padding: 2px 8px;
  background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.12);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.resid-region .rh .tier.is-default { background: rgba(63,168,106,0.12); color: var(--green-on-dark); border-color: rgba(63,168,106,0.4); }
.resid-region .rh .tier.is-enterprise { background: rgba(176,141,87,0.14); color: var(--accent); border-color: rgba(176,141,87,0.45); }
.resid-region p { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.7); }
.resid-region .pills { display: flex; flex-wrap: wrap; gap: 4px; }
.resid-region .pill {
  font-family: var(--ff-mono); font-size: 11.5px;
  padding: 2px 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}
.resid-region .pill.is-on { color: var(--accent); border-color: rgba(176,141,87,0.4); background: rgba(176,141,87,0.08); }

.resid-foot {
  margin-top: 28px;
  font-size: 15.5px; line-height: 1.65;
  color: rgba(255,255,255,0.7);
  padding: 18px 22px;
  background: rgba(176,141,87,0.06);
  border: 1px solid rgba(176,141,87,0.25);
  display: flex; gap: 14px; align-items: flex-start;
}
.resid-foot .ic {
  font-family: var(--ff-mono); font-weight: 600;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--accent); color: var(--accent);
  font-size: 13px; flex: none;
}
.resid-foot strong { color: #fff; font-weight: 500; }

/* ============== § 4 · ENCRYPTION ============== */
.enc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); }
.enc {
  padding: 32px 28px 26px;
  border-right: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 16px;
  background: var(--paper);
  min-height: 460px;
}
.enc:last-child { border-right: 0; }
.enc-head { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px dashed var(--line); }
.enc-glyph {
  width: 36px; height: 36px;
  border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-mono); font-size: 15px; color: var(--accent);
  flex: none;
}
.enc-head .label {
  font-family: var(--ff-mono); font-size: 12.5px;
  color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase;
}
.enc h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; color: var(--ink); }
.enc h3 .acc { color: var(--accent); }
.enc ul.checks {
  display: flex; flex-direction: column; gap: 10px;
  font-size: 15.5px; line-height: 1.55;
  color: var(--muted);
}
.enc ul.checks li {
  padding-left: 22px; position: relative;
}
.enc ul.checks li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 12px; height: 7px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.enc ul.checks li strong { color: var(--ink); font-weight: 500; }
.enc ul.checks li code {
  font-family: var(--ff-mono); font-size: 14px;
  background: var(--accent-soft-2);
  color: var(--accent-hover);
  padding: 1px 6px;
  border: 1px solid rgba(176,141,87,0.2);
}

.byok {
  margin-top: 28px;
  padding: 28px 32px;
  background: var(--ink); color: #fff;
  display: grid; grid-template-columns: 220px 1fr auto; gap: 32px;
  align-items: center;
}
.byok .lbl {
  font-family: var(--ff-mono); font-size: 12.5px;
  color: var(--accent); letter-spacing: 0.14em; text-transform: uppercase;
}
.byok .lbl strong { display: block; font-size: 19px; color: #fff; font-family: var(--ff-body); font-weight: 600; margin-top: 6px; letter-spacing: -0.01em; }
.byok p { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.78); }
.byok p strong { color: #fff; font-weight: 500; }
.byok .providers {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--ff-mono); font-size: 12.5px;
  color: rgba(255,255,255,0.75); letter-spacing: 0.04em;
  padding-left: 24px; border-left: 1px dashed rgba(255,255,255,0.15);
  white-space: nowrap;
}
.byok .providers .ph { color: var(--accent); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 2px; }

/* ============== § 5 · IAM ============== */
.s-iam { background: var(--paper-2); }
.iam-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.iam-col {
  background: var(--paper); border: 1px solid var(--line);
  padding: 28px 26px 26px;
  display: flex; flex-direction: column; gap: 14px;
}
.iam-col-head { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px dashed var(--line); }
.iam-col-head .lbl { font-family: var(--ff-mono); font-size: 12.5px; color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; }
.iam-col-head .idx { font-family: var(--ff-mono); font-size: 12.5px; color: var(--muted-2); letter-spacing: 0.06em; }
.iam-col h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; color: var(--ink); }
.iam-col ul.dot {
  display: flex; flex-direction: column; gap: 9px;
  font-size: 15.5px; line-height: 1.55; color: var(--muted);
}
.iam-col ul.dot li { padding-left: 18px; position: relative; }
.iam-col ul.dot li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 1.5px; background: var(--accent); }
.iam-col ul.dot li strong { color: var(--ink); font-weight: 500; }
.iam-col ul.dot li code {
  font-family: var(--ff-mono); font-size: 13.5px;
  background: var(--paper-3); color: var(--ink);
  padding: 1px 5px;
}
.iam-col .tier-tag {
  display: inline-block;
  font-family: var(--ff-mono); font-size: 11.5px;
  padding: 1px 6px;
  background: var(--accent-soft-2); color: var(--accent-hover);
  border: 1px solid rgba(176,141,87,0.3);
  letter-spacing: 0.06em;
  margin-left: 4px;
  vertical-align: 1px;
}
.iam-idp {
  margin-top: auto; padding-top: 14px;
  border-top: 1px dashed var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.iam-idp .lbl { font-family: var(--ff-mono); font-size: 11.5px; color: var(--muted-2); letter-spacing: 0.1em; text-transform: uppercase; }
.iam-idp .list { display: flex; flex-wrap: wrap; gap: 4px; }
.iam-idp .chip {
  font-family: var(--ff-mono); font-size: 12.5px;
  padding: 3px 8px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--ink);
  letter-spacing: 0.02em;
}

/* Retention strip */
.iam-retention {
  margin-top: 24px;
  background: var(--paper); border: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.iam-retention .cell {
  padding: 16px 18px;
  border-right: 1px solid var(--line-2);
}
.iam-retention .cell:last-child { border-right: 0; }
.iam-retention .k { font-family: var(--ff-mono); font-size: 11.5px; color: var(--muted-2); letter-spacing: 0.1em; text-transform: uppercase; }
.iam-retention .v { font-family: var(--ff-mono); font-size: 17px; color: var(--ink); margin-top: 6px; letter-spacing: -0.01em; }
.iam-retention .v.acc { color: var(--accent); }
.iam-retention .s { font-size: 13.5px; color: var(--muted-2); margin-top: 4px; }

/* ============== § 6 · SUB-PROCESSORS ============== */
.subp-frame { border: 1px solid var(--line); background: var(--paper); overflow: hidden; }
.subp-table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.subp-table thead th {
  text-align: left;
  font-family: var(--ff-mono); font-size: 12.5px; font-weight: 500;
  color: var(--muted-2); letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 20px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.subp-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-2);
  vertical-align: top;
  color: var(--muted);
  line-height: 1.5;
}
.subp-table tbody tr:last-child td { border-bottom: 0; }
.subp-table tbody tr:hover td { background: var(--paper-2); }
.subp-table .sp-name {
  color: var(--ink); font-weight: 600; font-size: 16px;
  letter-spacing: -0.005em;
  display: block;
}
.subp-table .sp-id {
  font-family: var(--ff-mono); font-size: 12px;
  color: var(--muted-2); letter-spacing: 0.06em; text-transform: uppercase;
  margin-top: 2px;
  display: block;
}
.subp-table .compliance { display: flex; flex-wrap: wrap; gap: 3px; }
.subp-table .compliance .pill {
  font-family: var(--ff-mono); font-size: 11.5px;
  padding: 1px 6px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--ink);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.subp-table .compliance .pill.is-zdr { color: var(--accent); border-color: rgba(176,141,87,0.4); background: var(--accent-soft-2); }
.subp-table .loc {
  font-family: var(--ff-mono); font-size: 13.5px;
  color: var(--ink); letter-spacing: 0.02em;
}

.subp-notes {
  margin-top: 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.subp-note {
  padding: 22px 24px;
  background: var(--paper); border: 1px solid var(--line);
  font-size: 15.5px; line-height: 1.65; color: var(--muted);
}
.subp-note h4 { font-size: 15px; font-weight: 600; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; font-family: var(--ff-mono); }
.subp-note strong { color: var(--ink); font-weight: 500; }

/* ============== § 7 · PEN TESTING ============== */
.s-pen { background: var(--ink); color: #fff; }
.s-pen .s-head h2 { color: #fff; }
.s-pen .s-head .lede { color: rgba(255,255,255,0.65); }
.s-pen .s-head .eyebrow { color: var(--accent); }

.pen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid rgba(255,255,255,0.08); }
.pen-card {
  padding: 28px 24px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.014);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 420px;
  transition: background var(--dur-base);
}
.pen-card:last-child { border-right: 0; }
.pen-card:hover { background: rgba(255,255,255,0.04); }
.pen-card-head { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px dashed rgba(255,255,255,0.1); }
.pen-card-head .lbl { font-family: var(--ff-mono); font-size: 12.5px; color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; }
.pen-card-head .freq { font-family: var(--ff-mono); font-size: 11.5px; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; text-transform: uppercase; }
.pen-card h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; color: #fff; }
.pen-card ul {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.72);
}
.pen-card ul li { padding-left: 16px; position: relative; }
.pen-card ul li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 1.5px; background: var(--accent); }
.pen-card ul li strong { color: #fff; font-weight: 500; }
.pen-card ul li code {
  font-family: var(--ff-mono); font-size: 13.5px;
  background: rgba(255,255,255,0.06); color: #fff;
  padding: 1px 5px;
}
.pen-card p { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.72); }
.pen-card p strong { color: #fff; font-weight: 500; }
.pen-card .pen-meta {
  margin-top: auto; padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--ff-mono); font-size: 12.5px;
}
.pen-card .pen-meta .r { display: flex; justify-content: space-between; gap: 8px; }
.pen-card .pen-meta .k { color: rgba(255,255,255,0.45); letter-spacing: 0.04em; text-transform: uppercase; font-size: 11.5px; }
.pen-card .pen-meta .v { color: #fff; }
.pen-card .pen-meta .v.acc { color: var(--accent); }

/* ============== § 8 · INCIDENT RESPONSE ============== */
.ir-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); }
.ir {
  padding: 28px 26px 24px;
  border-right: 1px solid var(--line-2);
  background: var(--paper);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 480px;
}
.ir:last-child { border-right: 0; }
.ir-head { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px dashed var(--line); }
.ir-step {
  font-family: var(--ff-mono); font-size: 11.5px;
  padding: 3px 8px;
  background: var(--accent-soft-2); color: var(--accent-hover);
  border: 1px solid rgba(176,141,87,0.35);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.ir h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; color: var(--ink); }
.ir ul { display: flex; flex-direction: column; gap: 10px; font-size: 15.5px; line-height: 1.55; color: var(--muted); }
.ir ul li { padding-left: 16px; position: relative; }
.ir ul li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 1.5px; background: var(--accent); }
.ir ul li strong { color: var(--ink); font-weight: 500; }
.ir ul li code { font-family: var(--ff-mono); font-size: 13.5px; background: var(--paper-3); color: var(--ink); padding: 1px 5px; }

.ir-sla-block {
  margin-top: 24px;
  padding: 28px 32px;
  background: var(--ink); color: #fff;
  display: grid; grid-template-columns: 1.2fr 1.8fr; gap: 48px;
  align-items: center;
}
.ir-sla-block .lbl { font-family: var(--ff-mono); font-size: 12.5px; color: var(--accent); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px; }
.ir-sla-block h3 { font-size: 28px; font-weight: 600; letter-spacing: -0.015em; color: #fff; line-height: 1.2; }
.ir-sla-block h3 .acc { color: var(--accent); }
.ir-sla-rows { display: flex; flex-direction: column; gap: 0; }
.ir-sla-rows .r { display: grid; grid-template-columns: 90px 1fr auto; gap: 16px; align-items: center; padding: 11px 0; border-bottom: 1px dashed rgba(255,255,255,0.1); font-family: var(--ff-mono); font-size: 14px; }
.ir-sla-rows .r:last-child { border-bottom: 0; }
.ir-sla-rows .k { color: var(--accent); letter-spacing: 0.04em; text-transform: uppercase; font-size: 12.5px; }
.ir-sla-rows .v { color: rgba(255,255,255,0.85); }
.ir-sla-rows .t { color: #fff; font-size: 16px; letter-spacing: -0.01em; }

/* Status feed */
.status-feed {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--paper); border: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
.status-feed .left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.status-feed .green-dot { width: 10px; height: 10px; background: var(--green); border-radius: 50%; }
.status-feed .green-dot.pulse { animation: pulse 2s ease-in-out infinite; }
.status-feed .ttl { font-size: 16.5px; font-weight: 600; color: var(--ink); letter-spacing: -0.005em; }
.status-feed .sub { font-family: var(--ff-mono); font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }
.status-feed .sub strong { color: var(--ink); font-weight: 500; }

/* ============== § 9 · AUDIT RIGHTS ============== */
.s-audit { background: var(--paper-2); }
.audit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.audit {
  padding: 32px 32px 28px;
  background: var(--paper); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 320px;
}
.audit-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 14px; border-bottom: 1px dashed var(--line); }
.audit-head .lbl { font-family: var(--ff-mono); font-size: 12.5px; color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; }
.audit-head .tier {
  font-family: var(--ff-mono); font-size: 11.5px;
  padding: 2px 8px;
  background: var(--paper-2); color: var(--ink);
  border: 1px solid var(--line);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.audit-head .tier.is-ent { background: var(--ink); color: #fff; border-color: var(--ink); }
.audit-head .tier.is-bus { background: var(--accent-soft-2); color: var(--accent); border-color: rgba(176,141,87,0.4); }
.audit h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.22; color: var(--ink); }
.audit p { font-size: 16.5px; line-height: 1.65; color: var(--muted); }
.audit p strong { color: var(--ink); font-weight: 500; }
.audit ul { display: flex; flex-direction: column; gap: 8px; font-size: 15.5px; line-height: 1.55; color: var(--muted); }
.audit ul li { padding-left: 18px; position: relative; }
.audit ul li::before { content: ""; position: absolute; left: 0; top: 8px; width: 10px; height: 1.5px; background: var(--accent); }
.audit ul li strong { color: var(--ink); font-weight: 500; }

/* ============== § 10 · FAQ ============== */
.faq-groups { display: flex; flex-direction: column; gap: 20px; }
.faq-group {
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}
.faq-group > summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 28px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 20px; align-items: center;
  background: var(--paper);
  transition: background var(--dur-base);
}
.faq-group > summary::-webkit-details-marker { display: none; }
.faq-group > summary:hover { background: var(--paper-2); }
.faq-group[open] > summary { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.faq-group .gn { font-family: var(--ff-mono); font-size: 13px; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; }
.faq-group .gt { font-size: 20px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.faq-group .gc { font-family: var(--ff-mono); font-size: 13px; color: var(--muted-2); letter-spacing: 0.06em; }
.faq-group .plus { width: 14px; height: 14px; position: relative; }
.faq-group .plus::before, .faq-group .plus::after { content: ""; position: absolute; background: var(--ink); transition: transform var(--dur-base); }
.faq-group .plus::before { left: 0; right: 0; top: 50%; height: 1.5px; margin-top: -0.75px; }
.faq-group .plus::after { top: 0; bottom: 0; left: 50%; width: 1.5px; margin-left: -0.75px; }
.faq-group[open] .plus::after { transform: scaleY(0); }

.faq-list { padding: 0 28px; }
.faq-q-item {
  padding: 22px 0;
  border-bottom: 1px dashed var(--line);
  display: grid; grid-template-columns: 60px 1fr; gap: 20px;
  align-items: start;
}
.faq-q-item:last-child { border-bottom: 0; }
.faq-q-item .qn { font-family: var(--ff-mono); font-size: 14px; color: var(--accent); letter-spacing: 0.04em; }
.faq-q-item .qbody { display: flex; flex-direction: column; gap: 8px; }
.faq-q-item .q { font-size: 17px; font-weight: 600; color: var(--ink); letter-spacing: -0.005em; line-height: 1.35; }
.faq-q-item .a { font-size: 16px; line-height: 1.65; color: var(--muted); }
.faq-q-item .a strong { color: var(--ink); font-weight: 500; }
.faq-q-item .a code { font-family: var(--ff-mono); font-size: 14px; background: var(--paper-3); color: var(--ink); padding: 1px 5px; }

/* ============== § 11 · FINAL CTA ============== */
.s-cta-sec { background: var(--ink); color: #fff; }
.s-cta-sec .s-head h2 { color: #fff; }
.s-cta-sec .s-head .lede { color: rgba(255,255,255,0.65); }
.s-cta-sec .s-head .eyebrow { color: var(--accent); }

.cta-tracks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid rgba(255,255,255,0.08); }
.cta-track {
  padding: 32px 28px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.014);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 360px;
}
.cta-track:last-child { border-right: 0; }
.cta-track.is-primary { background: rgba(176,141,87,0.06); }
.cta-track-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-bottom: 14px; border-bottom: 1px dashed rgba(255,255,255,0.1); }
.cta-track-num { font-family: var(--ff-mono); font-size: 13px; color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; }
.cta-track-tag {
  font-family: var(--ff-mono); font-size: 11.5px;
  padding: 2px 8px;
  background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.12);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.cta-track-tag.is-nda { background: rgba(176,141,87,0.14); color: var(--accent); border-color: rgba(176,141,87,0.4); }
.cta-track-tag.is-ent { background: rgba(63,168,106,0.12); color: var(--green-on-dark); border-color: rgba(63,168,106,0.4); }
.cta-track h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; color: #fff; }
.cta-track p { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.72); }
.cta-track p strong { color: #fff; font-weight: 500; }
.cta-track .deliverables {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--ff-mono); font-size: 12.5px;
  color: rgba(255,255,255,0.7); letter-spacing: 0.02em;
}
.cta-track .deliverables .d { padding-left: 14px; position: relative; }
.cta-track .deliverables .d::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 1.5px; background: var(--accent); }
.cta-track .btn { margin-top: auto; align-self: flex-start; }
.cta-track .btn-accent { background: var(--accent); color: #fff; }
.cta-track .btn-ghost-inv { color: #fff; border: 1px solid rgba(255,255,255,0.25); }

/* Contact block */
.sec-contact {
  margin-top: 28px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.08);
  display: grid; grid-template-columns: 1.4fr 1.6fr; gap: 40px;
  align-items: start;
}
.sec-contact .lbl { font-family: var(--ff-mono); font-size: 12.5px; color: var(--accent); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
.sec-contact .email { font-family: var(--ff-mono); font-size: 19px; color: #fff; letter-spacing: -0.005em; }
.sec-contact .email a { color: #fff; border-bottom: 1px solid rgba(176,141,87,0.5); transition: border-color var(--dur-fast); }
.sec-contact .email a:hover { border-bottom-color: var(--accent); }
.sec-contact p.note { font-size: 15.5px; line-height: 1.55; color: rgba(255,255,255,0.7); margin-top: 8px; }
.sec-contact .pgp {
  font-family: var(--ff-mono); font-size: 12.5px;
  background: rgba(0,0,0,0.4); color: rgba(255,255,255,0.6);
  padding: 16px 18px;
  border: 1px dashed rgba(255,255,255,0.15);
  white-space: pre; overflow-x: auto;
  line-height: 1.5; letter-spacing: 0;
}
.sec-contact .pgp .fpr { color: var(--accent); display: block; margin-bottom: 8px; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; }

/* ============== FOOTER (shared) ============== */
.site-footer { background: var(--ink); color: #fff; }
.footer-top { border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-top-inner { max-width: var(--max-w); margin: 0 auto; padding: 48px var(--inner-pad); display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
.edma-logo--footer .phoenix { height: 40px; }
.edma-logo--footer .edma-wordmark { font-size: 26px; color: #fff; }
.edma-logo--footer { color: #fff; }
.footer-brand-tag { color: rgba(255,255,255,0.55); font-size: 16px; line-height: 1.55; margin-top: 14px; max-width: 480px; }
.footer-newsletter-title { color: #fff; font-size: 15px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.footer-newsletter-sub { color: rgba(255,255,255,0.55); font-size: 15px; margin-bottom: 14px; }
.footer-newsletter { display: flex; gap: 8px; }
.footer-newsletter input { flex: 1; padding: 12px 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); color: #fff; font-family: inherit; font-size: 15px; outline: none; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter input:focus { border-color: var(--accent); }
.footer-newsletter button { padding: 12px 18px; background: var(--accent); color: #fff; font-family: inherit; font-size: 15px; font-weight: 500; border: 0; cursor: pointer; }
.footer-newsletter button:hover { background: var(--accent-hover); }
.footer-links { max-width: var(--max-w); margin: 0 auto; padding: 56px var(--inner-pad); display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-col-title { font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.footer-link-list li { padding: 4px 0; }
.footer-link-list a { font-size: 15px; color: rgba(255,255,255,0.65); transition: color var(--dur-fast); }
.footer-link-list a:hover { color: #fff; }
.footer-region { border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-region-inner { max-width: var(--max-w); margin: 0 auto; padding: 22px var(--inner-pad); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-region-left, .footer-social { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 14.5px; color: rgba(255,255,255,0.7); }
.footer-region-left .label, .footer-social .label { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); text-transform: uppercase; }
.footer-region-left a:hover { color: #fff; }
.footer-region-divider { color: rgba(255,255,255,0.2); }
.footer-region-left a.is-muted { color: rgba(255,255,255,0.4); }
.footer-social-icon { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.15); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; }
.footer-social-icon:hover { border-color: var(--accent); color: var(--accent); }
.footer-legal-inner { max-width: var(--max-w); margin: 0 auto; padding: 22px var(--inner-pad); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-legal-inner .links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.footer-legal-inner .status-ok { color: var(--green-on-dark); }

/* ============== RESPONSIVE ============== */
@media (max-width: 1200px) {
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .cert:nth-child(2n) { border-right: 0; }
  .cert:nth-child(-n+2) { border-bottom: 1px solid var(--line-2); }
  .pen-grid { grid-template-columns: repeat(2, 1fr); }
  .pen-card:nth-child(2n) { border-right: 0; }
  .pen-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .iam-retention { grid-template-columns: repeat(3, 1fr); }
  .iam-retention .cell:nth-child(3n) { border-right: 0; }
  .iam-retention .cell:nth-child(-n+3) { border-bottom: 1px solid var(--line-2); }
}
@media (max-width: 1080px) {
  .s-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .resid-frame { grid-template-columns: 1fr; }
  .resid-map-wrap { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .enc-grid { grid-template-columns: 1fr; }
  .enc { border-right: 0; border-bottom: 1px solid var(--line-2); }
  .enc:last-child { border-bottom: 0; }
  .byok { grid-template-columns: 1fr; gap: 20px; }
  .byok .providers { padding-left: 0; border-left: 0; padding-top: 14px; border-top: 1px dashed rgba(255,255,255,0.15); }
  .iam-grid { grid-template-columns: 1fr; }
  .ir-grid { grid-template-columns: 1fr; }
  .ir { border-right: 0; border-bottom: 1px solid var(--line-2); }
  .ir:last-child { border-bottom: 0; }
  .ir-sla-block { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .audit-grid { grid-template-columns: 1fr; }
  .cta-tracks { grid-template-columns: 1fr; }
  .cta-track { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .cta-track:last-child { border-bottom: 0; }
  .sec-contact { grid-template-columns: 1fr; }
  .hero-kpi { grid-template-columns: 1fr 1fr; }
  .hero-kpi-cell:nth-child(2) { border-right: 0; }
  .hero-kpi-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line-2); }
  .subp-table { font-size: 14.5px; }
  .subp-table thead th, .subp-table tbody td { padding: 12px 14px; }
  .subp-notes { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .footer-top-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  main > section { padding: 56px 20px; }
  .nav-list, .nav-signin, .nav-link-pricing { display: none; }
  .nav-cta { display: inline-flex; font-size: 14px; padding: 8px 14px; }
  .nav-hamburger { display: flex; }
  .hero-kpi { grid-template-columns: 1fr; }
  .hero-kpi-cell { border-right: 0 !important; border-bottom: 1px solid var(--line-2); }
  .hero-kpi-cell:last-child { border-bottom: 0; }
  .cert-grid { grid-template-columns: 1fr; }
  .cert { border-right: 0; border-bottom: 1px solid var(--line-2); }
  .cert:last-child { border-bottom: 0; }
  .pen-grid { grid-template-columns: 1fr; }
  .pen-card { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .pen-card:last-child { border-bottom: 0; }
  .iam-retention { grid-template-columns: 1fr; }
  .iam-retention .cell { border-right: 0 !important; border-bottom: 1px solid var(--line-2); }
  .iam-retention .cell:last-child { border-bottom: 0; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .faq-q-item { grid-template-columns: 1fr; gap: 6px; }
  .subp-frame { overflow-x: auto; }
  .subp-table { min-width: 720px; }
}