:root {
  --ink: #17211d;
  --muted: #58665f;
  --line: #d9e1dc;
  --paper: #f6f4ee;
  --white: #ffffff;
  --green: #116149;
  --green-dark: #0a4032;
  --coral: #d95f45;
  --amber: #c68926;
  --blue: #315a7b;
  --shadow: 0 24px 80px rgba(23, 33, 29, 0.14);
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  overflow-x: clip;
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(23, 33, 29, 0.1);
  background: rgba(246, 244, 238, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--muted);
}

.nav a {
  white-space: nowrap;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid var(--green);
  border-radius: 8px;
  color: var(--green);
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.85fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 72px) clamp(38px, 6vw, 72px);
}

.hero-copy {
  width: 100%;
  max-width: 760px;
  min-width: 0;
}

.hero-kicker {
  width: fit-content;
  margin: 0 0 18px;
  border: 1px solid rgba(17, 97, 73, 0.34);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--green-dark);
  background: #d4eadf;
  font-size: 13px;
  font-weight: 800;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(40px, 6.2vw, 68px);
  line-height: 1;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.hero-text {
  max-width: 700px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-bottom: 12px;
}

.cta-trust-note {
  margin: 0 0 28px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 800;
  white-space: nowrap;
  text-align: center;
}

.button:focus-visible,
.nav a:focus-visible {
  outline: 3px solid rgba(17, 97, 73, 0.24);
  outline-offset: 3px;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
}

.button.secondary:hover {
  border-color: var(--ink);
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  width: min(100%, 560px);
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 29, 0.12);
  border-radius: 8px;
  background: #eef2ed;
  box-shadow: var(--shadow);
}

.pain-map {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
  overflow: visible;
  background:
    radial-gradient(circle at 18% 18%, rgba(212, 234, 223, 0.86), transparent 34%),
    linear-gradient(135deg, #fbfaf7, #e7eee9);
}

.pain-map-header,
.verdict-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.pain-map-header span,
.builder-node span,
.risk-node span,
.verdict-chip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pain-map-header strong,
.verdict-chip strong {
  border-radius: 999px;
  padding: 7px 10px;
  color: #fff0eb;
  background: var(--coral);
  font-size: 12px;
}

.builder-node,
.risk-node,
.verdict-chip {
  border: 1px solid rgba(15, 39, 33, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.builder-node {
  padding: 16px 18px;
}

.builder-node strong {
  display: block;
  margin: 6px 0 6px;
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.05;
}

.builder-node p,
.risk-node p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

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

.risk-flow span {
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(17, 97, 73, 0.1), rgba(217, 95, 69, 0.75));
}

.risk-node {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 16px;
}

.risk-node::before {
  content: none;
}

.risk-node::after {
  content: none;
}

.risk-node-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.risk-node-head b {
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--white);
  background: var(--amber);
  font-size: 12px;
  line-height: 1;
}

.supabase-risk .risk-node-head b {
  background: var(--coral);
}

.risk-node strong {
  display: block;
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.verdict-chip {
  padding: 14px 16px;
  color: #f4f7f5;
  background: #111a16;
}

.verdict-chip span {
  display: block;
  color: rgba(244, 247, 245, 0.72);
}

.verdict-chip p {
  margin: 4px 0 0;
  color: rgba(244, 247, 245, 0.68);
  font-size: 14px;
  line-height: 1.35;
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.hero-visual-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(72%, 360px);
  border: 1px solid rgba(244, 247, 245, 0.16);
  border-radius: 8px;
  padding: 16px;
  color: #f4f7f5;
  background: rgba(17, 26, 22, 0.92);
  box-shadow: 0 18px 52px rgba(23, 33, 29, 0.28);
  backdrop-filter: blur(16px);
}

.audit-preview {
  width: min(100%, 520px);
  justify-self: end;
  border: 1px solid #1e2c26;
  border-radius: 8px;
  padding: 22px;
  color: #f4f7f5;
  background:
    linear-gradient(135deg, rgba(17, 97, 73, 0.2), rgba(49, 90, 123, 0.16)),
    #111a16;
  box-shadow: var(--shadow);
}

.preview-top,
.report-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
}

.preview-top strong {
  border-radius: 999px;
  padding: 6px 9px;
  color: #ffdfd8;
  background: rgba(217, 95, 69, 0.18);
}

.visual-finding-row {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 12px;
}

.visual-finding-row p {
  margin: 3px 0 0;
  color: rgba(244, 247, 245, 0.68);
  font-size: 13px;
  line-height: 1.35;
}

.verdict-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  border: 1px solid rgba(217, 95, 69, 0.32);
  border-radius: 8px;
  padding: 12px;
  background: rgba(217, 95, 69, 0.1);
}

.verdict-row span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 6px;
  color: var(--white);
  background: var(--coral);
  font-weight: 900;
}

.verdict-row p {
  margin: 0;
  color: rgba(244, 247, 245, 0.82);
  font-size: 14px;
  line-height: 1.35;
}

.risk-meter {
  height: 10px;
  margin: 18px 0 22px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.risk-fill {
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--coral));
}

.finding {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.finding p {
  margin-bottom: 0;
  color: rgba(244, 247, 245, 0.72);
  line-height: 1.4;
}

.status-dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
}

.critical .status-dot {
  background: var(--coral);
}

.warning .status-dot {
  background: var(--amber);
}

.report-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  color: rgba(244, 247, 245, 0.62);
}

.report-footer span {
  min-width: 0;
  text-align: center;
}

.problem-band,
.section,
.cta-section {
  padding: clamp(54px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.breadcrumbs {
  padding: 18px clamp(20px, 5vw, 72px) 0;
  color: var(--muted);
  background: #eef2ed;
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  max-width: 1100px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li + li::before {
  content: "/";
  color: rgba(88, 102, 95, 0.55);
}

.breadcrumbs a {
  color: var(--green-dark);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs [aria-current="page"] {
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.problem-band {
  color: var(--white);
  background: var(--green-dark);
}

.section-inner,
.section-heading {
  max-width: 980px;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading p,
.deliverables-grid p,
.sample-report p,
.trust-grid p,
.split-section p,
.cta-section p,
.proof-list li,
.problem-grid p,
.step p,
.price-card p,
.price-card li {
  color: var(--muted);
  line-height: 1.6;
}

.problem-band p {
  color: rgba(255, 255, 255, 0.72);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.problem-grid article {
  grid-column: span 4;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 22px;
}

.problem-icon {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.problem-icon::before,
.problem-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.data-icon::before {
  width: 24px;
  height: 28px;
  border: 3px solid #d4eadf;
  border-radius: 13px 13px 6px 6px;
}

.data-icon::after {
  width: 14px;
  height: 8px;
  border: 3px solid #d4eadf;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  top: 9px;
}

.billing-icon::before {
  width: 28px;
  height: 20px;
  border: 3px solid #f4d3a4;
  border-radius: 6px;
}

.billing-icon::after {
  width: 16px;
  height: 3px;
  border-radius: 99px;
  background: #f4d3a4;
  box-shadow: 0 8px 0 rgba(244, 211, 164, 0.75);
}

.automation-icon::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfe0ef;
  box-shadow: -14px 11px 0 #cfe0ef, 14px 11px 0 #cfe0ef;
}

.automation-icon::after {
  width: 28px;
  height: 18px;
  border-right: 3px solid #cfe0ef;
  border-bottom: 3px solid #cfe0ef;
  border-left: 3px solid #cfe0ef;
  transform: translateY(5px);
}

.problem-grid article:nth-child(1) {
  grid-column: span 5;
}

.problem-grid article:nth-child(2) {
  grid-column: span 7;
}

.problem-grid article:nth-child(3) {
  grid-column: 3 / span 8;
}

.problem-grid h3 {
  color: var(--white);
}

.deliverables-section {
  background: #ffffff;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
}

.deliverables-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fbfaf7;
}

.deliverables-grid span,
.sample-report-head span,
.sample-report-grid span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: #d4eadf;
  font-size: 12px;
  font-weight: 900;
}

.deliverables-grid h3 {
  margin-top: 14px;
}

.process-section {
  background: #eef2ed;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
}

.process-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.process-grid span {
  color: var(--blue);
  font-weight: 900;
}

.process-grid h3 {
  margin-top: 14px;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.founder-worries-section {
  background: #fbfaf7;
}

.worries-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
}

.worries-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
}

.worries-grid h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.18;
}

.worries-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.api-cost-card {
  border-color: rgba(222, 95, 67, 0.34);
  background: #fff8f3;
}

.api-cost-card span,
.api-cost-panel span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  color: #7c2d18;
  background: #f7d5c6;
  font-size: 12px;
  font-weight: 900;
}

.api-cost-card h3 {
  margin-top: 12px;
}

.api-cost-section {
  padding-top: 0;
  background: #fbfaf7;
}

.api-cost-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.75fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1180px;
  border: 1px solid rgba(222, 95, 67, 0.28);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: #fffaf5;
}

.api-cost-panel h2 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 54px);
}

.api-cost-panel p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cost-check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cost-check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--green-dark);
  font-weight: 800;
  line-height: 1.35;
}

.cost-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--green);
  transform: translateY(-50%);
}

.cost-check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: translateY(-58%) rotate(40deg);
}

.sample-report-section {
  background: #ffffff;
}

.sample-report {
  max-width: 1100px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 30px);
  background: #fbfaf7;
}

.report-snapshot {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  border: 1px solid #1e2c26;
  border-radius: 8px;
  padding: clamp(18px, 3vw, 24px);
  color: #f4f7f5;
  background:
    linear-gradient(135deg, rgba(17, 97, 73, 0.22), rgba(49, 90, 123, 0.16)),
    #111a16;
}

.snapshot-top,
.snapshot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.snapshot-top span {
  color: rgba(244, 247, 245, 0.68);
  font-weight: 800;
}

.snapshot-top strong {
  border-radius: 999px;
  padding: 7px 10px;
  color: #ffdfd8;
  background: rgba(217, 95, 69, 0.18);
  font-size: 12px;
}

.snapshot-bars {
  display: grid;
  gap: 8px;
  margin: 4px 0 2px;
}

.snapshot-bars span {
  display: block;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.14);
}

.snapshot-bars span:nth-child(1) {
  width: 78%;
}

.snapshot-bars span:nth-child(2) {
  width: 58%;
}

.snapshot-bars span:nth-child(3) {
  width: 70%;
}

.snapshot-row {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
}

.snapshot-row span {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.snapshot-row.p0 span {
  background: var(--coral);
}

.snapshot-row.p1 span {
  background: var(--amber);
}

.snapshot-row strong {
  min-width: 0;
  text-align: right;
}

.sample-report-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.sample-report-head h3 {
  margin-top: 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.sample-report-head strong {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 8px 11px;
  color: #fff0eb;
  background: var(--coral);
  font-size: 13px;
  text-transform: uppercase;
}

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

.sample-report-grid p {
  margin: 12px 0 0;
}

.sample-report-link {
  margin-top: 22px;
}

.sample-report code {
  border: 1px solid rgba(15, 39, 33, 0.12);
  border-radius: 6px;
  padding: 2px 6px;
  background: #f2efe6;
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
}

.report-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(54px, 7vw, 96px) clamp(20px, 5vw, 72px);
  background: #eef2ed;
}

.report-hero-copy {
  max-width: 860px;
}

.report-verdict-card {
  border: 1px solid #1e2c26;
  border-radius: 8px;
  padding: 24px;
  color: #f4f7f5;
  background: #111a16;
  box-shadow: var(--shadow);
}

.report-verdict-card span,
.report-summary span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: #d4eadf;
  font-size: 12px;
  font-weight: 900;
}

.report-verdict-card strong {
  display: block;
  margin: 18px 0 12px;
  color: #ffdfd8;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
}

.report-verdict-card p {
  margin: 0;
  color: rgba(244, 247, 245, 0.78);
  line-height: 1.55;
}

.report-page {
  padding: clamp(54px, 7vw, 96px) clamp(20px, 5vw, 72px);
  background: #ffffff;
}

.report-shell {
  max-width: 1120px;
}

.seo-intro {
  margin-bottom: 34px;
}

.seo-intro h2 {
  max-width: 820px;
}

.seo-intro p,
.seo-intro li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.seo-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 16px;
  margin-top: 22px;
}

.seo-intro-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fbfaf7;
}

.seo-intro-grid strong {
  display: block;
  margin-bottom: 12px;
}

.seo-intro-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.seo-intro-grid p {
  margin: 0;
}

.report-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.report-summary div,
.finding-card,
.report-section,
.report-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.report-summary div {
  padding: 20px;
}

.report-summary strong {
  display: block;
  margin: 14px 0 8px;
  color: var(--ink);
  font-size: 22px;
}

.report-summary p,
.report-section p,
.finding-card p,
.fix-order li,
.report-cta p {
  color: var(--muted);
  line-height: 1.6;
}

.report-section,
.report-cta {
  margin-top: 18px;
  padding: clamp(20px, 4vw, 30px);
}

.severity-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.severity-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--white);
  color: var(--muted);
  font-weight: 800;
}

.severity-strip strong {
  color: var(--ink);
}

.finding-card {
  display: grid;
  gap: 18px;
  margin-top: 16px;
  padding: 22px;
}

.finding-card.p0 {
  border-color: rgba(217, 95, 69, 0.42);
}

.finding-card.p1 {
  border-color: rgba(198, 137, 38, 0.42);
}

.finding-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.finding-card-head span {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.finding-card.p0 .finding-card-head span {
  background: var(--coral);
}

.finding-card.p1 .finding-card-head span {
  background: var(--amber);
}

.finding-card.p2 .finding-card-head span {
  color: var(--ink);
  background: #dde5df;
}

.finding-card-head h3 {
  order: -1;
  max-width: 720px;
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.12;
}

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

.finding-detail-grid strong {
  display: block;
  margin-bottom: 8px;
}

.finding-detail-grid p {
  margin: 0;
}

.finding-detail-grid code {
  border: 1px solid rgba(15, 39, 33, 0.12);
  border-radius: 6px;
  padding: 2px 6px;
  background: #f2efe6;
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
}

.evidence-placeholder {
  border: 1px dashed rgba(17, 97, 73, 0.38);
  border-radius: 8px;
  padding: 16px;
  color: var(--muted);
  background: rgba(212, 234, 223, 0.35);
  font-size: 14px;
  font-weight: 800;
}

.fix-order ol {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.report-faq-list {
  display: grid;
  gap: 12px;
}

.report-faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.report-faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

.report-faq-list summary:focus-visible {
  outline: 3px solid rgba(17, 97, 73, 0.16);
  outline-offset: 3px;
}

.report-faq-list p {
  margin: 0;
  padding: 0 20px 18px;
}

.report-cta {
  color: var(--white);
  background: #0f2721;
}

.report-cta h2,
.report-cta p {
  color: var(--white);
}

.report-cta p {
  opacity: 0.78;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 980px;
}

.check-item {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
  font-weight: 700;
}

.check-item span {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border: 5px solid #d4eadf;
  border-radius: 50%;
  background: var(--green);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: #eef2ed;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.step span {
  color: var(--blue);
  font-weight: 900;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.price-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: #d4eadf;
  font-size: 12px;
  font-weight: 800;
}

.price {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 36px;
  font-weight: 900;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 24px;
  padding-left: 18px;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: #ffffff;
}

.quote-block {
  border-left: 6px solid var(--coral);
  padding: 10px 0 10px 22px;
}

.quote-block p {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.08;
}

.proof-list ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.trust-section {
  background: #eef2ed;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1100px;
}

.trust-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.disclaimer {
  margin-top: 20px;
  border-left: 4px solid var(--line);
  padding-left: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.faq-section {
  background: #f7f8f5;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.2;
}

.faq-list summary:focus-visible {
  outline: 3px solid rgba(17, 97, 73, 0.16);
  outline-offset: 3px;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.6;
}

.guides-preview {
  background: #ffffff;
}

.guide-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 18px;
  max-width: 1100px;
}

.guide-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.guide-card:hover {
  border-color: var(--green);
}

.guide-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: #d4eadf;
  font-size: 12px;
  font-weight: 900;
}

.guide-card h2,
.guide-card h3 {
  margin: 4px 0 0;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-map-list {
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 28px);
  background: #fbfaf7;
}

.guides-site-map {
  margin-top: 24px;
}

.site-map-list h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.site-map-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.site-map-list li {
  color: var(--muted);
  line-height: 1.45;
}

.site-map-list a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.guide-hero,
.article-page {
  padding: clamp(54px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.guide-hero {
  background: #eef2ed;
}

.guide-hero-inner,
.article-layout {
  max-width: 1100px;
}

.guide-hero h1,
.article-header h1 {
  max-width: 920px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.article-content {
  max-width: 760px;
}

.article-content h2 {
  margin-top: 44px;
  font-size: clamp(28px, 4vw, 42px);
}

.article-content h3 {
  margin-top: 28px;
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.article-content a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
}

.article-content pre {
  max-width: 100%;
  overflow-x: auto;
  margin: 18px 0 24px;
  border: 1px solid rgba(15, 39, 33, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: #10251f;
  white-space: pre;
}

.article-content pre code {
  color: #f6f3ea;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 1.65;
}

.article-content :not(pre) > code {
  border: 1px solid rgba(15, 39, 33, 0.12);
  border-radius: 6px;
  padding: 2px 6px;
  background: #f2efe6;
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.related-guides {
  margin-top: 44px;
}

.related-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.related-guide-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fbfaf7;
  text-decoration: none;
}

.article-content .related-guide-card {
  text-decoration: none;
}

.related-guide-card:hover {
  border-color: var(--green);
}

.related-guide-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--green-dark);
  background: #d4eadf;
  font-size: 12px;
  font-weight: 900;
}

.related-guide-card strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.related-guide-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article-callout,
.article-cta,
.article-sidebar {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fbfaf7;
}

.article-callout {
  margin: 28px 0;
  border-color: rgba(17, 97, 73, 0.28);
  background: #eef7f1;
}

.article-cta {
  margin-top: 44px;
  border-color: rgba(17, 97, 73, 0.2);
  background: #eef7f1;
}

.article-cta h2,
.article-cta p {
  color: var(--ink);
}

.article-cta p {
  color: var(--muted);
}

.article-content .article-cta .button {
  text-decoration: none;
}

.article-secondary-cta {
  margin-left: 10px;
}

.article-sidebar {
  position: sticky;
  top: 96px;
}

.article-sidebar h2 {
  font-size: 22px;
}

.article-sidebar ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.article-sidebar li {
  min-width: 0;
}

.article-sidebar code {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cta-section {
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 64, 50, 0.94), rgba(49, 90, 123, 0.88)),
    #0f2721;
}

.cta-section h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.cta-section p {
  max-width: 680px;
  margin-right: auto;
  margin-bottom: 26px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
}

.cta-section .cta-trust-note {
  margin-top: 16px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.apply-section {
  background: #eef2ed;
}

.apply-form {
  display: grid;
  gap: 18px;
  max-width: 980px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 4vw, 30px);
  background: var(--white);
}

.apply-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.apply-form label span {
  font-size: 14px;
}

.apply-form label em {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
}

.apply-form textarea {
  resize: vertical;
}

.apply-form .consent-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.consent-field input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: 3px solid rgba(17, 97, 73, 0.16);
  outline-offset: 2px;
  border-color: var(--green);
}

.apply-form button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.apply-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.reply-note {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.website-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-size: 14px;
}

.mobile-share-link {
  display: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.mobile-share-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.mobile-share-link-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero,
  .report-hero,
  .split-section,
  .proof-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .audit-preview,
  .hero-visual {
    justify-self: stretch;
    width: 100%;
    max-width: 680px;
  }

  .pain-map {
    gap: 12px;
  }

  .builder-node strong {
    font-size: 24px;
  }

  .risk-node {
    padding: 14px;
  }

  .risk-node strong {
    font-size: 18px;
  }

  .problem-grid,
  .deliverables-grid,
  .process-grid,
  .worries-grid,
  .api-cost-panel,
  .sample-report-grid,
  .report-summary,
  .seo-intro-grid,
  .finding-detail-grid,
  .pricing-grid,
  .trust-grid,
  .guide-card-grid,
  .related-guide-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .problem-grid article,
  .problem-grid article:nth-child(1),
  .problem-grid article:nth-child(2),
  .problem-grid article:nth-child(3) {
    grid-column: auto;
  }

  .api-cost-panel {
    align-items: start;
  }

  .article-sidebar {
    position: static;
  }

  .sample-report-head {
    display: grid;
  }

  .sample-report-head strong {
    justify-self: start;
  }

  .finding-card-head {
    display: grid;
  }

  .finding-card-head span {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    gap: 8px;
    font-size: 17px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero,
  .problem-band,
  .section,
  .cta-section,
  .breadcrumbs,
  .guide-hero,
  .article-page,
  .report-hero,
  .report-page {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    width: 100vw;
    max-width: 100vw;
    display: block;
    gap: 28px;
    padding-top: 34px;
    overflow: hidden;
  }

  .hero > *,
  .hero-copy,
  .hero-visual,
  .section-heading,
  .article-content,
  .article-sidebar,
  .sample-report,
  .worries-grid,
  .api-cost-panel,
  .apply-form {
    width: 100%;
    max-width: calc(100vw - 36px);
    min-width: 0;
  }

  .hero-visual {
    margin-top: 28px;
  }

  .hero-kicker {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.25;
  }

  .mobile-share-link {
    position: fixed;
    right: 18px;
    top: 96px;
    z-index: 30;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 999px;
    color: var(--green-dark);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 36px rgba(23, 33, 29, 0.18);
    backdrop-filter: blur(14px);
  }

  .mobile-share-link:focus-visible {
    outline: 3px solid rgba(17, 97, 73, 0.28);
    outline-offset: 4px;
  }

  .mobile-share-link.is-shared {
    color: var(--white);
    background: var(--green);
  }

  h1 {
    width: 100%;
    max-width: calc(100vw - 36px);
    font-size: 33px;
    line-height: 1.04;
    overflow-wrap: normal;
    word-break: normal;
  }

  h2 {
    font-size: 30px;
  }

  .hero-text,
  .article-content p,
  .article-content li {
    max-width: calc(100vw - 36px);
    font-size: 17px;
  }

  .hero-actions,
  .cta-trust-note,
  .trust-row {
    max-width: calc(100vw - 36px);
  }

  .trust-row {
    gap: 8px;
  }

  .trust-row span {
    padding: 7px 10px;
    font-size: 12px;
  }

  .pain-map {
    gap: 10px;
    padding: 14px;
  }

  .pain-map-header,
  .verdict-chip {
    display: grid;
    align-items: flex-start;
    justify-content: stretch;
  }

  .pain-map-header strong,
  .verdict-chip strong {
    justify-self: start;
  }

  .builder-node {
    padding: 14px;
  }

  .builder-node strong {
    font-size: 22px;
  }

  .builder-node p,
  .risk-node p {
    font-size: 15px;
  }

  .risk-flow {
    gap: 8px;
    padding: 0 8px;
  }

  .risk-node {
    gap: 5px;
    padding: 13px;
  }

  .risk-node strong {
    font-size: 17px;
  }

  .risk-node-head b {
    padding: 5px 7px;
  }

  .verdict-chip {
    display: grid;
  }

  .verdict-chip strong {
    justify-self: start;
  }

  .problem-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }

  .sample-report,
  .report-snapshot,
  .apply-form,
  .article-callout,
  .article-cta,
  .article-sidebar {
    padding: 18px;
  }

  .snapshot-top {
    display: grid;
    justify-content: start;
  }

  .snapshot-top strong {
    justify-self: start;
  }

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

  .hero-actions .button,
  .article-cta .button,
  .price-card .button,
  .api-cost-panel .button,
  .cta-section .button {
    width: 100%;
    white-space: normal;
  }

  .article-secondary-cta {
    margin-top: 10px;
    margin-left: 0;
  }

  .footer {
    flex-direction: column;
  }

  .hero-visual-card {
    position: static;
    width: auto;
    margin: 0;
    border-radius: 0;
  }

  .hero-visual img {
    aspect-ratio: 4 / 3;
  }

  .snapshot-row {
    align-items: flex-start;
  }

  .snapshot-row strong {
    text-align: left;
  }
}
