:root {
  --bg: #f8fafc;
  --ink: #172033;
  --muted: #5f6b7a;
  --card: #ffffff;
  --line: #dde5ee;
  --teal: #0f766e;
  --teal-dark: #115e59;
  --gold: #d97706;
  --soft: #ecfdf5;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #ccfbf1 0, transparent 32rem), var(--bg);
  line-height: 1.6;
}

a { color: var(--teal); }

.site-header {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 900;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.03em;
  font-size: 1.1rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .65rem 1rem;
  font-size: .92rem;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
}

nav a:hover { color: var(--teal); }

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

.hero {
  padding: clamp(3rem, 7vw, 6.5rem) 0 2rem;
  max-width: 880px;
}

.eyebrow {
  color: var(--teal);
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: .95;
  letter-spacing: -0.07em;
  margin: .5rem 0 1rem;
}

.lede {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--muted);
  max-width: 720px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .75rem 1.1rem;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 10px 25px rgba(15, 118, 110, .22);
}

.btn.primary:hover { background: var(--teal-dark); }

.btn.secondary {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin: 1rem 0 1.5rem;
}

.trust-strip span {
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: .8rem 1rem;
  font-weight: 750;
  color: var(--muted);
  text-align: center;
}

.content-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 2rem);
  margin: 1.25rem 0;
}

.content-card h2 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 .75rem;
}

.content-card p { color: var(--muted); }

ul { padding-left: 1.2rem; }
li { margin: .4rem 0; }

.final-cta {
  background: linear-gradient(135deg, var(--teal), #0f9f8f);
  color: white;
}

.final-cta p { color: rgba(255,255,255,.88); }
.final-cta .btn.primary { background: white; color: var(--teal-dark); }
.final-cta .btn.secondary { background: rgba(255,255,255,.12); color: white; border-color: rgba(255,255,255,.3); }

.related-links {
  margin: 2rem 0;
}
.related-links h2 { font-size: 1.1rem; }
.related-links div {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.related-links a {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .55rem .85rem;
  text-decoration: none;
  font-weight: 700;
}

footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1rem;
  text-align: center;
  color: var(--muted);
  background: rgba(255,255,255,.6);
}

@media (max-width: 720px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .trust-strip { grid-template-columns: 1fr; }
}
