:root {
  --green-900: #1b3d1f;
  --green-800: #2e5c32;
  --green-700: #388e3c;
  --green-600: #43a047;
  --green-100: #e8f5e9;
  --green-50: #f1f8f2;
  --text: #1a2e1c;
  --text-muted: #4a6350;
  --white: #ffffff;
  --shadow: 0 24px 48px rgba(27, 61, 31, 0.12);
  --radius: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(67, 160, 71, 0.18), transparent),
    linear-gradient(180deg, var(--green-50) 0%, #ffffff 45%, var(--green-50) 100%);
  line-height: 1.6;
}

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

.container {
  width: min(960px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 4rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.brand-mark img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(56, 142, 60, 0.25);
}

.brand-mark span {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--green-800);
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--green-900);
}

.lead {
  margin: 0 0 2rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 34ch;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.app-showcase {
  position: relative;
  width: min(280px, 70vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.app-showcase::before {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 160, 71, 0.2) 0%, transparent 70%);
}

.app-showcase img {
  position: relative;
  width: 72%;
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.apps-section {
  padding: 0 0 4rem;
}

.section-label {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
}

.apps-grid {
  display: grid;
  gap: 1.25rem;
}

.app-card {
  background: var(--white);
  border: 1px solid rgba(56, 142, 60, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(27, 61, 31, 0.06);
}

.app-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.app-card-header img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  flex-shrink: 0;
}

.app-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--green-900);
}

.app-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem 0.65rem 0.85rem;
  border-radius: 12px;
  background: var(--green-900);
  color: var(--white);
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.store-badge:hover {
  background: var(--green-800);
  transform: translateY(-1px);
}

.store-badge svg {
  flex-shrink: 0;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.store-badge-label {
  font-size: 0.65rem;
  opacity: 0.85;
}

.store-badge-name {
  font-size: 1rem;
  font-weight: 600;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.85rem;
  font-weight: 600;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(56, 142, 60, 0.1);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--green-700);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}
