:root {
  --navy: #00174d;
  --teal: #41c9b8;
  --ink: #17324f;
  --slate: #61738a;
  --border: rgba(0, 23, 77, 0.12);
  --surface: #f5f7fa;
  --card: #ffffff;
  --shadow: 0 18px 48px rgba(0, 23, 77, 0.08);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(0, 23, 77, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 23, 77, 0.03) 1px, transparent 1px),
    #fbfcfe;
  background-size: 72px 72px;
}

a {
  color: inherit;
}

.shell {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 40px 0 64px;
}

.hero {
  display: grid;
  gap: 16px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(65, 201, 184, 0.12), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

h1,
h2,
h3,
p {
  margin: 0;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  color: var(--navy);
}

.hero p {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--slate);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  text-decoration: none;
  font-weight: 700;
}

.button--primary {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.note {
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(65, 201, 184, 0.28);
  background: rgba(65, 201, 184, 0.08);
  font-size: 15px;
  line-height: 1.6;
}

.section {
  margin-top: 28px;
}

.section__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.section__header h2 {
  font-size: 28px;
  line-height: 1.1;
  color: var(--navy);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}

.card__meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--navy) 48%, transparent);
}

.card h3 {
  font-size: 22px;
  line-height: 1.15;
  color: var(--navy);
}

.card p {
  color: var(--slate);
  line-height: 1.5;
}

.card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f8fafc;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.card__actions a.primary {
  color: var(--navy);
  background: color-mix(in srgb, var(--teal) 12%, white);
}

.card__actions a.primary:hover {
  background: color-mix(in srgb, var(--teal) 20%, white);
}

.card__actions a.secondary {
  color: var(--slate);
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.button-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: white;
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 23, 77, 0.05);
}

.button-grid a:hover {
  background: color-mix(in srgb, var(--teal) 10%, white);
}

.footer {
  margin-top: 48px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate);
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 28px), var(--container));
    padding-top: 24px;
  }

  .hero {
    padding: 22px;
  }
}
