/* ─── Google Font: Inter ──────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ─── Reset & Base ─────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --brand: #22c55e;
  --brand-dark: #16a34a;
  --brand-glow: rgba(34, 197, 94, 0.25);
  --bg: #0a0d0c;
  --bg-2: #0f1512;
  --bg-card: #131a17;
  --text: #f1f4f2;
  --text-muted: #8b968f;
  --text-faint: #4d5751;
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(34, 197, 94, 0.35);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --blue: #3b82f6;
  --orange: #f59e0b;
  --purple: #8b5cf6;
  --red: #f87171;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

em {
  font-style: italic;
  color: var(--text);
}

strong {
  font-weight: 600;
  color: var(--text);
}

/* ─── Header ───────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 13, 12, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 28px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.logo-word {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
}

.logo-word em {
  font-style: normal;
  color: var(--brand);
}

.nav-cta {
  background: var(--brand);
  color: #06170c;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

/* ─── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.15s, opacity 0.15s, box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: #06170c;
  box-shadow: 0 0 0 0 var(--brand-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--brand-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

/* ─── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 50% 30%, rgba(34, 197, 94, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 28px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.1);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  background: linear-gradient(160deg, #ffffff 0%, #d9f5e2 50%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 0 28px;
  line-height: 1.75;
}

.hero-image {
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin: 12px 0 32px;
  display: block;
}

.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.section-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 100px 28px;
}

/* ─── CTA Section ──────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--bg);
}

.cta-box {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(74, 222, 128, 0.08) 100%);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--radius-lg);
  padding: 4px;
}

.cta-inner {
  background: rgba(10, 13, 12, 0.6);
  border-radius: calc(var(--radius-lg) - 4px);
  padding: 80px 48px;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff, #a7f3c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-inner p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.store-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.store-badge img {
  width: 200px;
  height: auto;
  opacity: 0.45;
  filter: grayscale(1);
  pointer-events: none;
}

.store-badge-label {
  font-size: 0.78rem;
  color: var(--text-faint);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 28px;
}

.footer-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  color: var(--text-faint);
  font-size: 0.825rem;
  margin-left: auto;
}

/* ─── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  .cta-inner {
    padding: 52px 28px;
  }

  .footer-copy {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-pills {
    gap: 8px;
  }

  .section-container {
    padding: 72px 20px;
  }

  .store-badge img {
    width: 170px;
  }
}
