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

:root {
  --green-dark:   #1d5c43;
  --green:        #2e7d5b;
  --green-mid:    #3d9e74;
  --green-light:  #a8e6cf;
  --green-pale:   #e1f5ee;
  --cream:        #faf8f4;
  --cream-dark:   #f0ece3;
  --ink:          #1a1a18;
  --ink-mid:      #3d3d38;
  --ink-light:    #7a7a72;
  --border:       rgba(30,30,25,0.1);
  --border-dark:  rgba(30,30,25,0.18);
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.09);
  --transition:   0.2s ease;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  letter-spacing: -0.5px;
}
.logo span { color: var(--green); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-mid);
  padding: 6px 14px;
  border-radius: 30px;
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--ink);
  padding: 4px 8px;
}

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--green-dark);
  overflow: hidden;
  padding: 6rem 1.5rem 5rem;
  text-align: center;
}

.hero-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.1s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.25s;
}
.hero-title em {
  font-style: italic;
  color: var(--green-light);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.4s;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.55s;
}
.pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  padding: 5px 16px;
  border-radius: 30px;
}

/* decorative leaves */
.hero-decoration { position: absolute; inset: 0; pointer-events: none; }
.hero-leaf {
  position: absolute;
  border-radius: 50%;
  background: rgba(168,230,207,0.08);
}
.hero-leaf--1 { width: 420px; height: 420px; top: -180px; right: -120px; }
.hero-leaf--2 { width: 300px; height: 300px; bottom: -120px; left: -80px; }
.hero-leaf--3 { width: 160px; height: 160px; top: 30%; left: 10%; background: rgba(168,230,207,0.05); }

/* ── SECTION COMMON ── */
.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.section-header { margin-bottom: 2.5rem; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  color: var(--ink);
}

/* ── APPS SECTION ── */
.apps-section { padding: 5rem 0 4rem; }

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.app-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.app-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-dark);
}
.app-card--featured {
  border-color: var(--green-mid);
  background: linear-gradient(145deg, #fff 60%, var(--green-pale));
}

.app-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-pale);
  border: 1px solid rgba(46,125,91,0.2);
  padding: 3px 10px;
  border-radius: 30px;
}

.app-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-card__body { flex: 1; }
.app-card__body h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.app-card__body p {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.55;
}

.app-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
}
.app-price {
  font-size: 13px;
  font-weight: 500;
  color: var(--green-dark);
  background: var(--green-pale);
  padding: 3px 10px;
  border-radius: 6px;
}
.app-platform {
  font-size: 12px;
  color: var(--ink-light);
}

.app-card__link {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
}

/* ── FEATURES STRIP ── */
.features-strip {
  background: var(--green-dark);
  padding: 4rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
}

.feature { color: rgba(255,255,255,0.85); }
.feature__icon {
  font-size: 16px;
  color: var(--green-light);
  margin-bottom: 0.75rem;
}
.feature h4 {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
}
.feature p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 5rem 0;
  background: var(--cream-dark);
}
.testimonials-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 2.5rem;
  color: var(--ink);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.testimonial p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-mid);
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial cite {
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  color: var(--green);
}

/* ── ABOUT ── */
.about-section {
  padding: 5rem 0;
  background: var(--cream);
}

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

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.about-text p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-links {
  display: flex;
  gap: 12px;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 30px;
  transition: all var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn--primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-dark);
}
.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.stat__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--green);
  line-height: 1;
  min-width: 70px;
}
.stat__label {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.4;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.footer-brand .logo { color: #fff; font-size: 22px; }
.footer-brand p {
  font-size: 13px;
  margin-top: 0.5rem;
  color: rgba(255,255,255,0.5);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-nav a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ── APP DETAIL PAGES ── */
.page-hero {
  background: var(--green-dark);
  color: #fff;
  padding: 4rem 0 3rem;
}
.page-hero__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.page-hero__icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.page-hero__text h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.4rem;
}
.page-hero__text .tagline {
  font-size: 16px;
  opacity: 0.75;
  font-weight: 300;
}
.page-hero__meta {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.meta-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 30px;
  color: rgba(255,255,255,0.9);
}

.page-content { padding: 4rem 0; }
.page-content p { font-size: 16px; color: var(--ink-mid); line-height: 1.75; margin-bottom: 1.25rem; }
.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--ink);
  margin: 2.5rem 0 1rem;
}

.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  margin: 1.5rem 0;
}
.features-list li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  font-size: 14px;
  color: var(--ink-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.features-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 1px;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 30px;
  transition: background var(--transition);
  margin-top: 2rem;
}
.app-store-btn:hover { background: var(--green-dark); }

.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 6px; }

/* ── PRIVACY PAGE ── */
.privacy-page { padding: 5rem 0; }
.privacy-page h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.privacy-page h2 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 2rem 0 0.75rem;
  color: var(--ink);
}
.privacy-page p, .privacy-page li {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.privacy-page ul { padding-left: 1.25rem; }
.privacy-page li { margin-bottom: 0.4rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
    gap: 0.25rem;
    z-index: 99;
  }
  .nav-toggle { display: block; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .stat { flex: 1; min-width: 140px; }

  .hero { padding: 4rem 1.5rem 3.5rem; }

  .page-hero__inner { flex-direction: column; align-items: flex-start; }
}
