:root {
  --ink: #17231f;
  --muted: #65726b;
  --paper: #f8f5ef;
  --surface: #fffdf8;
  --line: #dfd6c9;
  --green: #4f6b5d;
  --green-dark: #253f35;
  --gold: #ba8242;
  --blue: #456b82;
  --rose: #a15a4f;
  --shadow: 0 24px 80px rgba(23, 35, 31, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(248, 245, 239, 0.86);
  border-bottom: 1px solid rgba(223, 214, 201, 0.8);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 16px max(24px, calc((100vw - 1120px) / 2));
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-weight: 850;
}

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

.nav {
  align-items: center;
  display: flex;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.nav a:hover {
  color: var(--green-dark);
}

.button {
  align-items: center;
  background: var(--green-dark);
  border: 1px solid var(--green-dark);
  border-radius: 8px;
  color: var(--surface);
  display: inline-flex;
  font-size: 15px;
  font-weight: 850;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
}

.button.secondary {
  background: transparent;
  color: var(--green-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.95fr);
  min-height: calc(100vh - 69px);
}

.hero-copy {
  align-content: center;
  display: grid;
  gap: 22px;
  padding: 64px max(24px, calc((100vw - 1120px) / 2)) 52px;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  color: var(--ink);
  font-size: clamp(44px, 7vw, 78px);
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0;
  max-width: 780px;
}

.lead {
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.48;
  margin: 0;
  max-width: 650px;
}

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

.hero-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(37, 63, 53, 0.96), rgba(79, 107, 93, 0.88)),
    radial-gradient(circle at 25% 18%, rgba(186, 130, 66, 0.48), transparent 30%);
  display: flex;
  justify-content: center;
  min-height: 520px;
  overflow: hidden;
  padding: 42px 24px;
}

.phone {
  background: #111a17;
  border: 10px solid #0b100e;
  border-radius: 42px;
  box-shadow: var(--shadow);
  max-width: 360px;
  min-height: 650px;
  overflow: hidden;
  padding: 18px;
  transform: rotate(2deg);
  width: min(82vw, 360px);
}

.phone-screen {
  background: var(--paper);
  border-radius: 28px;
  display: grid;
  gap: 14px;
  min-height: 604px;
  padding: 20px;
}

.app-row {
  align-items: center;
  display: flex;
  gap: 10px;
}

.app-row img {
  border-radius: 14px;
  height: 54px;
  width: 54px;
}

.app-name {
  font-weight: 900;
}

.app-caption {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.progress-ring {
  align-items: center;
  background: conic-gradient(var(--gold) 0 41%, #eee7db 41% 100%);
  border-radius: 50%;
  display: flex;
  height: 138px;
  justify-content: center;
  justify-self: center;
  margin: 8px 0;
  width: 138px;
}

.progress-ring span {
  align-items: center;
  background: var(--surface);
  border-radius: 50%;
  color: var(--green-dark);
  display: flex;
  font-size: 28px;
  font-weight: 900;
  height: 100px;
  justify-content: center;
  width: 100px;
}

.verse-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 13px;
}

.verse-card strong {
  color: var(--gold);
  font-size: 13px;
}

.verse-card p {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.verse-line {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: 24px 1fr 24px;
}

.verse-line span:first-child {
  color: var(--gold);
  font-weight: 900;
}

.verse-line span:nth-child(2) {
  background: #efe6da;
  border-radius: 999px;
  height: 9px;
}

.verse-line span:last-child {
  color: var(--green);
  font-weight: 900;
}

.section {
  padding: 78px max(24px, calc((100vw - 1120px) / 2));
}

.section.alt {
  background: var(--surface);
}

.section h2 {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 16px;
  max-width: 760px;
}

.section-intro {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 32px;
  max-width: 760px;
}

.grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 20px;
}

.alt .feature {
  background: var(--paper);
}

.feature-mark {
  align-items: center;
  background: var(--green-dark);
  border-radius: 8px;
  color: var(--surface);
  display: flex;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.feature h3 {
  font-size: 20px;
  margin: 0;
}

.feature p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.split {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: 0.8fr 1.2fr;
}

.stats {
  background: var(--green-dark);
  border-radius: 8px;
  color: var(--surface);
  display: grid;
  gap: 16px;
  padding: 24px;
}

.stat {
  border-bottom: 1px solid rgba(255, 253, 248, 0.2);
  padding-bottom: 14px;
}

.stat:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.stat strong {
  display: block;
  font-size: 34px;
}

.stat span {
  color: rgba(255, 253, 248, 0.76);
  font-weight: 750;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 5px;
  padding: 16px;
}

.timeline-item strong {
  color: var(--green-dark);
}

.timeline-item span {
  color: var(--muted);
  line-height: 1.5;
}

.cta {
  background: var(--green-dark);
  color: var(--surface);
  display: grid;
  gap: 16px;
  justify-items: start;
}

.cta h2,
.cta p {
  color: var(--surface);
}

.cta p {
  color: rgba(255, 253, 248, 0.78);
}

.cta .button {
  background: var(--surface);
  border-color: var(--surface);
  color: var(--green-dark);
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 24px max(24px, calc((100vw - 1120px) / 2));
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-page {
  max-width: 900px;
  padding: 72px max(24px, calc((100vw - 900px) / 2));
}

.legal-page h1 {
  font-size: clamp(38px, 6vw, 58px);
}

.legal-page h2 {
  font-size: 24px;
  margin: 34px 0 8px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.legal-page ul {
  padding-left: 22px;
}

.contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 20px;
}

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

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

  .hero-copy {
    padding-top: 48px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .phone {
    min-height: 560px;
    transform: none;
  }

  .phone-screen {
    min-height: 516px;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
