:root {
  color-scheme: light;
  --bg: #fbf7f0;
  --ink: #18312d;
  --muted: #5f6d68;
  --brand: #0e6f61;
  --brand-dark: #0a4e45;
  --leaf: #8ccb5e;
  --gold: #e7b75f;
  --line: rgba(24, 49, 45, 0.14);
  --panel: #fffdf8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  letter-spacing: 0;
}

a {
  color: var(--brand-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-header {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  padding: 24px clamp(20px, 4vw, 42px);
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  font-weight: 800;
}

.brand img {
  height: 40px;
  width: 40px;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  margin: 0 auto;
  max-width: 1120px;
  min-height: calc(100vh - 88px);
  padding: 52px clamp(20px, 4vw, 42px) 40px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.eyebrow {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.96;
  margin: 0;
  max-width: 820px;
}

.lede {
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
  margin: 24px 0 0;
  max-width: 720px;
}

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

.button {
  align-items: center;
  background: var(--brand);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  min-height: 48px;
  padding: 0 20px;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--brand-dark);
}

.app-preview {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(10, 78, 69, 0.16);
  padding: 24px;
}

.phone {
  aspect-ratio: 9 / 16;
  background: linear-gradient(180deg, #fffdf8, #f4ede3);
  border: 10px solid #18312d;
  border-radius: 34px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 22px;
}

.phone-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
}

.phone-mark {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.phone-mark img {
  height: 82px;
  width: 82px;
}

.phone-mark strong {
  color: var(--brand-dark);
  display: block;
  font-size: 28px;
  margin-top: 18px;
}

.phone-mark span {
  color: var(--muted);
  display: block;
  line-height: 1.4;
  margin-top: 10px;
}

.mini-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  gap: 10px;
  padding: 14px;
}

.meter {
  background: #e9e2d8;
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.meter span {
  background: var(--leaf);
  display: block;
  height: 100%;
  width: 72%;
}

.section {
  border-top: 1px solid var(--line);
  margin: 0 auto;
  max-width: 1120px;
  padding: 56px clamp(20px, 4vw, 42px);
}

.section h2,
.legal h1 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  margin: 0 0 20px;
}

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

.feature {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

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

.feature p,
.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.65;
}

.legal {
  margin: 0 auto;
  max-width: 860px;
  padding: 56px clamp(20px, 4vw, 42px) 76px;
}

.legal h2 {
  border-top: 1px solid var(--line);
  font-size: 24px;
  margin: 36px 0 12px;
  padding-top: 24px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  margin: 0 auto;
  max-width: 1120px;
  padding: 28px clamp(20px, 4vw, 42px) 42px;
}

@media (max-width: 800px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    padding-top: 26px;
  }

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