:root {
  --ink: #24211c;
  --muted: #655f54;
  --leaf: #2f6b42;
  --leaf-deep: #19452c;
  --sky: #d8eef3;
  --petal: #c55365;
  --sun: #f3c75f;
  --soil: #6b4a35;
  --paper: #fffaf0;
  --white: #ffffff;
  --line: #ded7c7;
  --shadow: 0 18px 42px rgba(38, 30, 20, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.96), rgba(255, 250, 240, 0.88)),
    repeating-linear-gradient(0deg, rgba(47, 107, 66, 0.05) 0 1px, transparent 1px 88px);
  z-index: -2;
}

a {
  color: inherit;
}

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

code {
  padding: 0.12rem 0.35rem;
  border-radius: 0.35rem;
  color: var(--leaf-deep);
  background: rgba(47, 107, 66, 0.12);
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--leaf-deep);
  border-radius: 0.35rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 250, 240, 0.94);
  border-bottom: 1px solid rgba(107, 74, 53, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  color: var(--white);
  background: var(--leaf);
  border-radius: 50%;
  font-size: 0.76rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.site-nav a,
.site-footer a {
  padding: 0.55rem 0.7rem;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"],
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--leaf-deep);
}

.hero {
  position: relative;
  min-height: calc(82svh - 72px);
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 5vw, 5rem);
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -3;
}

.hero-shade {
  background: rgba(22, 40, 24, 0.54);
  z-index: -2;
}

.hero-content {
  width: min(830px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.7rem;
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--petal);
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.22rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 780px;
  margin-bottom: 2rem;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.15rem;
  border: 2px solid transparent;
  border-radius: 0.45rem;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  color: var(--leaf-deep);
  background: var(--sun);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: clamp(4rem, 9vw, 7rem) clamp(1.25rem, 5vw, 5rem);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 7vw, 6rem);
  max-width: 1180px;
  margin: 0 auto;
}

.copy-column {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.section-heading {
  max-width: 940px;
  margin: 0 auto 2rem;
}

.feature-band {
  background: var(--sky);
}

.feature-list,
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-list article,
.support-grid article,
.legal-layout {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(107, 74, 53, 0.14);
  border-radius: 0.45rem;
  box-shadow: var(--shadow);
}

.feature-list article,
.support-grid article {
  min-height: 260px;
  padding: 1.3rem;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1.15rem;
  color: var(--white);
  background: var(--leaf);
  border-radius: 50%;
  font-weight: 900;
}

.feature-list p,
.support-grid p,
.support-grid li,
.legal-layout p,
.legal-layout li {
  color: var(--muted);
}

.status-section {
  background: var(--paper);
}

.status-strip {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.status-strip span {
  padding: 0.8rem 1rem;
  color: var(--leaf-deep);
  background: rgba(47, 107, 66, 0.12);
  border-left: 4px solid var(--leaf);
  border-radius: 0.3rem;
  font-weight: 800;
}

.updates-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.update-item {
  min-height: 190px;
  padding: 1.3rem;
  border-top: 4px solid var(--petal);
  background: var(--white);
  box-shadow: var(--shadow);
}

.update-date,
.muted {
  color: var(--muted);
}

.privacy-callout {
  background: var(--leaf-deep);
  color: var(--white);
}

.privacy-callout .copy-column,
.privacy-callout .section-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.text-link {
  color: inherit;
  font-weight: 900;
  text-underline-offset: 0.22em;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem clamp(1.25rem, 5vw, 5rem);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-bottom: 0;
}

.copyright {
  margin-top: 0.35rem;
  font-size: 0.95rem;
}

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

.page-main {
  min-height: 72svh;
}

.page-hero {
  padding: clamp(4rem, 9vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  color: var(--white);
  background: var(--leaf-deep);
}

.page-hero h1 {
  max-width: 100%;
}

.page-hero p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 1.25rem;
}

.legal-layout {
  display: grid;
  gap: 2rem;
  max-width: 960px;
  margin: clamp(3rem, 6vw, 5rem) auto;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.legal-layout section {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.legal-layout section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

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

.support-grid ul,
.legal-layout ul {
  padding-left: 1.2rem;
}

.not-found {
  display: grid;
  min-height: 100svh;
  place-content: center;
  padding: 2rem;
  text-align: center;
}

.not-found h1 {
  max-width: 100%;
}

@media (max-width: 860px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav,
  .site-footer nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: calc(78svh - 72px);
  }

  .content-grid,
  .feature-list,
  .updates-list,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .feature-list article,
  .support-grid article {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .site-nav a,
  .site-footer a {
    padding-left: 0;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.85rem;
    line-height: 1;
  }

  .hero-content {
    width: min(350px, 100%);
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .button {
    width: 100%;
  }
}
