:root {
  --bg: #f0f4f2;
  --ink: #0f1c18;
  --muted: #5a6a63;
  --line: #d5ded9;
  --panel: #ffffff;
  --brand: #0d6b63;
  --brand-dark: #084f49;
  --brand-soft: rgba(13, 107, 99, 0.08);
  --accent: #a85a28;
  --good: #1a6b42;
  --warn: #8a5b00;
  --bad: #a61f16;
  --shadow: 0 1px 2px rgba(15, 28, 24, 0.04), 0 12px 32px rgba(15, 28, 24, 0.06);
  --radius: 16px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  background: var(--bg);
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 45% at 50% -8%, rgba(13, 107, 99, 0.14), transparent 58%),
    radial-gradient(ellipse 40% 30% at 100% 20%, rgba(13, 107, 99, 0.05), transparent 50%),
    linear-gradient(180deg, #e6efec 0%, var(--bg) 38%, #eef2f0 100%);
}
.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(15, 28, 24, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 28, 24, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 70%);
}

.topbar {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 24px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(26px, 4.2vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--brand-dark);
  line-height: 1;
  text-decoration: none;
}
a.brand:hover { color: var(--brand); }
.topbar-note {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
}

main {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 24px 40px;
}

.hero {
  text-align: center;
  padding: 36px 0 8px;
}
h1 {
  max-width: 700px;
  margin: 0 auto 14px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(32px, 5.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.hero-lead {
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.scan-form {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr auto;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto;
  padding: 14px;
  background: var(--panel);
  border: 1px solid rgba(213, 222, 217, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
}
.field { display: grid; gap: 6px; min-width: 0; }
.field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 2px;
}
input, button { font: inherit; }
input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  background: #fafcfb;
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
input:focus {
  outline: none;
  border-color: var(--brand);
  background: white;
  box-shadow: 0 0 0 3px var(--brand-soft);
}
input::placeholder { color: #9aa8a1; }
.scan-form > button {
  align-self: end;
  white-space: nowrap;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 13px 20px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.scan-form > button:hover { background: var(--brand-dark); }
.scan-form > button:active { transform: translateY(1px); }

.form-note {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.why-section {
  margin-top: 56px;
  padding-top: 8px;
}
.why-section h2 {
  margin: 0 0 8px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(22px, 3.2vw, 28px);
  letter-spacing: -0.02em;
  text-align: center;
}
.why-lead {
  max-width: 520px;
  margin: 0 auto 28px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.why-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
}
.why-num {
  font-family: Fraunces, Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--brand);
  line-height: 1.4;
}
.why-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 700;
}
.why-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 10px;
  letter-spacing: 0.02em;
}

button {
  border: 0;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}
button:hover { background: var(--brand-dark); }

.panel {
  background: var(--panel);
  border: 1px solid rgba(213, 222, 217, 0.95);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  margin-top: 16px;
}
.hidden { display: none !important; }

.loading { text-align: center; padding: 56px 24px; }
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(13, 107, 99, 0.15);
  border-top-color: var(--brand);
  border-radius: 50%;
  margin: 0 auto 18px;
  animation: spin 0.75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: no-preference) {
  .topbar { animation: rise 0.65s ease both; }
  .hero { animation: rise 0.7s ease 0.06s both; }
  .scan-form { animation: rise 0.75s ease 0.12s both; }
  .why-section { animation: rise 0.75s ease 0.2s both; }
}

.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 10px;
}
h2, h3 { margin-top: 0; }
.report-header h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(26px, 4vw, 34px);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.report-header p { color: var(--muted); margin: 0; }
.rank-line {
  margin-top: 12px !important;
  font-weight: 600;
  color: var(--ink) !important;
  font-size: 14px;
}
.insight-line {
  margin-top: 10px !important;
  font-weight: 600;
  color: var(--ink) !important;
  line-height: 1.45;
  font-size: 15px;
  max-width: 520px;
}
.disclaimer {
  margin-top: 12px !important;
  font-size: 12px;
  line-height: 1.45;
  opacity: 0.9;
}
.error { border-color: #efc4c1; background: #fff8f7; }
.error h3 { color: var(--bad); }

.score-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--brand) 0deg, #e4ebe8 0deg);
  position: relative;
  flex: 0 0 auto;
}
.score-ring::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: white;
}
.score-ring div { position: relative; z-index: 1; text-align: center; }
.score-ring strong {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.score-ring span { color: var(--muted); font-size: 13px; font-weight: 500; }

.grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.grid.two .panel { margin-top: 16px; }
.panel h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.platform-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.platform-row:last-child { border-bottom: 0; }
.platform-row strong { font-weight: 600; font-size: 14px; }
.status {
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  padding: 5px 9px;
}
.status.good { color: var(--good); background: #e8f5ee; }
.status.warn { color: var(--warn); background: #fff6e0; }
.status.bad { color: var(--bad); background: #fdeceb; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}
.check-list li:last-child { border-bottom: 0; }
.check-list strong { color: var(--ink); font-weight: 600; }

.meaning-panel .meaning-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}

.section-title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 4px;
}
.section-title h3 {
  margin-bottom: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.plan-title { margin-top: 32px; }

.issues { display: grid; gap: 10px; }
.issue {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  background: #fafcfb;
}
.issue-number {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 13px;
}
.issue strong { display: block; margin-bottom: 4px; font-size: 15px; }
.issue p { margin: 0; color: var(--muted); line-height: 1.45; font-size: 14px; }
.more-issues {
  margin: 14px 0 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}
.impact {
  margin-top: 6px !important;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark) !important;
}

.premium-card {
  overflow: visible;
  background:
    linear-gradient(180deg, #f7fbfa 0%, #ffffff 48%);
  border-color: rgba(13, 107, 99, 0.22);
}
.premium-cta {
  text-align: center;
  padding: 8px 8px 4px;
}
.premium-cta h3 {
  margin: 0 0 10px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(24px, 3.6vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.premium-cta > p {
  max-width: 480px;
  margin: 0 auto 16px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
}
.teaser-list {
  text-align: left;
  max-width: 400px;
  margin: 0 auto 20px;
  color: var(--muted);
  padding-left: 18px;
  font-size: 14px;
}
.teaser-list li { margin: 7px 0; }
.premium-cta > button {
  min-width: 240px;
  padding: 15px 24px;
  font-size: 15px;
}
.premium-cta small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.premium-intro { color: var(--muted); margin-top: 0; font-size: 14px; line-height: 1.5; }
.deliverable { margin-top: 20px; }
.deliverable-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}
.deliverable-head h4 { margin: 0; font-size: 15px; font-weight: 700; }

.copy-btn {
  border: 1px solid var(--line);
  background: white;
  color: var(--brand-dark);
  border-radius: 8px;
  padding: 7px 12px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}
.copy-btn:hover { background: #f3faf8; }

.path-chooser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 8px 0 6px;
}
.path-card {
  text-align: left;
  border: 1px solid var(--line);
  background: #fafcfb;
  border-radius: var(--radius-sm);
  padding: 16px;
  cursor: pointer;
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.path-card strong { display: block; margin-bottom: 6px; font-size: 15px; }
.path-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
}
.path-card:hover,
.path-card.active {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.text-link {
  border: 0;
  background: none;
  color: var(--brand-dark);
  font-weight: 600;
  padding: 0;
  margin: 0 0 14px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.diy-hint {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.tabs { display: flex; gap: 8px; margin-bottom: 10px; }
.tab {
  border: 1px solid var(--line);
  background: white;
  color: var(--muted);
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}
.tab.active {
  background: var(--brand-soft);
  color: var(--brand-dark);
  border-color: transparent;
}
.tab-panel.hidden { display: none !important; }
.faq-readable { display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
  background: #fafcfb;
}
.faq-item strong { display: block; margin-bottom: 6px; font-size: 14px; }
.faq-item p { margin: 0; color: var(--muted); line-height: 1.45; font-size: 14px; }

.code-box {
  margin: 0;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #f4f7f5;
  overflow: auto;
  max-height: 220px;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.success {
  border-color: #b8dfc8;
  background: #f2faf5;
}

.site-footer {
  margin-top: 48px;
  background:
    linear-gradient(180deg, #0b3f3a 0%, #08332f 100%);
  color: rgba(232, 240, 237, 0.78);
  border-top: 0;
  font-size: 13px;
  line-height: 1.5;
}
.footer-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 36px 24px 40px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand-block {
  max-width: 420px;
}
.footer-brand {
  margin: 0 0 8px !important;
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f3faf8 !important;
}
.site-footer p { margin: 0; max-width: none; }
.site-footer strong { color: #f3faf8; font-weight: 600; }
.footer-nav {
  display: flex;
  gap: 8px 20px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.footer-nav a {
  color: rgba(232, 240, 237, 0.92);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.footer-nav a:hover {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}
.footer-meta {
  margin-top: 18px !important;
  font-size: 12px;
  color: rgba(232, 240, 237, 0.55);
}

.legal-page {
  padding-top: 20px;
  padding-bottom: 24px;
}
.legal-page h1 {
  max-width: none;
  margin: 0 0 8px;
  text-align: left;
  font-size: clamp(30px, 5vw, 42px);
}
.legal-updated {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
}
.legal-body {
  max-width: 680px;
  background: var(--panel);
  border: 1px solid rgba(213, 222, 217, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 30px;
}
.legal-body h2 {
  margin: 28px 0 10px;
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p,
.legal-body li {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}
.legal-body p { margin: 0 0 12px; color: var(--muted); }
.legal-body ul {
  margin: 0 0 12px;
  padding-left: 18px;
  color: var(--muted);
}
.legal-body li { margin: 6px 0; color: var(--muted); }
.legal-body strong { color: var(--ink); font-weight: 600; }
.legal-body a {
  color: var(--brand-dark);
  font-weight: 600;
}

.plans-intro {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.plan-card {
  text-align: left;
  border: 1px solid var(--line);
  background: #fafcfb;
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.plan-card:hover {
  border-color: var(--brand);
  background: #fff;
}
.plan-card.active {
  border-color: var(--brand);
  background: var(--brand-soft);
}
.plan-card:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.plan-card-featured {
  border-color: rgba(13, 107, 99, 0.35);
  background: linear-gradient(180deg, #f7fbfa 0%, #ffffff 60%);
}
.plan-tag {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}
.plan-name {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.plan-price {
  margin: 6px 0 10px;
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 15px;
}
.plan-blurb {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
}
.plan-card ul {
  margin: 0 0 16px;
  padding-left: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  flex: 1;
}
.plan-card li { margin: 4px 0; }
.plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  font-size: 13px;
}
.plan-card:hover .plan-cta { background: var(--brand-dark); }
.plans-note {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}
.monitor-intro {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.competitor-form { display: grid; gap: 12px; }
.competitor-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
}
.competitor-fields input {
  box-shadow: none;
  background: #fafcfb;
}
.monitor-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  min-height: 1.2em;
}
.scoreboard { margin-top: 18px; overflow-x: auto; }
.board {
  min-width: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.board-row {
  display: grid;
  grid-template-columns: 36px minmax(140px, 1.4fr) 56px repeat(5, 52px);
  gap: 8px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.board-row:last-child { border-bottom: 0; }
.board-head {
  background: #f3f7f5;
  font-weight: 700;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.board-row.is-you { background: var(--brand-soft); }
.board-row strong { display: block; font-size: 14px; }
.board-row small { color: var(--muted); font-size: 12px; }
.board-score {
  font-family: Fraunces, Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-dark);
}
.sig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.sig.on { color: var(--good); }
.sig.off { color: #b7c2bc; }
.gap-panel { margin-top: 16px; padding-top: 4px; }
.gap-list {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.gap-list li { margin: 6px 0; }
.impact-panel .impact-intro {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.impact-baseline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.impact-stat {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fafcfb;
  padding: 12px 14px;
}
.impact-stat span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.impact-stat strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
  color: var(--ink);
}
.impact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}
.impact-card {
  margin-top: 14px;
  border: 1px solid rgba(13, 107, 99, 0.25);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #f7fbfa 0%, #ffffff 70%);
  padding: 16px;
}
.impact-card.verdict-improved { border-color: rgba(26, 107, 66, 0.35); }
.impact-card.verdict-declined { border-color: rgba(166, 31, 22, 0.28); background: #fffaf9; }
.impact-card h4 {
  margin: 0 0 8px;
  font-family: Fraunces, Georgia, serif;
  font-size: 20px;
}
.impact-card .impact-summary {
  margin: 0 0 12px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}
.impact-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}
.impact-card li { margin: 5px 0; }
.impact-card .disclaimer {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

.monitor-find {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 8px;
}
.location-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.secondary-btn {
  border: 1px solid var(--line);
  background: white;
  color: var(--brand-dark);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.secondary-btn:hover { background: #f3faf8; }
.secondary-btn:disabled { opacity: 0.65; cursor: not-allowed; }
.competitor-label {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.suggestion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 4px;
}
.chip {
  border: 1px solid var(--line);
  background: #fafcfb;
  color: var(--ink);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.chip:hover, .chip.selected {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.view.hidden { display: none !important; }
.flow-progress { margin: 8px 0 20px; }
.flow-progress ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.flow-progress li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.flow-progress li span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e7eeeb;
  font-size: 12px;
  flex: 0 0 auto;
}
.flow-progress li.active {
  border-color: rgba(13, 107, 99, 0.35);
  background: var(--brand-soft);
  color: var(--brand-dark);
}
.flow-progress li.active span,
.flow-progress li.done span {
  background: var(--brand);
  color: white;
}
.flow-progress li.done { color: var(--ink); }
.step-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  margin: 18px 0 8px;
}
.primary-btn {
  border: 0;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  cursor: pointer;
}
.primary-btn:hover { background: var(--brand-dark); }
.choose-blurb {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  max-width: 560px;
}
.other-plans {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 14px 18px;
}
.other-plans summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--brand-dark);
}
.other-plans .plans-grid { margin-top: 14px; }
.home-hero h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(28px, 4vw, 36px);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.home-domain { margin: 0 0 18px; color: var(--muted); }
.home-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.home-summary { margin: 0; color: var(--muted); line-height: 1.5; }
.home-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.home-tile {
  text-align: left;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  cursor: pointer;
  box-shadow: var(--shadow);
  color: var(--ink);
}
.home-tile:hover {
  border-color: var(--brand);
  background: #f7fbfa;
}
.home-tile strong { display: block; margin-bottom: 6px; font-size: 16px; }
.home-tile span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
}
.home-tile.hidden { display: none !important; }

.ga4-block { margin-top: 14px; }
.ga4-help {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.ga4-steps {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fafcfb;
  padding: 10px 14px;
}
.ga4-steps summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark);
  list-style: none;
}
.ga4-steps summary::-webkit-details-marker { display: none; }
.ga4-steps summary::after {
  content: ' ▾';
  font-weight: 400;
  color: var(--muted);
}
.ga4-steps[open] summary::after { content: ' ▴'; }
.ga4-steps-lead {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.ga4-steps ol {
  margin: 10px 0 0;
  padding-left: 1.2em;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.55;
}
.ga4-steps li { margin: 0 0 8px; }
.ga4-steps a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ga4-steps-note {
  margin: 8px 0 2px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}
.ga4-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.ga4-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.ga4-row select {
  font: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: #fafcfb;
}
#ga4Disclaimer {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 760px) {
  .monitor-find { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; }
  .plans-grid { grid-template-columns: 1fr; }
  .flow-progress ol { grid-template-columns: 1fr 1fr; }
  .home-actions { grid-template-columns: 1fr; }
  .ga4-row { grid-template-columns: 1fr; }
  .step-nav { justify-content: stretch; }
  .step-nav .primary-btn,
  .step-nav .secondary-btn { width: 100%; }
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-top: 22px;
  }
  .scan-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .scan-form > button { width: 100%; }
  .grid.two { grid-template-columns: 1fr; }
  .report-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .score-ring { width: 96px; height: 96px; }
  .score-ring strong { font-size: 28px; }
  .path-chooser { grid-template-columns: 1fr; }
  .why-section { margin-top: 40px; }
}
