:root {
  color-scheme: light;
  --ink: #122126;
  --muted: #5d7077;
  --line: #d8e2e5;
  --paper: #ffffff;
  --wash: #f4f7f8;
  --deep: #102126;
  --teal: #0f766e;
  --rust: #b85f2c;
  --blue: #334e68;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

a {
  color: #0a5968;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 5;
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  font-size: 14px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.nav-links a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  line-height: 1;
}

.hero {
  background: var(--deep);
  color: #fff;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 54px 20px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #94d5cf;
  font-size: 14px;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

.lead {
  color: #d1dee1;
  font-size: 18px;
  line-height: 1.75;
  margin: 20px 0 0;
}

.hero-visual {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgb(255 255 255 / 18%);
  background: #fff;
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button.primary {
  background: #18a999;
  color: #062421;
}

.button.secondary {
  color: #0a5968;
  border-color: #aac7c5;
  background: #fff;
}

.hero .button.secondary {
  color: #fff;
  border-color: rgb(255 255 255 / 28%);
  background: transparent;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 44px 20px;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 28px;
  letter-spacing: 0;
}

.section-intro {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: 0;
}

.card p,
.article-body p,
.article-body li {
  color: #33444a;
  line-height: 1.75;
}

.meta {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 10px;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

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

.comparison th {
  background: #eef5f4;
  font-size: 14px;
}

.notice {
  background: #fff8ed;
  border: 1px solid #e7c99f;
  border-radius: 8px;
  padding: 14px 16px;
  color: #5c3a17;
  line-height: 1.65;
}

.cta-panel {
  margin-top: 34px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef5f4;
}

.cta-panel h2 {
  margin-top: 0;
}

.cta-panel p {
  margin-bottom: 16px;
}

.article-header {
  background: var(--deep);
  color: #fff;
}

.article-header-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 44px 20px;
}

.article-body {
  max-width: 880px;
  margin: 0 auto;
  padding: 34px 20px 54px;
}

.article-body h2 {
  margin-top: 34px;
  letter-spacing: 0;
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.footer-link-button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.analytics-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  width: min(520px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 12px 36px rgb(16 42 50 / 18%);
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent p {
  margin: 0;
  color: #33444a;
  line-height: 1.65;
}

.analytics-consent-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

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

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }
}
