:root {
  color-scheme: light;
  --bg: #f8fbf8;
  --ink: #20201d;
  --muted: #5d635f;
  --line: #d8e0da;
  --brand: #2f6b4f;
  --brand-strong: #1f4f39;
  --accent: #c85d4f;
  --accent-soft: #f8ddd7;
  --surface: #ffffff;
  --surface-alt: #edf4f1;
  --shadow: 0 24px 70px rgba(37, 42, 31, 0.16);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(216, 224, 218, 0.82);
  background: rgba(248, 251, 248, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 148px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: #5f6c37;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(95, 108, 55, 0.24);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--brand-strong);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: min(560px, calc(100vh - 72px));
  margin: 0 auto;
  padding: 68px 0 44px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  letter-spacing: 0;
}

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

.hero-title img {
  display: block;
  width: min(100%, 690px);
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(47, 107, 79, 0.16));
}

h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.section-intro {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.13rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.feature {
  min-height: 220px;
  padding: 18px 18px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feature p {
  margin: 12px 0 0;
  color: var(--muted);
}

.feature-phone {
  width: min(100%, 210px);
  margin: 0 auto 22px;
  padding: 7px;
  border-radius: 18px;
  background: #252525;
  box-shadow: 0 18px 44px rgba(37, 42, 31, 0.15);
}

.feature-phone img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 12px;
  object-fit: cover;
  object-position: top center;
}

.band {
  background: var(--brand-strong);
  color: #fff;
}

.band .section {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.band p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.legal-main {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.legal-main h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
}

.legal-main h2 {
  margin-top: 42px;
  font-size: 1.45rem;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
}

.legal-main ul {
  padding-left: 1.2rem;
}

.updated {
  margin-top: 16px;
  color: var(--brand);
  font-weight: 700;
}

@media (max-width: 820px) {
  .nav {
    min-height: 64px;
  }

  .nav-links {
    gap: 14px;
    font-size: 0.9rem;
  }

  .nav-links .hide-small {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 44px 0 32px;
  }

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

  .feature {
    min-height: auto;
  }

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

@media (max-width: 520px) {
  .nav {
    width: min(100% - 24px, 1120px);
  }

  .brand span {
    display: none;
  }

  .hero,
  .section,
  .legal-main,
  .footer-inner {
    width: min(100% - 24px, 1120px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .button {
    width: 100%;
  }

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

  .feature-phone {
    width: min(100%, 190px);
  }
}
