:root {
  color-scheme: light;
  --ink: #26312c;
  --muted: #69756f;
  --sage: #7c9a83;
  --sage-dark: #526f5c;
  --lavender: #8d80b8;
  --paper: #fffdf8;
  --surface: #f5f0e8;
  --line: #ded7cb;
  --shadow: 0 24px 70px rgb(39 49 44 / 16%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  width: 188px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.header-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.header-link {
  color: var(--sage-dark);
  font-size: 0.95rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  min-height: min(720px, calc(100svh - 92px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

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

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

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

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 8.2vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

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

.button {
  padding: 0 20px;
}

.button.primary {
  background: var(--ink);
  color: #ffffff;
}

.button.secondary {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--sage-dark);
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 460px;
}

.hero-visual > img {
  width: min(74%, 340px);
  height: auto;
  filter: drop-shadow(0 28px 50px rgb(39 49 44 / 24%));
}

.preview-panel {
  width: min(100%, 390px);
  margin-top: -22px;
  border: 1px solid rgb(124 154 131 / 30%);
  border-radius: 8px;
  background: rgb(255 253 248 / 94%);
  box-shadow: var(--shadow);
  padding: 18px;
}

.preview-row,
.check-row,
.time-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview-row {
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.92rem;
}

.preview-row strong {
  color: var(--ink);
}

.time-block {
  min-height: 74px;
  margin: 14px 0;
  border-left: 5px solid var(--sage);
  border-radius: 8px;
  background: var(--surface);
  padding: 14px 16px;
}

.time {
  flex: 0 0 auto;
  color: var(--sage-dark);
  font-weight: 800;
}

.task {
  min-width: 0;
  font-weight: 700;
}

.check-row {
  color: var(--muted);
  font-size: 0.95rem;
}

.check-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--lavender);
}

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

.section-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0;
}

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

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

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

.feature h3 {
  margin: 0;
  font-size: 1.05rem;
}

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

@media (max-width: 860px) {
  .hero,
  .section-inner {
    grid-template-columns: 1fr;
  }

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

  h1 {
    max-width: 10ch;
  }

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

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

@media (max-width: 540px) {
  .site-header,
  .hero,
  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    align-items: flex-start;
    padding-top: 16px;
  }

  .brand {
    width: 152px;
  }

  h1 {
    max-width: 12ch;
    font-size: 2.75rem;
  }

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

  .button {
    width: 100%;
  }

  .hero-visual {
    display: none;
  }
}
