:root {
  color-scheme: light;
  --ink: #17201b;
  --muted: #5b665f;
  --line: #d9e0dc;
  --paper: #fbfcfa;
  --soft: #eef4f0;
  --accent: #1b7f5a;
  --accent-strong: #0e5f43;
  --amber: #b66d1f;
  --blue: #285d8f;
  --white: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 16px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 252, 250, 0.94);
  backdrop-filter: blur(10px);
}

.brand {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

nav a,
.language-switcher a {
  text-decoration: none;
}

.language-switcher {
  display: flex;
  gap: 6px;
  border: 1px solid var(--line);
  padding: 4px;
}

.language-switcher a {
  padding: 6px 9px;
  color: var(--muted);
}

.language-switcher a[aria-current="true"] {
  background: var(--ink);
  color: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 32px;
  min-height: 78vh;
  align-items: center;
  padding: clamp(54px, 9vw, 108px) clamp(20px, 5vw, 72px) 44px;
  background:
    linear-gradient(120deg, rgba(27, 127, 90, 0.12), rgba(40, 93, 143, 0.10)),
    var(--paper);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.96;
}

h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.08;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.lede {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 11px 16px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  background: var(--white);
  color: var(--ink);
}

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

.button.secondary {
  background: transparent;
}

.readiness-panel,
.tool-panel,
.score-panel,
.check-card,
.ad-slot {
  border: 1px solid var(--line);
  background: var(--white);
}

.readiness-panel {
  padding: 24px;
}

.readiness-panel strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.readiness-panel li {
  margin: 12px 0;
  color: var(--muted);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-band div {
  padding: 18px clamp(16px, 3vw, 34px);
  border-right: 1px solid var(--line);
  color: var(--muted);
}

.trust-band strong {
  display: block;
  color: var(--ink);
}

.section {
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 72px);
}

.section.muted {
  background: var(--soft);
}

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

.section-heading p:last-child {
  color: var(--muted);
  line-height: 1.65;
}

.tool-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.tool-panel,
.score-panel {
  padding: 22px;
}

form,
.tool-panel {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 330px;
  resize: vertical;
  line-height: 1.5;
}

.score-number {
  margin-bottom: 14px;
  color: var(--accent-strong);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
}

#priority-list {
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.55;
}

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

.check-card {
  padding: 20px;
}

.check-card p {
  color: var(--muted);
  line-height: 1.55;
}

.comparison-table {
  display: grid;
  gap: 1px;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr 0.9fr;
  min-width: 760px;
  background: var(--white);
}

.comparison-row.header {
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.comparison-row > div {
  padding: 14px;
  border-right: 1px solid var(--line);
}

.monetization {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 24px;
  align-items: center;
}

.ad-slot {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 22px;
  color: var(--muted);
  text-align: center;
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 24px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 880px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero,
  .tool-grid,
  .monetization {
    grid-template-columns: 1fr;
  }

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

  .trust-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

