*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

body {
  font-size: 16px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  display: block;
}

.container {
  width: min(calc(100% - 2rem), var(--container-width));
  margin: 0 auto;
}

.container-narrow {
  width: min(calc(100% - 2rem), var(--container-narrow));
  margin: 0 auto;
}

.section {
  padding: var(--space-3xl) 0;
}

.section--tight {
  padding: var(--space-2xl) 0;
}

.section-surface {
  background: var(--color-surface);
}

.section-white {
  background: var(--color-white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
}

.section-title {
  margin: var(--space-sm) 0 var(--space-sm);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-intro {
  max-width: 48rem;
  color: var(--color-text-soft);
  margin: 0;
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.55rem 0.85rem;
  background: rgba(15, 139, 141, 0.08);
  border-radius: 999px;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0 0;
  display: grid;
  gap: var(--space-sm);
}

.list-check li {
  position: relative;
  padding-left: 1.75rem;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
  box-shadow: 0 0 0 4px rgba(15, 139, 141, 0.12);
}

.media-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  border: 0;
}
