:root {
  color-scheme: light;
  --background: #f7f5f0;
  --surface: #ffffff;
  --surface-soft: #eef4f1;
  --ink: #101412;
  --muted: rgba(16, 20, 18, 0.66);
  --border: rgba(16, 20, 18, 0.1);
  --primary: #2e6b61;
  --primary-dark: #214f48;
  --accent: #c76342;
  --blue: #2f5f83;
  --shadow: 0 20px 56px rgba(24, 40, 34, 0.12);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 48px);
  background: rgba(247, 245, 240, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand img,
.hero-icon,
.support-icon,
.site-footer img {
  border-radius: 22%;
  box-shadow: 0 10px 30px rgba(21, 43, 38, 0.16);
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-header nav a,
.site-footer nav a,
.text-link {
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"],
.site-footer nav a:hover,
.text-link {
  color: var(--primary);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(560px, 82svh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--border);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/app-preview-grid.png");
  background-position: center;
  background-size: cover;
  opacity: 0.24;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(247, 245, 240, 0.76);
}

.hero-content {
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: center;
}

.hero-icon {
  margin: 0 auto 26px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-lede {
  width: min(720px, 100%);
  margin: 24px auto 0;
  color: rgba(16, 20, 18, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

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

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

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

.button.secondary {
  background: rgba(255, 255, 255, 0.78);
}

.section {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

.section-inner,
.policy-layout,
.page-hero-inner {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.intro-band,
.privacy-preview {
  background: var(--surface);
}

.screens-band {
  background: #edf3f0;
  border-block: 1px solid var(--border);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.split > p,
.privacy-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.22rem);
}

.privacy-copy p + p {
  margin-top: 16px;
}

.privacy-copy .button {
  margin-top: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.feature-card,
.support-card {
  min-height: 210px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 36px rgba(24, 40, 34, 0.06);
}

.feature-card p,
.support-card p,
.policy-content p,
.page-hero p {
  margin: 0;
  color: var(--muted);
}

.feature-card p + p,
.support-card p + p {
  margin-top: 12px;
}

.feature-kicker {
  display: block;
  margin-bottom: 26px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-card.warm {
  background: #fff6f1;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.screens {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: clamp(12px, 2vw, 22px);
  margin-top: 36px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.screens figure {
  min-width: 170px;
  margin: 0;
}

.screens img {
  width: 100%;
  aspect-ratio: 1290 / 2796;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(16, 20, 18, 0.12);
  box-shadow: var(--shadow);
}

.screens figcaption {
  margin-top: 12px;
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.page-hero {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 64px);
  background: var(--surface-soft);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  display: grid;
  gap: 18px;
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.page-hero p {
  width: min(720px, 100%);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.support-hero {
  background: #f7f0ec;
}

.support-icon {
  margin-bottom: 6px;
}

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

.policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
}

.policy-toc a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
}

.policy-toc a:hover {
  color: var(--primary);
  background: var(--surface-soft);
}

.policy-content {
  display: grid;
  gap: 42px;
}

.policy-content section {
  padding-bottom: 42px;
  border-bottom: 1px solid var(--border);
}

.policy-content section:last-child {
  border-bottom: 0;
}

.policy-content h2 {
  margin-bottom: 14px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.14;
}

.policy-content p + p {
  margin-top: 14px;
}

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

.support-card .button,
.support-card .text-link {
  margin-top: 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: var(--muted);
  background: #17211e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer > div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav a:hover {
  color: #fff;
}

@media (max-width: 840px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-header nav,
  .site-footer nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 720px;
    text-align: center;
  }

  .split,
  .policy-layout,
  .support-grid {
    grid-template-columns: 1fr;
  }

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

  .policy-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading-row,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 640px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

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