:root {
  --ink: #0c2034;
  --ink-soft: #344a5e;
  --navy: #09263a;
  --navy-light: #123c51;
  --teal: #0e8d83;
  --teal-dark: #08736c;
  --mint: #b9ece1;
  --mint-pale: #eaf8f5;
  --sand: #f4f1e9;
  --paper: #fbfcfa;
  --white: #fff;
  --line: #d8e1e1;
  --warning: #9c4d15;
  --warning-bg: #fff5e8;
  --danger: #a73535;
  --danger-bg: #fff0f0;
  --success: #16735d;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow: 0 24px 70px rgba(9, 38, 58, .12);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button, textarea { font: inherit; }
a { color: inherit; }
img { max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(216, 225, 225, .82);
  background: rgba(251, 252, 250, .96);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  letter-spacing: -.03em;
}
.brand > span:last-child { display: flex; align-items: baseline; gap: 3px; }
.brand strong { font-size: 1.2rem; color: var(--navy); }
.brand b { color: var(--teal); font-size: .85rem; letter-spacing: .02em; }
.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(14, 141, 131, .25);
  border-radius: 50%;
  background: var(--mint-pale);
}
.brand-mark span { position: absolute; border-radius: 50%; border: 2px solid var(--teal); }
.brand-mark span:nth-child(1) { width: 20px; height: 10px; transform: rotate(30deg); }
.brand-mark span:nth-child(2) { width: 20px; height: 10px; transform: rotate(-30deg); }
.brand-mark span:nth-child(3) { width: 5px; height: 5px; background: var(--navy); border: 0; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink-soft);
}
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current="page"] { color: var(--teal-dark); }
.site-nav .nav-cta {
  padding: 10px 17px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
}
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus-visible { color: var(--white); background: var(--teal-dark); }
.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  color: var(--navy);
  background: transparent;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}
.menu-lines, .menu-lines::before, .menu-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: .2s ease;
}
.menu-lines { position: relative; }
.menu-lines::before { position: absolute; top: -7px; }
.menu-lines::after { position: absolute; top: 7px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 10%, rgba(185, 236, 225, .55), transparent 34%),
    linear-gradient(145deg, #fbfcfa 0%, #f3f8f6 100%);
}
.hero::before {
  position: absolute;
  right: -120px;
  bottom: -240px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(14, 141, 131, .12);
  border-radius: 50%;
  content: "";
}
.hero-grid {
  min-height: 680px;
  padding-block: 90px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 70px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-size: .74rem;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
.eyebrow.light { color: var(--mint); }
.hero h1, .section-heading h2, .boundaries-section h2, .cta-card h2, .legal-hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.035em;
}
.hero h1 { max-width: 720px; font-size: clamp(3.25rem, 5.9vw, 6.1rem); }
.hero h1 em { color: var(--teal-dark); font-weight: 400; }
.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 1.16rem;
  line-height: 1.72;
}
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 48px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, textarea:focus-visible, input:focus-visible {
  outline: 3px solid rgba(14, 141, 131, .35);
  outline-offset: 3px;
}
.button-primary { color: var(--white); background: var(--teal-dark); box-shadow: 0 12px 30px rgba(8, 115, 108, .2); }
.button-primary:hover { background: var(--navy); }
.button-secondary { color: var(--navy); border-color: rgba(9, 38, 58, .22); background: rgba(255, 255, 255, .6); }
.button-secondary:hover { border-color: var(--navy); }
.button-ghost { color: var(--navy); border-color: rgba(255, 255, 255, .25); background: rgba(255, 255, 255, .08); }
.button-ghost:hover { background: rgba(255, 255, 255, .14); }
.button-accent { color: var(--navy); background: var(--mint); }
.button-accent:hover { background: var(--white); }
.button-light { color: var(--navy); background: var(--white); }
.microcopy { margin: 18px 0 0; color: #637482; font-size: .78rem; font-weight: 650; }

.hero-visual { position: relative; min-height: 490px; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(14, 141, 131, .22); border-radius: 50%; }
.orbit-one { width: 440px; height: 440px; }
.orbit-two { width: 330px; height: 330px; border-style: dashed; }
.scan-card {
  position: relative;
  z-index: 2;
  width: min(390px, 82%);
  min-height: 390px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.scan-head { display: flex; align-items: center; justify-content: space-between; font-weight: 800; color: var(--navy); }
.status-pill { padding: 5px 10px; color: var(--success); background: var(--mint-pale); border-radius: 999px; font-size: .7rem; }
.document-lines { margin-top: 40px; display: grid; gap: 14px; }
.document-lines span { height: 9px; background: #e3eceb; border-radius: 999px; }
.document-lines span:nth-child(1) { width: 78%; }
.document-lines span:nth-child(2) { width: 94%; }
.document-lines span:nth-child(3) { width: 66%; background: var(--mint); }
.document-lines span:nth-child(4) { width: 88%; }
.document-lines span:nth-child(5) { width: 52%; }
.scan-rule { height: 2px; margin: 44px 0 24px; background: linear-gradient(90deg, transparent, var(--teal), transparent); }
.scan-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.scan-summary div { padding: 12px 6px; text-align: center; background: var(--mint-pale); border-radius: 12px; }
.scan-summary b, .scan-summary span { display: block; }
.scan-summary b { color: var(--teal-dark); font-size: 1.15rem; }
.scan-summary span { color: var(--ink-soft); font-size: .7rem; font-weight: 700; }
.floating-note {
  position: absolute;
  z-index: 3;
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(9,38,58,.11);
  font-size: .75rem;
  font-weight: 800;
}
.floating-note span { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; }
.note-a { top: 90px; left: -5px; }
.note-b { right: -15px; bottom: 90px; }

.trust-strip { border-block: 1px solid var(--line); background: var(--white); }
.trust-grid { min-height: 112px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-grid > div { min-height: 62px; padding: 8px 25px; display: flex; align-items: center; gap: 14px; border-right: 1px solid var(--line); }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid p, .trust-grid strong { margin: 0; display: block; }
.trust-grid p { color: var(--ink-soft); font-size: .75rem; line-height: 1.35; }
.trust-grid strong { color: var(--navy); font-size: .9rem; }
.mini-icon { position: relative; flex: 0 0 38px; width: 38px; height: 38px; border-radius: 12px; background: var(--mint-pale); }
.shield-icon::before { position: absolute; inset: 8px 10px; border: 2px solid var(--teal); border-radius: 10px 10px 14px 14px; content: ""; }
.signal-icon::before { position: absolute; left: 9px; right: 9px; bottom: 9px; height: 16px; border: 2px solid var(--teal); border-top: 0; border-radius: 0 0 8px 8px; content: ""; }
.signal-icon::after { position: absolute; left: 11px; top: 9px; width: 16px; height: 2px; background: var(--teal); box-shadow: 0 6px 0 var(--teal); content: ""; }
.list-icon::before { position: absolute; inset: 9px; border-left: 3px solid var(--teal); background: repeating-linear-gradient(to bottom, var(--teal) 0 2px, transparent 2px 7px); content: ""; }
.scope-icon::before { position: absolute; inset: 9px; border: 2px solid var(--teal); border-radius: 50%; box-shadow: inset 0 0 0 5px var(--mint-pale), inset 0 0 0 7px var(--teal); content: ""; }

.section { padding-block: 105px; }
.section-heading h2, .boundaries-section h2, .cta-card h2 { font-size: clamp(2.25rem, 4vw, 4rem); }
.split-heading { display: grid; grid-template-columns: 1.4fr .6fr; gap: 80px; align-items: end; }
.split-heading > p, .demo-heading > p { margin: 0; color: var(--ink-soft); font-size: 1rem; }
.feature-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}
.feature-card.featured { color: var(--white); border-color: var(--navy); background: var(--navy); transform: translateY(-12px); }
.card-index { color: var(--teal); font-size: .76rem; font-weight: 850; letter-spacing: .12em; }
.feature-card h3 { margin: 70px 0 12px; font-family: Georgia, serif; font-size: 1.55rem; font-weight: 500; }
.feature-card p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.feature-card.featured p { color: #c7d7df; }

.demo-section { color: var(--white); background: var(--navy); }
.demo-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: end; }
.demo-heading h2 { color: var(--white); font-size: clamp(2.3rem, 4vw, 4rem); }
.demo-heading > p { color: #bed0d8; }
.privacy-alert {
  margin: 38px 0 22px;
  padding: 16px 20px;
  display: flex;
  gap: 10px 18px;
  flex-wrap: wrap;
  color: #ffe5c8;
  background: rgba(156, 77, 21, .22);
  border: 1px solid rgba(255, 191, 130, .35);
  border-radius: var(--radius-sm);
  font-size: .88rem;
}
.privacy-alert strong { color: #fff3e6; }
.demo-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 18px; }
.input-panel, .result-panel { min-height: 515px; padding: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); }
.input-panel { background: rgba(255,255,255,.06); }
.result-panel { display: flex; flex-direction: column; color: var(--ink); background: var(--white); }
.panel-heading { margin-bottom: 20px; display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.panel-heading h3 { margin: 3px 0 0; font-family: Georgia, serif; font-size: 1.5rem; font-weight: 500; }
.step-label { color: var(--mint); font-size: .68rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
#char-count { color: #aac0ca; font-size: .75rem; }
#document-input {
  width: 100%;
  min-height: 320px;
  padding: 18px;
  resize: vertical;
  color: #eff8f7;
  background: #071d2d;
  border: 1px solid rgba(185,236,225,.2);
  border-radius: var(--radius-sm);
  line-height: 1.65;
}
#document-input::placeholder { color: #7f9aa5; }
.demo-actions { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px; }
.demo-actions .button-accent { margin-left: auto; }
.local-note { margin: 17px 0 0; display: flex; align-items: center; gap: 8px; color: #9fb5bf; font-size: .75rem; }
.local-note span { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }
.empty-state { margin: auto; max-width: 330px; text-align: center; }
.empty-state h3 { margin: 24px 0 8px; font-family: Georgia, serif; font-size: 1.5rem; font-weight: 500; }
.empty-state p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.empty-visual { width: 116px; height: 116px; margin: 0 auto; position: relative; border: 1px solid var(--line); border-radius: 50%; }
.empty-visual span { position: absolute; left: 27px; right: 27px; height: 3px; background: var(--teal); border-radius: 4px; }
.empty-visual span:nth-child(1) { top: 39px; }
.empty-visual span:nth-child(2) { top: 56px; width: 42px; }
.empty-visual span:nth-child(3) { top: 73px; width: 28px; }
.result-head { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.result-head-top { display: flex; justify-content: space-between; gap: 15px; align-items: center; }
.result-head h3 { margin: 0; font-family: Georgia, serif; font-size: 1.5rem; font-weight: 500; }
.result-badge { padding: 5px 10px; color: var(--success); background: var(--mint-pale); border-radius: 999px; font-size: .7rem; font-weight: 850; }
.result-disclaimer { margin: 9px 0 0; color: var(--ink-soft); font-size: .78rem; }
.result-groups { padding-top: 10px; display: grid; gap: 9px; overflow: auto; }
.result-group { padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; background: #fbfdfc; }
.result-group.warning { border-color: #efd8bd; background: var(--warning-bg); }
.result-group.danger { border-color: #ebcaca; background: var(--danger-bg); }
.result-group h4 { margin: 0 0 6px; color: var(--navy); font-size: .88rem; }
.result-group ul { margin: 0; padding-left: 18px; color: var(--ink-soft); font-size: .8rem; }
.result-group li + li { margin-top: 3px; }

.boundaries-section { background: var(--sand); }
.boundary-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.section-intro { max-width: 500px; color: var(--ink-soft); }
.boundary-list { display: grid; gap: 10px; }
.boundary-list article {
  padding: 22px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 15px;
  border: 1px solid rgba(9,38,58,.1);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.48);
}
.boundary-list article > span { color: var(--teal-dark); font-size: .76rem; font-weight: 850; }
.boundary-list h3, .boundary-list p { margin: 0; }
.boundary-list h3 { font-size: 1rem; }
.boundary-list p { color: var(--ink-soft); font-size: .86rem; }
.cta-section { padding-block: 70px; }
.cta-card {
  padding: 55px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-dark), var(--navy));
  border-radius: var(--radius-lg);
}
.cta-card h2 { max-width: 700px; color: var(--white); }

.site-footer { padding-top: 70px; color: #c9d7dd; background: #061a29; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr 1fr; gap: 45px; }
.footer-brand strong { color: var(--white); }
.footer-grid > div:first-child > p { max-width: 330px; font-size: .85rem; }
.footer-grid h2 { margin: 0 0 15px; color: var(--white); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-grid a:not(.brand) { margin: 8px 0; display: block; color: #c9d7dd; text-decoration: none; font-size: .84rem; }
.footer-grid a:hover { color: var(--mint); }
.footer-status { padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; }
.footer-status span, .footer-status strong, .footer-status p { display: block; margin: 0; }
.footer-status span { color: #8ba5b0; font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-status strong { margin-top: 5px; color: var(--mint); font-size: .85rem; }
.footer-status p { margin-top: 6px; font-size: .75rem; }
.footer-bottom { margin-top: 55px; padding-block: 20px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; color: #8ba5b0; }

.legal-hero { padding: 90px 0 65px; background: linear-gradient(145deg, var(--mint-pale), var(--paper)); }
.legal-hero h1 { max-width: 860px; font-size: clamp(2.8rem, 6vw, 5.6rem); }
.legal-hero p:last-child { max-width: 720px; margin: 22px 0 0; color: var(--ink-soft); font-size: 1.05rem; }
.content-layout { padding-block: 70px 110px; display: grid; grid-template-columns: 230px 1fr; gap: 70px; align-items: start; }
.content-nav { position: sticky; top: 105px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.content-nav strong { display: block; margin-bottom: 12px; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.content-nav a { display: block; padding: 7px 0; color: var(--ink-soft); font-size: .82rem; text-decoration: none; }
.content-nav a:hover { color: var(--teal-dark); }
.prose { max-width: 820px; }
.prose section + section { margin-top: 55px; padding-top: 55px; border-top: 1px solid var(--line); }
.prose h2 { margin: 0 0 14px; color: var(--navy); font-family: Georgia, serif; font-size: 2rem; font-weight: 500; line-height: 1.2; }
.prose h3 { margin: 25px 0 8px; font-size: 1rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 20px; }
.placeholder-box { padding: 22px; color: var(--navy); background: var(--warning-bg); border: 1px solid #ecd2b4; border-radius: var(--radius-sm); }
.placeholder-box strong { display: block; margin-bottom: 8px; color: var(--warning); }
.project-kpis { margin: 35px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.project-kpis div { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.project-kpis strong, .project-kpis span { display: block; }
.project-kpis strong { color: var(--teal-dark); font-family: Georgia, serif; font-size: 1.5rem; font-weight: 500; }
.project-kpis span { color: var(--ink-soft); font-size: .76rem; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-sm); }
table { width: 100%; border-collapse: collapse; min-width: 670px; background: var(--white); }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: .82rem; }
th { color: var(--navy); background: var(--mint-pale); }
tr:last-child td { border-bottom: 0; }
.status-checklist { display: grid; gap: 9px; }
.status-checklist label {
  padding: 13px 15px;
  display: flex;
  gap: 11px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
  cursor: pointer;
}
.status-checklist input { margin-top: 4px; accent-color: var(--teal-dark); }
.status-checklist span { color: var(--ink-soft); font-size: .87rem; }
.checklist-note { font-size: .78rem; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; padding-block: 70px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 440px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); padding-block: 15px; }
  .trust-grid > div { border-right: 0; padding: 12px; }
  .split-heading, .demo-heading, .boundary-grid { grid-template-columns: 1fr; gap: 28px; }
  .demo-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-status { grid-column: 1 / -1; }
  .content-layout { grid-template-columns: 1fr; gap: 30px; }
  .content-nav { position: static; display: flex; flex-wrap: wrap; gap: 5px 18px; }
  .content-nav strong { width: 100%; }
}

@media (max-width: 720px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .site-header { position: relative; }
  .nav-wrap { min-height: 68px; flex-wrap: wrap; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    width: 100%;
    padding: 5px 0 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { min-height: 44px; padding: 11px 4px; }
  .site-nav .nav-cta { margin-top: 5px; text-align: center; }
  .menu-toggle[aria-expanded="true"] .menu-lines { background: transparent; }
  .menu-toggle[aria-expanded="true"] .menu-lines::before { top: 0; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-lines::after { top: 0; transform: rotate(-45deg); }
  .hero-grid { min-height: auto; padding-block: 58px 65px; gap: 30px; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 365px; }
  .orbit-one { width: 330px; height: 330px; }
  .orbit-two { width: 250px; height: 250px; }
  .scan-card { min-height: 310px; padding: 22px; }
  .document-lines { margin-top: 30px; }
  .scan-rule { margin: 32px 0 18px; }
  .note-a { top: 30px; left: 0; }
  .note-b { right: 0; bottom: 20px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { padding-inline: 0; }
  .section { padding-block: 72px; }
  .feature-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .feature-card { min-height: 235px; }
  .feature-card.featured { transform: none; }
  .feature-card h3 { margin-top: 42px; }
  .input-panel, .result-panel { min-height: 480px; padding: 18px; }
  .demo-actions .button { width: 100%; margin-left: 0; }
  .privacy-alert { display: block; }
  .privacy-alert strong { display: block; }
  .cta-card { padding: 34px 24px; flex-direction: column; align-items: stretch; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child, .footer-status { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .legal-hero { padding-block: 65px 45px; }
  .content-layout { padding-block: 45px 80px; }
  .project-kpis { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
