:root {
  --green: #466245;
  --green-dark: #20321e;
  --green-light: #5c7c5a;
  --bg-dark: #1c1f23;
  --card-dark: #2b2f35;
  --text-light: #ffffff;
  --text-muted: #c7cfc6;
  --gold: #efbf04;
  --blue: #0593e5;
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1160px;
  --ff-heading: "Baloo 2", "SF Rounded", ui-rounded, system-ui, sans-serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.15;
}

section { position: relative; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 24px rgba(70, 98, 69, .45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(70, 98, 69, .55); }
.btn-ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }

.appstore-badge {
  display: inline-flex;
  align-items: center;
  transition: transform .18s ease, opacity .18s ease;
}
.appstore-badge:hover { transform: translateY(-2px); opacity: .85; }
.appstore-badge img { height: 48px; width: auto; display: block; }

.badge-soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.55);
  padding: 10px 20px 10px 16px;
  border-radius: 12px;
  border: 1px dashed rgba(255,255,255,.22);
}
.badge-soon svg { width: 24px; height: 24px; opacity: .6; }
.badge-soon .badge-text { display: flex; flex-direction: column; line-height: 1.1; }
.badge-soon .badge-text small { font-size: 11px; }
.badge-soon .badge-text strong { font-size: 15px; font-weight: 600; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled {
  background: rgba(28, 31, 35, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--ff-heading); font-size: 20px; font-weight: 700; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-links { display: flex; align-items: center; gap: 32px; font-weight: 500; font-size: 15px; color: var(--text-muted); }
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; z-index: 110; }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(20, 23, 20, .97);
  backdrop-filter: blur(10px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--ff-heading); font-size: 24px; font-weight: 600; }

/* Hero */
.hero {
  padding: 168px 0 100px;
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(70,98,69,.55), transparent 60%),
    linear-gradient(180deg, #1c1f23 0%, #1c1f23 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 48px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(70,98,69,.25);
  border: 1px solid rgba(70,98,69,.6);
  color: #a9c2a6;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(34px, 4.2vw, 54px);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--green-light); }
.hero p.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta { display: flex; gap: 22px; flex-wrap: wrap; color: var(--text-muted); font-size: 14px; }
.hero-meta div { display: flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 18px; height: 18px; color: var(--green-light); }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual img {
  max-width: 270px;
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 70px -18px rgba(0,0,0,.6);
  position: relative;
}
.hero-visual .hero-img-left { z-index: 1; }
.hero-visual .hero-img-right { z-index: 2; margin-left: 30px; }

/* Section headings */
.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section-head .kicker {
  display: inline-block;
  color: var(--green-light);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 17px; }

/* Feature rows (zig-zag) */
.feature-row {
  padding: 90px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.feature-row .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.feature-row.reverse .container { direction: rtl; }
.feature-row.reverse .container > * { direction: ltr; }
.feature-copy .icon-badge {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 10px 24px rgba(70,98,69,.4);
}
.feature-copy .icon-badge svg { width: 26px; height: 26px; color: #fff; }
.feature-copy h3 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 16px; }
.feature-copy p { color: var(--text-muted); font-size: 16.5px; margin-bottom: 22px; max-width: 460px; }
.feature-copy ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-copy ul li { display: flex; align-items: flex-start; gap: 10px; color: #dfe6dd; font-size: 15px; }
.feature-copy ul li svg { width: 20px; height: 20px; color: var(--green-light); flex-shrink: 0; margin-top: 1px; }

.feature-visual { display: flex; justify-content: center; }
.feature-visual img {
  max-width: 340px;
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 30px 70px -18px rgba(0,0,0,.55);
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Why grid */
.why {
  padding: 100px 0;
  background: var(--green-dark);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.why-card .icon-badge {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-card .icon-badge svg { width: 24px; height: 24px; color: var(--gold); }
.why-card h4 { font-size: 18px; margin-bottom: 8px; }
.why-card p { color: var(--text-muted); font-size: 14.5px; }

/* Platforms */
.platforms {
  padding: 100px 0;
  text-align: center;
}
.platform-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.platform-card {
  background: var(--card-dark);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  width: 280px;
}
.platform-card .icon-badge {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.platform-card .icon-badge svg { width: 30px; height: 30px; }
.platform-card h4 { margin-bottom: 8px; font-size: 19px; }
.platform-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.platform-card.available .icon-badge svg { color: var(--green-light); }
.platform-card.soon { opacity: .75; }
.platform-card.soon .icon-badge svg { color: var(--text-muted); }

/* CTA banner */
.cta-banner {
  margin: 40px auto 100px;
  max-width: var(--container);
  padding: 0 24px;
}
.cta-banner-inner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 36px;
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 15% 0%, rgba(255,255,255,.12), transparent 60%);
}
.cta-banner-inner > * { position: relative; }
.cta-banner img.icon { width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 22px; }
.cta-banner h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 17px; margin-bottom: 32px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* Footer */
.site-footer {
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-brand { max-width: 320px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--text-muted); font-size: 14.5px; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 16px; }
.footer-col a { display: block; color: #d7ddd5; font-size: 14.5px; margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.45);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-meta { justify-content: center; }
  .hero-visual { margin-top: 20px; gap: 14px; padding: 0 16px; }
  .hero-visual img { max-width: 190px; }
  .hero-visual .hero-img-right { margin-left: 0; }
  .feature-row .container, .feature-row.reverse .container {
    grid-template-columns: 1fr;
    direction: ltr;
    text-align: center;
    gap: 40px;
  }
  .feature-copy ul { align-items: center; }
  .feature-copy ul li { text-align: left; }
  .feature-copy p { margin-left: auto; margin-right: auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { padding: 52px 24px; }
  .platform-card { width: 100%; }
  .hero-visual { gap: 10px; padding: 0 24px; }
  .hero-visual img { max-width: 150px; }
}
