:root {
  color-scheme: light;
  --ink: #08090b;
  --muted: #5f6368;
  --muted-2: #8b9097;
  --line: #e6e8eb;
  --line-strong: #d3d7dc;
  --surface: #ffffff;
  --surface-soft: #f7f8fa;
  --accent: #18b67a;
  --accent-soft: #dff8ef;
  --bracket-accent: #a100ff;
  --bracket-glow: rgba(161, 0, 255, 0.34);
  --shadow-soft: 0 34px 90px rgba(8, 9, 11, 0.08);
  --shadow-button: 0 16px 34px rgba(8, 9, 11, 0.18);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  font-synthesis: none;
  scroll-behavior: smooth;
}

@supports (color: color(display-p3 1 0 1)) {
  :root {
    --bracket-accent: color(display-p3 0.72 0 1);
    --bracket-glow: color(display-p3 0.72 0 1 / 0.38);
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #fff;
}

button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
svg { display: block; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.section-shell {
  width: min(100% - 56px, 1480px);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 86px;
  padding: 16px clamp(22px, 4vw, 58px);
  color: white;
  background: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  text-decoration: none;
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 790;
  letter-spacing: -0.055em;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  color: currentColor;
}

.brand-wordmark span {
  display: inline-block;
}

.brand-bracket {
  margin-inline: 0.035em;
  color: var(--bracket-accent);
  text-shadow: 0 0 14px var(--bracket-glow);
  font-weight: 900;
  letter-spacing: -0.11em;
  -webkit-text-fill-color: currentColor;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #f4f5f6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -0.07em;
}

.site-header .brand-mark {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 15px;
  font-weight: 520;
}

.site-nav a:hover { color: white; }
.header-cta { justify-self: end; }
.menu-button { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 1px solid #050506;
  border-radius: 9px;
  padding: 15px 25px;
  color: white;
  background: linear-gradient(180deg, #15171a, #050506);
  box-shadow: var(--shadow-button);
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  font-weight: 720;
  letter-spacing: -0.015em;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(8, 9, 11, 0.22);
}

.button-small {
  min-height: 54px;
  padding-inline: 27px;
  font-size: 15px;
}

.button-outline {
  color: var(--ink);
  background: white;
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: #15171a;
  text-decoration: none;
  font-weight: 590;
}

.text-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
summary:focus-visible,
.footer-links button:focus-visible,
.dialog-close:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid rgba(24, 182, 122, 0.3);
  outline-offset: 4px;
}

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(560px, 1.04fr);
  align-items: center;
  gap: clamp(42px, 5vw, 86px);
  min-height: 885px;
  overflow: hidden;
  margin-inline: 0;
  padding: 142px clamp(28px, 4.5vw, 72px) 56px;
  color: white;
  background:
    radial-gradient(circle at 86% 30%, rgba(24, 219, 225, 0.95), transparent 34%),
    radial-gradient(circle at 30% 82%, rgba(82, 202, 255, 0.82), transparent 30%),
    linear-gradient(135deg, #0831df 0%, #0065f4 43%, #0ed7e8 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero::before {
  right: -10%;
  bottom: -18%;
  left: -8%;
  height: 42%;
  background:
    radial-gradient(ellipse at 16% 78%, rgba(255, 255, 255, 0.42), transparent 36%),
    radial-gradient(ellipse at 58% 88%, rgba(255, 255, 255, 0.5), transparent 43%),
    radial-gradient(ellipse at 90% 66%, rgba(255, 255, 255, 0.35), transparent 34%);
  filter: blur(18px);
  opacity: 0.9;
}

.hero::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 36%),
    radial-gradient(circle at 4% 18%, rgba(255, 255, 255, 0.13), transparent 25%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(58px, 5.25vw, 94px);
  line-height: 1.03;
  letter-spacing: -0.062em;
}

.hero-copy > p {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 42px;
}

.hero-actions .text-link {
  color: white;
  text-shadow: 0 1px 18px rgba(0, 32, 92, 0.22);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  list-style: none;
  font-size: 15px;
}

.hero-facts li {
  position: relative;
  padding-left: 24px;
}

.hero-facts li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  content: "";
}

.product-frame {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  min-height: 0;
  color: var(--ink);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58));
  box-shadow: 0 36px 100px rgba(3, 22, 75, 0.22);
  backdrop-filter: blur(20px);
}

.product-sidebar {
  display: grid;
  justify-items: center;
  grid-template-rows: 86px repeat(4, 42px) 1fr;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px 0 0 18px;
  background: rgba(255, 255, 255, 0.36);
}

.product-sidebar strong {
  align-self: center;
  font-size: 28px;
  letter-spacing: -0.08em;
}

.product-sidebar span {
  position: relative;
  width: 19px;
  height: 19px;
  border: 1.5px solid #777d84;
  border-radius: 5px;
}

.product-sidebar span:nth-child(3) { border-radius: 50%; }
.product-sidebar span:nth-child(4)::before,
.product-sidebar span:nth-child(5)::before {
  position: absolute;
  inset: 4px;
  border-top: 1.5px solid #777d84;
  border-bottom: 1.5px solid #777d84;
  content: "";
}

.product-sidebar .is-active::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -28px;
  width: 3px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  gap: 12px;
  padding: clamp(26px, 3.2vw, 42px);
}

.score-card,
.website-card,
.recommendations article,
.product-footer {
  border: 1px solid rgba(231, 236, 242, 0.92);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 44px rgba(5, 35, 88, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.score-card,
.website-card {
  min-height: 210px;
  padding: 24px;
}

.score-card > span,
.website-card > span {
  color: #232528;
  font-size: 14px;
}

.score-line {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin-top: 22px;
}

.score-line strong {
  font-size: clamp(74px, 6.8vw, 102px);
  line-height: 0.84;
  letter-spacing: -0.08em;
  font-weight: 420;
}

.score-line em {
  color: #777d84;
  font-size: 18px;
  font-style: normal;
}

.progress {
  width: min(100%, 300px);
  height: 4px;
  margin-top: 22px;
  border-radius: 999px;
  background: #e4e6e8;
}

.progress i {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

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

.mini-browser {
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: white;
}

.mini-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
}

.mini-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bbbfc5;
}

.mini-bar b {
  width: 18px;
  height: 10px;
  margin-left: auto;
  border-top: 2px solid #767b82;
  border-bottom: 2px solid #767b82;
}

.mini-visual {
  height: 96px;
  background:
    linear-gradient(90deg, #d8dadd 0 38%, #111 38% 100%),
    linear-gradient(180deg, transparent 0 65%, rgba(255, 255, 255, 0.1) 65% 100%);
}

.mini-lines {
  display: grid;
  gap: 8px;
  padding: 17px 18px 20px;
}

.mini-lines i {
  height: 8px;
  border-radius: 999px;
  background: #e1e3e6;
}

.mini-lines i:nth-child(1) { width: 64%; }
.mini-lines i:nth-child(2) { width: 72%; }
.mini-lines i:nth-child(3) { width: 50%; }

.recommendations {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.recommendations h2 {
  margin: 0 0 6px 20px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.recommendations article {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 14px 18px;
}

.recommendations b {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-soft);
}

.recommendations b::before {
  width: 18px;
  height: 18px;
  border: 2px solid #111;
  border-radius: 50%;
  content: "";
}

.recommendations strong {
  display: block;
  font-size: 16px;
  letter-spacing: -0.015em;
}

.recommendations span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.recommendations em {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #4b5056;
  background: #fbfbfc;
  font-size: 12px;
  font-style: normal;
}

.product-footer {
  grid-column: 1 / -1;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding: 22px 24px;
  color: var(--muted);
  font-size: 14px;
}

.product-footer a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  text-decoration: none;
}

.report-float {
  position: absolute;
  right: -44px;
  bottom: 50px;
  display: grid;
  gap: 13px;
  width: 220px;
  padding: 22px;
  border: 1px solid rgba(231, 236, 242, 0.94);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 24px 54px rgba(5, 35, 88, 0.16);
  backdrop-filter: blur(16px);
}

.report-float strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.pdf-tile {
  display: grid;
  place-items: center;
  width: 58px;
  height: 68px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, #0074ff, #00a6ff);
  font-size: 15px;
  font-weight: 820;
}

.report-float p {
  margin: 0;
  color: #303338;
  font-size: 13px;
}

.report-float ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: #303338;
  list-style: none;
  font-size: 12px;
}

.report-float li {
  position: relative;
  padding-left: 19px;
}

.report-float li::before {
  position: absolute;
  left: 0;
  content: "✓";
}

.report-float a {
  display: inline-flex;
  justify-content: center;
  margin-top: 2px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--ink);
  background: #f7f9fb;
  text-decoration: none;
  font-size: 12px;
  font-weight: 650;
}

.insight-section,
.report-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  padding-block: 130px;
  border-top: 1px solid var(--line);
}

.insight-section {
  position: relative;
  z-index: 3;
  margin-top: -70px;
  padding: 72px clamp(28px, 4vw, 76px) 112px;
  border: 0;
  border-radius: 34px 34px 0 0;
  background: white;
  box-shadow: 0 -22px 70px rgba(4, 50, 126, 0.08);
}

.report-section {
  grid-template-columns: minmax(620px, 1.1fr) minmax(0, 0.9fr);
}

.section-copy h2,
.process-section > h2,
.faq-section > h2,
.closing-cta h2 {
  margin: 0;
  font-size: clamp(44px, 4.8vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.068em;
}

.section-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: -0.025em;
}

.section-copy.narrow .text-link { margin-top: 32px; }

.signal-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--line);
}

.signal-list article {
  display: grid;
  grid-template-columns: 86px 180px 1fr;
  gap: 24px;
  align-items: start;
  padding: 34px;
  background: white;
}

.signal-list span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 720;
}

.signal-list h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.045em;
}

.signal-list p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.report-panel {
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.report-header {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.report-header .brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
}

.report-header strong,
.report-header small {
  display: block;
}

.report-header strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.report-header small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.report-header em {
  margin-left: auto;
  color: var(--accent);
  font-size: 15px;
  font-style: normal;
  font-weight: 720;
}

.report-body {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 28px;
  padding: 34px;
}

.report-page,
.report-checklist {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  background: #fbfbfc;
}

.report-page h3,
.report-checklist h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.045em;
}

.report-page p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.report-page ol {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.report-page li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
}

.report-page b {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: white;
  background: var(--ink);
  font-size: 13px;
}

.report-page span,
.report-page strong {
  display: block;
}

.report-page span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.report-page strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 15px;
}

.report-checklist {
  display: grid;
  align-content: start;
  gap: 12px;
}

.report-checklist h3 { margin-bottom: 10px; }

.report-checklist div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.report-checklist b {
  padding: 7px 10px;
  border-radius: 999px;
  color: #0c7650;
  background: var(--accent-soft);
  font-size: 12px;
}

.report-checklist .warn {
  color: #866015;
  background: #fff4d8;
}

.process-section {
  padding-block: 130px 0;
  border-top: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 58px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--line);
}

.process-grid article {
  min-height: 270px;
  padding: 34px;
  background: white;
}

.process-grid strong {
  color: var(--accent);
  font-size: 14px;
}

.process-grid h3 {
  margin: 70px 0 12px;
  font-size: 29px;
  letter-spacing: -0.045em;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.pricing-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.15fr 0.97fr;
  align-items: center;
  gap: 48px;
  margin-top: 72px;
  padding: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(24, 182, 122, 0.1), transparent 38%),
    #fff;
  box-shadow: var(--shadow-soft);
}

.pricing-panel h3 {
  margin: 0;
  font-size: 31px;
  letter-spacing: -0.045em;
}

.pricing-panel p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.pricing-panel p strong {
  margin-right: 12px;
  color: var(--ink);
  font-size: clamp(58px, 5vw, 84px);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.pricing-panel p span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
}

.pricing-panel small {
  display: block;
  margin-top: 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 720;
}

.pricing-panel ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-panel li {
  position: relative;
  padding-left: 27px;
  color: #303338;
  font-size: 15px;
}

.pricing-panel li::before {
  position: absolute;
  top: 0.32em;
  left: 0;
  width: 9px;
  height: 15px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(42deg);
  content: "";
}

.faq-section {
  padding-block: 130px 82px;
}

.faq-list {
  max-width: 980px;
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  cursor: pointer;
  list-style: none;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  color: #4f555b;
  font-size: 32px;
  font-weight: 360;
}

.faq-list details[open] summary::after { content: "–"; }

.faq-list p {
  max-width: 780px;
  margin: -6px 0 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.closing-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  align-items: end;
  margin-top: 92px;
  padding: 58px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.closing-cta h2 {
  max-width: 840px;
  font-size: clamp(42px, 4.2vw, 68px);
}

.closing-cta p {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 58px clamp(22px, 4vw, 58px);
  border-top: 1px solid var(--line);
}

.site-footer .brand { font-size: 24px; }
.site-footer .brand-mark { width: 32px; height: 32px; border-radius: 10px; font-size: 16px; }

.site-footer p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links button {
  border: 0;
  padding: 0;
  color: #383c42;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.site-footer > small {
  grid-column: 1 / -1;
  color: var(--muted-2);
  font-size: 11px;
}

dialog {
  width: min(100% - 32px, 580px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0;
  color: var(--ink);
  background: white;
  box-shadow: 0 30px 80px rgba(8, 9, 11, 0.2);
}

dialog::backdrop {
  background: rgba(8, 9, 11, 0.48);
  backdrop-filter: blur(5px);
}

.request-dialog form,
.legal-dialog {
  position: relative;
  padding: 40px;
}

.request-dialog h2,
.legal-dialog h2 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.045em;
}

.request-dialog form > p,
.legal-dialog p {
  margin: 12px 0 26px;
  color: var(--muted);
  line-height: 1.55;
}

.request-dialog label {
  display: grid;
  gap: 8px;
  margin-bottom: 17px;
  color: #303338;
  font-size: 13px;
  font-weight: 700;
}

.request-dialog input,
.request-dialog textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  background: white;
  font-size: 15px;
}

.request-dialog input:focus,
.request-dialog textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(24, 182, 122, 0.18);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.dialog-close svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.request-result {
  display: grid;
  gap: 12px;
  margin-top: 25px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.request-result textarea { min-height: 160px; }

.request-result small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

[hidden] { display: none !important; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav {
    position: absolute;
    top: 86px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
    box-shadow: var(--shadow-soft);
  }
  .site-nav a { color: var(--ink); }
  .site-nav[data-open="true"] { display: grid; }
  .header-cta { display: none; }
  .menu-button {
    display: grid;
    gap: 6px;
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 0;
    padding: 12px;
    background: transparent;
  }
  .menu-button span:not(.sr-only) {
    display: block;
    height: 2px;
    background: white;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 122px;
    padding-bottom: 110px;
  }
  .hero-copy { max-width: 900px; }
  .product-frame {
    min-height: 560px;
    width: min(100%, 880px);
  }
  .report-float {
    right: 22px;
    bottom: 24px;
  }
  .insight-section,
  .report-section {
    grid-template-columns: 1fr;
  }
  .report-section .section-copy { order: -1; }
  .pricing-panel { grid-template-columns: 1fr 1fr; }
  .pricing-panel > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .section-shell { width: min(100% - 32px, 1480px); }
  .site-header {
    min-height: 72px;
    padding-inline: 16px;
  }
  .site-header .brand { font-size: 23px; }
  .brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 16px;
  }
  .site-nav { top: 74px; }
  .hero {
    gap: 42px;
    padding: 116px 16px 120px;
  }
  .hero h1 {
    font-size: clamp(50px, 14vw, 68px);
  }
  .hero-copy > p {
    margin-top: 24px;
    font-size: 18px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 34px;
  }
  .hero-facts {
    gap: 14px;
    font-size: 14px;
  }
  .product-frame {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 620px;
    border-radius: 14px;
  }
  .product-sidebar {
    grid-template-rows: 66px repeat(4, 34px) 1fr;
    gap: 12px;
  }
  .product-sidebar strong { font-size: 20px; }
  .product-sidebar span {
    width: 16px;
    height: 16px;
  }
  .product-sidebar .is-active::after { left: -18px; }
  .product-main {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .score-card,
  .website-card {
    min-height: 0;
    padding: 21px;
  }
  .score-line strong { font-size: 76px; }
  .website-card { display: none; }
  .recommendations article {
    grid-template-columns: 42px 1fr;
    min-height: 0;
    padding: 15px;
  }
  .recommendations b {
    width: 34px;
    height: 34px;
  }
  .recommendations em {
    grid-column: 2;
    width: fit-content;
  }
  .product-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .report-float { display: none; }
  .insight-section,
  .report-section,
  .process-section,
  .faq-section {
    padding-top: 88px;
  }
  .insight-section {
    margin-top: -54px;
    padding-inline: 22px;
    border-radius: 28px 28px 0 0;
  }
  .insight-section,
  .report-section {
    padding-bottom: 88px;
  }
  .section-copy h2,
  .process-section > h2,
  .faq-section > h2 {
    font-size: clamp(42px, 12vw, 58px);
  }
  .section-copy p {
    font-size: 17px;
  }
  .signal-list article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 26px;
  }
  .report-body {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .report-header {
    padding: 18px;
  }
  .report-header em { display: none; }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid article {
    min-height: 210px;
    padding: 28px;
  }
  .process-grid h3 {
    margin-top: 42px;
  }
  .pricing-panel {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 54px;
    padding: 28px;
  }
  .pricing-panel > div:last-child { grid-column: auto; }
  .faq-list { margin-top: 36px; }
  .faq-list summary {
    min-height: 78px;
    font-size: 19px;
  }
  .faq-list p {
    font-size: 15px;
  }
  .closing-cta {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 66px;
    padding: 30px;
  }
  .closing-cta h2 {
    font-size: clamp(40px, 11vw, 54px);
  }
  .closing-cta p { font-size: 17px; }
  .site-footer {
    grid-template-columns: 1fr;
    padding: 44px 22px;
  }
  .footer-links { justify-content: flex-start; }
  .request-dialog form,
  .legal-dialog {
    padding: 38px 22px 24px;
  }
}

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