:root {
  --primary: #023020;
  --primary-lt: #045a39;
  --primary-glow: rgba(2, 48, 32, 0.15);
  --green-soft: #16a34a;
  --bg: #f8faf8;
  --text: #111827;
  --text-muted: #6b7280;
  --radius-pill: 100px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font); background: var(--bg); color: var(--text); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { border: none; cursor: pointer; font-family: var(--font); background: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.text-gradient { background: linear-gradient(135deg, var(--primary) 0%, var(--green-soft) 60%, var(--primary-lt) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 13px 26px; border-radius: var(--radius-pill); font-size: 0.93rem; font-weight: 700; cursor: pointer; border: 2px solid transparent; white-space: nowrap; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 20px rgba(2, 48, 32, 0.25); }
.btn-outline { border-color: var(--primary); color: var(--primary); }
.skip-link { position: absolute; top: -100px; left: 16px; z-index: 10000; padding: 10px 16px; background: var(--primary); color: #fff; border-radius: 8px; font-weight: 600; }
.skip-link:focus { top: 12px; }
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(248, 250, 248, 0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(2, 48, 32, 0.08); }
.nav-container { max-width: 1280px; margin: 0 auto; padding: 0 20px; height: 70px; display: flex; align-items: center; gap: 12px; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 36px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; justify-content: center; flex: 1; min-width: 0; list-style: none; }
.nav-link { display: inline-block; padding: 8px 10px; font-size: 0.8125rem; font-weight: 600; color: var(--text-muted); border-radius: var(--radius-pill); white-space: nowrap; }
.nav-cta { margin-left: auto; flex-shrink: 0; padding: 10px 18px; font-size: 0.82rem; }
.menu-toggle, .nav-overlay { display: none; }
.hero { min-height: 100vh; padding: 100px 0 60px; background: radial-gradient(ellipse at 10% 50%, rgba(2, 48, 32, 0.06) 0%, transparent 60%), var(--bg); position: relative; overflow: hidden; display: flex; align-items: center; }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.hero .animate-in { opacity: 1; transform: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(2, 48, 32, 0.08); border: 1px solid rgba(2, 48, 32, 0.15); color: var(--primary); padding: 7px 16px; border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 700; margin-bottom: 24px; }
.badge-dot { width: 8px; height: 8px; background: var(--green-soft); border-radius: 50%; }
.hero-title { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.07; letter-spacing: -2px; color: var(--text); margin-bottom: 22px; }
.hero-subtitle { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; max-width: 480px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 28px; }
.hero-stats--launch .stat-pill { display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-size: 1.1rem; color: var(--green-soft); margin-bottom: 6px; }
.stat-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; margin-top: 4px; }
.stat-divider { width: 1px; height: 36px; background: rgba(2, 48, 32, 0.15); }
.hero-visual { display: flex; justify-content: center; }
.phone-wrap { position: relative; }
.phone-frame { background: #111; border-radius: 36px; padding: 12px; box-shadow: 0 24px 60px rgba(2, 48, 32, 0.2); }
.phone-screenshot { border-radius: 24px; width: 100%; height: auto; }
