:root {
  --ink: #111827;
  --muted: #5d6678;
  --paper: #fbfaf7;
  --white: #ffffff;
  --navy: #0b1830;
  --navy-2: #102547;
  --gold: #d6a84b;
  --gold-deep: #a9781f;
  --gold-pale: #f7edcf;
  --teal: #0e766e;
  --teal-pale: #dff4ef;
  --red: #b83e48;
  --line: #dfe3e8;
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 20px 55px rgba(11, 24, 48, 0.12);
  --radius: 22px;
  --radius-sm: 13px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", "Noto Sans JP", "Noto Sans SC", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--navy);
  background: var(--gold-pale);
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-160%);
  color: var(--white);
  border-radius: 8px;
  background: var(--navy);
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.announcement {
  padding: 8px 20px;
  color: #f8f3e7;
  background: var(--navy);
  font-size: 0.83rem;
  text-align: center;
  letter-spacing: 0.01em;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(11, 24, 48, 0.08);
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-weight: 760;
  line-height: 1.05;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--navy);
  border: 1px solid rgba(11, 24, 48, 0.16);
  border-radius: 11px;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(11, 24, 48, 0.08);
}

.brand-mark::before {
  width: 16px;
  height: 16px;
  content: "";
  transform: rotate(45deg);
  border: 3px solid currentColor;
  border-top-color: var(--gold);
  border-radius: 3px;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 620;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 0.9rem;
  font-weight: 650;
}

.nav-links > a {
  color: #374151;
  text-decoration: none;
}

.nav-links > a:hover {
  color: var(--gold-deep);
}

.language-switcher {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.language-switcher button {
  min-width: 40px;
  padding: 5px 8px;
  cursor: pointer;
  color: var(--muted);
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 750;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--white);
  background: var(--navy);
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 11px 20px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  color: var(--white);
  border: 1px solid var(--navy);
  border-radius: 11px;
  background: var(--navy);
  box-shadow: 0 9px 20px rgba(11, 24, 48, 0.15);
  font-weight: 740;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
  background: var(--navy-2);
  box-shadow: 0 13px 25px rgba(11, 24, 48, 0.2);
}

.button:focus-visible,
.language-switcher button:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(214, 168, 75, 0.55);
  outline-offset: 3px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.button-gold {
  color: var(--navy);
  border-color: var(--gold);
  background: var(--gold);
}

.button-gold:hover:not(:disabled) {
  background: #e2b861;
}

.button-ghost {
  color: var(--navy);
  border-color: rgba(11, 24, 48, 0.16);
  background: var(--white);
  box-shadow: none;
}

.button-ghost:hover:not(:disabled) {
  background: #f7f7f4;
}

.button-small {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 0.86rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 72px;
  background:
    radial-gradient(circle at 76% 18%, rgba(214, 168, 75, 0.23), transparent 25%),
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 100%);
}

.hero::after {
  position: absolute;
  top: -160px;
  right: -130px;
  width: 480px;
  height: 480px;
  content: "";
  pointer-events: none;
  opacity: 0.38;
  border: 1px solid rgba(11, 24, 48, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(11, 24, 48, 0.025), 0 0 0 120px rgba(11, 24, 48, 0.02);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 62px;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 19px;
  padding: 6px 11px;
  align-items: center;
  gap: 8px;
  color: #765618;
  border: 1px solid #ead6a6;
  border-radius: 999px;
  background: #fff9e8;
  font-size: 0.75rem;
  font-weight: 770;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(214, 168, 75, 0.18);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", "Noto Serif", serif;
  font-size: clamp(2.55rem, 5.2vw, 5.1rem);
  font-weight: 610;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", "Noto Serif", serif;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 610;
}

h3 {
  margin-bottom: 11px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.17rem);
}

.audit-form {
  max-width: 680px;
}

.url-field {
  display: flex;
  padding: 7px;
  gap: 8px;
  border: 1px solid #ccd2db;
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 16px 35px rgba(11, 24, 48, 0.1);
}

.url-field input {
  width: 100%;
  min-width: 0;
  padding: 12px 13px;
  color: var(--ink);
  border: 0;
  outline: 0;
  background: transparent;
}

.form-note,
.microcopy {
  margin: 10px 3px 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-status {
  min-height: 24px;
  margin: 9px 3px 0;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 650;
}

.form-status[data-state="error"] {
  color: var(--red);
}

.form-status[data-state="success"] {
  color: var(--teal);
}

.trust-row {
  display: flex;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 17px;
  color: #445064;
  font-size: 0.83rem;
  font-weight: 650;
}

.trust-row span::before {
  margin-right: 7px;
  content: "✓";
  color: var(--teal);
  font-weight: 900;
}

.audit-card {
  position: relative;
  overflow: hidden;
  padding: 25px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: var(--navy);
  box-shadow: 0 28px 70px rgba(11, 24, 48, 0.24);
}

.audit-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  content: "";
  opacity: 0.14;
  border: 38px solid var(--gold);
  border-radius: 50%;
}

.audit-card-head {
  display: flex;
  margin-bottom: 27px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #cbd5e1;
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.live-dot::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  content: "";
  border-radius: 50%;
  background: #50c8a8;
  box-shadow: 0 0 0 4px rgba(80, 200, 168, 0.14);
}

.score-ring {
  display: grid;
  width: 126px;
  height: 126px;
  margin: 3px auto 30px;
  place-items: center;
  border: 9px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--gold);
  border-right-color: var(--gold);
  border-radius: 50%;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  line-height: 1;
  transform: rotate(12deg);
}

.score-ring span {
  transform: rotate(-12deg);
}

.score-ring small {
  display: block;
  margin-top: 4px;
  color: #aeb9ca;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.signal-list li {
  display: flex;
  padding: 12px 13px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line-dark);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.8rem;
}

.signal-list b {
  color: #f3d898;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.platform-strip {
  padding: 21px 0;
  border-block: 1px solid var(--line);
  background: var(--white);
}

.platform-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  color: #707888;
  font-size: 0.79rem;
  font-weight: 740;
  letter-spacing: 0.035em;
}

.platform-row span:not(:first-child) {
  color: #333d4d;
  font-size: 0.92rem;
}

.section {
  padding: 96px 0;
}

.section-dark {
  color: #d7deea;
  background: var(--navy);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 43px;
}

.section-heading p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.centered-heading {
  margin-inline: auto;
  text-align: center;
}

.centered-heading p {
  margin-inline: auto;
}

.section-tight-top {
  padding-top: 30px;
}

.section-dark .section-heading p {
  color: #abb6c7;
}

.kicker {
  margin-bottom: 11px;
  color: var(--gold-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-dark .kicker {
  color: #e4c378;
}

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

.feature-card,
.step-card,
.policy-card,
.landing-card {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(11, 24, 48, 0.045);
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 25px;
  place-items: center;
  color: var(--navy);
  border-radius: 12px;
  background: var(--gold-pale);
  font-weight: 850;
}

.feature-card p,
.step-card p,
.policy-card p,
.landing-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.preview-result {
  padding-top: 0;
}

.preview-shell {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.preview-shell[hidden] {
  display: none;
}

.preview-top {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.preview-score {
  display: flex;
  width: 90px;
  height: 90px;
  align-items: baseline;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--navy);
  border: 7px solid var(--gold);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 820;
  line-height: 78px;
}

.preview-score small {
  font-size: 0.75rem;
}

.preview-url {
  max-width: 620px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.finding-list {
  display: grid;
  margin: 20px 0 28px;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.finding-list li {
  position: relative;
  padding: 13px 15px 13px 40px;
  border-radius: 10px;
  background: #f5f6f7;
  font-size: 0.9rem;
}

.finding-list li::before {
  position: absolute;
  top: 13px;
  left: 15px;
  content: "↗";
  color: var(--gold-deep);
  font-weight: 900;
}

.preview-cta {
  display: flex;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
}

.preview-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.steps {
  counter-reset: steps;
}

.step-card {
  position: relative;
  color: var(--white);
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
  counter-increment: steps;
}

.step-card::before {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 38px;
  place-items: center;
  content: "0" counter(steps);
  color: var(--navy);
  border-radius: 10px;
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 840;
}

.step-card p {
  color: #abb6c7;
}

.pricing-grid {
  display: grid;
  max-width: 900px;
  margin-inline: auto;
  align-items: stretch;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card {
  position: relative;
  display: flex;
  padding: 34px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(11, 24, 48, 0.07);
}

.price-card.featured {
  color: #e7edf6;
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 26px 65px rgba(11, 24, 48, 0.22);
}

.price-card.featured h3 {
  color: var(--white);
}

.price-badge {
  align-self: flex-start;
  margin-bottom: 24px;
  padding: 5px 9px;
  color: #6c4a0e;
  border-radius: 999px;
  background: var(--gold-pale);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  margin: 12px 0 4px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1;
}

.featured .price {
  color: var(--white);
}

.price-unit {
  margin-bottom: 21px;
  color: var(--muted);
  font-size: 0.8rem;
}

.featured .price-unit {
  color: #aeb9ca;
}

.price-list {
  margin: 5px 0 30px;
  padding: 0;
  list-style: none;
}

.price-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 0.88rem;
}

.price-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--teal);
  font-weight: 900;
}

.featured .price-list li::before {
  color: #65d0b5;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.checkout-status {
  min-height: 28px;
  margin: 20px auto 0;
  color: var(--muted);
  text-align: center;
}

.price-card .microcopy {
  margin: 13px 0 0;
  text-align: center;
}

.agency-dialog {
  width: min(calc(100% - 30px), 720px);
  max-height: min(90vh, 850px);
  padding: 0;
  overflow: auto;
  color: var(--ink);
  border: 0;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.32);
}

.agency-dialog::backdrop {
  background: rgba(5, 14, 29, 0.72);
  backdrop-filter: blur(5px);
}

.agency-dialog-form {
  padding: 32px;
}

.dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.dialog-head h2 {
  margin-bottom: 9px;
  font-size: 2rem;
}

.dialog-close {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  cursor: pointer;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-size: 1.5rem;
  line-height: 1;
}

.agency-url-grid {
  display: grid;
  margin: 24px 0 17px;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.agency-url-grid label:first-child {
  grid-column: 1 / -1;
}

.agency-url-grid label,
.dialog-org {
  display: grid;
  gap: 6px;
  color: #3e485b;
  font-size: 0.77rem;
  font-weight: 700;
}

.agency-url-grid input,
.dialog-org input {
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid #ccd2db;
  border-radius: 9px;
  background: #fff;
}

.compact-notice {
  margin: 18px 0 5px;
  padding: 13px 15px;
  font-size: 0.78rem;
}

.dialog-actions {
  display: flex;
  margin-top: 18px;
  justify-content: flex-end;
  gap: 10px;
}

.proof-note {
  max-width: 780px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 0.77rem;
  text-align: center;
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
}

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

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

.faq-list summary {
  padding: 19px 35px 19px 0;
  cursor: pointer;
  color: var(--navy);
  font-weight: 740;
  list-style: none;
}

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

.faq-list summary::after {
  float: right;
  content: "+";
  color: var(--gold-deep);
  font-size: 1.35rem;
  line-height: 1;
}

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

.faq-list details p {
  max-width: 720px;
  padding: 0 0 20px;
  color: var(--muted);
}

.final-cta {
  padding: 40px 0 95px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  padding: 52px;
  align-items: center;
  gap: 30px;
  color: #cbd5e1;
  border-radius: 26px;
  background: var(--navy);
  grid-template-columns: 1fr auto;
}

.cta-panel::after {
  position: absolute;
  right: -100px;
  bottom: -210px;
  width: 340px;
  height: 340px;
  content: "";
  opacity: 0.12;
  border: 55px solid var(--gold);
  border-radius: 50%;
}

.cta-panel h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.cta-panel p {
  max-width: 690px;
  margin: 0;
}

.cta-panel .button {
  position: relative;
  z-index: 1;
}

.site-footer {
  padding: 47px 0 30px;
  color: #aeb9ca;
  background: #071225;
}

.footer-grid {
  display: grid;
  gap: 35px;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand small {
  color: #8793a7;
}

.footer-copy {
  max-width: 420px;
  margin: 17px 0 0;
  font-size: 0.83rem;
}

.footer-links h3 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin: 7px 0;
  color: #aeb9ca;
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  margin-top: 38px;
  padding-top: 20px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-dark);
  color: #758198;
  font-size: 0.75rem;
}

.legal-hero,
.landing-hero {
  padding: 78px 0 58px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fffdf8 0%, var(--paper) 100%);
}

.legal-hero h1,
.landing-hero h1 {
  max-width: 920px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
}

.legal-hero p,
.landing-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.breadcrumbs {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 0.78rem;
}

.breadcrumbs a {
  color: var(--gold-deep);
}

.legal-content,
.landing-content {
  width: min(calc(100% - 40px), 860px);
  margin: 0 auto;
  padding: 65px 0 90px;
}

.legal-content h2,
.landing-content h2 {
  margin-top: 46px;
  font-size: 1.75rem;
}

.legal-content h3,
.landing-content h3 {
  margin-top: 30px;
}

.legal-content p,
.legal-content li,
.landing-content p,
.landing-content li {
  color: #465064;
}

.legal-content li,
.landing-content li {
  margin-bottom: 8px;
}

.notice {
  margin: 28px 0;
  padding: 20px 22px;
  color: #55431c;
  border: 1px solid #e9d7a8;
  border-radius: 13px;
  background: #fff9e8;
}

.notice strong {
  color: #3f3218;
}

.landing-facts {
  display: grid;
  margin: 38px 0;
  gap: 13px;
  grid-template-columns: repeat(3, 1fr);
}

.landing-facts div {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
}

.landing-facts strong {
  display: block;
  color: var(--navy);
  font-size: 1.1rem;
}

.landing-facts span {
  color: var(--muted);
  font-size: 0.78rem;
}

.inline-cta {
  display: flex;
  margin-top: 45px;
  padding: 27px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #cbd5e1;
  border-radius: 18px;
  background: var(--navy);
}

.inline-cta h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 1.55rem;
}

.inline-cta p {
  margin: 0;
  color: #aeb9ca;
  font-size: 0.88rem;
}

.not-found {
  display: grid;
  min-height: 72vh;
  padding: 70px 20px;
  place-items: center;
  text-align: center;
}

.not-found-inner {
  max-width: 620px;
}

.not-found-code {
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.report-page {
  min-height: 100vh;
  color: #192234;
  background: #eef1f5;
}

.report-toolbar {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid #d8dde5;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 18px rgba(11, 24, 48, 0.06);
  backdrop-filter: blur(14px);
}

.report-toolbar-inner {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.report-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.organization-field {
  display: flex;
  align-items: center;
  gap: 9px;
}

.organization-field label {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 750;
}

.organization-field input {
  width: 180px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 0.8rem;
}

.report-loading {
  display: grid;
  min-height: 62vh;
  padding: 60px 20px;
  place-items: center;
  text-align: center;
}

.report-loading-inner {
  max-width: 580px;
}

.loader {
  width: 47px;
  height: 47px;
  margin: 0 auto 22px;
  border: 5px solid #d9dee6;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 900ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.report-document {
  width: min(calc(100% - 38px), 1050px);
  margin: 34px auto 70px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(11, 24, 48, 0.12);
}

.report-cover {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  padding: 62px;
  color: #c9d2e0;
  background: var(--navy);
}

.report-cover::after {
  position: absolute;
  right: -150px;
  bottom: -230px;
  width: 470px;
  height: 470px;
  content: "";
  opacity: 0.16;
  border: 75px solid var(--gold);
  border-radius: 50%;
}

.report-brandline {
  display: flex;
  margin-bottom: 105px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #e3c371;
  font-size: 0.78rem;
  font-weight: 790;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.report-cover h1 {
  max-width: 780px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 5.1rem);
}

.report-target {
  max-width: 760px;
  overflow: hidden;
  margin-bottom: 45px;
  color: #d9e1ec;
  font-size: 1.08rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  color: #98a5ba;
  font-size: 0.78rem;
}

.report-meta strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
}

.report-body {
  padding: 52px 62px 68px;
}

.report-section {
  padding: 43px 0;
  border-bottom: 1px solid var(--line);
}

.report-section:first-child {
  padding-top: 0;
}

.report-section:last-child {
  border-bottom: 0;
}

.report-section h2 {
  font-size: 2rem;
}

.report-section > p {
  color: #4d586b;
}

.score-summary {
  display: grid;
  align-items: center;
  gap: 34px;
  grid-template-columns: 150px 1fr;
}

.report-score {
  display: grid;
  width: 145px;
  height: 145px;
  place-items: center;
  color: var(--navy);
  border: 11px solid var(--gold);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 3rem;
  font-weight: 650;
  line-height: 1;
}

.report-score small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.62rem;
  text-align: center;
  text-transform: uppercase;
}

.metric-grid {
  display: grid;
  margin-top: 26px;
  gap: 13px;
  grid-template-columns: repeat(3, 1fr);
}

.metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8f9fa;
}

.metric strong {
  display: block;
  color: var(--navy);
  font-size: 1.65rem;
  line-height: 1.2;
}

.metric span {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 650;
}

.report-findings {
  display: grid;
  gap: 16px;
}

.report-finding {
  break-inside: avoid;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 5px solid #8793a7;
  border-radius: 13px;
  background: #fff;
}

.report-finding[data-priority="high"],
.report-finding[data-priority="critical"] {
  border-left-color: var(--red);
}

.report-finding[data-priority="medium"] {
  border-left-color: var(--gold);
}

.report-finding[data-priority="low"] {
  border-left-color: var(--teal);
}

.finding-head {
  display: flex;
  margin-bottom: 12px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.finding-head h3 {
  margin: 0;
  font-size: 1.1rem;
}

.priority-pill {
  flex: 0 0 auto;
  padding: 4px 8px;
  color: #4b5563;
  border-radius: 999px;
  background: #edf0f3;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.report-finding[data-priority="high"] .priority-pill,
.report-finding[data-priority="critical"] .priority-pill {
  color: #862c35;
  background: #f9e5e7;
}

.finding-evidence,
.finding-recommendation {
  margin: 13px 0 0;
  padding: 12px 14px;
  border-radius: 9px;
  background: #f6f7f8;
  color: #4d586b;
  font-size: 0.85rem;
}

.finding-recommendation {
  color: #14534e;
  background: var(--teal-pale);
}

.finding-evidence strong,
.finding-recommendation strong {
  color: inherit;
}

.locale-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

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

.locale-table th {
  color: var(--navy);
  background: #f5f7f9;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.report-error-card {
  margin: 25px 0;
  padding: 22px;
  color: #6f2830;
  border: 1px solid #edc8cc;
  border-radius: 12px;
  background: #fff2f3;
}

.report-disclaimer {
  padding: 24px;
  color: #596477;
  border-radius: 13px;
  background: #f4f5f7;
  font-size: 0.79rem;
}

.report-pack-divider {
  height: 34px;
  background: #eef1f5;
}

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

[hidden] {
  display: none !important;
}

@media (max-width: 920px) {
  .nav-links > a:not(.button) {
    display: none;
  }

  .hero {
    padding-top: 65px;
  }

  .hero-grid {
    gap: 45px;
    grid-template-columns: 1fr;
  }

  .audit-card {
    width: min(100%, 620px);
  }

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

  .step-card::before {
    margin-bottom: 22px;
  }

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

@media (max-width: 680px) {
  .container,
  .legal-content,
  .landing-content {
    width: min(calc(100% - 28px), var(--max));
  }

  .announcement {
    padding-inline: 12px;
    font-size: 0.73rem;
  }

  .nav {
    min-height: 64px;
  }

  .brand-text {
    max-width: 155px;
    font-size: 0.82rem;
  }

  .brand small {
    display: none;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links > .button {
    display: none;
  }

  .language-switcher button {
    min-width: 33px;
    padding-inline: 6px;
  }

  .hero {
    padding: 54px 0;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

  .url-field {
    padding: 6px;
    flex-direction: column;
  }

  .url-field .button {
    width: 100%;
  }

  .audit-card {
    padding: 20px;
  }

  .section {
    padding: 72px 0;
  }

  .preview-shell {
    padding: 22px;
  }

  .preview-top,
  .preview-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .preview-score {
    width: 76px;
    height: 76px;
    border-width: 6px;
    font-size: 1.7rem;
    line-height: 65px;
  }

  .preview-cta .button {
    width: 100%;
  }

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

  .price-card {
    padding: 27px;
  }

  .agency-dialog-form {
    padding: 24px 18px;
  }

  .agency-url-grid {
    grid-template-columns: 1fr;
  }

  .agency-url-grid label:first-child {
    grid-column: auto;
  }

  .dialog-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .cta-panel {
    padding: 34px 25px;
    grid-template-columns: 1fr;
  }

  .cta-panel .button {
    width: 100%;
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .landing-facts {
    grid-template-columns: 1fr;
  }

  .inline-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .report-toolbar-inner {
    padding-block: 10px;
    align-items: flex-start;
    flex-direction: column;
  }

  .report-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .organization-field {
    width: 100%;
  }

  .organization-field input {
    width: 100%;
  }

  .report-document {
    width: 100%;
    margin: 0;
    box-shadow: none;
  }

  .report-cover,
  .report-body {
    padding: 34px 22px;
  }

  .report-cover {
    min-height: 430px;
  }

  .report-brandline {
    margin-bottom: 70px;
    align-items: flex-start;
    flex-direction: column;
  }

  .score-summary {
    grid-template-columns: 1fr;
  }

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

  .finding-head {
    flex-direction: column;
  }

  .locale-table {
    display: block;
    overflow-x: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  @page {
    size: A4;
    margin: 12mm;
  }

  body.report-page {
    background: #fff;
  }

  .report-toolbar,
  .report-loading,
  .no-print {
    display: none !important;
  }

  .report-document {
    width: 100%;
    margin: 0;
    box-shadow: none;
  }

  .report-cover {
    min-height: 245mm;
    break-after: page;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .report-body {
    padding: 12mm 3mm;
  }

  .report-section,
  .report-finding,
  .metric {
    break-inside: avoid;
  }

  .report-pack-divider {
    height: 0;
    break-after: page;
  }
}
