:root {
  --ink: #10212b;
  --muted: #60727d;
  --line: #dce5e7;
  --paper: #fbf8f2;
  --mist: #eef6f5;
  --teal: #0f766e;
  --coral: #c84f3d;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(15, 118, 110, 0.16), transparent 32rem),
    linear-gradient(135deg, var(--white) 0%, var(--mist) 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page-shell {
  min-height: 100svh;
  display: grid;
}

.hero {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: center;
  gap: clamp(36px, 8vw, 112px);
  padding: 56px 0;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.25rem, 12vw, 9.5rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0;
}

.lede {
  max-width: 31rem;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  margin-top: 36px;
}

.primary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 0 22px;
  font-weight: 800;
  text-decoration: none;
}

.primary-action:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.35);
  outline-offset: 4px;
}

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

.visual {
  position: relative;
  min-height: 520px;
}

.sheet {
  position: absolute;
  inset: auto 0 0 auto;
  width: min(100%, 390px);
  border: 1px solid rgba(16, 33, 43, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(16, 33, 43, 0.16);
}

.sheet-back {
  height: 450px;
  right: 42px;
  bottom: 44px;
  rotate: -7deg;
  opacity: 0.72;
  padding: 42px;
}

.sheet-back span {
  display: block;
  height: 12px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(96, 114, 125, 0.18);
}

.sheet-back span:nth-child(1) {
  width: 68%;
}

.sheet-back span:nth-child(2) {
  width: 88%;
}

.sheet-back span:nth-child(3) {
  width: 52%;
}

.sheet-front {
  bottom: 0;
  right: 0;
  min-height: 430px;
  padding: 30px;
}

.sheet-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 72px;
  color: var(--muted);
  font-weight: 800;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
}

.task-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.task-row span {
  min-width: 0;
}

.task-row strong {
  color: var(--teal);
}

.task-row.hot strong {
  color: var(--coral);
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 28px;
    padding: 38px 0 28px;
  }

  h1 {
    max-width: 8ch;
  }

  .visual {
    min-height: 320px;
  }

  .sheet {
    width: min(88vw, 360px);
  }

  .sheet-back {
    height: 300px;
    right: 18px;
    bottom: 22px;
  }

  .sheet-front {
    min-height: 286px;
    padding: 22px;
  }

  .sheet-top {
    margin-bottom: 34px;
  }
}
