:root {
  --forest: #17341d;
  --deep-forest: #081f0d;
  --sage: #6d8f68;
  --sage-soft: #e9f0e8;
  --leaf: #6b9565;
  --gold: #d4af5a;
  --gold-soft: #f5e7bd;
  --cream: #f7f8f2;
  --white: #ffffff;
  --text: #18291c;
  --muted: #6c8268;
  --border: #dce7d9;
  --shadow: 0 26px 70px rgba(23, 52, 29, 0.18);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(212, 175, 90, 0.22), transparent 26rem),
    radial-gradient(circle at top right, rgba(107, 149, 101, 0.2), transparent 30rem),
    linear-gradient(180deg, #fbfcf7 0%, var(--cream) 48%, #edf5eb 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 231, 217, 0.85);
}

.header-inner {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.08;
}

.brand-name {
  color: var(--forest);
  font-weight: 900;
  font-size: 1.16rem;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.main-nav {
  display: flex;
  gap: 1rem;
  color: var(--forest);
  font-weight: 800;
  font-size: 0.95rem;
}

.main-nav a {
  text-decoration: none;
}

main {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0 4rem;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  color: var(--forest);
  background: rgba(212, 175, 90, 0.18);
  border: 1px solid rgba(212, 175, 90, 0.45);
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  color: var(--forest);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.6rem);
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  margin-bottom: 1rem;
}

.lede {
  color: var(--muted);
  max-width: 650px;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.button.primary {
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow);
}

.button.secondary {
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--border);
}

.phone-showcase {
  justify-self: center;
  padding: 0.85rem;
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(233,240,232,0.9));
  border: 1px solid rgba(220, 231, 217, 0.95);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.phone-showcase img,
.screenshots img {
  border-radius: 32px;
  border: 1px solid rgba(220, 231, 217, 0.85);
  box-shadow: 0 18px 40px rgba(23, 52, 29, 0.13);
}

.section {
  padding: 4.5rem 0 2rem;
}

.intro {
  max-width: 850px;
}

.intro p:not(.eyebrow),
.privacy-panel p,
.cta p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem 0 4rem;
}

.feature-grid article {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 1.4rem;
  box-shadow: 0 12px 34px rgba(23, 52, 29, 0.08);
}

.feature-number {
  color: var(--gold);
  font-weight: 900;
}

.feature-grid h3 {
  color: var(--forest);
  font-size: 1.25rem;
  margin: 0.45rem 0 0.45rem;
}

.feature-grid p {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
}

.screenshots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.screenshots figure {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 0.8rem;
}

.screenshots figcaption {
  padding: 0.85rem 0.5rem 0.3rem;
  color: var(--forest);
  font-weight: 900;
  text-align: center;
}

.privacy-panel {
  margin: 4rem 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: center;
  background: var(--deep-forest);
  color: var(--white);
  border-radius: 34px;
  padding: clamp(1.5rem, 5vw, 3rem);
  box-shadow: var(--shadow);
}

.privacy-panel h2,
.privacy-panel .eyebrow {
  color: var(--white);
}

.privacy-panel .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.privacy-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.cta {
  text-align: center;
  margin: 4rem auto 5rem;
  max-width: 760px;
}

.cta img {
  width: 82px;
  margin: 0 auto 1rem;
  border-radius: 20px;
}

.site-footer {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 930px) {
  .hero,
  .privacy-panel {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screenshots {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0;
  }

  .main-nav {
    flex-wrap: wrap;
  }

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

  .phone-showcase {
    transform: none;
  }
}
