:root {
  color-scheme: light;
  --bg: #f7f8f5;
  --ink: #111412;
  --muted: #5d645f;
  --line: #dfe4dc;
  --panel: #ffffff;
  --accent: #0b7a75;
  --accent-strong: #075c58;
  --warm: #f4c95d;
  --shadow: 0 22px 70px rgba(22, 35, 30, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(17, 20, 18, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  display: block;
  border-radius: 9px;
  box-shadow: 0 8px 18px rgba(17, 20, 18, 0.18);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
  min-height: calc(100svh - 72px);
  padding: clamp(40px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(4.2rem, 10vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 600px;
  margin: 24px 0 0;
  color: #2f3833;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.2;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.primary:hover {
  background: var(--accent-strong);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.app-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(244, 201, 93, 0.45), rgba(11, 122, 117, 0.12)),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.app-visual::before {
  position: absolute;
  inset: 28px;
  content: "";
  border: 1px solid rgba(17, 20, 18, 0.1);
  border-radius: 20px;
}

.app-visual > img {
  width: min(52%, 260px);
  height: auto;
  border-radius: 24%;
  box-shadow: 0 24px 42px rgba(17, 20, 18, 0.24);
}

.metric {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: min(260px, calc(100% - 52px));
  padding: 18px;
  border: 1px solid rgba(17, 20, 18, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 30px rgba(17, 20, 18, 0.14);
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.metric strong {
  display: block;
  margin-top: 4px;
  font-size: 1.75rem;
  line-height: 1.1;
}

.feature-band,
.download-band {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(17, 20, 18, 0.08);
}

.feature-band {
  background: #ffffff;
}

.download-band {
  background: #eef3ef;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.features article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.features p,
.download-band p,
.legal p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.split p {
  max-width: 620px;
  margin-top: 14px;
  font-size: 1.12rem;
}

.legal {
  padding: clamp(40px, 7vw, 84px) clamp(20px, 5vw, 72px);
}

.legal article {
  max-width: 820px;
  margin: 0 auto;
}

.legal h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.legal h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.legal p + p {
  margin-top: 14px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  padding: 26px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(17, 20, 18, 0.08);
  color: var(--muted);
  font-size: 0.94rem;
}

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

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

  .app-visual {
    min-height: 340px;
  }

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

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

@media (max-width: 520px) {
  h1 {
    font-size: 4rem;
  }

  .actions,
  .actions .button,
  .download-band .button {
    width: 100%;
  }

  .app-visual {
    min-height: 300px;
    border-radius: 18px;
  }

  .metric {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }
}
