:root {
  color-scheme: light dark;
  --bg: #f4f8fb;
  --fg: #122033;
  --muted: #627287;
  --panel: #ffffff;
  --panel-soft: #eef5f8;
  --line: #d9e6ee;
  --brand: #075ba8;
  --brand-2: #0798c7;
  --ink: #081a2d;
  --ok: #0f9f6e;
  --warn: #d88909;
  --risk: #d33b3b;
  --shadow: 0 22px 55px rgba(16, 47, 78, .1);
}

/* Platform redesign layer */
.primary-nav,
.account-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.account-nav {
  justify-content: flex-end;
}

.nav-cta {
  border-radius: 8px;
  padding: 9px 13px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff !important;
}

.nav-menu {
  position: relative;
}

.nav-menu summary {
  list-style: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-menu summary::-webkit-details-marker { display: none; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  z-index: 40;
  width: min(520px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.nav-dropdown a {
  display: block;
  border-radius: 8px;
  padding: 10px;
  background: var(--panel-soft);
}

.nav-dropdown span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.platform-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
}

.smart-audit-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  max-width: 800px;
  margin-top: 24px;
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--line));
  border-radius: 8px;
  padding: 14px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.smart-audit-card label {
  display: grid;
  gap: 7px;
}

.smart-audit-card label span,
.audit-form label span {
  color: var(--fg);
  font-size: 13px;
  font-weight: 850;
}

.smart-audit-card input,
.tool-filter input,
.audit-form input,
.audit-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--panel);
  color: var(--fg);
  outline: none;
}

.smart-audit-card input:focus,
.tool-filter input:focus,
.audit-form input:focus,
.audit-form select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, transparent);
}

.smart-audit-card small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
}

.risk-stack {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.risk-stack div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px;
  background: color-mix(in srgb, var(--panel-soft) 72%, transparent);
}

.risk-stack small {
  grid-column: 2;
  color: var(--muted);
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(260px, 1.2fr);
  gap: 12px;
  align-items: stretch;
}

.stat-band article,
.stat-band p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--panel);
}

.stat-band strong {
  display: block;
  color: var(--brand);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.stat-band span,
.stat-band p {
  color: var(--muted);
  font-weight: 700;
}

.tool-filter {
  display: grid;
  gap: 12px;
  margin: 18px 0 24px;
}

.tool-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-chips a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--panel);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.tool-category-stack {
  display: grid;
  gap: 28px;
}

.tool-category {
  scroll-margin-top: 96px;
}

.category-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.category-head h2,
.category-head h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 32px);
}

.category-head p {
  max-width: 64ch;
  margin: 6px 0 0;
  color: var(--muted);
}

.tool-grid,
.product-grid,
.article-card-grid,
.use-case-grid,
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.footer-grid div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid strong {
  color: var(--fg);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-grid .link-btn {
  justify-self: start;
  padding: 0;
}

.tool-card,
.product-card,
.article-card,
.price-card,
.use-case-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(16, 47, 78, .06);
}

.tool-card h3,
.tool-card h4,
.product-card h3,
.article-card h2,
.article-card h3,
.price-card h2,
.price-card h3 {
  margin: 10px 0 7px;
}

.tool-card p,
.product-card p,
.article-card p,
.price-card p {
  color: var(--muted);
}

.tool-icon,
.product-card > span {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--brand) 12%, var(--panel-soft));
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.tool-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 850;
}

.status-pill.active {
  background: color-mix(in srgb, var(--ok) 13%, transparent);
  color: var(--ok);
}

.status-pill.planned {
  background: color-mix(in srgb, var(--warn) 15%, transparent);
  color: var(--warn);
}

.btn.mini {
  min-height: 34px;
  padding: 6px 10px;
  font-size: 12px;
}

.btn.disabled {
  opacity: .55;
  pointer-events: none;
}

.product-section,
.trust-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compare-mini {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.compare-mini div {
  border-left: 3px solid var(--brand);
  padding-left: 10px;
}

.compare-mini small {
  display: block;
  color: var(--muted);
}

.upgrade-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--line));
  border-radius: 8px;
  padding: clamp(18px, 3vw, 30px);
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 9%, var(--panel)), var(--panel));
}

.upgrade-band h2,
.page-hero h1 {
  margin: 6px 0 10px;
}

.upgrade-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.use-case-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.use-case-grid article {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  min-height: 116px;
  color: var(--fg);
  font-weight: 850;
  text-align: center;
}

.use-case-icon {
  width: 24px;
  height: 24px;
}

.use-case-grid .use-case-icon {
  width: 34px;
  height: 34px;
  color: var(--brand);
}

.article-card {
  color: inherit;
  text-decoration: none;
}

.article-card span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero {
  max-width: 900px;
  padding: clamp(34px, 6vw, 72px) 0 28px;
}

.pricing-stack {
  display: grid;
  gap: 28px;
}

.pricing-product {
  display: grid;
  gap: 14px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.price-card.featured {
  border-color: color-mix(in srgb, var(--brand) 42%, var(--line));
  box-shadow: var(--shadow);
}

.price-amount {
  display: grid;
  gap: 3px;
  width: fit-content;
  max-width: 100%;
  margin: 7px 0 10px;
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--line));
  border-radius: 8px;
  padding: 7px 10px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand) 8%, transparent), transparent),
    var(--panel-soft);
}

.price-amount strong {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--fg);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.1;
}

.price-amount strong span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-decoration: line-through;
}

.price-amount > span,
.price-amount em {
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.price-amount.pro {
  border-color: color-mix(in srgb, var(--ok) 28%, var(--line));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--ok) 10%, transparent), transparent),
    var(--panel-soft);
}

.plan-copy {
  min-height: 42px;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.price-card ul {
  display: grid;
  gap: 6px;
  margin: 12px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 8px;
  color: var(--fg);
  font-size: 13px;
  line-height: 1.32;
}

.mark {
  color: var(--ok);
  font-weight: 900;
}

.status-table {
  overflow-x: auto;
}

.status-table table {
  width: 100%;
  border-collapse: collapse;
}

.status-table th,
.status-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: left;
}

.payment-methods {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.payment-methods small {
  flex-basis: 100%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.payment-methods-compact {
  margin: 10px 0 0;
}

.payment-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 10px;
  background: var(--panel);
  color: var(--fg);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(16, 47, 78, .05);
}

.payment-chip svg {
  flex: 0 0 auto;
}

.account-page {
  width: min(100%, 860px);
  padding-top: clamp(18px, 3vw, 34px);
}

.account-shell {
  display: grid;
  gap: 12px;
  width: min(100%, 620px);
  margin: 0 auto;
}

.account-head {
  text-align: center;
}

.account-head h1 {
  margin: 6px 0 8px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
}

.account-head .muted {
  margin-inline: auto;
}

.account-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(14px, 2vw, 18px);
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(16, 47, 78, .08);
}

.account-card-head {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-bottom: 12px;
}

.account-card-head .use-case-icon {
  width: 24px;
  height: 24px;
  color: var(--brand);
}

.account-card-head > .use-case-icon {
  display: grid;
  place-self: start;
  box-sizing: content-box;
  border-radius: 8px;
  padding: 7px;
  background: color-mix(in srgb, var(--brand) 10%, var(--panel-soft));
}

.account-card h2 {
  margin: 0 0 4px;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.18;
}

.account-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.account-form {
  display: grid;
  gap: 10px;
}

.account-form label {
  display: grid;
  gap: 7px;
}

.account-form label span {
  color: var(--fg);
  font-size: 13px;
  font-weight: 850;
}

.account-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--panel);
  color: var(--fg);
}

.account-form input:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 16%, transparent);
}

.danger-card {
  border-color: color-mix(in srgb, var(--risk) 28%, var(--line));
}

.account-table table {
  font-size: 14px;
}

.account-table th,
.account-table td {
  padding: 10px;
}

.paypal-chip {
  border-color: color-mix(in srgb, #0070ba 34%, var(--line));
  color: #003087;
  background: color-mix(in srgb, #ffc439 16%, var(--panel));
}

@media (prefers-color-scheme: dark) {
  .paypal-chip {
    color: #8bd3ff;
    background: color-mix(in srgb, #0070ba 22%, var(--panel));
  }
}

@media (max-width: 1100px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand img {
    width: min(300px, 76vw);
  }

  .hero,
  .platform-hero,
  .upgrade-band,
  .stat-band {
    grid-template-columns: 1fr;
  }

  .tool-grid,
  .product-grid,
  .article-card-grid,
  .doc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .primary-nav,
  .account-nav {
    width: 100%;
  }

  .nav-dropdown,
  .smart-audit-card,
  .pricing-grid,
  .tool-grid,
  .product-grid,
  .article-card-grid,
  .doc-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .signal-grid,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .account-page {
    padding-top: 18px;
  }

  .account-shell {
    width: 100%;
  }

  .account-card-head {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .account-card h2 {
    font-size: 19px;
  }

  .account-table table,
  .account-table tbody,
  .account-table tr,
  .account-table td {
    display: block;
    width: 100%;
  }

  .account-table tr:first-child {
    display: none;
  }

  .account-table tr {
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
  }

  .account-table td {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
    border: 0;
    padding: 6px 0;
  }

  .account-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #09121f;
    --fg: #edf6fb;
    --muted: #a9bac8;
    --panel: #111d2c;
    --panel-soft: #0d1825;
    --line: #24384d;
    --brand: #46bdf2;
    --brand-2: #22d3ee;
    --ink: #07111d;
    --shadow: 0 24px 70px rgba(0, 0, 0, .32);
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(7, 152, 199, .14), transparent 32rem),
    linear-gradient(180deg, #f8fbfd 0%, var(--bg) 42%, var(--bg) 100%);
  color: var(--fg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  line-height: 1.5;
}

@media (prefers-color-scheme: dark) {
  body {
    background:
      radial-gradient(circle at 12% 0%, rgba(34, 211, 238, .12), transparent 30rem),
      linear-gradient(180deg, #0c1624 0%, var(--bg) 48%, var(--bg) 100%);
  }
}

a { color: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 9px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(180, 203, 216, .55);
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  display: block;
  width: clamp(210px, 22vw, 320px);
  height: 50px;
  border-radius: 8px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: 3px 8px;
  box-shadow: 0 8px 22px rgba(4, 35, 63, .12);
}

.brand span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--brand);
  color: white;
  font-weight: 900;
}

.topbar nav,
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer .footer-grid {
  display: grid;
}

.topbar nav a,
.footer nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.topbar nav a:hover,
.footer nav a:hover { color: var(--brand); }

main {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px) 72px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, .96fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(30px, 5vw, 64px) 0 42px;
}

.pro-hero h1,
.report-hero h1,
.payment-hero h1 {
  margin: 8px 0 14px;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-main { max-width: 760px; }

.eyebrow {
  margin: 0;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lead,
.muted {
  max-width: 68ch;
  color: var(--muted);
}

.lead {
  margin: 14px 0 0;
  font-size: clamp(15px, 1.25vw, 17px);
}

.ip-display {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  max-width: 680px;
  margin: 16px 0 0;
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--line));
  border-radius: 8px;
  padding: clamp(14px, 2vw, 18px);
  background: linear-gradient(135deg, var(--panel), color-mix(in srgb, var(--panel-soft) 68%, white));
  box-shadow: var(--shadow);
}

.ip-display span,
.ip-value {
  color: var(--fg);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
  overflow-wrap: anywhere;
}

.icon-btn {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  background: var(--ink);
  color: white;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 16px;
  background: var(--panel);
  color: var(--fg);
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .55) inset;
}

.btn:hover { border-color: color-mix(in srgb, var(--brand) 48%, var(--line)); }

.btn.primary {
  border-color: var(--brand);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  box-shadow: 0 12px 26px rgba(7, 91, 168, .22);
}

.btn.premium {
  border-color: rgba(216, 137, 9, .42);
  background: #fff8e8;
  color: #744600;
}

@media (prefers-color-scheme: dark) {
  .btn.premium {
    background: rgba(216, 137, 9, .14);
    color: #ffd98c;
  }
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid color-mix(in srgb, var(--brand) 20%, var(--line));
  border-radius: 999px;
  padding: 5px 10px;
  background: color-mix(in srgb, var(--panel) 82%, transparent);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.signal-grid article,
.card,
.panel,
.tool,
.finding,
.plan-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--panel) 96%, white);
  box-shadow: var(--shadow);
}

.signal-grid article {
  min-height: 88px;
  padding: 14px;
}

.signal-grid small,
.card small,
.price-card small,
.plan-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.signal-grid strong,
.card strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.globe-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(390px, 46vw, 620px);
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--line));
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.86), rgba(227, 241, 248, .88)),
    radial-gradient(circle at 52% 44%, rgba(7, 152, 199, .22), transparent 22rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

@media (prefers-color-scheme: dark) {
  .globe-card {
    background:
      linear-gradient(160deg, rgba(19, 34, 52, .96), rgba(9, 18, 31, .96)),
      radial-gradient(circle at 52% 44%, rgba(34, 211, 238, .18), transparent 20rem);
  }
}

.globe-card canvas {
  position: relative;
  z-index: 1;
  width: min(100%, 590px);
  max-height: min(70vh, 590px);
  aspect-ratio: 1;
  border-radius: 50%;
  touch-action: none;
  filter: drop-shadow(0 28px 35px rgba(3, 17, 32, .28));
}

.globe-label {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 22px;
  width: max-content;
  max-width: calc(100% - 40px);
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  padding: 9px 12px;
  background: rgba(8, 26, 45, .88);
  color: white;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  overflow-wrap: anywhere;
  backdrop-filter: blur(10px);
}

.globe-label span {
  color: #dbeaf4;
  font-weight: 650;
}

.connection-panel {
  align-self: stretch;
  display: grid;
  align-content: center;
  min-height: clamp(390px, 42vw, 560px);
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--line));
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--brand) 8%, var(--panel)), var(--panel) 58%),
    var(--panel);
  box-shadow: var(--shadow);
}

.connection-panel h2 {
  margin: 8px 0 22px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
}

.connection-panel .clean-list {
  margin-bottom: 18px;
}

.diagnostic-console {
  align-self: stretch;
  display: grid;
  gap: 18px;
  min-height: clamp(430px, 42vw, 590px);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--line));
  border-radius: 8px;
  padding: clamp(20px, 3.4vw, 32px);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--brand) 9%, var(--panel)), var(--panel) 58%),
    var(--panel);
  box-shadow: var(--shadow);
}

.console-head {
  position: relative;
}

.console-head h2 {
  margin: 8px 0 0;
  max-width: 9ch;
  font-size: clamp(30px, 3.7vw, 52px);
  line-height: 1.02;
}

.live-pill {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  border-radius: 999px;
  padding: 4px 10px;
  background: color-mix(in srgb, var(--ok) 13%, transparent);
  color: var(--ok);
  font-size: 12px;
  font-weight: 900;
}

.live-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--ok) 55%, transparent);
  animation: live-pulse 1.8s ease-out infinite;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--ok) 55%, transparent); }
  70% { box-shadow: 0 0 0 7px color-mix(in srgb, var(--ok) 0%, transparent); }
  100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--ok) 0%, transparent); }
}

@media (prefers-reduced-motion: reduce) {
  .live-pill::before { animation: none; }
}

.diagnostic-meter {
  display: grid;
  place-items: center;
  justify-self: center;
  width: min(240px, 64vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--panel) 0 55%, transparent 56%),
    conic-gradient(var(--ok) 0 86%, color-mix(in srgb, var(--line) 75%, transparent) 86% 100%);
  box-shadow: inset 0 0 0 1px var(--line), 0 18px 38px rgba(7, 91, 168, .12);
  transition: background .22s ease;
}

.diagnostic-meter div {
  display: grid;
  place-items: center;
  text-align: center;
}

.diagnostic-meter strong {
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1;
}

.diagnostic-meter span {
  max-width: 13ch;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.diagnostic-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--panel-soft) 70%, transparent);
}

.diagnostic-tabs button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.diagnostic-tabs button.active {
  background: var(--panel);
  color: var(--brand);
  box-shadow: 0 8px 18px rgba(7, 91, 168, .08);
}

.diagnostic-panels section {
  display: none;
}

.diagnostic-panels section.active {
  display: block;
  animation: panel-in .28s ease;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.diagnostic-tabs button {
  transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}

.diagnostic-meter { cursor: default; }

@media (prefers-reduced-motion: reduce) {
  .diagnostic-panels section.active { animation: none; }
}

.diagnostic-console .btn {
  width: 100%;
}

.section { padding-top: 58px; }

.section-divider { border-top: 1px solid var(--line); }

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.how-it-works-grid article {
  min-height: 176px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.how-it-works-grid span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  color: var(--brand);
  font-size: 12px;
  font-weight: 950;
}

.how-it-works-grid h3 {
  margin: 16px 0 8px;
  font-size: 18px;
}

.how-it-works-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
}

@media (max-width: 900px) {
  .how-it-works-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .how-it-works-grid { grid-template-columns: 1fr; }
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section h2,
.panel h2 {
  margin: 5px 0 14px;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

.panel h2 { font-size: 22px; }

.grid { display: grid; gap: 14px; }

.facts { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  min-height: 104px;
  padding: 16px;
}

.data-card {
  border-left: 4px solid color-mix(in srgb, var(--brand) 55%, var(--line));
}

.corporate-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.corporate-copy {
  position: sticky;
  top: 96px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--line));
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand) 8%, var(--panel)), var(--panel)),
    var(--panel);
  box-shadow: var(--shadow);
}

.corporate-copy h2 {
  margin: 8px 0 14px;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.05;
}

.corporate-copy p {
  margin: 0;
  color: var(--muted);
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.confidence-grid article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.confidence-grid span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  color: var(--brand);
  font-size: 12px;
  font-weight: 950;
}

.confidence-grid h3 {
  margin: 16px 0 8px;
  font-size: 20px;
}

.confidence-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.audit-block {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 24px;
  align-items: stretch;
  border-top: 1px solid var(--line);
}

.audit-copy {
  padding: clamp(22px, 3vw, 28px);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(7, 91, 168, .08), rgba(7, 152, 199, .05));
}

.audit-copy p { color: var(--muted); }

.plan-grid,
.choice-grid,
.report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.plan-card {
  min-height: 164px;
  padding: 18px;
}

.plan-card h3 {
  margin: 9px 0 8px;
  font-size: 21px;
}

.plan-card p {
  margin: 0;
  color: var(--muted);
}

.plan-card.highlighted {
  border-color: rgba(216, 137, 9, .45);
  background: linear-gradient(135deg, #fffaf0, var(--panel));
}

@media (prefers-color-scheme: dark) {
  .plan-card.highlighted { background: linear-gradient(135deg, rgba(216, 137, 9, .12), var(--panel)); }
}

.panel {
  padding: 20px;
}

form { display: grid; gap: 12px; }

label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--fg);
  padding: 10px 12px;
  font: inherit;
}

input:focus {
  border-color: var(--brand);
  outline: 3px solid color-mix(in srgb, var(--brand) 18%, transparent);
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.check input,
.choice input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  cursor: pointer;
}

.choice span,
.choice small {
  margin: 0;
  color: var(--fg);
  font-weight: 850;
}

.choice small {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
}

.tool-strip,
.tool-forms {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tool {
  min-height: 152px;
  padding: 17px;
}

.tool span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 3px 8px;
  background: color-mix(in srgb, var(--ok) 13%, transparent);
  color: var(--ok);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.tool h3 {
  margin: 11px 0 7px;
  font-size: 18px;
}

.tool p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.learn-preview {
  border-top: 1px solid var(--line);
}

.learn-link-grid,
.learn-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.learn-link,
.learn-card,
.info-diagram {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.learn-link {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 18px;
  text-decoration: none;
}

.learn-link:hover {
  border-color: color-mix(in srgb, var(--brand) 42%, var(--line));
}

.learn-link strong,
.learn-card h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
}

.learn-link small,
.learn-card p {
  color: var(--muted);
  font-size: 14px;
}

.pictogram {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand) 18%, transparent), color-mix(in srgb, var(--ok) 13%, transparent)),
    var(--panel-soft);
  color: var(--brand);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .04em;
}

.pictogram .use-case-icon {
  width: 25px;
  height: 25px;
}

.learn-page {
  max-width: 1180px;
}

.learn-hero {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(320px, 1.04fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  padding: clamp(16px, 3vw, 34px) 0 18px;
}

.learn-hero h1 {
  margin: 8px 0 12px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

.info-diagram {
  display: grid;
  gap: 18px;
  min-height: 310px;
  padding: clamp(20px, 3.6vw, 34px);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--brand) 8%, var(--panel)), var(--panel) 58%),
    var(--panel);
}

.info-diagram > strong {
  font-size: 22px;
}

.diagram-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.diagram-flow span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 104px;
  border: 1px solid color-mix(in srgb, var(--brand) 20%, var(--line));
  border-radius: 8px;
  padding: 12px;
  background: color-mix(in srgb, var(--panel-soft) 74%, transparent);
  color: var(--fg);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.diagram-flow span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -11px;
  z-index: 2;
  width: 11px;
  height: 2px;
  background: var(--brand);
}

.audit-flow span:nth-child(2),
.version-flow span:nth-child(3) {
  border-color: color-mix(in srgb, var(--warn) 44%, var(--line));
}

.learn-card {
  min-height: 230px;
  padding: 20px;
}

.learn-card h2 {
  margin-top: 18px;
}

.pictogram-2 {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--ok) 18%, transparent), color-mix(in srgb, var(--brand) 10%, transparent)),
    var(--panel-soft);
  color: var(--ok);
}

.pictogram-3 {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--warn) 18%, transparent), color-mix(in srgb, var(--brand) 8%, transparent)),
    var(--panel-soft);
  color: var(--warn);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
  margin-top: 30px;
}

.article-body {
  display: grid;
  gap: 18px;
}

.article-body section,
.article-aside,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.article-body section {
  padding: clamp(20px, 3vw, 28px);
}

.article-body h2,
.article-aside h2,
.faq-section h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.12;
}

.article-body p {
  max-width: 76ch;
  margin: 0 0 12px;
  color: var(--muted);
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: 18px;
}

.related-list {
  display: grid;
  gap: 8px;
}

.related-list a {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.related-list a:hover {
  color: var(--brand);
}

.faq-section {
  margin-top: 36px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 16px;
}

.faq-list summary {
  color: var(--fg);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.notice {
  margin: 14px 0;
  border-radius: 8px;
  padding: 12px 14px;
}

.notice.error {
  border: 1px solid #fecaca;
  background: #fee2e2;
  color: var(--risk);
}

.notice.success {
  border: 1px solid color-mix(in srgb, var(--ok) 45%, transparent);
  background: color-mix(in srgb, var(--ok) 13%, transparent);
  color: var(--ok);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.compare-card {
  padding: 20px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.compare-card.highlighted {
  border-color: rgba(216, 137, 9, .45);
  background: linear-gradient(135deg, #fffaf0, var(--panel));
}

@media (prefers-color-scheme: dark) {
  .compare-card.highlighted { background: linear-gradient(135deg, rgba(216, 137, 9, .12), var(--panel)); }
}

.compare-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.compare-card li.yes { color: var(--fg); }
.compare-card li .mark { flex: none; font-weight: 900; }
.compare-card li.yes .mark { color: var(--ok); }
.compare-card li.no .mark { color: var(--muted); }

.compare-price {
  font-size: 28px;
  font-weight: 900;
}

.compare-price .old-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 8px;
}

.severity-bars {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.severity-bar-row {
  display: grid;
  grid-template-columns: 90px 1fr 30px;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.severity-bar-track {
  height: 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--line) 60%, transparent);
  overflow: hidden;
}

.severity-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  transition: width 1s ease;
}

.severity-bar-fill.risk { background: var(--risk); }
.severity-bar-fill.warn { background: var(--warn); }
.severity-bar-fill.ok { background: var(--ok); }

@media (max-width: 760px) {
  .compare-grid { grid-template-columns: 1fr; }
}

.report-page { max-width: 1180px; }

.report-hero,
.payment-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 310px);
  gap: 22px;
  align-items: stretch;
}

.report-hero > div:first-child,
.payment-hero > div:first-child {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.score-panel,
.price-card {
  display: grid;
  place-items: center;
  min-height: 250px;
  padding: 24px;
  text-align: center;
}

.score-panel strong,
.price-card strong {
  display: block;
  font-size: clamp(58px, 7vw, 92px);
  line-height: 1;
}

.score-panel span,
.price-card span {
  color: var(--muted);
  font-weight: 850;
}

.score-panel.ok { border-color: rgba(15, 159, 110, .45); }
.score-panel.warn { border-color: rgba(216, 137, 9, .5); }
.score-panel.risk { border-color: rgba(211, 59, 59, .5); }
.score-panel.ok strong { color: var(--ok); }
.score-panel.warn strong { color: var(--warn); }
.score-panel.risk strong { color: var(--risk); }

.report-facts {
  margin-top: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.traffic-list,
.clean-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.traffic-list div,
.clean-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 10px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
}

.traffic-list div:last-child,
.clean-list div:last-child { border-bottom: 0; }

.traffic-list small,
.clean-list dt {
  grid-column: 2;
  color: var(--muted);
  font-size: 13px;
}

.clean-list dt { grid-column: 1; font-weight: 850; }
.clean-list dd { margin: 0; text-align: right; overflow-wrap: anywhere; }

.lamp {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0,0,0,.04);
}

.lamp.ok { background: var(--ok); }
.lamp.warn { background: var(--warn); }
.lamp.risk { background: var(--risk); }

.country-flag {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  font-size: 18px;
  line-height: 1;
}

.finding {
  display: grid;
  gap: 4px;
  margin: 10px 0;
  padding: 14px;
  border-left: 4px solid var(--line);
  box-shadow: none;
}

.finding strong { font-size: 12px; letter-spacing: .08em; }
.finding span { font-weight: 900; }
.finding p { margin: 0; color: var(--muted); }
.finding-ok { border-left-color: var(--ok); }
.finding-warn { border-left-color: var(--warn); }
.finding-risk { border-left-color: var(--risk); }

pre {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: color-mix(in srgb, var(--panel) 72%, #000 4%);
}

.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
}

@media (max-width: 760px) {
  table { min-width: 560px; }
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 11px 10px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.legal-note { margin: 20px 0 0; }

.payment-meta { margin: 20px 0; }

.ad-slot:empty { display: none; }
.ad-slot { margin: 18px 0; }
.ad-slot img {
  display: block;
  max-width: 100%;
  height: auto;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding: 28px clamp(18px, 4vw, 64px);
  color: var(--muted);
}

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

@media (max-width: 1120px) {
  .hero,
  .audit-block,
  .corporate-section,
  .report-hero,
  .payment-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .facts,
  .tool-strip,
  .tool-forms,
  .learn-link-grid,
  .learn-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .globe-card { min-height: 500px; }

  .corporate-copy {
    position: static;
  }

  .connection-panel {
    min-height: auto;
  }

  .diagnostic-console {
    min-height: auto;
  }

  .learn-hero {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .topbar {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .brand img {
    width: min(260px, 78vw);
    height: 50px;
  }

  .topbar nav { width: 100%; }

  main { padding-bottom: 46px; }

  .hero {
    gap: 22px;
    padding-top: 26px;
  }

  .pro-hero h1,
  .report-hero h1,
  .payment-hero h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .ip-display {
    grid-template-columns: 1fr;
  }

  .ip-display span {
    font-size: clamp(28px, 8vw, 38px);
  }

  .hero-actions,
  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn,
  .icon-btn { width: 100%; }

  .signal-grid,
  .facts,
  .tool-strip,
  .tool-forms,
  .plan-grid,
  .choice-grid,
  .confidence-grid,
  .learn-link-grid,
  .learn-card-grid,
  .diagram-flow,
  .report-grid,
  .report-facts {
    grid-template-columns: 1fr;
  }

  .diagram-flow span:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -11px;
    width: 2px;
    height: 11px;
  }

  .globe-card { min-height: 340px; }
  .globe-card canvas { width: min(100%, 340px); }

  .section { padding-top: 42px; }
  .section-head { display: block; }

  .score-panel,
  .price-card { min-height: 190px; }

  .footer { display: grid; }
}

.audit-progress-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 20px;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(3px);
}

.audit-progress-overlay[hidden] { display: none; }

.audit-progress-card {
  width: min(420px, 100%);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .2);
}

.audit-progress-bar-track {
  height: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--line) 60%, transparent);
  overflow: hidden;
  margin: 16px 0 20px;
}

.audit-progress-bar-fill {
  height: 100%;
  width: 6%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transition: width .5s ease;
}

.audit-progress-steps {
  display: grid;
  gap: 12px;
}

.audit-progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  transition: color .2s ease;
}

.audit-progress-step .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
  flex: none;
  transition: background .2s ease, box-shadow .2s ease;
}

.audit-progress-step.active {
  color: var(--fg);
  font-weight: 700;
}

.audit-progress-step.active .dot {
  background: var(--brand-2);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-2) 20%, transparent);
}

.audit-progress-step.done .dot { background: var(--ok); }

.verify-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.verify-seal {
  width: 148px;
  height: 148px;
  flex: none;
  justify-self: center;
  border-radius: 50%;
  border: 3px solid color-mix(in srgb, var(--ok) 55%, var(--brand));
  outline: 1px solid color-mix(in srgb, var(--ok) 25%, transparent);
  outline-offset: 5px;
  display: grid;
  place-items: center;
  text-align: center;
  transform: rotate(-9deg);
  background: radial-gradient(circle at center, color-mix(in srgb, var(--ok) 7%, var(--panel)) 0 70%, transparent 71%);
  box-shadow: 0 10px 26px rgba(7, 91, 168, .14);
}

.verify-seal-inner {
  display: grid;
  gap: 4px;
  place-items: center;
  padding: 10px;
}

.verify-seal-check {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ok);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 2px;
}

.verify-seal-inner strong {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ok) 60%, var(--brand));
  line-height: 1.25;
}

.verify-seal-inner span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}

.verify-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ok) 14%, transparent);
  color: var(--ok);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
}

@media (max-width: 760px) {
  .verify-hero { grid-template-columns: 1fr; }
  .verify-seal { justify-self: start; }
}

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  padding: 16px;
  display: grid;
  place-items: center;
}

.consent-banner[hidden] { display: none; }

.consent-card {
  width: min(760px, 100%);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .22);
  display: grid;
  gap: 8px;
}

.consent-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.link-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
}

.link-btn:hover { color: var(--brand); }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel) 82%, transparent);
  font-size: 12px;
  font-weight: 750;
  color: var(--muted);
}

.trust-badge svg { flex: none; color: var(--brand-2); }

.audit-progress-trust {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}

.trust-badges-compact { gap: 6px; }

.trust-badges-compact .trust-badge {
  padding: 4px 9px;
  font-size: 11px;
}

@media (max-width: 760px) {
  .consent-actions { flex-direction: column; }
  .consent-actions .btn { width: 100%; text-align: center; }
}
