:root {
  --sand: #ebe5d8;
  --sand-deep: #ddd4c3;
  --ink: #252a28;
  --salt: #5c6662;
  --mint: #7fbf9b;
  --sky: #7eb6cf;
  --sun: #d8b75d;
  --leaf: #73a77b;
  --stone: #8b8e89;
  --snow: #faf9f5;
  --line: rgba(37, 42, 40, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(126, 182, 207, 0.14), transparent 30rem),
    radial-gradient(circle at 10% 34%, rgba(127, 191, 155, 0.13), transparent 28rem),
    var(--sand);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

.wrap {
  width: min(1120px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.25rem;
}

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

.brand img {
  border-radius: 12px;
}

nav {
  display: flex;
  gap: 1.5rem;
  color: var(--salt);
  font-size: 0.92rem;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 4rem;
  padding-block: 5rem 7rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--salt);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.5rem, 8vw, 6.9rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

h2 {
  max-width: 760px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 620;
  letter-spacing: -0.05em;
  line-height: 1;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}

.lede,
.section-intro {
  max-width: 700px;
  color: var(--salt);
  font-size: 1.2rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: var(--snow);
}

.button.quiet {
  background: rgba(250, 249, 245, 0.48);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 42, 40, 0.1);
}

.product-shot {
  width: min(100%, 390px);
  margin: 0 auto;
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 30px;
  box-shadow:
    0 28px 70px rgba(24, 31, 43, 0.24),
    0 5px 18px rgba(37, 42, 40, 0.15);
}

.product-shot figcaption {
  margin-top: 0.85rem;
  color: var(--salt);
  font-size: 0.78rem;
  text-align: center;
}

.section {
  padding-block: 8rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
}

.feature-grid article {
  min-height: 220px;
  padding: 2rem;
  background: rgba(250, 249, 245, 0.53);
}

.feature-grid p,
.status p {
  color: var(--salt);
}

.privacy-band {
  padding-block: 7rem;
  background: var(--ink);
  color: var(--snow);
}

.privacy-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
}

.privacy-band .eyebrow,
.privacy-band p {
  color: rgba(250, 249, 245, 0.7);
}

.privacy-band a {
  color: var(--snow);
}

.status {
  max-width: 1120px;
}

.status p {
  max-width: 700px;
  font-size: 1.1rem;
}

.site-footer {
  padding-block: 3rem 4rem;
  border-top: 1px solid var(--line);
  color: var(--salt);
  font-size: 0.88rem;
}

.site-footer .brand {
  margin-bottom: 1.2rem;
}

.site-footer p {
  margin-bottom: 0.5rem;
}

.disclosure {
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 5rem;
  }

  .product-shot {
    width: min(100%, 360px);
  }

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

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 2rem, 1120px);
  }

  .site-header {
    align-items: flex-start;
  }

  nav {
    flex-direction: column;
    gap: 0.25rem;
    text-align: right;
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 5rem);
  }

  .section,
  .privacy-band {
    padding-block: 5rem;
  }

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

  .product-shot {
    width: min(92%, 340px);
  }
}

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

  .button:hover,
  .button:focus-visible {
    transform: none;
  }
}
