:root {
  --ink: #f4efe4;
  --muted: #b5aa96;
  --soft: #7e8f84;
  --panel: rgba(22, 26, 25, 0.82);
  --panel-strong: rgba(244, 239, 228, 0.94);
  --panel-ink: #151918;
  --line: rgba(244, 239, 228, 0.18);
  --line-dark: rgba(21, 25, 24, 0.16);
  --field: rgba(244, 239, 228, 0.08);
  --accent: #d6ff76;
  --accent-2: #70d7c7;
  --accent-3: #e8a656;
  --danger: #ff6b57;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    repeating-linear-gradient(90deg, rgba(244, 239, 228, 0.035) 0 1px, transparent 1px 78px),
    repeating-linear-gradient(0deg, rgba(244, 239, 228, 0.028) 0 1px, transparent 1px 78px),
    linear-gradient(135deg, #0d1110 0%, #141818 48%, #201d17 100%);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 9px 9px;
  mix-blend-mode: overlay;
  z-index: -1;
}

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

button,
input,
select {
  font: inherit;
}

#signal-field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(calc(100% - 28px), 1160px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 10px 10px 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 19, 18, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.brand,
.nav-links,
.hero-actions,
.market-strip,
.panel-topline,
.prompt-tabs,
.engine-grid,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(214, 255, 118, 0.8);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 46%, rgba(214, 255, 118, 0.9) 47% 53%, transparent 54%),
    linear-gradient(0deg, transparent 46%, rgba(112, 215, 199, 0.85) 47% 53%, transparent 54%),
    #161a19;
  box-shadow: 0 0 22px rgba(214, 255, 118, 0.34);
}

.nav-links {
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  transition: color 180ms ease;
}

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

.header-cta {
  padding: 9px 13px;
  border-radius: var(--radius);
  color: #121513;
  background: var(--accent);
  font-weight: 700;
}

.hero {
  min-height: 88vh;
  display: grid;
  align-content: center;
  gap: 38px;
  padding: 132px 24px 40px;
}

.hero-copy {
  width: min(940px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.section-kicker,
.strip-label,
.plan {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 750;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(4.4rem, 14vw, 11.6rem);
  text-wrap: balance;
}

.hero-lede {
  width: min(720px, 100%);
  margin: 24px auto 0;
  color: #ddd2bd;
  font-size: clamp(1.08rem, 2.2vw, 1.42rem);
  line-height: 1.55;
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #121513;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), #f5d77a);
}

.button.secondary {
  color: var(--ink);
  background: rgba(244, 239, 228, 0.08);
}

.button.secondary:hover {
  border-color: rgba(244, 239, 228, 0.38);
  background: rgba(244, 239, 228, 0.13);
}

.market-strip {
  width: min(860px, calc(100% - 20px));
  margin: 0 auto;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 17, 16, 0.7);
  backdrop-filter: blur(16px);
}

.market-strip div {
  width: 100%;
  min-width: 0;
  padding: 11px 14px;
  border-left: 1px solid var(--line);
}

.market-strip div:first-child {
  border-left: 0;
}

.market-strip strong {
  display: block;
  margin-top: 5px;
  font-size: 1.3rem;
}

.section {
  width: min(1160px, calc(100% - 28px));
  margin: 0 auto;
  padding: 88px 0;
}

.intro {
  border-top: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 42px;
  margin-top: 18px;
}

.intro h2,
.section-heading h2,
.audit-copy h2 {
  font-size: clamp(2.1rem, 5vw, 4.8rem);
}

.intro p,
.section-heading,
.audit-copy p,
.price-card p,
.method-grid p,
.panel-note,
.finding-row p {
  color: var(--muted);
  line-height: 1.65;
}

.intro p {
  margin: 8px 0 0;
  font-size: 1.05rem;
}

.section-heading {
  width: min(810px, 100%);
  margin-bottom: 32px;
}

.section-heading h2,
.audit-copy h2 {
  margin-top: 12px;
  line-height: 1.04;
}

.report-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1.08fr);
  gap: 18px;
}

.score-panel,
.findings-panel,
.prompt-panel,
.method-grid article,
.price-card,
.audit-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.score-panel {
  min-height: 530px;
  padding: 22px;
}

.panel-topline {
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.panel-topline strong {
  color: var(--ink);
  font-size: 0.88rem;
}

.score-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: min(330px, 100%);
  aspect-ratio: 1;
  margin: 26px auto 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #151918 0 56%, transparent 57%),
    conic-gradient(var(--accent) 0 62%, rgba(244, 239, 228, 0.13) 62% 100%);
}

.score-ring::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(244, 239, 228, 0.12);
  border-radius: 50%;
}

.score-ring span {
  font-family: "Fraunces", Georgia, serif;
  font-size: 6rem;
  line-height: 1;
}

.score-ring small {
  margin-top: 88px;
  color: var(--muted);
  font-weight: 700;
}

.score-bars {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 8px;
  height: 92px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 239, 228, 0.04);
}

.score-bars span {
  display: block;
  height: var(--h);
  min-height: 12px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.panel-note {
  margin: 18px 0 0;
}

.findings-panel {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.finding-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 239, 228, 0.05);
}

.finding-row h3,
.method-grid h3 {
  margin: 0;
  font-size: 1.16rem;
}

.finding-row p {
  margin: 6px 0 0;
}

.status {
  align-self: start;
  justify-self: start;
  min-width: 58px;
  padding: 6px 8px;
  border-radius: 999px;
  color: #111513;
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
}

.status.hot {
  background: var(--danger);
}

.status.warm {
  background: var(--accent-3);
}

.status.cool {
  background: var(--accent-2);
}

.prompt-panel {
  grid-column: 2;
  padding: 16px;
}

.prompt-tabs {
  gap: 8px;
  margin-bottom: 12px;
}

.prompt-tab {
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.prompt-tab.is-active {
  color: #111513;
  border-color: transparent;
  background: var(--accent);
}

.prompt-card {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--panel-strong);
  color: var(--panel-ink);
}

.prompt-question {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.35;
  font-weight: 700;
}

.engine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 22px;
}

.engine-grid div {
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fffaf0;
}

.engine-grid span {
  display: block;
  color: #6d675b;
  font-size: 0.78rem;
}

.engine-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 1.1rem;
}

.method-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.method-grid article,
.price-card {
  padding: 20px;
}

.method-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--accent);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.4rem;
}

.method-grid p,
.price-card p {
  margin-bottom: 0;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(214, 255, 118, 0.55);
  background: rgba(214, 255, 118, 0.12);
}

.price-card h3 {
  margin: 18px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 3.2rem;
  line-height: 1;
}

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

.audit-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(320px, 1.24fr);
  gap: 26px;
  align-items: start;
  padding-bottom: 110px;
}

.audit-copy {
  position: sticky;
  top: 116px;
}

.audit-copy p:last-child {
  margin-top: 18px;
}

.audit-form {
  padding: 18px;
  background: rgba(244, 239, 228, 0.94);
  color: var(--panel-ink);
}

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

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

label span {
  color: #4f574f;
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid rgba(21, 25, 24, 0.18);
  border-radius: var(--radius);
  color: #141817;
  background: #fffaf0;
  outline: none;
}

input:focus,
select:focus {
  border-color: #2b6a61;
  box-shadow: 0 0 0 3px rgba(112, 215, 199, 0.24);
}

.form-submit {
  width: 100%;
  margin-top: 16px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: #3f493f;
  line-height: 1.5;
}

.form-status.is-error {
  color: #9a2d21;
}

.form-status.audit-receipt {
  display: grid;
  gap: 12px;
  min-height: 0;
  margin-top: 16px;
  padding: 15px;
  border: 1px solid rgba(21, 25, 24, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(214, 255, 118, 0.2), rgba(112, 215, 199, 0.12)),
    #fffaf0;
  color: #141817;
}

.receipt-header,
.receipt-brand,
.receipt-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.receipt-header span,
.receipt-brand span,
.receipt-section h3 {
  color: #596256;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.receipt-header strong {
  padding: 5px 8px;
  border-radius: 999px;
  color: #111513;
  background: var(--accent);
  font-size: 0.82rem;
}

.receipt-brand {
  align-items: start;
}

.receipt-brand strong {
  font-size: 1.14rem;
}

.receipt-brand span {
  max-width: 52%;
  overflow-wrap: anywhere;
  text-align: right;
  text-transform: none;
  letter-spacing: 0;
}

.receipt-section {
  padding: 12px;
  border: 1px solid rgba(21, 25, 24, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
}

.receipt-section h3 {
  margin: 0 0 9px;
}

.receipt-section ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.receipt-section li {
  padding: 9px 10px;
  border-radius: var(--radius);
  background: rgba(21, 25, 24, 0.07);
  font-weight: 800;
}

.audit-receipt p {
  margin: 0;
  color: #4f574f;
}

.receipt-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.receipt-actions a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border: 1px solid rgba(21, 25, 24, 0.16);
  border-radius: var(--radius);
  font-weight: 900;
}

.receipt-actions a:last-child {
  color: #111513;
  border-color: transparent;
  background: var(--accent);
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  width: min(1160px, calc(100% - 28px));
  margin: 0 auto;
  padding: 24px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 800;
}

.sample-page {
  background:
    repeating-linear-gradient(90deg, rgba(244, 239, 228, 0.032) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(244, 239, 228, 0.025) 0 1px, transparent 1px 72px),
    linear-gradient(135deg, #0b100f 0%, #151a18 52%, #1a1712 100%);
}

.inside-page {
  background:
    repeating-linear-gradient(90deg, rgba(244, 239, 228, 0.032) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(244, 239, 228, 0.025) 0 1px, transparent 1px 72px),
    linear-gradient(135deg, #0b100f 0%, #141817 50%, #1c1913 100%);
}

.topic-hero {
  width: min(1160px, calc(100% - 28px));
  min-height: 72vh;
  margin: 0 auto;
  padding: 142px 0 70px;
  display: grid;
  align-content: end;
}

.topic-hero h1,
.legal-page h1 {
  max-width: 980px;
  margin: 16px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3rem, 8vw, 7.8rem);
  line-height: 0.96;
}

.topic-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: #ddd2bd;
  font-size: clamp(1.04rem, 1.8vw, 1.32rem);
  line-height: 1.58;
}

.topic-hero .hero-actions {
  justify-content: flex-start;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 0;
}

.topic-grid article {
  min-height: 260px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 22, 21, 0.82);
  box-shadow: var(--shadow);
}

.topic-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--accent);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.4rem;
}

.topic-grid h2 {
  margin: 0;
  font-size: 1.18rem;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  line-height: 1.2;
}

.topic-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.deliverable-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 239, 228, 0.05);
}

.deliverable-grid strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 3.3rem;
  line-height: 1;
}

.deliverable-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.legal-page {
  width: min(860px, calc(100% - 28px));
  margin: 0 auto;
  padding: 148px 0 100px;
}

.legal-page p:not(.eyebrow) {
  color: #ddd2bd;
  font-size: 1.05rem;
  line-height: 1.75;
}

.sample-hero {
  width: min(1160px, calc(100% - 28px));
  min-height: 82vh;
  margin: 0 auto;
  padding: 132px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 22px;
  align-items: end;
}

.sample-cover {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(214, 255, 118, 0.12), transparent 32%),
    linear-gradient(315deg, rgba(112, 215, 199, 0.16), transparent 38%),
    rgba(15, 18, 17, 0.78);
  box-shadow: var(--shadow);
}

.sample-cover h1 {
  max-width: 850px;
  margin: 16px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3.4rem, 8.2vw, 8.2rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.sample-lede {
  max-width: 700px;
  margin: 22px 0 0;
  color: #ddd2bd;
  font-size: clamp(1.02rem, 1.7vw, 1.3rem);
  line-height: 1.55;
}

.report-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.report-meta div,
.sample-summary,
.report-shell,
.metric-tile,
.evidence-card,
.chart-card,
.competitor-strip article,
.source-card,
.backlog-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 22, 21, 0.82);
}

.report-meta div {
  padding: 13px;
}

.report-meta span,
.metric-tile span,
.source-card span,
.competitor-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.report-meta strong {
  display: block;
  margin-top: 7px;
  font-size: 0.98rem;
}

.sample-summary {
  min-height: 410px;
  padding: 24px;
  background: rgba(244, 239, 228, 0.94);
  color: var(--panel-ink);
}

.report-stamp {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  color: #111513;
  background: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sample-summary h2 {
  margin: 24px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.8rem;
  line-height: 0.98;
}

.sample-summary p {
  margin: 18px 0 26px;
  color: #4c544c;
  line-height: 1.65;
}

.report-shell {
  width: min(1160px, calc(100% - 28px));
  margin: 0 auto 18px;
  padding: 26px;
  background: rgba(13, 17, 16, 0.78);
  box-shadow: var(--shadow);
}

.report-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.report-title-row h2 {
  max-width: 820px;
  margin: 10px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.15rem, 4.7vw, 4.7rem);
  line-height: 1.02;
}

.score-badge {
  display: grid;
  place-items: center;
  width: 152px;
  aspect-ratio: 1;
  border: 1px solid rgba(214, 255, 118, 0.58);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(13, 17, 16, 1) 0 56%, transparent 57%),
    conic-gradient(var(--accent) 0 62%, rgba(244, 239, 228, 0.13) 62% 100%);
}

.score-badge strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 4rem;
  line-height: 0.8;
}

.score-badge span {
  margin-top: -34px;
  color: var(--muted);
  font-weight: 800;
}

.sample-score-grid,
.source-grid,
.competitor-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.metric-tile,
.source-card,
.competitor-strip article {
  padding: 18px;
}

.metric-tile strong,
.source-card strong,
.competitor-strip strong {
  display: block;
  margin-top: 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.metric-tile p,
.source-card p,
.competitor-strip p,
.evidence-card p,
.chart-card p,
.backlog-list p {
  color: var(--muted);
  line-height: 1.55;
}

.report-grid-two {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 14px;
  margin-top: 14px;
}

.evidence-card,
.chart-card {
  padding: 22px;
}

.evidence-card h3,
.chart-card h3,
.backlog-list h3 {
  margin: 0;
  font-size: 1.22rem;
}

.belief-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.belief-list div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 239, 228, 0.04);
}

.belief-list p {
  margin: 0;
}

.coverage-bars {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.coverage-bars div {
  display: grid;
  grid-template-columns: 120px 1fr 52px;
  gap: 12px;
  align-items: center;
}

.coverage-bars span {
  color: #ddd2bd;
  font-weight: 700;
}

.coverage-bars i {
  display: block;
  height: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--accent), var(--accent-2)) 0 0 / var(--w) 100% no-repeat,
    rgba(244, 239, 228, 0.08);
}

.coverage-bars strong {
  text-align: right;
}

.sample-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sample-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

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

.sample-table th {
  color: var(--accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sample-table td {
  color: #e7dfd1;
}

.sample-table tbody tr:last-child td {
  border-bottom: 0;
}

.table-pill {
  display: inline-flex;
  min-width: 92px;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 999px;
  color: #111513;
  font-size: 0.74rem;
  font-weight: 900;
}

.table-pill.warn {
  background: var(--accent-3);
}

.table-pill.hot {
  background: var(--danger);
}

.table-pill.cool {
  background: var(--accent-2);
}

.competitor-strip {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
}

.source-grid {
  grid-template-columns: repeat(3, 1fr);
}

.backlog-list {
  display: grid;
  gap: 10px;
}

.backlog-list article {
  display: grid;
  grid-template-columns: 74px 1fr 120px;
  gap: 18px;
  align-items: center;
  padding: 16px;
}

.backlog-rank {
  color: var(--accent);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.3rem;
  line-height: 1;
}

.backlog-list p {
  margin: 6px 0 0;
}

.backlog-list strong {
  justify-self: end;
  color: var(--accent);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sample-audit {
  padding-top: 82px;
}

.checkout-page {
  background:
    repeating-linear-gradient(90deg, rgba(244, 239, 228, 0.032) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(244, 239, 228, 0.025) 0 1px, transparent 1px 72px),
    linear-gradient(135deg, #0b100f 0%, #151a18 48%, #211d14 100%);
}

.checkout-hero,
.checkout-shell {
  width: min(1160px, calc(100% - 28px));
  margin: 0 auto;
}

.checkout-hero {
  min-height: 64vh;
  padding: 142px 0 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: end;
}

.checkout-hero h1 {
  max-width: 880px;
  margin: 16px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3.2rem, 8vw, 7.7rem);
  line-height: 0.96;
}

.checkout-hero p:not(.eyebrow),
.checkout-trust p {
  color: #ddd2bd;
  line-height: 1.6;
}

.checkout-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(1rem, 1.8vw, 1.28rem);
}

.checkout-trust {
  padding: 20px;
  border: 1px solid rgba(214, 255, 118, 0.42);
  border-radius: var(--radius);
  background: rgba(214, 255, 118, 0.11);
  box-shadow: var(--shadow);
}

.checkout-trust span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkout-trust strong {
  display: block;
  margin-top: 12px;
  font-size: 1.35rem;
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(340px, 0.98fr);
  gap: 18px;
  padding-bottom: 96px;
}

.plan-picker {
  display: grid;
  gap: 10px;
  align-self: start;
}

.plan-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 14px;
  width: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(22, 26, 25, 0.82);
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
}

.plan-option:hover,
.plan-option.is-selected {
  border-color: rgba(214, 255, 118, 0.62);
  background: rgba(214, 255, 118, 0.13);
}

.plan-option span {
  font-weight: 800;
}

.plan-option strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.plan-option small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-weight: 700;
}

.checkout-form {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 239, 228, 0.94);
  color: var(--panel-ink);
  box-shadow: var(--shadow);
}

.checkout-form h2 {
  margin: 18px 0 14px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.checkout-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  padding: 16px;
  border: 1px solid rgba(21, 25, 24, 0.16);
  border-radius: var(--radius);
  background: #fffaf0;
}

.checkout-summary span {
  color: #445047;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkout-summary strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.checkout-summary p {
  grid-column: 1 / -1;
  margin: 0;
  color: #596256;
  line-height: 1.55;
}

.paypal-subscription {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(21, 25, 24, 0.16);
  border-radius: var(--radius);
  background: #fffaf0;
}

.paypal-subscription[hidden] {
  display: none;
}

.paypal-subscription span {
  color: #445047;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

#paypal-subscription-button {
  min-height: 52px;
}

.checkout-next-steps {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(21, 25, 24, 0.16);
  border-radius: var(--radius);
  background: #fffaf0;
}

.checkout-next-steps h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.checkout-next-steps ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #596256;
  line-height: 1.5;
}

.email-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
  color: var(--panel-ink);
}

.email-toolbar {
  display: flex;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-dark);
  background: #ece6d8;
}

.email-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c9c0ae;
}

.email-toolbar span:first-child {
  background: var(--danger);
}

.email-toolbar span:nth-child(2) {
  background: var(--accent-3);
}

.email-toolbar span:nth-child(3) {
  background: var(--accent-2);
}

.email-meta-grid {
  display: grid;
  grid-template-columns: 180px 220px 1fr;
  gap: 1px;
  background: rgba(21, 25, 24, 0.12);
}

.email-meta-grid div {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  background: #fffaf0;
}

.email-meta-grid strong,
.deck-footer-line,
.slide-label,
.deck-evidence-list span,
.roadmap-bars span {
  color: #596256;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.email-meta-grid span {
  color: #151918;
  font-weight: 700;
}

.email-subject span {
  font-size: 1.08rem;
}

.email-body {
  padding: 24px;
}

.email-body h2 {
  max-width: 860px;
  margin: 12px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.email-body p:not(.eyebrow) {
  max-width: 840px;
  color: #4f574f;
  line-height: 1.65;
}

.email-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.email-kpis article {
  padding: 15px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #f4eddc;
}

.email-kpis span,
.email-kpis small {
  display: block;
  color: #687064;
  font-size: 0.78rem;
  font-weight: 800;
}

.email-kpis strong {
  display: block;
  margin: 8px 0 4px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.8rem;
  line-height: 1;
}

.email-insight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.deck-slide {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(21, 25, 24, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #fffaf0 0%, #f4eddc 100%);
  color: var(--panel-ink);
}

.deck-cover {
  background:
    linear-gradient(135deg, rgba(214, 255, 118, 0.92), rgba(112, 215, 199, 0.82)),
    #fffaf0;
}

.deck-agency-mark {
  margin: 36px 0 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.deck-slide h2,
.deck-slide h3 {
  margin: 10px 0 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.02;
}

.deck-slide h2 {
  max-width: 540px;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
}

.deck-slide h3 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.deck-slide p {
  color: #4f574f;
  line-height: 1.55;
}

.deck-footer-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.deck-score-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: 10px;
  margin: 22px 0;
}

.deck-score-row > strong {
  display: grid;
  place-items: center;
  min-height: 108px;
  border-radius: 50%;
  color: #111513;
  background: var(--accent);
  font-family: "Fraunces", Georgia, serif;
  font-size: 4.3rem;
  line-height: 1;
}

.deck-score-row div,
.deck-evidence-list li,
.roadmap-bars div {
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
}

.deck-score-row span,
.deck-score-row b,
.deck-evidence-list span,
.deck-evidence-list strong {
  display: block;
}

.deck-score-row b {
  margin-top: 8px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.1rem;
}

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

.deck-evidence-list strong {
  margin-top: 6px;
}

.roadmap-bars {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.roadmap-bars div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .hero {
    min-height: 86vh;
    padding-top: 118px;
  }

  .market-strip,
  .intro-grid,
  .report-layout,
  .method-grid,
  .pricing-grid,
  .audit-section,
  .sample-hero,
  .topic-grid,
  .deliverable-grid,
  .report-title-row,
  .sample-score-grid,
  .report-grid-two,
  .competitor-strip,
  .source-grid,
  .checkout-hero,
  .checkout-shell,
  .email-meta-grid,
  .email-kpis,
  .email-insight-grid,
  .deck-frame,
  .deck-score-row {
    grid-template-columns: 1fr;
  }

  .market-strip {
    display: grid;
  }

  .market-strip div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .market-strip div:first-child {
    border-top: 0;
  }

  .prompt-panel {
    grid-column: auto;
  }

  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audit-copy {
    position: static;
  }

  .sample-cover {
    min-height: 500px;
  }

  .report-meta {
    grid-template-columns: 1fr;
  }

  .score-badge {
    width: 132px;
  }

  .backlog-list article {
    grid-template-columns: 1fr;
  }

  .backlog-list strong {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 18px);
    padding: 8px;
  }

  .brand {
    font-size: 0.92rem;
  }

  .header-cta {
    padding: 8px 10px;
    font-size: 0.86rem;
  }

  .hero {
    gap: 24px;
    padding: 104px 14px 34px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 20vw, 5.4rem);
  }

  .section {
    padding: 64px 0;
  }

  .hero-actions,
  .engine-grid,
  .form-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .score-ring span {
    font-size: 4.6rem;
  }

  .finding-row {
    grid-template-columns: 1fr;
  }

  .prompt-question {
    font-size: 1.08rem;
  }

  .site-footer {
    display: grid;
  }

  .sample-hero {
    padding-top: 104px;
  }

  .checkout-hero {
    min-height: 58vh;
    padding-top: 112px;
  }

  .topic-hero {
    min-height: 62vh;
    padding-top: 112px;
  }

  .sample-cover,
  .report-shell {
    padding: 18px;
  }

  .sample-cover h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .sample-summary h2 {
    font-size: 2.25rem;
  }

  .coverage-bars div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .coverage-bars strong {
    text-align: left;
  }

  .belief-list div {
    grid-template-columns: 1fr;
  }

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

  .receipt-header,
  .receipt-brand {
    display: grid;
    justify-content: start;
  }

  .receipt-brand span {
    max-width: none;
    text-align: left;
  }

  .receipt-section ul {
    grid-template-columns: 1fr;
  }

  .email-body {
    padding: 18px;
  }

  .roadmap-bars div {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
