:root {
  color-scheme: light;
  --background: #fff7ed;
  --surface: #ffffff;
  --text: #2d2d2d;
  --muted: #646b75;
  --green: #4f7d4d;
  --green-dark: #355f34;
  --green-soft: #eef7ea;
  --orange: #e6953b;
  --border: #eadfD2;
  --shadow: 0 12px 30px rgba(80, 52, 24, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
}

body {
  min-width: 0;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(230, 149, 59, 0.12), transparent 28rem),
    var(--background);
  line-height: 1.55;
}

a {
  color: var(--green-dark);
}

a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.landing-shell {
  width: min(100% - 32px, 1040px);
  margin: 0 auto;
  padding: 32px 0 24px;
}

.hero {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: 24px 20px 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(234, 223, 210, 0.9);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero__logo {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 8px 22px rgba(80, 52, 24, 0.16);
}

.hero__content {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 8vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.positioning {
  margin: 18px 0 0;
  font-size: clamp(1.12rem, 3.8vw, 1.4rem);
  line-height: 1.45;
}

.positioning strong {
  color: var(--green-dark);
}

.supporting-copy {
  max-width: 580px;
  margin: 14px auto 0;
  color: var(--muted);
}

.platform-actions {
  display: grid;
  gap: 10px;
  max-width: 390px;
  margin: 24px auto 0;
}

.play-link,
.ios-status {
  min-height: 56px;
  border-radius: 14px;
}

.play-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  background: var(--green);
  box-shadow: 0 8px 18px rgba(53, 95, 52, 0.2);
}

.play-link:hover {
  background: var(--green-dark);
}

.play-link__icon {
  font-size: 0.85rem;
}

.ios-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  color: var(--muted);
  background: #f8f5ef;
  border: 1px solid var(--border);
}

.ios-status strong {
  color: var(--text);
  font-size: 0.88rem;
}

.benefits {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.benefit-card {
  position: relative;
  padding: 20px 20px 20px 58px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 5px 16px rgba(80, 52, 24, 0.04);
}

.benefit-card__number {
  position: absolute;
  top: 20px;
  left: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 700;
  place-items: center;
  background: var(--green-soft);
  border-radius: 50%;
}

.benefit-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.benefit-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  width: min(100% - 32px, 1040px);
  margin: 0 auto;
  padding: 16px 0 28px;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-footer p {
  margin: 8px 0 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 760px) {
  .landing-shell {
    padding-top: 56px;
  }

  .hero {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 38px;
    padding: 42px 48px;
    text-align: left;
  }

  .hero__logo {
    width: 180px;
    height: 180px;
    border-radius: 36px;
  }

  .supporting-copy,
  .platform-actions {
    margin-left: 0;
  }

  .platform-actions {
    grid-template-columns: minmax(250px, 1fr) 150px;
    max-width: 470px;
  }

  .benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefit-card {
    padding: 58px 20px 22px;
  }

  .benefit-card__number {
    top: 20px;
    left: 20px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .play-link {
    transition: background-color 0.15s ease, transform 0.15s ease;
  }

  .play-link:hover {
    transform: translateY(-1px);
  }
}
