:root {
  color-scheme: light;
  --bg: #f4f6f1;
  --paper: #fffefa;
  --surface: #ffffff;
  --ink: #151a18;
  --muted: #5d6762;
  --line: #dfe5dd;
  --primary: #006f5f;
  --primary-strong: #005547;
  --accent: #e7b341;
  --coral: #df6f55;
  --sky: #5d8fc6;
  --mint: #dcefe7;
  --shadow: 0 24px 70px rgba(21, 26, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(21, 26, 24, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 26, 24, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(223, 229, 221, 0.78);
  background: rgba(255, 254, 250, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 111, 95, 0.18);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link,
.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link {
  color: #414b46;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-button {
  margin-left: 6px;
  background: var(--ink);
  color: #fffefa;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(760px, calc(100svh - 72px));
  padding: 72px 0 46px;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(244, 246, 241, 0), var(--bg) 72%);
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #dcefe7;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(21, 26, 24, 0.92) 0%, rgba(21, 26, 24, 0.76) 42%, rgba(21, 26, 24, 0.26) 100%),
    linear-gradient(180deg, rgba(21, 26, 24, 0.18), rgba(21, 26, 24, 0.68));
  content: "";
}

.hero-media img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.04);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  color: #fffefa;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #b9f4de;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  font-size: clamp(31px, 4vw, 58px);
  line-height: 1.06;
  font-weight: 950;
  letter-spacing: 0;
  word-break: keep-all;
}

h3 {
  font-size: 21px;
  line-height: 1.18;
  font-weight: 930;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 650;
}

.lead {
  max-width: 710px;
  margin-top: 24px;
  color: rgba(255, 254, 250, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 950;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--accent);
  color: #1f1705;
  box-shadow: 0 18px 34px rgba(231, 179, 65, 0.24);
}

.store-button {
  gap: 9px;
}

.store-button img {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.store-button.compact img {
  width: 18px;
  height: 18px;
}

.button.secondary {
  border-color: rgba(255, 254, 250, 0.42);
  background: rgba(255, 254, 250, 0.1);
  color: #fffefa;
  backdrop-filter: blur(12px);
}

.play-badge {
  display: inline-flex;
  align-items: center;
  width: 180px;
  height: 54px;
  border-radius: 9px;
  text-decoration: none;
  transition: transform 160ms ease, filter 160ms ease;
}

.play-badge:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.play-badge img {
  width: 180px;
  height: auto;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 50px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 254, 250, 0.24);
  border-radius: 24px;
  background: rgba(255, 254, 250, 0.18);
  backdrop-filter: blur(18px);
}

.quick-facts div {
  min-width: 0;
  padding: 20px;
  background: rgba(21, 26, 24, 0.24);
}

dt {
  color: rgba(255, 254, 250, 0.66);
  font-size: 12px;
  font-weight: 900;
}

dd {
  margin: 7px 0 0;
  color: #fffefa;
  font-size: 17px;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin-bottom: 34px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 56px;
  align-items: start;
}

.intro > p {
  padding-top: 34px;
  font-size: 19px;
}

.feature-section {
  padding-top: 48px;
}

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

.feature {
  position: relative;
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 254, 250, 0.86);
  box-shadow: 0 12px 34px rgba(21, 26, 24, 0.06);
  overflow: hidden;
}

.feature::after {
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 118px;
  height: 118px;
  border: 18px solid rgba(0, 111, 95, 0.1);
  border-radius: 50%;
  content: "";
}

.feature:nth-child(2n)::after {
  border-color: rgba(223, 111, 85, 0.12);
}

.feature:nth-child(3n)::after {
  border-color: rgba(93, 143, 198, 0.14);
}

.feature-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: #fffefa;
  font-size: 13px;
  font-weight: 950;
}

.feature h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.feature p {
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 1.65;
}

.app-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin-top: 20px;
  margin-bottom: 32px;
  padding: 42px;
  border: 1px solid rgba(0, 111, 95, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(220, 239, 231, 0.95), rgba(255, 254, 250, 0.92)),
    var(--paper);
  box-shadow: var(--shadow);
}

.app-cta h2 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 50px);
}

.app-cta .button.primary {
  background: var(--primary);
  color: #fffefa;
  box-shadow: 0 18px 34px rgba(0, 111, 95, 0.22);
  white-space: nowrap;
}

.faq {
  padding-top: 70px;
}

details {
  border-top: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.46);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 24px 6px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 920;
  list-style: none;
}

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

summary::after {
  float: right;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--primary-strong);
  text-align: center;
  line-height: 28px;
  content: "+";
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 820px;
  padding: 0 6px 26px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--primary);
}

.content {
  width: min(820px, calc(100% - 32px));
  margin: 72px auto 0;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.content.narrow {
  width: min(760px, calc(100% - 32px));
}

.content h1,
.content h2 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 52px);
}

.stack {
  display: grid;
  gap: 16px;
}

.info {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
}

.info.highlight {
  border-color: rgba(0, 111, 95, 0.24);
  background: var(--mint);
}

.info-title {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.info-value {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
  font-weight: 700;
  overflow-wrap: anywhere;
}

@media (max-width: 860px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
  }

  .nav-actions {
    display: none;
  }

  .nav-link {
    display: none;
  }

  .hero {
    min-height: 720px;
    padding-top: 84px;
  }

  .hero-media::before {
    background:
      linear-gradient(180deg, rgba(21, 26, 24, 0.52), rgba(21, 26, 24, 0.88)),
      linear-gradient(90deg, rgba(21, 26, 24, 0.62), rgba(21, 26, 24, 0.28));
  }

  .hero-media img {
    object-position: center top;
  }

  .quick-facts,
  .intro,
  .feature-grid,
  .app-cta {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 18px;
  }

  .intro > p {
    padding-top: 0;
  }

  .feature {
    min-height: 0;
  }

  .app-cta {
    padding: 30px 22px;
  }

  .app-cta .button {
    width: 100%;
  }

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

@media (max-width: 560px) {
  h2,
  h3,
  p,
  summary,
  .info-value {
    max-width: calc(100vw - 28px);
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .nav {
    width: min(100% - 24px, 1180px);
  }

  .brand span {
    font-size: 15px;
  }

  .nav-button {
    min-height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }

  .hero {
    min-height: 690px;
    padding: 64px 0 30px;
  }

  .hero-content,
  .section,
  .app-cta,
  .site-footer {
    width: calc(100% - 28px);
    max-width: calc(100vw - 28px);
    overflow: hidden;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.14;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .section-heading,
  .intro > p,
  .feature p,
  details p {
    max-width: 100%;
    min-width: 0;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .lead {
    font-size: 17px;
  }

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

  .play-badge {
    justify-content: center;
    height: auto;
  }

  .play-badge img {
    max-width: 220px;
  }

  .quick-facts {
    margin-top: 30px;
    border-radius: 18px;
  }

  .quick-facts div {
    padding: 15px;
  }

  .section {
    padding: 62px 0;
  }

  .intro,
  .section-heading,
  .feature-grid {
    width: 100%;
    max-width: calc(100vw - 28px);
    overflow: hidden;
  }

  .intro {
    display: block;
  }

  .section-heading h2,
  .intro > p,
  .feature p,
  details p {
    width: min(100%, 340px);
    white-space: normal;
  }

  .feature-grid {
    gap: 10px;
  }

  .feature {
    padding: 20px;
    border-radius: 16px;
  }

  .content {
    width: calc(100% - 28px);
    margin-top: 34px;
    padding: 28px 18px;
    border-radius: 20px;
  }
}
