:root {
  --green-dark: #062718;
  --green: #0f5132;
  --green-light: #146c43;
  --gold: #d4af37;
  --gold-light: #e9dcb8;
  --cream: #faf6ea;
  --ink: #1a1a1a;
  --red: #c0392b;
  --radius: 16px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--green-dark);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1.15rem;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--gold-light);
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  background: var(--gold);
  color: var(--green-dark) !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

.nav-toggle {
  display: none;
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.12), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(212, 175, 55, 0.1), transparent 45%),
    linear-gradient(160deg, var(--green-dark), var(--green) 70%);
  color: var(--cream);
  padding: 72px 0 96px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0 0 18px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p.lead {
  font-size: 1.1rem;
  color: var(--gold-light);
  opacity: 0.9;
  max-width: 46ch;
  margin: 0 0 28px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s, border-color 0.15s;
}

.store-btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.store-btn .store-icon {
  font-size: 1.3rem;
}

.store-btn .store-text small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.7;
  font-weight: 400;
}

.hero-disclaimer {
  font-size: 0.85rem;
  color: var(--gold-light);
  opacity: 0.75;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
  max-width: 46ch;
}

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

.hero-art .icon-frame {
  width: 260px;
  height: 260px;
  border-radius: 56px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  border: 3px solid rgba(212, 175, 55, 0.5);
}

.hero-art .icon-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section headings */
.section {
  padding: 84px 0;
}

.section-alt {
  background: #fff;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.eyebrow {
  display: block;
  color: var(--red);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: 2rem;
  margin: 0 0 12px;
  color: var(--green-dark);
}

.section-head p {
  color: #555;
  margin: 0;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--cream);
  border: 1px solid rgba(15, 81, 50, 0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(6, 39, 24, 0.1);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--green-dark);
}

.feature-card p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

/* Screenshots */
.screens-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.phone-frame {
  border-radius: 26px;
  overflow: hidden;
  border: 6px solid var(--ink);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* Trust / About */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.trust-item {
  display: flex;
  gap: 14px;
  background: rgba(15, 81, 50, 0.04);
  border: 1px solid rgba(15, 81, 50, 0.12);
  border-radius: 12px;
  padding: 18px 20px;
}

.trust-item .check {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.trust-item h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--green-dark);
}

.trust-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

/* Contact / developer */
.contact-card {
  background: linear-gradient(160deg, var(--green-dark), var(--green));
  color: var(--cream);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.contact-card h2 {
  margin: 0 0 8px;
  color: #fff;
}

.contact-card p {
  margin: 0;
  color: var(--gold-light);
  opacity: 0.9;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}

.contact-meta a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

.contact-meta span {
  font-size: 0.85rem;
  color: var(--gold-light);
  opacity: 0.75;
}

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: var(--gold-light);
  padding: 40px 0 30px;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  text-decoration: none;
  color: var(--gold-light);
  opacity: 0.85;
  font-size: 0.9rem;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-note {
  font-size: 0.8rem;
  opacity: 0.6;
  max-width: 640px;
}

.copyright {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Privacy policy page */
.policy-page {
  background: var(--cream);
}

.policy-hero {
  background: linear-gradient(160deg, var(--green-dark), var(--green));
  color: var(--cream);
  padding: 56px 0;
  text-align: center;
}

.policy-hero h1 {
  margin: 0 0 8px;
  color: #fff;
}

.policy-hero p {
  margin: 0;
  color: var(--gold-light);
  opacity: 0.85;
}

.policy-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px 90px;
}

.policy-body h2 {
  color: var(--green-dark);
  margin-top: 40px;
  font-size: 1.3rem;
}

.policy-body h2:first-child {
  margin-top: 0;
}

.policy-body p,
.policy-body li {
  color: #444;
  font-size: 0.98rem;
}

.policy-body ul {
  padding-left: 20px;
}

.updated-note {
  display: inline-block;
  background: rgba(15, 81, 50, 0.08);
  color: var(--green-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: -1;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screens-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .contact-meta {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .screens-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 60px 0;
  }
}
