:root {
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-background: #ffffff;
  --color-surface: #ffffff;
  --color-surface-soft: #ffffff;
  --color-primary: #3f7a64;
  --color-primary-dark: #32604e;
  --color-text: #000000;
  --color-muted: #000000;
  --color-border: #e5d8c8;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #000000;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

header,
main {
  width: 100%;
}

main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 0 1.5rem 4rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.75rem, 4vw, 3.75rem);
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  color: #000000;
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: #fdf6ed;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #000000;
}

.masthead__inner {
  margin: 0 auto;
  max-width: var(--max-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
}

.masthead__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: inherit;
}

.masthead__brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  box-shadow: none;
}

.masthead__nav {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.masthead__nav a {
  color: #000000;
  font-weight: 500;
}

.masthead__nav a:hover,
.masthead__nav a:focus-visible {
  color: #000000;
}

.masthead__cta {
  font-size: 0.95rem;
}

.hero {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 5.5rem clamp(1.5rem, 6vw, 4rem) 4.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-background);
  text-align: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  max-width: 40rem;
}

.hero__eyebrow {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #000000;
  font-weight: 600;
}

.hero__description {
  font-size: 1.1rem;
}

.hero p {
  color: #000000;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero__stores {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(9.5rem, 15vw, 11.5rem);
}

.store-badge:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 6px;
}

.store-badge img {
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  height: auto;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.store-badge:hover img,
.store-badge:focus-visible img {
  transform: translateY(-1px);
}

.store-badge--google {
  width: clamp(9.5rem, 15vw, 11.5rem);
}

.store-badge--appstore {
  width: clamp(9.5rem, 15vw, 11.5rem);
}

.hero__note {
  border-left: 3px solid rgba(0, 0, 0, 0.2);
  padding-left: 1rem;
  color: #000000;
  align-self: stretch;
  max-width: 28rem;
  margin-top: 1rem;
  text-align: left;
}

.hero__note-label {
  display: block;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.25rem;
}

.hero__icon {
  width: clamp(160px, 28vw, 240px);
  border-radius: 32px;
  box-shadow: none;
  margin: 0 auto 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

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

.button--ghost {
  background: transparent;
  color: #000000;
  border-color: rgba(0, 0, 0, 0.6);
}

.section {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 0;
}

.section__intro {
  max-width: 38rem;
  margin-bottom: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-background);
  padding: 1.75rem;
  color: #000000;
}

.card h3 {
  color: #000000;
}

.card p {
  color: #000000;
}

.highlights {
  background: var(--color-background);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.highlights__inner {
  display: grid;
  gap: clamp(2.5rem, 6vw, 3.5rem);
}

.highlights__lead {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

.highlights__gallery {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: clamp(0.75rem, 3vw, 1.75rem);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 24px 60px -32px rgba(49, 34, 24, 0.28);
  backdrop-filter: blur(6px);
}

.highlights__item {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 0;
  background: transparent;
  border-radius: 0;
  text-align: center;
}

.highlights__image {
  width: clamp(16.25rem, 49.5vw, 22.5rem);
  height: auto;
  border-radius: 28px;
  display: block;
  box-shadow: 0 18px 48px -30px rgba(32, 24, 16, 0.4);
}

.highlights__caption {
  margin: 0;
  font-size: 0.95rem;
  color: #000000;
}

.highlights .section__intro h2 {
  color: #000000;
}

.highlights .section__intro p {
  color: #000000;
}

.flow {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: #000000;
}

.flow h2 {
  color: #000000;
}

.flow p {
  color: #000000;
}

.flow__list {
  margin: 0;
  padding-left: 1.2rem;
  color: #000000;
}

.notify {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  color: #000000;
}

.notify h2 {
  color: #000000;
}

.notify p {
  color: #000000;
}

.notify__content {
  max-width: 34rem;
  margin: 0 auto;
}

.notify__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
  margin-bottom: 1rem;
}

.notify__form input {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  font-size: 1rem;
  min-width: 16rem;
  background: rgba(0, 0, 0, 0.04);
  color: #000000;
}

.notify__form input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.notify__fineprint {
  color: #000000;
}

.privacy {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: #000000;
}

.privacy h2,
.privacy h3 {
  color: #000000;
}

.privacy p {
  color: #000000;
}

.privacy__content {
  display: grid;
  gap: 1.75rem;
}

.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--color-background);
  padding: 2rem 1.5rem 2.5rem;
}

.footer__inner {
  margin: 0 auto;
  max-width: var(--max-width);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  color: #000000;
}

.footer__inner nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.footer__inner a {
  color: #000000;
  font-weight: 700;
}

.footer__inner a:hover,
.footer__inner a:focus-visible {
  color: #000000;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 840px) {
  .masthead__nav {
    display: inline-flex;
  }

  main {
    padding: 0 clamp(3rem, 7vw, 6rem) 5rem;
  }
}

@media (min-width: 1200px) {
  .hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
  }

}

@media (max-width: 839px) {
  .masthead__inner {
    justify-content: space-between;
  }

  .masthead__cta {
    display: none;
  }
}

@media (min-width: 641px) and (max-width: 839px) {
  .highlights {
    padding: 3rem 2rem;
  }

  .highlights__gallery {
    gap: 1.75rem;
    padding: 2rem 1.5rem;
  }

  .flow {
    padding: 3rem 2rem;
  }

  .notify {
    padding: 3.5rem 2rem;
  }

  .privacy {
    padding: 3rem 2rem;
  }
}

@media (max-width: 640px) {
  main {
    gap: 3rem;
    padding: 0 1rem 3rem;
  }

  .hero {
    padding: 4rem clamp(1rem, 4vw, 2rem) 3.5rem;
  }

  .hero__eyebrow {
    font-size: 0.9rem;
  }

  .hero__description {
    font-size: 1rem;
  }

  .hero__icon {
    width: clamp(140px, 32vw, 180px);
    margin-bottom: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .highlights {
    padding: 2.5rem 1.5rem;
  }

  .highlights__gallery {
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }

  .card-grid {
    gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .card {
    padding: 1.5rem;
  }

  .flow {
    padding: 2.5rem 1.75rem;
  }

  .notify {
    padding: 3rem 1.75rem;
  }

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

  .notify__form input {
    width: 100%;
    min-width: auto;
  }

  .privacy {
    padding: 2.5rem 1.75rem;
  }

  .footer {
    padding: 2rem 1rem 2.5rem;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .masthead__inner {
    padding: 1rem 1rem;
  }

  .masthead__brand {
    font-size: 1rem;
    gap: 0.5rem;
  }

  .masthead__brand-mark {
    width: 30px;
    height: 30px;
  }

  .store-badge--google {
    width: clamp(8.5rem, 18vw, 10rem);
  }

  .store-badge--appstore {
    width: clamp(7.5rem, 15vw, 9rem);
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-background: #ffffff;
    --color-surface: #ffffff;
    --color-surface-soft: #ffffff;
    --color-text: #000000;
    --color-muted: #000000;
  }

  body {
    background: #ffffff;
    color: #000000;
  }

  .masthead {
    background: #ffffff;
    color: #000000;
  }
}
