:root {
  --teal: #0d4f4f;
  --teal-dark: #0a3d3d;
  --gold: #b99527;
  --text: #162124;
  --muted: #556167;
  --surface: #f3f8f8;
  --card: #ffffff;
  --border: #d8e5e3;
  --radius: 16px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--teal-dark);
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(243, 248, 248, 0.88);
  border-bottom: 1px solid rgba(216, 229, 227, 0.7);
}

.topbar {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--teal-dark);
}

.header-links {
  display: flex;
  gap: 1rem;
}

.header-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.page {
  padding-bottom: 2.5rem;
}

.hero {
  padding: 2.75rem 0 1.75rem;
}

.hero-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr minmax(360px, 0.95fr);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--teal);
  line-height: 1.15;
}

.lead {
  margin: 0 0 1.5rem;
  max-width: 56ch;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.3rem;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(13, 79, 79, 0.2);
}

.btn-primary {
  background: linear-gradient(90deg, var(--teal) 0%, #14716d 100%);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--teal-dark);
  border-color: #c6dbd8;
}

.subtle-note {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 0.75rem;
  box-shadow: 0 16px 34px rgba(7, 40, 39, 0.1);
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.section {
  margin-top: 1.1rem;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  letter-spacing: -0.01em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  min-height: 140px;
}

.feature-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.legal-note {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

footer {
  margin-top: 2rem;
  padding: 1.3rem 1.25rem 2.4rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: #edf4f3;
}

footer p {
  margin: 0.2rem 0;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .topbar {
    min-height: 60px;
  }

  .hero {
    padding-top: 2rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta a {
    flex: 1 1 280px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1100px, calc(100% - 1.25rem));
  }

  .header-links {
    display: none;
  }

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

  .cta a {
    width: 100%;
  }

  .feature-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn:hover {
    transition: none;
    transform: none;
    box-shadow: none;
  }
}
