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

:root {
  --green: #21c678;
  --green-dark: #0b8a54;
  --ink: #0b1819;
  --surface: #f6f8f6;
  --muted: #dfe9e4;
  --text: #172221;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #ffffff;
}

.app-nav {
  background: rgba(9, 20, 21, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar-brand, .app-nav .nav-link { color: #f7fffb; }
.app-nav .nav-link:hover, .navbar-brand:hover { color: var(--green); }
.navbar-toggler { border-color: rgba(255,255,255,0.35); }
.navbar-toggler-icon { filter: invert(1); }
.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
}

.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) saturate(0.95);
  transform: scale(1.04);
  opacity: 0.5;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,20,21,0.95), rgba(9,20,21,0.72) 48%, rgba(9,20,21,0.38));
}
.hero-content { position: relative; padding-top: 86px; }
.hero-copy { max-width: 650px; color: #fff; }
.hero-copy .brand-icon {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  margin-bottom: 28px;
}
h1 {
  font-size: 4.4rem;
  line-height: 1.02;
  font-weight: 800;
  margin: 0 0 20px;
}
.hero p {
  max-width: 560px;
  color: #dbeae4;
  font-size: 1.25rem;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn-primary {
  --bs-btn-bg: var(--green);
  --bs-btn-border-color: var(--green);
  --bs-btn-hover-bg: var(--green-dark);
  --bs-btn-hover-border-color: var(--green-dark);
  color: #062014;
  font-weight: 700;
}

.section { padding: 92px 0; }
.muted { background: var(--surface); }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.eyebrow {
  color: var(--green-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 12px;
}
h2 {
  font-size: 2.55rem;
  line-height: 1.15;
  font-weight: 800;
  margin: 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-grid article {
  border: 1px solid var(--muted);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  min-height: 220px;
}
.feature-grid span {
  color: var(--green-dark);
  font-weight: 800;
}
h3 {
  font-size: 1.2rem;
  margin: 16px 0 10px;
  font-weight: 800;
}
.feature-grid p {
  line-height: 1.65;
  color: #4b5a57;
  margin: 0;
}
.screenshot-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 16px;
  align-items: start;
}
.screen {
  margin: 0;
  background: #0d1b1d;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 18px 44px rgba(7, 18, 19, 0.14);
}
.screen img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 18;
  object-fit: cover;
  border-radius: 6px;
}
.footer {
  background: var(--ink);
  color: #dbeae4;
  padding: 28px 0;
}
.footer a { color: var(--green); text-decoration: none; }

.policy-body { background: var(--surface); }
.policy-nav { position: sticky; top: 0; z-index: 10; }
.policy-page { padding: 54px 0 88px; }
.policy-content {
  background: #fff;
  border: 1px solid var(--muted);
  border-radius: 8px;
  padding: 48px;
  max-width: 980px;
  margin: 0 auto;
}
.policy-content h1 {
  color: var(--ink);
  font-size: 2.7rem;
}
.policy-content h2 {
  font-size: 1.45rem;
  margin-top: 34px;
}
.policy-content h3 {
  font-size: 1.08rem;
  margin-top: 24px;
}
.policy-content p {
  line-height: 1.75;
  color: #394844;
}

@media (max-width: 991px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2rem; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .screenshot-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .hero { min-height: 86vh; }
  h1 { font-size: 2.35rem; }
  .hero p { font-size: 1.05rem; }
  .section { padding: 64px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .screenshot-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .policy-content { padding: 28px 20px; }
}
