:root {
  color-scheme: light;
  --bg: #f5ebdc;
  --panel: #fff8ec;
  --ink: #201812;
  --muted: #5c4c40;
  --maple: #cb7e34;
  --cut: #b0402b;
  --graphite: #3a3028;
}

* {
  box-sizing: border-box;
}

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

main {
  min-height: 100vh;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 28px 40px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 5vh 0 4vh auto;
  width: min(46vw, 440px);
  background: url("./assets/app-preview.png") center / contain no-repeat;
  filter: drop-shadow(0 30px 70px rgba(32, 24, 18, 0.24));
  opacity: 0.92;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, var(--bg) 50%, rgba(245, 235, 220, 0.28) 100%);
}

.copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cut);
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.94;
  letter-spacing: 0;
}

.lede {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
  font-weight: 650;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.badges span {
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--panel);
  color: var(--graphite);
  font-weight: 800;
}

.phone {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.screen {
  width: 1px;
  height: 1px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px 56px;
}

article,
.privacy {
  background: var(--panel);
  border-radius: 8px;
  padding: 26px;
}

h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

p {
  color: var(--muted);
  line-height: 1.55;
}

a {
  color: var(--cut);
  font-weight: 800;
}

.privacy {
  max-width: 760px;
  margin: 56px auto;
}

.privacy h1 {
  font-size: clamp(38px, 7vw, 68px);
}

footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px 42px;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 780px) {
  .hero {
    min-height: auto;
    padding-top: 240px;
  }

  .hero::before {
    inset: 24px 28px auto;
    width: auto;
    height: 240px;
    opacity: 0.55;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(245, 235, 220, 0.18) 0%, var(--bg) 34%, var(--bg) 100%);
  }

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