:root {
  --stone-950: #1c1917;
  --stone-900: #292524;
  --stone-800: #44403c;
  --stone-600: #57534e;
  --stone-500: #78716c;
  --stone-300: #d6d3d1;
  --stone-100: #f5f5f4;
  --amber-900: #78350f;
  --amber-700: #b45309;
  --amber-200: #fde68a;
  --amber-100: #fef3c7;
  --cream: #fffaf2;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(41, 37, 36, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--stone-900);
  background: var(--cream);
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 242, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(214, 211, 209, 0.65);
}
.header-content {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; }
.brand-icon { width: 36px; height: 36px; border-radius: 14px; background: var(--stone-950); color: var(--amber-200); display: grid; place-items: center; }
.nav { display: flex; gap: 28px; font-size: 14px; color: var(--stone-600); font-weight: 600; }
.nav a:hover { color: var(--stone-950); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-dark { background: var(--stone-950); color: var(--white); box-shadow: 0 16px 34px rgba(28,25,23,.18); }
.btn-light { background: var(--white); color: var(--stone-900); border-color: var(--stone-300); }
.btn-gold { background: var(--amber-200); color: var(--stone-950); }
.btn-small { min-height: 42px; border-radius: 14px; padding: 0 18px; font-size: 14px; }

.hero {
  padding-top: 76px;
  background:
    radial-gradient(circle at 20% 0%, rgba(253, 230, 138, .8), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(251, 191, 36, .35), transparent 30%);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.eyebrow { color: var(--amber-700); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 14px; }
.eyebrow.light { color: var(--amber-200); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 6vw, 72px); line-height: .96; letter-spacing: -0.055em; margin-bottom: 24px; }
h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 18px; }
h3 { font-size: 20px; margin-bottom: 8px; }
.hero-text, .section-text { color: var(--stone-600); font-size: 19px; line-height: 1.7; max-width: 650px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.trust-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; color: var(--stone-500); font-size: 14px; font-weight: 600; }

.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: 310px;
  min-height: 632px;
  background: #fffaf2;
  border: 12px solid var(--stone-950);
  border-radius: 46px;
  box-shadow: var(--shadow);
  padding: 30px 18px 18px;
  position: relative;
  overflow: hidden;
}
.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 110px; height: 22px; background: var(--stone-950); border-radius: 0 0 18px 18px; }
.app-top { display: flex; justify-content: space-between; align-items: center; font-weight: 800; margin: 14px 0 16px; }
.bell { width: 34px; height: 34px; border-radius: 14px; background: var(--amber-100); display: grid; place-items: center; color: var(--amber-900); }
.notification-card { background: var(--stone-950); color: var(--white); border-radius: 24px; padding: 16px; margin-bottom: 14px; }
.notification-card p { margin: 4px 0 0; color: var(--stone-300); font-size: 12px; }
.verse-card { background: linear-gradient(135deg, var(--white), #fffbeb); border-radius: 28px; padding: 20px; box-shadow: 0 14px 36px rgba(28,25,23,.1); }
.tag { display: inline-flex; background: var(--amber-100); color: var(--amber-900); border-radius: 999px; padding: 6px 10px; font-size: 12px; font-weight: 700; margin-bottom: 18px; }
.verse { font-size: 22px; line-height: 1.28; font-weight: 800; letter-spacing: -0.02em; }
.reference { color: var(--stone-500); font-weight: 700; }
.card-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; }
.card-actions span { height: 42px; border-radius: 16px; background: var(--white); display: grid; place-items: center; font-weight: 800; }
.app-button { width: 100%; height: 50px; margin-top: 14px; border-radius: 18px; border: 1px solid var(--stone-300); background: var(--white); font-weight: 800; color: var(--stone-900); }
.mission-card { background: var(--white); border-radius: 22px; padding: 16px; margin-top: 14px; box-shadow: 0 10px 26px rgba(28,25,23,.08); }
.mission-card p { color: var(--stone-500); font-size: 13px; margin-bottom: 0; line-height: 1.45; }

.soft-bg { background: #fdf6e8; }
.section-heading { max-width: 680px; margin-bottom: 34px; }
.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-card { background: var(--white); border-radius: 28px; padding: 28px; box-shadow: 0 12px 36px rgba(28,25,23,.08); }
.info-card p, .feature-item p, .support-card p, .contact-box p { color: var(--stone-600); line-height: 1.65; margin-bottom: 0; }
.info-icon { width: 44px; height: 44px; border-radius: 16px; background: var(--stone-950); color: var(--amber-200); display: grid; place-items: center; font-weight: 800; margin-bottom: 20px; }

.split-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 60px; align-items: start; }
.feature-list { display: grid; gap: 16px; }
.feature-item { display: flex; gap: 18px; background: var(--white); border-radius: 26px; padding: 22px; box-shadow: 0 10px 30px rgba(28,25,23,.07); }
.feature-item span { width: 42px; height: 42px; border-radius: 16px; background: var(--amber-100); color: var(--amber-900); display: grid; place-items: center; flex: none; font-weight: 900; }

.dark-section { background: var(--stone-950); color: var(--white); }
.dark-section p { color: var(--stone-300); line-height: 1.75; }
.support-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 48px; align-items: center; }
.support-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 30px; padding: 30px; }
.support-card .btn { margin-top: 24px; width: 100%; }

.contact-section { padding: 70px 0; }
.contact-box { background: var(--white); border-radius: 34px; padding: 38px; display: flex; justify-content: space-between; gap: 24px; align-items: center; box-shadow: var(--shadow); }
.footer { padding: 28px 0; border-top: 1px solid var(--stone-300); }
.footer-content { display: flex; justify-content: space-between; gap: 20px; color: var(--stone-500); font-size: 14px; }
.footer-content p { margin: 0; }
.footer-content div { display: flex; gap: 18px; font-weight: 700; }

.legal-page { padding: 90px 0; }
.legal-card { background: var(--white); border-radius: 28px; padding: 38px; box-shadow: 0 14px 44px rgba(28,25,23,.08); max-width: 860px; }
.legal-card p, .legal-card li { color: var(--stone-600); line-height: 1.75; }
.legal-card h1 { font-size: 44px; }
.legal-card h2 { font-size: 28px; margin-top: 34px; }

@media (max-width: 900px) {
  .nav { display: none; }
  .hero-grid, .split-grid, .support-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .cards.three { grid-template-columns: 1fr; }
  .contact-box { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  .section { padding: 64px 0; }
  .header-content { height: 68px; }
  .header-content .btn { display: none; }
  h1 { font-size: 43px; }
  h2 { font-size: 32px; }
  .phone { width: 292px; }
  .footer-content { flex-direction: column; align-items: center; text-align: center; }
}
