:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --text: #141821;
  --muted: #697180;
  --line: #e4e9f1;
  --blue: #145ee8;
  --blue-dark: #0a2f66;
  --blue-soft: #eaf1ff;
  --green: #21a66f;
  --green-soft: #e9f8f1;
  --amber: #d88b1f;
  --amber-soft: #fff4df;
  --red: #cf4c45;
  --red-soft: #fff0ef;
  --shadow: 0 24px 70px rgba(23, 39, 71, .10);
  --max: 1280px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(20, 94, 232, .16); }
.skip-link { position: fixed; left: 20px; top: -100px; z-index: 999; padding: 12px 16px; color: #fff; background: #111; border-radius: 12px; }
.skip-link:focus { top: 20px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; padding: 14px 22px; transition: padding .3s var(--ease); }
.site-header.scrolled { padding-top: 8px; }
.nav-shell {
  max-width: var(--max); height: 60px; margin: 0 auto; padding: 0 10px 0 14px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  border: 1px solid rgba(255,255,255,.82); background: rgba(247,249,253,.82);
  backdrop-filter: blur(24px) saturate(160%); -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-radius: 18px; box-shadow: 0 14px 40px rgba(25, 42, 77, .08);
}
.brand { width: fit-content; display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 780; letter-spacing: .16em; }
.brand-badge { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: linear-gradient(180deg, #1555a4, #082b56); box-shadow: 0 9px 20px rgba(10,47,102,.2); }
.brand-badge img { width: 18px; height: 22px; display: block; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a { color: #555e6d; font-size: 13px; font-weight: 620; }
.desktop-nav a:hover { color: var(--text); }
.nav-cta { justify-self: end; padding: 11px 17px; border-radius: 12px; color: white; background: var(--blue); font-size: 13px; font-weight: 700; box-shadow: 0 10px 24px rgba(20,94,232,.22); transition: transform .25s var(--ease), box-shadow .25s ease; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(20,94,232,.28); }
.menu-button, .mobile-menu { display: none; }

.section { width: min(100%, var(--max)); margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.hero { min-height: 100vh; padding-top: 145px; padding-bottom: 100px; display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 58px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .kicker { display: inline-flex; align-items: center; color: var(--blue); font-size: 11px; font-weight: 760; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow { padding: 9px 13px; border: 1px solid #d7e4ff; border-radius: 999px; background: rgba(234,241,255,.8); }
.hero h1 { margin: 24px 0 22px; font-size: clamp(54px, 5.5vw, 84px); line-height: .97; letter-spacing: -.062em; font-weight: 760; }
.hero h1 span { color: var(--blue); }
.hero-copy > p { max-width: 610px; margin: 0; color: var(--muted); font-size: clamp(18px, 1.55vw, 21px); line-height: 1.55; letter-spacing: -.015em; }
.hero-points { margin-top: 29px; display: grid; gap: 11px; color: #3f4857; font-size: 14px; font-weight: 620; }
.hero-points span { display: flex; align-items: center; gap: 10px; }
.hero-points span:before { content: "✓"; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--blue); font-size: 11px; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; padding: 0 21px; display: inline-flex; align-items: center; justify-content: center; border-radius: 14px; font-size: 14px; font-weight: 700; transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 14px 34px rgba(20,94,232,.24); }
.button-secondary { border: 1px solid #dce2eb; background: rgba(255,255,255,.74); }
.button-secondary:hover { background: white; }

.hero-product { position: relative; min-width: 0; }
.demo-note { margin: 0 0 10px 12px; display: flex; align-items: center; gap: 8px; color: #8a93a2; font-size: 10px; font-weight: 680; text-transform: uppercase; letter-spacing: .1em; }
.demo-note span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(33,166,111,.1); }
.app-shell { width: 117%; min-height: 690px; display: grid; grid-template-columns: 205px 1fr; overflow: hidden; border: 1px solid rgba(255,255,255,.88); border-radius: 28px; background: #fff; box-shadow: var(--shadow); transform: rotateY(-2deg); transform-origin: 50% 50%; }
.app-sidebar { padding: 22px 14px 16px; display: flex; flex-direction: column; border-right: 1px solid var(--line); background: #fbfcff; }
.app-brand { padding: 0 7px 18px; display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 780; }
.app-logo { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 10px; color: white; background: var(--blue-dark); }
.app-logo img { width: 15px; height: 19px; }
.merchant-card { min-height: 62px; padding: 10px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 14px; background: white; }
.merchant-avatar { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: linear-gradient(145deg, #b49475, #74583f); font-size: 11px; font-weight: 760; }
.merchant-card strong, .merchant-card small { display: block; }
.merchant-card strong { font-size: 10px; }
.merchant-card small { margin-top: 3px; color: #8a92a0; font-size: 8px; }
.merchant-card > span { color: #9aa2af; font-size: 12px; }
.app-nav { margin-top: 20px; display: grid; gap: 6px; }
.app-nav-item { width: 100%; min-height: 43px; padding: 0 11px; display: flex; align-items: center; gap: 10px; border: 0; border-radius: 11px; color: #5d6572; background: transparent; cursor: pointer; font-size: 9px; font-weight: 680; text-align: left; transition: background .2s ease, color .2s ease; }
.app-nav-item span { width: 18px; color: #627083; font-size: 14px; text-align: center; }
.app-nav-item.active, .app-nav-item:hover { color: var(--blue); background: var(--blue-soft); }
.app-nav-item.active span { color: var(--blue); }
.app-sidebar-bottom { margin-top: auto; border-top: 1px solid var(--line); padding-top: 12px; }
.app-sidebar-bottom > button { width: 100%; min-height: 38px; padding: 0 10px; display: flex; gap: 9px; align-items: center; border: 0; color: #6d7480; background: transparent; font-size: 9px; }
.owner-row { margin-top: 10px; padding: 9px; display: flex; align-items: center; gap: 9px; border-radius: 12px; background: #f0f4fb; }
.owner-avatar { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; color: #fff; background: #6b7788; font-size: 9px; font-weight: 700; }
.owner-row strong, .owner-row small { display: block; }
.owner-row strong { font-size: 9px; }
.owner-row small { margin-top: 2px; color: #8c94a1; font-size: 7px; }

.app-main { min-width: 0; padding: 27px 26px 24px; background: #fff; }
.demo-panel { display: none; animation: panelIn .42s var(--ease); }
.demo-panel.active { display: block; }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.app-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.app-heading small { color: #8a92a0; font-size: 8px; font-weight: 720; text-transform: uppercase; letter-spacing: .12em; }
.app-heading h2 { margin: 7px 0 0; font-size: 24px; letter-spacing: -.04em; }
.date-pill { padding: 8px 10px; border: 1px solid var(--line); border-radius: 9px; color: #687181; background: #fbfcfe; font-size: 8px; }
.metric-row { margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.metric-row article { min-height: 110px; padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: #fbfcfe; }
.metric-row span, .metric-row small { display: block; }
.metric-row span { color: #717987; font-size: 8px; font-weight: 680; }
.metric-row strong { margin-top: 11px; display: block; color: #121722; font-size: 28px; letter-spacing: -.05em; }
.metric-row small { margin-top: 5px; color: #9aa2ad; font-size: 7px; line-height: 1.4; }
.overview-grid { margin-top: 11px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 11px; }
.priority-card, .snapshot-card, .visibility-score-card, .coverage-card, .blocker-card, .reviews-card, .themes-card, .narrative-card, .insight-columns article, .evidence-card { border: 1px solid var(--line); border-radius: 16px; background: #fbfcfe; }
.priority-card, .snapshot-card { padding: 16px; }
.card-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.section-label { display: block; color: #9098a6; font-size: 7px; font-weight: 740; text-transform: uppercase; letter-spacing: .12em; }
.card-heading h3, .themes-card h3, .narrative-card h3 { margin: 6px 0 0; font-size: 13px; letter-spacing: -.025em; }
.soft-badge { padding: 5px 7px; border-radius: 999px; color: #5e6f86; background: #eef3fa; font-size: 7px; }
.task-row { width: 100%; min-height: 62px; margin-top: 8px; padding: 10px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; border: 1px solid #e8ecf3; border-radius: 12px; background: #fff; cursor: pointer; text-align: left; }
.task-row:hover { border-color: #cddafd; box-shadow: 0 7px 20px rgba(40,65,110,.07); }
.task-number { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--blue); font-size: 8px; font-weight: 760; }
.task-row strong, .task-row small { display: block; }
.task-row strong { font-size: 9px; }
.task-row small { margin-top: 4px; color: #8c94a1; font-size: 7px; line-height: 1.35; }
.task-row em { padding: 6px 8px; border: 1px solid #cbd9fb; border-radius: 8px; color: var(--blue); font-size: 7px; font-style: normal; font-weight: 700; }
.snapshot-card .card-heading button { border: 0; color: var(--blue); background: transparent; cursor: pointer; font-size: 8px; }
.donut-wrap { padding: 17px 0 9px; display: grid; place-items: center; }
.donut { width: 100px; height: 100px; display: grid; place-items: center; align-content: center; border-radius: 50%; background: radial-gradient(circle at center, #fbfcfe 57%, transparent 59%), conic-gradient(var(--green) 0 55%, #e9edf3 55% 100%); }
.donut strong, .donut span { display: block; text-align: center; }
.donut strong { font-size: 22px; letter-spacing: -.05em; }
.donut span { margin-top: 2px; color: #8b93a0; font-size: 7px; }
.platform-lines { display: grid; gap: 7px; }
.platform-lines div { display: flex; justify-content: space-between; color: #667080; font-size: 7px; }
.platform-lines b { color: #323b49; }
.insight-strip { margin-top: 11px; padding: 14px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; border: 1px solid var(--line); border-radius: 15px; background: linear-gradient(90deg, #f4fbf7, #fffaf1, #f4f8ff); }
.insight-strip div { padding-right: 10px; border-right: 1px solid rgba(136,149,171,.16); }
.insight-strip div:last-child { border-right: 0; }
.insight-strip span, .insight-strip strong { display: block; }
.insight-strip span { color: #7a8392; font-size: 7px; font-weight: 730; }
.insight-strip strong { margin-top: 6px; font-size: 8px; line-height: 1.45; }

.visibility-layout { margin-top: 23px; display: grid; grid-template-columns: .82fr 1.18fr; gap: 12px; }
.visibility-score-card, .coverage-card { min-height: 300px; padding: 23px; }
.big-score { margin-top: 28px; font-size: 65px; font-weight: 760; letter-spacing: -.07em; }
.big-score span { font-size: 24px; color: #87909d; }
.visibility-score-card p { max-width: 280px; margin: 17px 0 0; color: #727b89; font-size: 10px; line-height: 1.55; }
.score-line { height: 7px; margin-top: 26px; overflow: hidden; border-radius: 999px; background: #e8edf4; }
.score-line span { height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg, var(--blue), #45a4ff); }
.coverage-row { min-height: 66px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 12px; border-bottom: 1px solid #e8ecf2; }
.coverage-row:last-child { border-bottom: 0; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; }
.status-dot.good { background: var(--green); box-shadow: 0 0 0 6px rgba(33,166,111,.10); }
.status-dot.medium { background: var(--amber); box-shadow: 0 0 0 6px rgba(216,139,31,.10); }
.status-dot.poor { background: var(--red); box-shadow: 0 0 0 6px rgba(207,76,69,.10); }
.coverage-row strong, .coverage-row small { display: block; }
.coverage-row strong { font-size: 10px; }
.coverage-row small { margin-top: 5px; color: #9199a5; font-size: 8px; }
.blocker-card { margin-top: 12px; padding: 19px 20px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.blocker-card h3 { margin: 7px 0 5px; font-size: 15px; }
.blocker-card p { margin: 0; color: #7c8491; font-size: 9px; }
.blocker-card button { flex: 0 0 auto; padding: 9px 12px; border: 0; border-radius: 9px; color: #fff; background: var(--blue); cursor: pointer; font-size: 8px; font-weight: 700; }

.reputation-grid { margin-top: 23px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 12px; }
.reviews-card, .themes-card { min-height: 390px; padding: 20px; }
.review-row { padding: 18px 0; display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid #e8ecf2; }
.review-row:last-child { border-bottom: 0; }
.stars { color: #f0a625; font-size: 11px; letter-spacing: .04em; }
.stars.two { color: #e09d2f; }
.review-row small { margin-left: 8px; color: #a0a7b1; font-size: 7px; }
.review-row p { max-width: 400px; margin: 8px 0 0; color: #5d6571; font-size: 9px; line-height: 1.55; }
.reply-state { height: fit-content; padding: 6px 8px; border-radius: 999px; font-size: 7px; font-weight: 700; white-space: nowrap; }
.reply-state.ready { color: #167a52; background: var(--green-soft); }
.reply-state.attention { color: #a73e38; background: var(--red-soft); }
.themes-card h3 { margin-bottom: 15px; }
.theme-row { min-height: 76px; padding: 0 3px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border-bottom: 1px solid #e8ecf2; }
.theme-row:last-child { border-bottom: 0; }
.theme-row strong, .theme-row small { display: block; }
.theme-row strong { font-size: 10px; }
.theme-row small { margin-top: 4px; color: #949ca7; font-size: 7px; }
.theme-row > span { padding: 5px 7px; border-radius: 999px; color: #167a52; background: var(--green-soft); font-size: 7px; font-weight: 700; }
.theme-row.warning > span { color: #9c6316; background: var(--amber-soft); }
.narrative-card { margin-top: 12px; padding: 18px 20px; }
.narrative-card p { margin: 8px 0 0; color: #7c8491; font-size: 9px; }

.insight-columns { margin-top: 23px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.insight-columns article { min-height: 330px; padding: 22px; }
.column-icon { width: 34px; height: 34px; margin-bottom: 22px; display: grid; place-items: center; border-radius: 11px; font-size: 14px; font-weight: 760; }
.column-icon.green { color: #16885c; background: var(--green-soft); }
.column-icon.amber { color: #a46718; background: var(--amber-soft); }
.column-icon.blue { color: var(--blue); background: var(--blue-soft); }
.insight-columns h3 { margin: 11px 0 10px; font-size: 15px; line-height: 1.25; }
.insight-columns p, .insight-columns li { color: #707987; font-size: 9px; line-height: 1.6; }
.insight-columns ol { margin: 12px 0 0; padding-left: 17px; }
.evidence-card { margin-top: 12px; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.evidence-card h3 { margin: 7px 0 0; font-size: 14px; }
.evidence-tags { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.evidence-tags span { padding: 7px 9px; border: 1px solid #dce4ef; border-radius: 999px; color: #657080; background: #fff; font-size: 7px; }

.platform { padding-top: 140px; padding-bottom: 135px; }
.section-heading { max-width: 800px; }
.section-heading h2 { margin: 20px 0 18px; font-size: clamp(46px, 5vw, 72px); line-height: 1; letter-spacing: -.06em; }
.section-heading p { max-width: 650px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.module-grid { margin-top: 65px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.module-card { min-height: 370px; padding: 34px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.78); box-shadow: 0 18px 50px rgba(25,45,81,.06); }
.module-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; color: var(--blue); background: var(--blue-soft); font-size: 21px; }
.module-icon.green { color: var(--green); background: var(--green-soft); }
.module-icon.amber { color: var(--amber); background: var(--amber-soft); }
.module-card h3 { margin: 45px 0 15px; font-size: 27px; letter-spacing: -.04em; }
.module-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.module-card button { width: fit-content; margin-top: auto; padding: 0; border: 0; color: var(--blue); background: transparent; cursor: pointer; font-size: 13px; font-weight: 700; }
.module-card button span { margin-left: 6px; }

.workflow-section { color: white; background: linear-gradient(135deg, #071d3b, #0b3268 58%, #114a94); }
.workflow-shell { padding-top: 130px; padding-bottom: 130px; }
.section-heading.light .kicker { color: #87b2ff; }
.section-heading.light p { color: #aebdd3; }
.workflow-grid { margin-top: 65px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.workflow-card { min-height: 300px; padding: 32px; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.055); backdrop-filter: blur(16px); }
.workflow-card > span { color: #80afff; font-size: 11px; font-weight: 760; letter-spacing: .12em; }
.workflow-card h3 { margin: 62px 0 15px; font-size: 26px; letter-spacing: -.04em; }
.workflow-card p { margin: 0; color: #afbdd0; font-size: 15px; line-height: 1.7; }

.data-section { padding-top: 130px; padding-bottom: 130px; }
.data-panel { padding: 54px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 65px; align-items: center; border: 1px solid var(--line); border-radius: 30px; background: white; box-shadow: 0 25px 70px rgba(24,44,81,.07); }
.data-copy h2 { margin: 17px 0 16px; font-size: clamp(40px, 4vw, 60px); line-height: 1; letter-spacing: -.055em; }
.data-copy p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.source-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.source-grid article { min-height: 105px; padding: 16px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: 16px; background: #f8faff; }
.source-grid article > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 12px; color: var(--blue); background: var(--blue-soft); font-size: 12px; font-weight: 780; }
.source-grid strong, .source-grid small { display: block; }
.source-grid strong { font-size: 12px; }
.source-grid small { margin-top: 5px; color: #87909d; font-size: 10px; line-height: 1.45; }
.privacy-row { margin-top: 18px; padding: 28px 32px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 18px; border: 1px solid #dbe7ff; border-radius: 20px; background: #eef4ff; }
.privacy-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px; color: white; background: var(--blue); font-size: 18px; font-weight: 780; }
.privacy-row h3 { margin: 0 0 8px; font-size: 20px; }
.privacy-row p { margin: 0; color: #687487; font-size: 14px; line-height: 1.55; }

.final-cta { padding-bottom: 110px; }
.cta-panel { min-height: 420px; padding: 64px; display: flex; align-items: center; justify-content: space-between; gap: 40px; overflow: hidden; border-radius: 34px; color: white; background: linear-gradient(130deg, #0a2d5b, #0e4b98); box-shadow: 0 34px 80px rgba(9,42,87,.22); }
.cta-panel .kicker { color: #94bdff; }
.cta-panel h2 { max-width: 720px; margin: 18px 0 15px; font-size: clamp(45px, 5vw, 68px); line-height: 1; letter-spacing: -.06em; }
.cta-panel p { max-width: 600px; margin: 0; color: #bbcae0; font-size: 16px; line-height: 1.6; }
.button-light { flex: 0 0 auto; color: #0b3e7e; background: white; box-shadow: 0 15px 40px rgba(0,0,0,.18); }

.site-footer { width: min(100%, var(--max)); margin: 0 auto; padding: 0 32px 40px; }
.footer-top { min-height: 145px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid var(--line); }
.footer-top p { color: #858e9b; font-size: 13px; }
.footer-top > a:last-child { justify-self: end; color: #556071; font-size: 13px; }
.footer-bottom { padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); color: #9ba3ae; font-size: 11px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-one { transition-delay: .08s; }
.reveal-delay-two { transition-delay: .16s; }

@media (max-width: 1120px) {
  .hero { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-copy { max-width: 900px; }
  .app-shell { width: 100%; transform: none; }
  .module-grid, .workflow-grid { grid-template-columns: 1fr; }
  .module-card, .workflow-card { min-height: 280px; }
  .module-card h3, .workflow-card h3 { margin-top: 32px; }
  .data-panel { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .site-header { padding: 10px 12px; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-button { justify-self: end; width: 42px; height: 42px; display: grid; place-items: center; border: 0; border-radius: 12px; background: #fff; }
  .menu-button span { width: 18px; height: 1.5px; display: block; background: #20242b; transition: transform .25s ease; }
  .menu-button span + span { margin-top: -14px; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: fixed; left: 12px; right: 12px; top: 78px; padding: 12px; display: grid; gap: 4px; border: 1px solid rgba(255,255,255,.8); border-radius: 18px; background: rgba(250,251,254,.96); box-shadow: 0 25px 60px rgba(18,35,68,.14); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .25s ease; }
  .mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu a { padding: 13px 14px; border-radius: 11px; color: #515b6a; font-size: 14px; }
  .mobile-menu a:hover { background: var(--blue-soft); color: var(--blue); }
  .section { padding-left: 20px; padding-right: 20px; }
  .hero { padding-top: 125px; gap: 50px; }
  .hero h1 { font-size: clamp(50px, 13vw, 72px); }
  .app-shell { grid-template-columns: 1fr; min-height: auto; }
  .app-sidebar { padding: 14px; border-right: 0; border-bottom: 1px solid var(--line); }
  .app-brand, .merchant-card, .app-sidebar-bottom { display: none; }
  .app-nav { margin: 0; display: flex; overflow-x: auto; gap: 5px; scrollbar-width: none; }
  .app-nav::-webkit-scrollbar { display: none; }
  .app-nav-item { width: auto; min-width: max-content; min-height: 38px; }
  .app-main { padding: 22px 16px; }
  .metric-row, .overview-grid, .visibility-layout, .reputation-grid, .insight-columns, .insight-strip, .source-grid { grid-template-columns: 1fr; }
  .insight-strip div { padding: 8px 0; border-right: 0; border-bottom: 1px solid rgba(136,149,171,.16); }
  .insight-strip div:last-child { border-bottom: 0; }
  .priority-card, .snapshot-card, .visibility-score-card, .coverage-card, .reviews-card, .themes-card { min-height: auto; }
  .evidence-card, .blocker-card { align-items: flex-start; flex-direction: column; }
  .evidence-tags { justify-content: flex-start; }
  .platform, .workflow-shell, .data-section { padding-top: 100px; padding-bottom: 100px; }
  .data-panel { padding: 28px; gap: 38px; }
  .cta-panel { padding: 44px 28px; align-items: flex-start; flex-direction: column; }
  .footer-top { padding: 35px 0; grid-template-columns: 1fr; gap: 18px; }
  .footer-top > a:last-child { justify-self: start; }
}

@media (max-width: 520px) {
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .app-heading { flex-direction: column; }
  .date-pill { align-self: flex-start; }
  .metric-row { grid-template-columns: 1fr; }
  .task-row { grid-template-columns: auto 1fr; }
  .task-row em { display: none; }
  .source-grid { grid-template-columns: 1fr; }
  .privacy-row { grid-template-columns: 1fr; }
  .footer-bottom { gap: 10px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
