:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #edf3f5;
  --ink: #172026;
  --muted: #65727c;
  --line: #dce5ea;
  --navy: #111c24;
  --navy-2: #172631;
  --teal: #0e9f8b;
  --teal-dark: #087c70;
  --amber: #f2a71b;
  --red: #d84d4d;
  --green: #16a36a;
  --blue: #3563d8;
  --shadow: 0 18px 50px rgba(20, 35, 45, .10);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
  overflow-x: hidden;
}
body::selection { background: rgba(14, 159, 139, .18); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
code, pre { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 248, 251, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav { height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--navy); }
.brand-large { font-size: 22px; }
.brand-logo-link { line-height: 0; }
.brand-logo {
  display: block;
  width: auto;
  height: 34px;
  max-width: 168px;
  object-fit: contain;
}
.brand-large .brand-logo {
  height: 42px;
  max-width: 210px;
  margin-bottom: 2px;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  box-shadow: inset 0 -3px 0 rgba(14, 159, 139, .45);
}
.nav-links { display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: 14px; font-weight: 650; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 16px;
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(17, 28, 36, .10); }
.btn.primary { background: var(--teal); border-color: var(--teal); color: #fff; }
.btn.dark { background: var(--navy); border-color: var(--navy); color: #fff; }
.btn.danger { background: var(--red); border-color: var(--red); color: #fff; }
.btn.ghost { background: transparent; }
.btn.small { min-height: 34px; padding: 0 12px; font-size: 12px; }

.hero {
  position: relative;
  padding: 86px 0 58px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(246,248,251,0)),
    radial-gradient(circle at 15% 16%, rgba(14,159,139,.13), transparent 30%),
    radial-gradient(circle at 84% 22%, rgba(53,99,216,.11), transparent 28%);
}
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 54px; align-items: center; }
.hero h1 { margin: 0; font-size: clamp(42px, 6vw, 76px); line-height: .96; letter-spacing: 0; color: var(--navy); max-width: 720px; }
.lead { margin: 24px 0 0; color: #40505b; font-size: 18px; line-height: 1.65; max-width: 620px; }
.hero-actions { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-assurance { display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.hero-assurance span {
  min-height: 30px;
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(14,159,139,.24);
  border-radius:999px;
  padding:0 12px;
  background:#f0fbf8;
  color:#087c70;
  font-size:12px;
  font-weight:850;
}
.proof-strip { margin-top: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 620px; }
.proof { border-left: 3px solid var(--teal); padding: 4px 12px; }
.proof-strip.vivid .proof {
  min-height: 86px;
  padding: 14px 16px;
  border:1px solid var(--line);
  border-left:3px solid var(--teal);
  border-radius: var(--radius);
  background:rgba(255,255,255,.78);
  box-shadow: 0 12px 28px rgba(18,31,42,.045);
}
.proof strong { display: block; font-size: 24px; color: var(--navy); }
.proof span { color: var(--muted); font-size: 12px; font-weight: 700; }

.product-preview, .panel, .card, .auth-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.product-preview { padding: 16px; transform: perspective(1100px) rotateY(-4deg) rotateX(2deg); }
.preview-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.dots { display: flex; gap: 6px; }
.dots span { width: 9px; height: 9px; border-radius: 999px; background: var(--line); }
.risk-meter { height: 240px; padding: 18px; border-radius: var(--radius); background: linear-gradient(135deg, #12202a, #1c3440); color: #fff; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.meter-number { font-size: 70px; font-weight: 850; line-height: 1; color: #69dccd; }
.meter-copy { color: #a9bdc8; line-height: 1.55; }
.spark-bars { display: flex; align-items: end; gap: 9px; height: 148px; }
.spark-bars i { width: 100%; background: #244754; border-radius: 4px 4px 0 0; }
.spark-bars i:nth-child(2n) { background: var(--teal); }
.spark-bars i:nth-child(5) { background: var(--amber); }
.preview-table { margin-top: 14px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.preview-row { display: grid; grid-template-columns: 1.2fr .8fr .6fr; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--line); font-size: 13px; }
.preview-row:last-child { border-bottom: 0; }
.status { display: inline-flex; align-items: center; justify-content: center; min-width: 92px; height: 28px; border-radius: 999px; padding: 0 10px; font-size: 12px; font-weight: 800; white-space: nowrap; }
.status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  margin-right: 6px;
  background: currentColor;
  opacity: .75;
}
.status.clean, .status.allow, .status.active { background: #e4f8ef; color: #087a4e; }
.status.warning, .status.challenge, .status.pending { background: #fff2d2; color: #966308; }
.status.critical, .status.block, .status.suspended { background: #ffe4e4; color: #b33131; }

.section { padding: 72px 0; }
.soft-band {
  background:
    linear-gradient(180deg, #ffffff, #f4f8fb);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section h2 { margin: 0 0 16px; font-size: clamp(30px, 4vw, 48px); line-height: 1.04; color: var(--navy); }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 28px; }
.section-head p { max-width: 560px; color: var(--muted); line-height: 1.65; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 24px; box-shadow: none; }
.card:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(18,31,42,.07); transition: transform .18s ease, box-shadow .18s ease; }
.card h3 { margin: 0 0 10px; font-size: 20px; }
.card p { margin: 0; color: var(--muted); line-height: 1.6; }
.icon-box { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 8px; background: #e2f5f1; color: var(--teal-dark); margin-bottom: 18px; font-weight: 900; }
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; align-items: start; }
.code-block {
  position: relative;
  background: #101820;
  color: #d7f7ef;
  border-radius: var(--radius);
  padding: 20px;
  overflow: auto;
  line-height: 1.7;
  font-size: 13px;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.workflow-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 36px rgba(18,31,42,.045);
}
.workflow-grid span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #e2f5f1;
  color: var(--teal-dark);
  font-weight: 900;
}
.workflow-grid strong { display: block; margin-top: 18px; color: var(--navy); font-size: 18px; }
.workflow-grid p { margin: 10px 0 0; color: var(--muted); line-height: 1.6; font-size: 14px; }
.signal-band {
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#111c24;
  color:#fff;
}
.signal-band-inner {
  min-height: 96px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.signal-band strong { display:block; font-size:18px; }
.signal-band span { color:#a8bac5; font-size:14px; line-height:1.55; }
.signal-pills { display:flex; flex-wrap:wrap; gap:8px; justify-content:flex-end; }
.signal-pills span {
  min-height:30px;
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  padding:0 12px;
  color:#d8edf0;
  background:rgba(255,255,255,.06);
  font-size:12px;
  font-weight:850;
}
.feature-grid-rich .card:nth-child(2n) .icon-box { background:#e9efff; color:#244fc3; }
.feature-grid-rich .card:nth-child(3n) .icon-box { background:#fff1d6; color:#966308; }
.feature-detail-grid {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.feature-detail {
  min-height: 330px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:0 16px 36px rgba(18,31,42,.04);
}
.feature-detail h3 { margin:0 0 10px; color:var(--navy); font-size:21px; }
.feature-detail p { margin:0; color:var(--muted); line-height:1.6; }
.feature-detail ul { display:grid; gap:8px; padding:0; margin:18px 0 0; list-style:none; color:#40505b; font-size:13px; font-weight:750; }
.feature-detail li::before { content:"✓"; color:var(--teal); font-weight:900; margin-right:8px; }
.feature-hero {
  background:
    linear-gradient(180deg, #fff, #f7fbfd),
    radial-gradient(circle at 88% 18%, rgba(53,99,216,.10), transparent 30%);
}
.feature-hero-panel {
  display:grid;
  gap:12px;
  padding:20px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#101820;
  color:#fff;
  box-shadow:var(--shadow);
}
.feature-hero-panel div {
  padding:18px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  background:rgba(255,255,255,.05);
}
.feature-hero-panel strong { display:block; font-size:18px; }
.feature-hero-panel span { display:block; margin-top:6px; color:#a9bdc8; font-size:13px; }
.insight-split { align-items:center; }
.insight-list { display:grid; gap:12px; margin-top:24px; }
.insight-list div { display:grid; grid-template-columns:150px 1fr; gap:12px; padding:13px 0; border-bottom:1px solid var(--line); }
.insight-list strong { color:var(--navy); }
.insight-list span { color:var(--muted); font-weight:750; }
.ads-insight-panel {
  padding:20px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow);
}
.ads-insight-head, .ads-insight-row { display:flex; justify-content:space-between; gap:14px; align-items:center; }
.ads-insight-head { margin-bottom:16px; }
.ads-insight-head strong { color:var(--navy); font-size:20px; }
.ads-insight-head span { color:var(--muted); font-size:12px; font-weight:850; }
.ads-insight-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-bottom:18px; }
.ads-insight-metrics div {
  padding:14px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#f8fafc;
}
.ads-insight-metrics span { display:block; color:var(--muted); font-size:11px; font-weight:900; text-transform:uppercase; }
.ads-insight-metrics strong { display:block; margin-top:6px; color:var(--navy); font-size:22px; }
.risk-lines { display:grid; gap:9px; margin:14px 0 18px; }
.risk-lines i { display:block; height:10px; border-radius:999px; background:var(--teal); }
.risk-lines i.warn { background:var(--amber); }
.risk-lines i.danger { background:var(--red); }
.ads-insight-row { min-height:44px; border-top:1px solid var(--line); color:#40505b; font-weight:800; }
.ads-insight-row strong { color:var(--teal-dark); font-size:12px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price { min-height: 360px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.price.featured { border-color: rgba(14,159,139,.38); box-shadow: 0 22px 60px rgba(14,159,139,.12); }
.price::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}
.price-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price-head span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  background: #e4f8ef;
  color: #087a4e;
  font-size: 11px;
  font-weight: 900;
}
.price strong { font-size: 42px; color: var(--navy); }
.price p { margin: 12px 0 0; color: var(--muted); line-height: 1.55; }
.price ul { padding: 0; margin: 20px 0; list-style: none; display: grid; gap: 10px; color: var(--muted); }
.price li::before { content: "✓"; color: var(--teal); font-weight: 900; margin-right: 8px; }
.site-footer { padding: 34px 0; border-top: 1px solid var(--line); color: var(--muted); }
.site-footer .brand-logo { height: 30px; max-width: 150px; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display:flex; align-items:center; gap:16px; flex-wrap:wrap; font-size:13px; font-weight:800; color:#40505b; }
.footer-links a:hover { color:var(--teal-dark); }

.faq-preview .split { align-items:start; }
.faq-list {
  display:grid;
  gap:10px;
}
.faq-list details {
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:0 10px 26px rgba(18,31,42,.035);
  overflow:hidden;
}
.faq-list summary {
  cursor:pointer;
  padding:16px 18px;
  color:var(--navy);
  font-weight:900;
  list-style:none;
}
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after {
  content:"+";
  float:right;
  color:var(--teal-dark);
  font-size:18px;
}
.faq-list details[open] summary::after { content:"-"; }
.faq-list p {
  margin:0;
  padding:0 18px 18px;
  color:var(--muted);
  line-height:1.65;
}
.faq-contact {
  position:sticky;
  top:92px;
}
.contact-hero {
  background:
    linear-gradient(180deg, #fff, #f6f9fc),
    radial-gradient(circle at 12% 12%, rgba(14,159,139,.12), transparent 30%);
}
.contact-layout { align-items:center; }
.contact-cards {
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin-top:26px;
}
.contact-cards div {
  padding:16px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.78);
}
.contact-cards strong { display:block; color:var(--navy); }
.contact-cards span { display:block; margin-top:5px; color:var(--muted); font-size:13px; font-weight:750; }
.contact-panel { padding:26px; }
.contact-panel h2 { margin:0 0 6px; }
.contact-strip {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.contact-strip div {
  padding:22px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:0 14px 34px rgba(18,31,42,.035);
}
.contact-strip span {
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#e2f5f1;
  color:var(--teal-dark);
  font-weight:900;
}
.contact-strip strong { display:block; margin-top:14px; color:var(--navy); font-size:18px; }
.contact-strip p { margin:8px 0 0; color:var(--muted); line-height:1.55; }
.final-cta { padding-top:38px; }
.final-cta-inner {
  padding:34px;
  border-radius:var(--radius);
  background:linear-gradient(135deg, #101820, #173242);
  color:#fff;
  display:grid;
  grid-template-columns:1.2fr .8fr auto;
  gap:24px;
  align-items:center;
}
.final-cta h2 { margin:0; color:#fff; font-size:clamp(28px,4vw,44px); }
.final-cta p { margin:0; color:#bdd0da; line-height:1.6; }
.final-cta div:last-child { display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }

.legal-page { background: linear-gradient(180deg, #fff, #f6f9fc); }
.legal-hero {
  max-width: 880px;
  margin-bottom: 26px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.84)),
    radial-gradient(circle at 8% 15%, rgba(14,159,139,.14), transparent 30%);
  box-shadow: 0 16px 38px rgba(18,31,42,.045);
}
.legal-hero span {
  display:block;
  color:var(--teal-dark);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}
.legal-hero h1 {
  margin: 10px 0 12px;
  color:var(--navy);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}
.legal-hero p {
  margin:0;
  max-width:760px;
  color:#52636f;
  font-size:17px;
  line-height:1.65;
}
.legal-layout {
  display:grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap:22px;
  align-items:start;
}
.legal-index {
  position: sticky;
  top: 92px;
  display:grid;
  gap:6px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
}
.legal-index a {
  min-height:34px;
  display:flex;
  align-items:center;
  padding:0 10px;
  border-radius:var(--radius);
  color:#52636f;
  font-size:13px;
  font-weight:800;
}
.legal-index a:hover { background:#edf7f4; color:var(--teal-dark); }
.legal-content {
  display:grid;
  gap:14px;
}
.legal-content section {
  padding:22px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:0 10px 28px rgba(18,31,42,.03);
}
.legal-content h2 {
  margin:0 0 10px;
  color:var(--navy);
  font-size:22px;
}
.legal-content p {
  margin:0;
  color:#40505b;
  line-height:1.72;
}
.legal-content p + p { margin-top:12px; }
.legal-content a { color:var(--teal-dark); font-weight:900; }

.auth-page { min-height: 100vh; background: var(--navy); }
.auth-shell { min-height: 100vh; display: grid; place-items: center; padding: 28px; }
.auth-card { width: min(480px, 100%); padding: 32px; }
.auth-card h1 { margin: 26px 0 8px; color: var(--navy); }
.form-stack { display: grid; gap: 14px; margin-top: 22px; }
label { display: grid; gap: 8px; font-size: 13px; font-weight: 800; color: #34424c; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px 13px;
  color: var(--ink);
  outline: none;
}
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14, 159, 139, .12); }
.muted { color: var(--muted); }
.tiny { font-size: 12px; color: var(--muted); line-height: 1.5; }
.alert { padding: 12px 14px; border-radius: var(--radius); margin: 16px 0; font-size: 14px; font-weight: 700; }
.alert.success { background: #e3f8ed; color: #087a4e; }
.alert.danger { background: #ffe2e2; color: #a92b2b; }
.alert.info { background: #e5f2ff; color: #1f5b91; }

.app-shell { min-height: 100vh; display: grid; grid-template-columns: 248px 1fr; background: #f6f9fc; }
.sidebar { background: linear-gradient(180deg, #0d1a23 0%, #0f2230 52%, #10293a 100%); color: #d8e4ea; padding: 16px 14px; position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; }
.side-brand { color: #fff; margin-bottom: 20px; align-items: flex-start; padding: 4px 6px; }
.side-brand .brand-logo { height: 40px; max-width: 190px; }
.side-brand strong { display:block; font-size: 18px; line-height: 1.1; }
.side-brand small { display:block; margin-top: 4px; color:#8fa8b7; font-size: 11px; font-weight:700; }
.brand-shield { width: 30px; height: 30px; display:grid; place-items:center; border:1px solid #8bdad4; border-radius:8px; color:#8af0e3; box-shadow: inset 0 -3px 0 rgba(14,159,139,.25); }
.sidebar-user { display:block; border:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.06); border-radius: 8px; padding: 12px; margin-bottom: 16px; transition: background .18s ease, border-color .18s ease; }
.sidebar-user:hover { background: rgba(255,255,255,.10); border-color: rgba(139,218,212,.36); }
.sidebar-user span { display:block; color:#fff; font-weight:850; font-size:13px; }
.sidebar-user small { color:#9eb5c2; font-weight:700; }
.side-nav { display: grid; gap: 6px; }
.side-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  border-radius: var(--radius);
  padding: 0 12px;
  color: #aebec8;
  font-size: 13px;
  font-weight: 750;
}
.side-nav a.active, .side-nav a:hover { background: linear-gradient(90deg, rgba(14,159,139,.35), rgba(14,159,139,.12)); color: #fff; }
.sidebar-shortcuts { margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); display:grid; gap: 8px; }
.sidebar-shortcuts p { margin:0 0 4px; color:#8fa8b7; font-size:11px; font-weight:900; }
.sidebar-shortcuts a, .sidebar-footer a { color:#d7e6ee; font-size:14px; font-weight:750; min-height:34px; display:flex; align-items:center; gap:10px; }
.sidebar-footer { margin-top: 18px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.08); display:grid; gap:6px; }
.main { min-width: 0; }
.topbar { height: 70px; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; border-bottom: 1px solid var(--line); background: rgba(248, 251, 253, .96); backdrop-filter: blur(14px); position: sticky; top: 0; z-index: 10; }
.topbar-title { display:flex; align-items:center; gap:14px; min-width:0; }
.topbar h1 { margin: 0; font-size: 26px; color: var(--navy); letter-spacing:0; }
.topbar p { margin: 4px 0 0; color: var(--muted); font-size: 12px; font-weight: 750; }
.topbar-actions { display:flex; align-items:center; gap:12px; }
.menu-toggle {
  display:none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:#fff;
  color: var(--navy);
  font-size: 19px;
  font-weight: 900;
  cursor:pointer;
}
.mobile-menu-backdrop { display:none; }
.notify-dot { width: 20px; height:20px; display:grid; place-items:center; border-radius:999px; background:#ef4444; color:#fff; font-size:11px; font-weight:900; }
.avatar { width:38px; height:38px; display:grid; place-items:center; border-radius:999px; background: var(--teal-dark); color:#fff; font-weight:900; }
.avatar.large { width:58px; height:58px; font-size:18px; }
.profile-chip {
  display:grid;
  grid-template-columns: 38px auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items:center;
  min-height: 44px;
  padding: 4px 10px 4px 4px;
  border:1px solid transparent;
  border-radius: 999px;
  transition: background .18s ease, border-color .18s ease;
}
.profile-chip:hover { background:#fff; border-color:var(--line); }
.profile-chip .avatar { grid-row: 1 / span 2; }
.profile-chip strong { color:var(--navy); font-size:12px; line-height:1.1; max-width:160px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.profile-chip small { color:var(--muted); font-size:11px; max-width:160px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.content { padding: 28px; }
.page-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.82)),
    radial-gradient(circle at 8% 20%, rgba(14,159,139,.18), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(53,99,216,.12), transparent 24%);
  box-shadow: 0 16px 38px rgba(18, 31, 42, .045);
}
.page-intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.12;
}
.page-intro p {
  margin: 8px 0 0;
  max-width: 760px;
  color: #5d6e79;
  line-height: 1.55;
  font-size: 14px;
  font-weight: 650;
}
.page-intro-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.mini-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}
.mini-metrics div {
  position: relative;
  min-height: 86px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 31, 42, .04);
  overflow: hidden;
}
.mini-metrics div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--teal), #3672d8);
}
.mini-metrics span {
  display: block;
  color: #667681;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.mini-metrics strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}
.dashboard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.dashboard-actions h2 {
  margin: 2px 0 0;
  font-size: 26px;
  color: var(--navy);
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}
.kpi-card {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: center;
  padding: 20px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(18, 31, 42, .045);
}
.kpi-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #e4f8f3;
  color: var(--teal-dark);
  font-weight: 900;
}
.kpi-icon svg { width:24px; height:24px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.kpi-icon.blue { background:#e7edff; color:#3563d8; }
.kpi-icon.red { background:#ffe4e4; color:#dc2626; }
.kpi-icon.google { background:#edf5ff; color:#0b6fce; }
.kpi-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.kpi-card strong {
  display: block;
  margin-top: 4px;
  font-size: 28px;
  color: var(--navy);
  line-height: 1;
}
.kpi-card small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.kpi-card em {
  position:absolute;
  right:18px;
  bottom:18px;
  color:#008c5a;
  font-size:13px;
  font-style:normal;
  font-weight:900;
}
.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.dashboard-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr 1.15fr;
  gap: 14px;
}
.score-layout {
  display: grid;
  grid-template-columns: minmax(230px, .78fr) 1fr;
  gap: 20px;
  align-items: center;
  padding: 8px 0 20px;
}
.score-layout.concept { align-items: stretch; }
.score-ring {
  width: 174px;
  aspect-ratio: 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  align-content: center;
  background:
    radial-gradient(circle at center, #fff 0 55%, transparent 56%),
    conic-gradient(var(--teal) 0 76%, #e8eff3 76% 100%);
  border: 1px solid var(--line);
}
.score-gauge { min-height: 244px; position:relative; display:grid; place-items:center; align-content:center; text-align:center; }
.gauge-arc {
  width: 236px;
  height: 118px;
  border-radius: 240px 240px 0 0;
  background: conic-gradient(from 270deg at 50% 100%, #22c55e 0 34%, #facc15 34% 58%, #f97316 58% 76%, #fecaca 76% 100%);
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  overflow:hidden;
}
.gauge-arc::after {
  content:"";
  position:absolute;
  left:34px;
  right:34px;
  bottom:0;
  height:86px;
  background:#fff;
  border-radius: 180px 180px 0 0;
}
.score-gauge strong { position:relative; margin-top:50px; font-size:60px; line-height:1; color:var(--navy); }
.score-gauge span { position:relative; color:var(--muted); font-size:14px; font-weight:800; }
.score-gauge p { position:relative; margin:18px 0 0; color:#596a76; font-weight:800; }
.score-gauge b { color:#f97316; }
.score-ring.warn {
  background:
    radial-gradient(circle at center, #fff 0 55%, transparent 56%),
    conic-gradient(var(--amber) 0 58%, #e8eff3 58% 100%);
}
.score-ring.danger {
  background:
    radial-gradient(circle at center, #fff 0 55%, transparent 56%),
    conic-gradient(var(--red) 0 84%, #e8eff3 84% 100%);
}
.score-ring strong {
  font-size: 52px;
  color: var(--navy);
  line-height: 1;
}
.score-ring span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.score-copy h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 24px;
}
.score-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.score-status-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.score-status-row {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}
.score-status-row strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
}
.score-status-row span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.score-status-row em {
  font-style: normal;
}
.ads-metric-strip {
  display: grid;
  grid-template-columns: .85fr 1fr 1fr 1.25fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  margin-bottom: 18px;
}
.ads-metric-strip > div {
  min-height: 118px;
  padding: 20px 18px;
  border-right: 1px solid var(--line);
  background:#fff;
  min-width: 0;
}
.ads-metric-strip > div:last-child { border-right:0; }
.ads-metric-strip span { display:block; color:#65727c; font-size:12px; font-weight:900; }
.ads-metric-strip strong { display:block; margin-top:12px; font-size:21px; color:var(--navy); line-height:1.16; overflow-wrap:normal; }
.ads-metric-strip small {
  display:block;
  margin-top:8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.ads-health-ok {
  border: 1px solid #cbeede;
  background: #e6f8ef;
  color: #087a4e;
  border-radius: var(--radius);
  padding: 14px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.ads-health-ok a { color:#087a4e; }
.google-mark { color:#0b6fce; font-weight:900; margin-right:8px; }
.performance-hero {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}
.perf-kpi {
  position: relative;
  overflow: hidden;
  min-height: 126px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,253,255,.98)),
    radial-gradient(circle at 12% 10%, rgba(14,159,139,.12), transparent 34%);
  box-shadow: 0 14px 36px rgba(18, 31, 42, .04);
}
.perf-kpi.danger {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,250,250,.98)),
    radial-gradient(circle at 12% 10%, rgba(239,68,68,.16), transparent 34%);
}
.perf-kpi span {
  display: block;
  color: #51616c;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.perf-kpi strong {
  display: block;
  margin-top: 13px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.08;
}
.perf-kpi small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.performance-top .panel { min-height: 260px; }
.sync-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}
.sync-summary div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
}
.sync-summary span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.sync-summary strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 15px;
}
.sync-ok {
  border: 1px solid #cbeede;
  background: #e6f8ef;
  color: #087a4e;
  border-radius: var(--radius);
  padding: 13px 14px;
  font-weight: 850;
}
.sync-errors {
  display: grid;
  gap: 10px;
}
.sync-errors div {
  border: 1px solid #ffd2d2;
  background: #fff0f0;
  color: #8f2424;
  border-radius: var(--radius);
  padding: 12px 13px;
}
.sync-errors strong,
.sync-errors span {
  display: block;
}
.sync-errors span {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.35;
}
.risk-compare {
  display: grid;
  gap: 18px;
}
.risk-compare div {
  position: relative;
  min-height: 58px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.risk-compare div:last-child { border-bottom: 0; }
.risk-compare span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}
.risk-compare strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: 22px;
}
.risk-compare em {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--red));
}
.performance-table table { min-width: 1120px; }
.risk-pill {
  display: inline-flex;
  min-width: 44px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff3d6;
  color: #9b5b00;
  font-weight: 900;
}
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 20px; }
.metric { padding: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.metric span { color: var(--muted); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.metric strong { display: block; margin-top: 8px; font-size: 30px; color: var(--navy); }
.panel { padding: 18px; box-shadow: 0 14px 36px rgba(18, 31, 42, .035); margin-bottom: 16px; }
.panel:hover { box-shadow: 0 18px 44px rgba(18, 31, 42, .055); }
.premium-panel {
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.88)),
    radial-gradient(circle at 8% 16%, rgba(14,159,139,.14), transparent 32%),
    radial-gradient(circle at 92% 8%, rgba(53,99,216,.10), transparent 28%);
}
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.panel-head h2, .panel h2 { margin: 0; font-size: 20px; color: var(--navy); }
.filter-bar {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr .75fr 1.4fr auto;
  gap: 12px;
  align-items: end;
  margin: 0;
}
.filter-bar.compact {
  grid-template-columns: minmax(180px, 260px) minmax(220px, 1fr) auto;
}
.filter-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 1px;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--line);
}
.pagination > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}
.pagination nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.pagination a, .pagination em {
  min-width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #3b4c58;
  font-size: 12px;
  font-weight: 850;
  font-style: normal;
}
.pagination a.active {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}
.pagination a.disabled {
  pointer-events: none;
  opacity: .45;
}
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; min-width: 780px; background: #fff; }
th, td { padding: 13px 14px; border-bottom: 1px solid var(--line); text-align: left; font-size: 13px; vertical-align: top; }
th { color: #51616c; font-size: 11px; text-transform: uppercase; letter-spacing: .04em; background: #f8fafc; }
tr:last-child td { border-bottom: 0; }
tbody tr { transition: background .16s ease; }
tbody tr:hover { background: #fbfdff; }
.traffic-table table { min-width: 1160px; }
.traffic-table .visitor-cell,
.traffic-table .device-cell {
  min-width: 170px;
}
.traffic-table .visitor-cell strong,
.traffic-table .device-cell strong {
  display: block;
  color: var(--navy);
  font-weight: 850;
}
.traffic-table .visitor-cell span,
.traffic-table .device-cell span {
  display: block;
  margin-top: 4px;
  color: #667681;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}
.status.error, .status.failed { background: #ffe4e4; color: #b33131; }
.status.queued, .status.skipped, .status.revoked { background: #eef2f5; color: #52636f; }
.status.success, .status.ready { background: #e4f8ef; color: #087a4e; }
.inline-form {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 240px;
}
.admin-user-form { min-width: 420px; }
.inline-form select {
  min-height: 34px;
  padding: 7px 10px;
}
.table-wrap strong { color: var(--navy); }
.table-wrap .tiny { color: #6c7c87; }
.filter-bar input,
.filter-bar select {
  min-height: 42px;
  background: linear-gradient(180deg, #fff, #fbfdff);
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.chart-bars { height: 220px; display: flex; align-items: end; gap: 12px; padding: 16px; background: #f8fafc; border: 1px solid var(--line); border-radius: var(--radius); }
.chart-bars span { flex: 1; min-width: 18px; border-radius: 5px 5px 0 0; background: var(--teal); position: relative; }
.chart-bars span.warn { background: var(--amber); }
.chart-bars span.danger { background: var(--red); }
.site-health-table { min-width: 0; table-layout: fixed; }
.site-health-table th, .site-health-table td { white-space: normal; font-size: 12px; padding: 12px 13px; }
.site-health-table th:nth-child(1), .site-health-table td:nth-child(1) { width: 18%; }
.site-health-table th:nth-child(2), .site-health-table td:nth-child(2) { width: 13%; }
.site-health-table th:nth-child(6), .site-health-table td:nth-child(6) { width: 18%; }
.site-health-table th:nth-child(8), .site-health-table td:nth-child(8) { width: 9%; }
.sparkline { display:inline-flex; align-items:end; gap:3px; width:56px; height:22px; margin-left:8px; vertical-align:middle; }
.sparkline i { flex:1; background:#4d7cff; border-radius:3px 3px 0 0; opacity:.85; }
.risk-delta { color:#ef4444; font-size:12px; font-weight:900; margin-left:6px; }
.risk-number { color:#f97316; }
.tag { display:inline-flex; align-items:center; min-height:24px; border-radius:999px; padding:0 10px; background:#eef2f5; color:#52636f; font-size:12px; font-weight:850; margin:2px; }
.tag.green { background:#dff8ec; color:#087a4e; }
.dot-active { width:7px; height:7px; display:inline-block; border-radius:999px; background:#0a9b65; margin-right:8px; vertical-align:middle; }
.icon-link { display:inline-grid; place-items:center; width:28px; height:28px; color:#304454; margin-right:4px; }
.panel-link { display:inline-flex; margin-top:14px; color:#1f63d4; font-size:14px; font-weight:800; }
.signal-list { display:grid; gap:12px; }
.signal-list div { display:grid; grid-template-columns:28px 1fr auto; gap:12px; align-items:center; border-bottom:1px solid var(--line); padding-bottom:12px; }
.signal-list span { width:22px; height:22px; display:grid; place-items:center; border-radius:999px; background:#d9f5f0; color:#087c70; font-size:12px; font-weight:900; }
.signal-list strong { font-size:13px; color:var(--navy); }
.signal-list em { color:#ef4444; font-style:normal; font-weight:900; }
.stacked-chart { min-height:238px; }
.chart-legend { display:flex; justify-content:center; gap:16px; color:#65727c; font-size:12px; font-weight:800; margin:8px 0 18px; }
.chart-legend span { width:10px; height:10px; display:inline-block; border-radius:3px; margin-right:-10px; }
.chart-legend .high, .stack-day .high { background:#ef2f24; }
.chart-legend .mid, .stack-day .mid { background:#ff7a1a; }
.chart-legend .low, .stack-day .low { background:#f7c51e; }
.stack-bars { height:180px; display:flex; align-items:end; gap:18px; justify-content:center; }
.stack-day { display:grid; gap:8px; justify-items:center; height:100%; align-content:end; }
.stack-day .bar { width:22px; height:140px; display:flex; flex-direction:column; justify-content:end; border-radius:5px 5px 0 0; overflow:hidden; }
.stack-day i { display:block; width:100%; }
.stack-day small { color:#7a8994; font-size:11px; }
.compact-table table { min-width: 0; }
.compact-table th, .compact-table td { font-size:12px; padding:10px; }
.risk-pill { display:inline-grid; place-items:center; min-width:30px; height:24px; border-radius:999px; font-weight:900; font-size:12px; }
.risk-pill.clean { background:#e4f8ef; color:#087a4e; }
.risk-pill.warning { background:#fff2d2; color:#966308; }
.risk-pill.critical { background:#ffe4e4; color:#b33131; }
.action-feed { display:grid; gap:0; }
.action-feed div { position:relative; display:grid; grid-template-columns:88px 1fr auto; gap:12px; border-bottom:1px solid var(--line); padding:11px 0; }
.action-feed span { color:#687985; font-size:12px; }
.action-feed strong { color:var(--navy); font-size:13px; }
.action-feed small { grid-column:2; color:#65727c; }
.action-feed em { grid-column:3; grid-row:1 / span 2; align-self:center; color:#008c5a; font-style:normal; font-size:12px; font-weight:900; }
.action-feed em.fail { color:#b33131; }
.action-feed em.wait { color:#966308; }
.dashboard-footer { display:flex; justify-content:space-between; gap:18px; color:#7b8b96; font-size:12px; padding:22px 0 2px; }
.dashboard-footer nav { display:flex; gap:28px; }
.copy-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: start; }
.install-code { min-height: 74px; }
.empty { border: 1px dashed #b8c8d0; border-radius: var(--radius); padding: 26px; text-align: center; color: var(--muted); }
.plan-card .lead strong { font-size: 46px; color: var(--navy); }
.plan-capacity {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 22px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
}
.plan-capacity span { color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.plan-capacity strong { color: var(--navy); font-size: 18px; }
.plan-capacity::after {
  content: "";
  height: 8px;
  border-radius: 999px;
  background: #edf3f5;
}
.plan-capacity i {
  position: absolute;
  left: 16px;
  right: auto;
  bottom: 16px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}
.plan-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.plan-options article {
  position: relative;
  min-height: 154px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  display: grid;
  align-content: start;
  gap: 8px;
}
.plan-options article.active { border-color: rgba(14,159,139,.45); background: #f2fbf8; }
.plan-options span { color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.plan-options strong { color: var(--navy); font-size: 23px; }
.plan-options small { color: var(--muted); font-weight: 800; }
.plan-options em, .plan-options a {
  margin-top: 10px;
  font-style: normal;
  color: var(--teal-dark);
  font-weight: 900;
}
.automation-steps {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  margin-top: 18px;
  align-items: center;
}
.automation-steps span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #e5f2ff;
  color: #1f63d4;
  font-size: 12px;
  font-weight: 900;
}
.automation-steps strong { color: var(--navy); font-size: 13px; }
.progress-list { display: grid; gap: 16px; margin-top: 20px; }
.progress-list div {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding-bottom: 14px;
}
.progress-list div::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  border-radius: 999px;
  background: #edf3f5;
}
.progress-list i {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), #3672d8);
}
.progress-list span { color: var(--muted); font-size: 13px; font-weight: 800; }
.progress-list strong { color: var(--navy); font-size: 13px; }
.security-list { display: grid; gap: 12px; margin-top: 16px; }
.security-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.security-list div:last-child { border-bottom: 0; }
.security-list strong { color: var(--navy); font-size: 13px; }
.security-list span { color: var(--muted); font-size: 13px; font-weight: 800; }
.profile-summary {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.profile-summary-main {
  display:flex;
  align-items:center;
  gap:16px;
}
.profile-summary-main h2 {
  margin:0;
  color:var(--navy);
  font-size:24px;
}
.profile-summary-main p {
  margin:5px 0 0;
  color:var(--muted);
  font-weight:750;
}
.profile-summary-stats {
  display:grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap:12px;
}
.profile-summary-stats div {
  padding:13px 14px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.74);
}
.profile-summary-stats span {
  display:block;
  color:var(--muted);
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
}
.profile-summary-stats strong {
  display:block;
  margin-top:6px;
  color:var(--navy);
  font-size:18px;
}

@media (max-width: 980px) {
  .hero-grid, .split, .grid-2 { grid-template-columns: 1fr; }
  .feature-grid, .price-grid, .workflow-grid, .metric-grid, .grid-3, .kpi-grid, .dashboard-bottom, .overview-grid, .mini-metrics, .plan-options, .performance-hero, .feature-detail-grid, .contact-strip { grid-template-columns: 1fr 1fr; }
  .overview-grid, .ads-metric-strip { grid-template-columns: 1fr; }
  .score-layout { grid-template-columns: 1fr; }
  .score-status-list { border-left:0; padding-left:0; }
  .app-shell { grid-template-columns: 1fr; }
  .sidebar {
    position: fixed;
    z-index: 40;
    inset: 0 auto 0 0;
    width: min(320px, 86vw);
    height: 100vh;
    transform: translateX(-104%);
    transition: transform .22s ease;
    overflow-y: auto;
    box-shadow: 28px 0 70px rgba(9,20,28,.32);
  }
  body.menu-open .sidebar { transform: translateX(0); }
  .mobile-menu-backdrop {
    display:block;
    position:fixed;
    inset:0;
    z-index:35;
    background:rgba(8,17,24,.42);
    opacity:0;
    pointer-events:none;
    transition: opacity .2s ease;
  }
  body.menu-open .mobile-menu-backdrop { opacity:1; pointer-events:auto; }
  .menu-toggle { display:grid; place-items:center; flex:0 0 auto; }
  .side-nav { grid-template-columns: 1fr; }
  .page-intro { align-items: flex-start; flex-direction: column; }
  .filter-bar, .filter-bar.compact { grid-template-columns: 1fr 1fr; }
  .admin-user-form { min-width: 360px; }
  .profile-summary { align-items:flex-start; flex-direction:column; }
  .profile-summary-stats { width:100%; }
  .legal-layout { grid-template-columns:1fr; }
  .legal-index { position:static; grid-template-columns:1fr 1fr; }
  .signal-band-inner { align-items:flex-start; flex-direction:column; padding:22px 0; }
  .signal-pills { justify-content:flex-start; }
  .final-cta-inner { grid-template-columns:1fr; }
  .final-cta div:last-child { justify-content:flex-start; }
  .faq-contact { position:static; }
}

@media (max-width: 680px) {
  .container { width: calc(100vw - 28px); max-width: calc(100vw - 28px); }
  .nav { height: auto; padding: 16px 0; align-items: flex-start; flex-wrap: wrap; }
  .nav-links { display: none; }
  .nav-actions { width: 100%; flex-wrap: wrap; justify-content: flex-start; }
  .nav-actions .btn { min-height: 40px; padding: 0 14px; }
  .hero { padding-top: 46px; }
  .hero-grid, .split { max-width: 100%; overflow: hidden; }
  .hero h1 { max-width: 330px; font-size: 34px; line-height: 1.06; overflow-wrap: anywhere; }
  .lead { max-width: 330px; overflow-wrap: anywhere; }
  .proof-strip, .feature-grid, .price-grid, .workflow-grid, .metric-grid, .grid-3, .mini-metrics, .plan-options, .filter-bar, .filter-bar.compact, .performance-hero, .sync-summary, .feature-detail-grid, .ads-insight-metrics, .contact-strip { grid-template-columns: 1fr; }
  .dashboard-actions { align-items: flex-start; flex-direction: column; }
  .kpi-grid, .dashboard-bottom, .overview-grid { grid-template-columns: 1fr; }
  .score-layout { grid-template-columns: 1fr; }
  .score-status-list, .ads-health-grid { grid-template-columns: 1fr; }
  .ads-metric-strip { grid-template-columns: 1fr; }
  .dashboard-footer { flex-direction:column; }
  .score-ring { width: 150px; }
  .product-preview { width: 100%; max-width: 100%; overflow: hidden; }
  .risk-meter { grid-template-columns: 1fr; height: auto; }
  .preview-top { align-items: flex-start; justify-content: flex-start; gap: 10px; }
  .preview-top strong { max-width: 210px; overflow-wrap: anywhere; }
  .preview-row { grid-template-columns: 1fr; gap: 6px; }
  .code-block { white-space: pre-wrap; overflow-wrap: anywhere; }
  .app-shell { display: block; }
  .sidebar { padding: 14px; }
  .side-brand { margin-bottom: 12px; }
  .sidebar-user { margin-bottom: 12px; padding: 10px; }
  .side-nav { grid-template-columns: 1fr; gap: 8px; }
  .side-nav a { min-height: 36px; padding: 0 10px; font-size: 12px; }
  .sidebar-shortcuts { display: none; }
  .topbar { padding: 0 18px; height: 62px; }
  .topbar h1 { font-size: 24px; }
  .topbar p { display: none; }
  .topbar-actions .btn, .topbar-actions .notify-dot, .profile-chip strong, .profile-chip small { display: none; }
  .profile-chip { padding:0; border:0; }
  .content { padding: 18px; }
  .profile-summary-stats { grid-template-columns:1fr; }
  .legal-hero, .legal-content section { padding:18px; }
  .legal-index { grid-template-columns:1fr; }
  .hero-assurance { gap:8px; }
  .hero-assurance span { width:100%; justify-content:center; }
  .insight-list div { grid-template-columns:1fr; gap:4px; }
  .feature-detail { min-height:0; }
  .final-cta-inner { padding:24px; }
  .copy-row { grid-template-columns: 1fr; }
  .pagination { align-items: flex-start; flex-direction: column; }
  .product-preview { transform: none; }
  .admin-user-form { min-width: 0; flex-direction: column; align-items: stretch; }
  .site-health-table { min-width: 780px; table-layout: auto; }
  .site-health-panel .table-wrap::after {
    content: "Tabloyu yana kaydırın";
    display: block;
    padding: 8px 10px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 850;
    background: #fbfdff;
    border-top: 1px solid var(--line);
  }
}
