:root {
  color-scheme: light;
  --bg: #f8f5ef;
  --paper: #fffdf8;
  --ink: #25221e;
  --muted: #655f56;
  --line: #ded7ca;
  --sage: #6f8f72;
  --sage-dark: #48684f;
  --rose: #b86f63;
  --gold: #c9963b;
  --blue: #587b9d;
  --shadow: 0 18px 40px rgba(54, 45, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(222, 215, 202, 0.8);
  background: rgba(248, 245, 239, 0.94);
  backdrop-filter: blur(16px);
}

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

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

.mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--sage);
  color: #fff;
  font-weight: 800;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.button.secondary {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.hero,
.page-hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.78fr);
  gap: 56px;
  align-items: center;
}

.page-hero {
  display: block;
  max-width: 820px;
  padding-bottom: 22px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

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

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.55rem, 6vw, 5.2rem);
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.16rem;
}

.lead {
  margin: 22px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.34rem);
}

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

.proof {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.96rem;
}

.phone-wrap {
  display: flex;
  justify-content: center;
}

.hero-shot {
  width: min(360px, 100%);
  height: auto;
  border-radius: 38px;
  box-shadow: 0 24px 56px rgba(19, 22, 28, 0.26);
  background: #15171c;
}

.phone {
  width: min(360px, 100%);
  border-radius: 34px;
  padding: 14px;
  background: #1f1d1a;
  box-shadow: var(--shadow);
}

.screen {
  min-height: 620px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.screen-top {
  padding: 26px 22px 18px;
  background: #eef3e9;
}

.screen-top small {
  display: block;
  margin-bottom: 8px;
  color: var(--sage-dark);
  font-weight: 750;
}

.screen-top strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1.12;
}

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

.chip {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
  font-weight: 750;
  font-size: 0.9rem;
  background: #fff;
}

.chip.active {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}

.task-list {
  padding: 18px;
}

.task {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 10px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.dot {
  width: 14px;
  height: 14px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--rose);
}

.task:nth-child(2) .dot {
  background: var(--gold);
}

.task:nth-child(3) .dot {
  background: var(--blue);
}

.task b {
  display: block;
  font-size: 0.95rem;
}

.task span {
  color: var(--muted);
  font-size: 0.82rem;
}

.pill {
  border-radius: 999px;
  padding: 4px 8px;
  background: #f1ece2;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.section.narrow {
  max-width: 820px;
}

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

.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.shot-card {
  margin: 0;
}

.shot-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  background: #15171c;
  box-shadow: 0 18px 40px rgba(19, 22, 28, 0.18);
}

.shot-card figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 720;
  text-align: center;
}

.feature,
.quote,
.callout {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.78);
  border-radius: 8px;
  padding: 22px;
}

.feature p,
.callout p,
.quote p,
.section p,
.article p,
.article li {
  color: var(--muted);
}

.feature strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.quote {
  font-size: 1.08rem;
}

.quote cite {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-style: normal;
}

.article {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 78px;
}

.article h2 {
  margin-top: 38px;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
}

.article ul {
  padding-left: 20px;
}

.cta {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 70px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef3e9;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta p {
  margin: 8px 0 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-inner a {
  color: var(--muted);
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 52px;
    gap: 34px;
  }

  .screen {
    min-height: 560px;
  }

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

  .shot-grid {
    grid-template-columns: 1fr;
    max-width: 390px;
    margin: 0 auto;
  }

  .cta {
    display: block;
    padding: 28px;
  }

  .cta .button {
    margin-top: 18px;
    width: 100%;
  }
}
