:root {
  color-scheme: light;
  --ink: #14201e;
  --muted: #52615e;
  --brand: #006b5f;
  --brand-dark: #004d45;
  --mint: #dff5ed;
  --cream: #fffaf0;
  --line: #dce5e2;
  --surface: #ffffff;
  --shadow: 0 18px 55px rgba(20, 32, 30, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 85% 0%, rgba(183, 239, 219, 0.55), transparent 34rem),
    linear-gradient(180deg, var(--cream), #f7fbf9 38rem, #f4f7f6);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}

a {
  color: var(--brand-dark);
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #e3a008;
  outline-offset: 3px;
}

.skip-link {
  background: var(--ink);
  color: #fff;
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-header,
.site-footer,
.shell {
  margin: 0 auto;
  max-width: 1120px;
  padding-left: 24px;
  padding-right: 24px;
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 28px;
  padding-top: 28px;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 800;
  gap: 0.65rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 11px;
  color: #fff;
  display: inline-flex;
  height: 2.25rem;
  justify-content: center;
  width: 2.25rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.hero {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  padding-bottom: 76px;
  padding-top: 64px;
}

.eyebrow {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  letter-spacing: -0.055em;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(1.55rem, 4vw, 2.2rem);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 2.5vw, 1.28rem);
  margin: 0 0 1.75rem;
  max-width: 44rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 999px;
  color: #fff;
  display: inline-block;
  font-weight: 750;
  padding: 0.78rem 1.2rem;
  text-decoration: none;
}

.button:hover {
  background: var(--brand-dark);
}

.button.secondary {
  background: transparent;
  color: var(--brand-dark);
}

.app-icon-wrap {
  background: linear-gradient(145deg, #006b5f, #003f39);
  border-radius: 30%;
  box-shadow: var(--shadow);
  justify-self: center;
  max-width: 280px;
  overflow: hidden;
  transform: rotate(2deg);
  width: 100%;
}

.app-icon-wrap img {
  display: block;
  height: auto;
  width: 100%;
}

.section {
  padding-bottom: 76px;
}

.section-intro {
  color: var(--muted);
  margin-bottom: 1.6rem;
  max-width: 48rem;
}

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

.card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(20, 32, 30, 0.04);
  padding: 24px;
}

.card p:last-child,
.legal-card p:last-child {
  margin-bottom: 0;
}

.product-card {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 92px minmax(0, 1fr);
}

.product-card img {
  border-radius: 24%;
  height: 92px;
  width: 92px;
}

.pill {
  background: var(--mint);
  border-radius: 999px;
  color: var(--brand-dark);
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 750;
  margin-bottom: 0.8rem;
  padding: 0.25rem 0.65rem;
}

.legal-page {
  max-width: 800px;
  padding-bottom: 72px;
  padding-top: 40px;
}

.legal-page h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
}

.legal-page h2 {
  font-size: 1.35rem;
  margin-top: 2.1rem;
}

.legal-page h3 {
  margin-top: 1.5rem;
}

.legal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  margin: 1.25rem 0;
  padding: 26px;
}

.language-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.3rem 0 2rem;
}

.language-nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  text-decoration: none;
}

.notice {
  background: var(--mint);
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  color: #294640;
  padding: 1rem 1.2rem;
}

.meta {
  color: var(--muted);
  font-size: 0.92rem;
}

ul,
ol {
  padding-left: 1.35rem;
}

li + li {
  margin-top: 0.35rem;
}

address {
  font-style: normal;
}

.divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 4rem 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 1rem 1.6rem;
  justify-content: space-between;
  padding-bottom: 34px;
  padding-top: 28px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.1rem;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    gap: 18px;
  }

  .site-nav {
    justify-content: flex-end;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .hero .app-icon-wrap {
    grid-row: 1;
    max-width: 190px;
  }

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

@media (max-width: 480px) {
  .site-header {
    display: block;
  }

  .site-nav {
    justify-content: flex-start;
    margin-top: 16px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .legal-card,
  .card {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .app-icon-wrap {
    transform: none;
  }
}
