:root {
  color-scheme: light;
  --ink: #17211e;
  --muted: #5d6863;
  --leaf: #0f5e4d;
  --mint: #58a6a0;
  --sun: #f7c95f;
  --coral: #e95842;
  --paper: #fbfaf5;
  --wash: #f2efe4;
  --line: rgba(23, 33, 30, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 44px;
  height: 44px;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a,
.footer-links a,
.secondary-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover,
.secondary-link:hover {
  color: var(--leaf);
}

main {
  flex: 1;
}

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 98px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 56px;
  padding: 22px 0 64px;
}

.eyebrow,
.feature-kicker {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(44px, 6.8vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  color: white;
  background: var(--leaf);
  box-shadow: 0 18px 40px rgba(15, 94, 77, 0.22);
  font-weight: 800;
  text-decoration: none;
}

.store-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.hero-visual img {
  width: min(100%, 560px);
  height: auto;
  filter: drop-shadow(0 32px 60px rgba(23, 33, 30, 0.16));
}

.feature-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.feature-band article {
  min-width: 0;
}

.feature-band h2,
.launch-strip h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: 0;
}

.feature-band p,
.launch-strip p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.launch-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 52px;
  padding: 36px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 34px;
}

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

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 32px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .feature-band,
  .launch-strip {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header,
  .hero,
  .feature-band,
  .launch-strip,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding-top: 18px;
  }

  .nav-links {
    display: none;
  }

  .hero-actions,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-button {
    width: 100%;
  }
}
