:root {
  --black: #0a0c0a;
  --deep: #0f1410;
  --green-dark: #1a2e1d;
  --green: #2d5a34;
  --green-accent: #4a9e55;
  --green-glow: #5fb86a;
  --warm: #c8954a;
  --cream: #e8dcc8;
  --muted: #8a958d;
  --text: #c5cdc6;
  --white: #f0ede8;
  --line: rgba(74, 158, 85, 0.13);
}

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

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 55% 34% at 50% 0%, rgba(45, 90, 52, 0.2), transparent 70%),
    linear-gradient(180deg, #0a0c0a 0%, #0d1510 42%, #0a0c0a 100%);
  color: var(--text);
  font-family: Jost, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(22px, -32px) scale(1.08);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.48;
    transform: scale(0.78);
  }
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 2.5rem;
  background: rgba(10, 12, 10, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(74, 158, 85, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(74, 158, 85, 0.3);
  box-shadow: 0 0 12px rgba(74, 158, 85, 0.2);
}

.nav-wordmark,
.footer-wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--white);
  letter-spacing: 0.12em;
}

.nav-wordmark {
  font-size: 1.35rem;
}

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-glow);
}

.nav-cta {
  border: 1px solid rgba(74, 158, 85, 0.45);
  color: var(--green-glow) !important;
  padding: 0.45rem 1.05rem;
  border-radius: 999px;
}

.nav-cta:hover {
  background: rgba(74, 158, 85, 0.12);
}

.container {
  width: min(1100px, calc(100% - 3rem));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 80%, rgba(45, 90, 52, 0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 30% 20%, rgba(200, 149, 74, 0.08) 0%, transparent 60%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: drift 12s ease-in-out infinite alternate;
}

.orb-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(45, 90, 52, 0.18) 0%, transparent 70%);
  bottom: -80px;
  left: -60px;
}

.orb-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(200, 149, 74, 0.09) 0%, transparent 70%);
  top: 20%;
  right: 5%;
  animation-delay: -4s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(74, 158, 85, 0.12) 0%, transparent 70%);
  top: 10%;
  left: 15%;
  animation-delay: -8s;
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.eyebrow {
  color: var(--green-accent);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}

h1,
.section-title,
.page-title,
.card-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--white);
  font-weight: 300;
  line-height: 1.12;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  margin-bottom: 1.4rem;
}

h1 em,
.section-title em {
  color: var(--cream);
  font-style: italic;
}

.hero-sub {
  max-width: 580px;
  margin: 0 auto 2.4rem;
  color: var(--muted);
  font-size: 1.03rem;
}

.actions,
.store-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-decoration: none;
  transition: transform 0.25s, border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.btn-primary,
.btn-secondary {
  min-height: 48px;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border: 1px solid rgba(95, 184, 106, 0.32);
  box-shadow: 0 4px 24px rgba(45, 90, 52, 0.4);
}

.btn-primary:hover {
  background: #3a7043;
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(138, 149, 141, 0.35);
}

.btn-secondary:hover {
  border-color: rgba(138, 149, 141, 0.6);
}

.store-btn {
  min-width: 170px;
  padding: 0.78rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.store-btn:hover {
  border-color: rgba(74, 158, 85, 0.35);
  background: rgba(45, 90, 52, 0.2);
  transform: translateY(-2px);
}

.store-btn svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.store-btn .small {
  display: block;
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.store-btn .big {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.25;
}

.status-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.25rem;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green-accent);
  box-shadow: 0 0 9px var(--green-accent);
  animation: pulse 2s ease-in-out infinite;
}

.phones {
  position: relative;
  padding: 3rem 0 6.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.phone-wrap {
  position: relative;
  z-index: 1;
}

.phone-wrap:nth-child(1) {
  animation: float 6s ease-in-out infinite;
  margin-bottom: 20px;
}

.phone-wrap:nth-child(2) {
  animation: float 6s -2s ease-in-out infinite;
  z-index: 2;
}

.phone-wrap:nth-child(3) {
  animation: float 6s -4s ease-in-out infinite;
  margin-bottom: 20px;
}

.phone-frame {
  width: 195px;
  border-radius: 30px;
  border: 1.5px solid rgba(74, 158, 85, 0.2);
  overflow: hidden;
  background: #070907;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  line-height: 0;
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.phone-frame.is-dim {
  opacity: 0.74;
  filter: brightness(0.84);
}

.phones-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 600px;
  height: 180px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(45, 90, 52, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.section {
  padding: 6.5rem 0;
}

.section.compact {
  padding: 4rem 0;
}

.section-head {
  max-width: 670px;
  margin-bottom: 3rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  max-width: 640px;
  font-size: 0.98rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.card {
  background: rgba(15, 20, 16, 0.9);
  padding: 2rem;
  transition: background 0.3s, transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  background: rgba(26, 46, 29, 0.62);
  transform: translateY(-2px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 1.35rem;
  border: 1px solid rgba(74, 158, 85, 0.22);
  border-radius: 10px;
  background: rgba(45, 90, 52, 0.25);
  font-size: 1.2rem;
}

.card-kicker {
  color: var(--green-glow);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.card p,
.card li,
.content-body p,
.content-body li,
.faq-answer {
  color: var(--muted);
  font-size: 0.92rem;
}

.card ul,
.content-body ul {
  padding-left: 1.2rem;
}

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

.verse-card {
  position: relative;
  border: 1px solid rgba(74, 158, 85, 0.16);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(26, 46, 29, 0.45), rgba(15, 20, 16, 0.72));
  padding: 2.6rem;
  overflow: hidden;
}

.verse-card::before {
  content: "\201C";
  position: absolute;
  top: -0.45rem;
  left: 1.35rem;
  color: rgba(74, 158, 85, 0.08);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.verse-text {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.verse-ref {
  color: var(--green-accent);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.chip {
  border: 1px solid rgba(74, 158, 85, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  padding: 0.45rem 0.85rem;
  font-size: 0.78rem;
}

.page {
  padding: 9rem 0 6rem;
}

.page-narrow {
  max-width: 780px;
}

.page-title {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  margin-bottom: 1rem;
}

.page-intro {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 3rem;
  max-width: 720px;
}

.content-body h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 400;
  margin: 2.5rem 0 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(74, 158, 85, 0.09);
}

.content-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.content-body p,
.content-body li {
  margin-bottom: 0.8rem;
  line-height: 1.9;
}

.content-body a {
  color: var(--green-glow);
  text-underline-offset: 3px;
}

.faq-item {
  border-top: 1px solid rgba(74, 158, 85, 0.12);
  padding: 1.35rem 0;
}

.faq-question {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.45rem;
}

.cta-band {
  padding: 6rem 0;
  text-align: center;
  border-top: 1px solid rgba(74, 158, 85, 0.08);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 3rem 2.5rem;
  border-top: 1px solid rgba(74, 158, 85, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-logo img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.footer-wordmark {
  color: var(--muted);
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
}

.footer-links a {
  color: rgba(138, 149, 141, 0.72);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--green-accent);
}

.footer-copy {
  color: rgba(138, 149, 141, 0.52);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .nav-links {
    gap: 0.9rem;
  }

  .grid,
  .split {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    width: 160px;
  }
}

@media (max-width: 760px) {
  .site-nav {
    position: absolute;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 1rem 1.25rem;
  }

  .nav-links {
    display: flex;
    width: 100%;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .container {
    width: min(100% - 2rem, 1100px);
  }

  .hero {
    min-height: auto;
    padding-top: 7.5rem;
  }

  .actions,
  .store-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .store-btn {
    width: 100%;
  }

  .section,
  .cta-band {
    padding: 4.5rem 0;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.25rem;
  }
}
