:root {
  color-scheme: light;
  --color-primary: #06715a;
  --color-primary-hover: #055742;
  --color-secondary: #8bc0a3;
  --color-error: #ff6b6b;
  --color-background: #f3f3f5;
  --color-surface: rgba(255, 255, 255, 0.96);
  --color-card: #fffdfe;
  --color-on-surface: #2b2c34;
  --color-muted: #5a5c66;
  --gradient-start: #e8edf5;
  --gradient-end: #f3f3f5;
  --max-width: min(1500px, calc(100% - 2rem));
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 16px 32px rgba(15, 23, 42, 0.08);
  --transition: 220ms ease;
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--color-on-surface);
  background: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

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

.hero {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto 0;
  padding: 1.1rem 2.25rem;
  background: #06715a;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.logo img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid rgba(6, 113, 90, 0.1);
}

.logo span {
  font-family: "Outfit", "Inter", sans-serif;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffffff;
}

.nav-stores {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.toggle-bar {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform var(--transition);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(6, 113, 90, 0.2);
  background: rgba(6, 113, 90, 0.08);
  color: var(--color-primary);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(6, 113, 90, 0.16);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(6, 113, 90, 0.12);
  color: var(--color-on-surface);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(6, 113, 90, 0.3);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 3.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 5rem 0;
}

.hero__text {
  max-width: 520px;
}

.hero h1 {
  font-family: "Outfit", "Inter", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  color: #132320;
}

.hero p {
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.hero__stores {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.store-link img {
  display: block;
  width: auto;
  height: 50px;
}

.store-link--sm img {
  height: 35px;
}

.store-link--md img {
  height: 50px;
}

.store-link:hover,
.store-link:focus-visible {
  transform: translateY(-2px);
}

.hero__image {
  text-align: center;
  justify-self: end;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image img {
  max-width: none;
  width: min(115%, 960px);
  height: 100%;
  object-fit: contain;
  border-radius: 26px;
}

.hero__stats {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-align: left;
}

.hero__stats dt {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.hero__stats dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

main > section {
  padding: 5rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-family: "Outfit", "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #132320;
}

.section-header p {
  color: var(--color-muted);
  margin-top: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
}

.trust {
  text-align: center;
  padding: 3rem 2rem 5rem;
}

.trust p {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-muted);
}

.trust__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.trust__badges span {
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
  background: rgba(6, 113, 90, 0.08);
  color: var(--color-primary);
  font-weight: 500;
}

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

.benefit-card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover,
.benefit-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
}

.benefit-card h3 {
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1.4rem;
  margin-top: 1.2rem;
  margin-bottom: 0.8rem;
}

.benefit-card p {
  margin: 0;
  color: var(--color-muted);
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 113, 90, 0.12);
}

.icon-calendar {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2306715a' viewBox='0 0 24 24'%3E%3Cpath d='M7 2a1 1 0 0 1 .993.883L8 3v1h8V3a1 1 0 0 1 1.993-.117L18 3v1h1a3 3 0 0 1 2.995 2.824L22 7v12a3 3 0 0 1-2.824 2.995L19 22H5a3 3 0 0 1-2.995-2.824L2 19V7a3 3 0 0 1 2.824-2.995L5 4h1V3a1 1 0 0 1 1-1Zm12 6H5a1 1 0 0 0-.993.883L4 9v10a1 1 0 0 0 .883.993L5 20h14a1 1 0 0 0 .993-.883L20 19V9a1 1 0 0 0-.883-.993L19 8Zm-11 4a1 1 0 0 1 .117 1.993L8 14H7a1 1 0 0 1-.117-1.993L7 12h1Zm5 0a1 1 0 0 1 .117 1.993L13 14h-2a1 1 0 0 1-.117-1.993L11 12h2Zm5 0a1 1 0 0 1 .117 1.993L18 14h-1a1 1 0 0 1-.117-1.993L17 12h1Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 28px;
  background-position: center;
}

.icon-list {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2306715a' viewBox='0 0 24 24'%3E%3Cpath d='M6 4a2 2 0 0 1 1.995 1.85L8 6v12a2 2 0 0 1-3.995.15L4 18V6a2 2 0 0 1 2-2Zm12 2a1 1 0 0 1 .117 1.993L18 8H11a1 1 0 0 1-.117-1.993L11 6h7Zm0 4a1 1 0 0 1 .117 1.993L18 12H11a1 1 0 0 1-.117-1.993L11 10h7Zm0 4a1 1 0 0 1 .117 1.993L18 16H11a1 1 0 0 1-.117-1.993L11 14h7Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 28px;
  background-position: center;
}

.icon-bell {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2306715a' viewBox='0 0 24 24'%3E%3Cpath d='M12 22a2 2 0 0 1-1.995-1.85L10 20h4a2 2 0 0 1-1.85 1.995L12 22Zm6-7v-4a6 6 0 0 0-5-5.917V4a1 1 0 0 0-1.993-.117L11 4v1.083A6 6 0 0 0 6 11v4l-.001.117L6 15l-1.707 1.707a1 1 0 0 0 .325 1.638l.117.04 1.265.252A4 4 0 0 0 9.584 20h4.832a4 4 0 0 0 3.584-2.363l1.265-.252a1 1 0 0 0 .648-1.378L20 16l-1.707-1.707L18 15Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 28px;
  background-position: center;
}

.how-it-works {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.how-flow {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.how-card {
  display: flex;
  align-items: flex-start;
  padding: 0rem 3rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.how-card--reverse {
  flex-direction: row-reverse;
}

.how-card__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: rgba(6, 113, 90, 0.12);
  font-family: "Outfit", "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.how-card__text h3 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  color: #132320;
}

.how-card__text p {
  margin: 0;
  color: var(--color-muted);
}

.how-card__media {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-self: flex-start;
}

.how-card__media img {
  width: min(100%, 320px);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.how-card--reverse .how-card__text {
  align-items: flex-end;
  text-align: right;
}

.features {
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

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

.feature-card {
  padding: 1.9rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(6, 113, 90, 0.08);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-family: "Outfit", "Inter", sans-serif;
}

.feature-card p {
  margin: 0;
  color: var(--color-muted);
}

.screens {
  text-align: center;
}

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.screen-gallery figure {
  margin: 0;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--color-card);
  box-shadow: var(--shadow-card);
}

.screen-gallery figcaption {
  margin-top: 1rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.cta-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 4rem;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.8);
}

.device-stack {
  position: relative;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.28));
}

.waitlist {
  text-align: center;
}

.waitlist__form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0 auto 1.5rem;
  max-width: 480px;
}

.waitlist input {
  flex: 1 1 240px;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(6, 113, 90, 0.24);
  background: #fff;
}

.waitlist input:focus-visible {
  outline: 2px solid rgba(6, 113, 90, 0.35);
  outline-offset: 2px;
}

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

.store-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.store-badge {
  padding: 0.8rem 1.4rem;
  border: 1px dashed rgba(255, 255, 255, 0.0);
  border-radius: 14px;
  background: rgba(6, 113, 90, 0.1);
  color: var(--color-primary);
  font-weight: 600;
}

.faq__items {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}

details {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.3rem 1.6rem;
  border: 1px solid rgba(6, 113, 90, 0.08);
  box-shadow: var(--shadow-card);
}

summary {
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details[open] summary {
  color: var(--color-primary);
}

details p {
  margin-top: 0.75rem;
  margin-bottom: 0;
  color: var(--color-muted);
}

.footer {
  background: #06715a;
  color: rgba(255, 255, 255, 0.82);
  padding: 4rem 2.5rem 2rem;
  margin-top: 6rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto 3rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.88);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1.5rem;
  font-size: 0.92rem;
}

.footer__bottom a {
  margin-left: 1.5rem;
}

.social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 2.5rem 1rem 0;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .device-frame {
    max-width: 380px;
    margin: 0 auto;
  }

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

  .how-flow {
    gap: 2.5rem;
  }

  .how-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
  }

  .how-card__media {
    width: 100%;
  }

  .how-card__media img {
    width: min(100%, 280px);
  }

  .how-card--reverse .how-card__text {
    align-items: flex-start;
    text-align: left;
  }

  .cta-block {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .navbar {
    padding: 1.25rem 1.75rem;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1.5rem;
    background: #055742;
    color: #ffffff;
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-md);
    padding: 1.4rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    min-width: 240px;
    transform-origin: top right;
    transform: scale(0.92);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .nav-stores {
    justify-content: space-between;
  }

  .nav-stores .store-link {
    flex: 1;
    justify-content: center;
  }

  .hero__text,
  .hero__content {
    text-align: left;
  }

  .hero__content {
    padding: 2.5rem 1rem 0;
  }

  .hero__image {
    justify-self: center;
  }

  .hero__image img {
    width: 100%;
    max-width: 520px;
  }

  main > section {
    padding: 4rem 1rem;
  }

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

  .how-flow {
    gap: 2rem;
  }

  .how-card {
    padding: 1.75rem;
    gap: 1.75rem;
  }

  .how-card__media img {
    width: min(100%, 240px);
  }

  .step-number {
    margin-bottom: 1rem;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .footer__bottom a {
    margin-left: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
