@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap");

:root {
  --teal: #2faaa6;
  --teal-dark: #207f7b;
  --mint: #a9dfb5;
  --cream: #fff7df;
  --coral: #ff8f78;
  --brown: #733c32;
  --ink: #203d3b;
  --muted: #5d7370;
  --surface: #f3fbf4;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(37, 105, 99, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    "Nunito",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.7;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(32, 61, 59, 0.08);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--teal);
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(47, 170, 166, 0.25);
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

nav a:hover,
.footer-links a:hover {
  color: var(--teal-dark);
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 30%,
      rgba(255, 247, 223, 0.7),
      transparent 30%
    ),
    linear-gradient(135deg, #2faaa6 0%, #65c0ad 55%, #a9dfb5 100%);
}

.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 45px;
  padding: 70px 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hero .eyebrow {
  color: var(--cream);
}

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

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--cream);
  font-weight: 900;
}

h2 {
  margin-bottom: 15px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 900;
}

h3 {
  margin-bottom: 7px;
  font-size: 1.35rem;
  font-weight: 900;
}

.hero-copy p {
  max-width: 600px;
  margin-bottom: 30px;
  color: rgba(255, 247, 223, 0.92);
  font-size: 1.15rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(32, 61, 59, 0.16);
}

.primary {
  background: var(--cream);
  color: var(--brown);
}

.secondary {
  border: 1px solid rgba(255, 247, 223, 0.6);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 610px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 247, 223, 0.25);
  filter: blur(5px);
}

.section {
  padding: 110px 0;
}

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

.section-heading {
  max-width: 700px;
  margin-bottom: 42px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(32, 61, 59, 0.07);
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(37, 105, 99, 0.07);
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 17px;
  background: #dff3dd;
  color: var(--teal-dark);
  font-size: 1.5rem;
  font-weight: 900;
}

.cta {
  padding: 80px 0;
}

.cta-box {
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--teal), #68c2aa);
  color: var(--cream);
}

.cta-box .eyebrow {
  color: var(--cream);
}
.cta-box h2 {
  max-width: 650px;
  margin-bottom: 8px;
}
.cta-box p {
  margin-bottom: 0;
  color: rgba(255, 247, 223, 0.88);
}

.site-footer {
  padding: 35px 0;
  border-top: 1px solid rgba(32, 61, 59, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.copyright {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-page {
  padding: 90px 0 110px;
}

.legal-container {
  max-width: 820px;
}

.legal-container h1 {
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  margin-bottom: 10px;
}

.legal-container h2 {
  margin-top: 48px;
  font-size: 1.6rem;
  letter-spacing: -0.025em;
}

.legal-container p,
.legal-container li {
  color: var(--muted);
}

.legal-container a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.updated {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 35px;
}

.notice {
  padding: 20px 22px;
  margin-bottom: 35px;
  border-left: 4px solid var(--coral);
  border-radius: 14px;
  background: #fff5ef;
  color: var(--brown);
}

ul {
  padding-left: 22px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

@media (max-width: 850px) {
  .nav {
    min-height: 68px;
  }
  nav {
    gap: 15px;
    font-size: 0.85rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 70px 0 80px;
  }
  .hero-art {
    margin-top: 10px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }
  nav a:nth-child(1),
  nav a:nth-child(2) {
    display: none;
  }
  h1 {
    font-size: 3.2rem;
  }
  .section {
    padding: 75px 0;
  }
  .cta {
    padding: 55px 0;
  }
  .cta-box {
    padding: 32px 25px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}
