:root {
  --green: #2D6A4F;
  --green-light: #40916C;
  --green-muted: #D8EFE6;
  --green-dark: #1B4332;
  --terracotta: #C9614A;
  --bg: #FAF7F4;
  --surface: #FFFFFF;
  --text: #1C1C1E;
  --text-secondary: #6B7280;
  --border: #E8E3DC;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Live Banner ── */
.live-banner {
  background: var(--green-dark);
  padding: 10px 24px;
  text-align: center;
}

.live-banner-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #52B788;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.live-banner-inner a {
  color: white;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.15s;
}

.live-banner-inner a:hover { border-color: white; }

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,244,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-size: 19px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.3px;
}

.nav-logo-dot {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-dot svg { width: 22px; height: 16px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s;
}

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

.nav-cta {
  background: var(--green) !important;
  color: white !important;
  padding: 9px 20px;
  border-radius: 10px;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: background 0.15s !important;
}

.nav-cta:hover { background: var(--green-light) !important; color: white !important; }

/* ── Hero ── */
.hero {
  background: var(--green);
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}

.hero-bg-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-bg-shape circle,
.hero-bg-shape ellipse,
.hero-bg-shape path {
  fill: rgba(255,255,255,0.05);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: 800;
  color: white;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-text h1 em {
  font-style: normal;
  color: rgba(255,255,255,0.58);
}

.hero-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: white;
  color: var(--green);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: border-color 0.15s, background 0.15s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.08);
}

/* ── Phone Mockup ── */
.hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 256px;
  background: #FAF7F4;
  border-radius: 42px;
  border: 2.5px solid rgba(255,255,255,0.6);
  box-shadow: 0 0 0 8px rgba(255,255,255,0.15), 0 40px 80px rgba(0,0,0,0.55);
  overflow: hidden;
  position: relative;
  padding-top: 14px;
}

.phone-notch {
  width: 90px;
  height: 24px;
  background: #1C1C1E;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 12px;
}

.phone-screen-inner {
  padding: 0 16px;
  background: #FAF7F4;
  min-height: 360px;
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0 14px;
}

.mock-title {
  font-size: 20px;
  font-weight: 800;
  color: #1C1C1E;
  letter-spacing: -0.5px;
}

.mock-header-icons {
  display: flex;
  gap: 8px;
}

.mock-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
}

.mock-section-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #2D6A4F;
  margin-bottom: 8px;
}

.mock-card {
  background: white;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 6px;
}

.mock-card-primary {}

.mock-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mock-avatar-dark { background: #2D6A4F; }
.mock-avatar-light { background: rgba(45,106,79,0.18); }

.mock-card-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.mock-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(0,0,0,0.18);
  width: 75%;
}

.mock-line-name { background: rgba(0,0,0,0.28); width: 65%; height: 9px; }
.mock-line-sub { width: 50%; background: rgba(0,0,0,0.12); }

.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 2px;
}

.mock-member-card {
  background: white;
  border-radius: 14px;
  padding: 14px 10px 12px;
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}

.phone-tab-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 14px 8px 18px;
  background: white;
  border-top: 1px solid rgba(0,0,0,0.07);
  margin-top: 8px;
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 10px;
}

.tab-active svg { stroke: #2D6A4F !important; }

/* ── Trust strip ── */
.trust-strip {
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  background: var(--surface);
  overflow: hidden;
}

.trust-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.trust-item svg { color: var(--green); flex-shrink: 0; width: 18px; height: 18px; stroke: var(--green); }

.trust-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Section ── */
section { padding: 88px 24px; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-muted);
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
}

/* ── Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.feature-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.07);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--green-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon.terracotta { background: #FAE8E5; }

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Callout section ── */
.callout-section {
  background: var(--bg);
  padding: 0 24px 88px;
}

.callout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.callout-card {
  border-radius: 24px;
  padding: 36px 32px;
}

.callout-card-green {
  background: var(--green);
  color: white;
}

.callout-card-light {
  background: var(--surface);
  border: 1px solid var(--border);
}

.callout-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.callout-icon-green {
  background: var(--green-muted);
}

.callout-card-green h3 {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.callout-card-green p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.callout-card-light h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.callout-card-light p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Security ── */
.security-band {
  background: var(--green);
  padding: 80px 24px;
}

.security-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.security-inner .section-title { color: white; }
.security-inner .section-subtitle { color: rgba(255,255,255,0.68); }
.security-inner .section-label { background: rgba(255,255,255,0.14); color: rgba(255,255,255,0.9); }

.security-badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.security-badge {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background 0.15s;
}

.security-badge:hover { background: rgba(255,255,255,0.13); }

.security-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-badge h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 3px;
}

.security-badge p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ── CTA ── */
.cta-section {
  text-align: center;
  padding: 88px 24px 100px;
  position: relative;
}

.cta-bird {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  pointer-events: none;
}

.cta-section .section-title {
  margin: 0 auto 14px;
  max-width: 520px;
}

.cta-section .section-subtitle {
  margin: 0 auto;
  text-align: center;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: white;
  padding: 16px 36px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 6px 24px rgba(45,106,79,0.32);
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(45,106,79,0.38);
}

.cta-sub {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ── Footer ── */
footer {
  background: #161618;
  color: rgba(255,255,255,0.45);
  padding: 44px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.footer-logo-bird {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-bird svg { width: 16px; height: 15px; }

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  padding-left: 2px;
}

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

.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}

.footer-links a:hover { color: white; }

.footer-copy { font-size: 13px; }

/* ── Legal pages ── */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.legal-page h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text);
  margin-bottom: 8px;
}

.legal-page .updated {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.legal-page h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 12px;
}

.legal-page p, .legal-page li {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-page ul { padding-left: 24px; margin-bottom: 12px; }
.legal-page a { color: var(--green); }

/* ── Help page ── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--surface);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

.faq-arrow {
  font-size: 18px;
  color: var(--text-secondary);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer.open { max-height: 400px; }

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 800px) {
  .hero-inner,
  .security-inner,
  .callout-grid { grid-template-columns: 1fr; }

  .hero-graphic { display: none; }
  .nav-links { display: none; }

  .trust-strip-inner { gap: 16px; }
  .trust-divider { display: none; }
}

@media (max-width: 480px) {
  .callout-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}
