:root {
  --ink: #15191e;
  --muted: #69707a;
  --line: #e4e7eb;
  --paper: #ffffff;
  --wash: #fbfaf6;
  --yellow: #f4b84a;
  --yellow-soft: #fff1c4;
  --green: #2fac66;
  --green-soft: #dff6e9;
  --coral: #e85d52;
  --coral-soft: #ffe5e1;
  --blue: #4169e1;
  --shadow: 0 28px 70px rgb(22 29 36 / 18%);
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.announcement {
  background: var(--yellow);
  color: #16120a;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 94%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-inner {
  min-height: 72px;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid #16120a;
  border-radius: 8px;
  background: var(--yellow);
  box-shadow: 3px 3px 0 #16120a;
  font-size: 13px;
}

.primary-nav {
  display: flex;
  gap: 30px;
  color: #4b535d;
  font-size: 15px;
  font-weight: 700;
}

.primary-nav a,
.signin-link {
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.primary-nav a:hover,
.signin-link:hover {
  color: var(--ink);
}

.signin-link {
  color: #303740;
  font-size: 15px;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(760px, calc(100vh - 24px));
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 18%, rgb(244 184 74 / 28%), transparent 24rem),
    linear-gradient(180deg, #fff 0%, var(--wash) 100%);
}

.hero-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.browser-shot {
  position: absolute;
  right: max(-110px, calc((100vw - 1120px) / 2 - 120px));
  top: 54px;
  width: min(720px, 58vw);
  min-width: 580px;
  overflow: hidden;
  border: 2px solid #15191e;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  border-bottom: 2px solid #15191e;
  background: #f5f7f9;
  padding: 0 14px;
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6b5e;
}

.browser-top span:nth-child(2) {
  background: #f6c84c;
}

.browser-top span:nth-child(3) {
  background: #55c777;
}

.browser-top p {
  margin: 0 0 0 12px;
  color: #7a828c;
  font-size: 12px;
  font-weight: 700;
}

.app-shot {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 455px;
}

.shot-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid var(--line);
  background: #fbfcfd;
  padding: 22px 16px;
}

.shot-sidebar strong {
  margin-bottom: 8px;
}

.shot-sidebar a {
  border-radius: 7px;
  color: #66707b;
  font-size: 12px;
  font-weight: 800;
  padding: 9px 10px;
}

.shot-sidebar .active {
  background: var(--yellow-soft);
  color: #1d2025;
}

.shot-main {
  padding: 24px;
}

.shot-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.shot-toolbar p,
.shot-toolbar h3,
.role-row p,
.reminder-panel p {
  margin: 0;
}

.shot-toolbar p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.shot-toolbar h3 {
  margin-top: 4px;
  font-size: 24px;
  line-height: 1.2;
}

.status-pill,
.check,
.needs {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  white-space: nowrap;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 10px;
}

.status-pill,
.needs {
  background: var(--coral-soft);
  color: #9b2f28;
}

.check {
  background: var(--green-soft);
  color: #1d7d49;
}

.schedule-card {
  display: grid;
  gap: 12px;
}

.role-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 12px 26px rgb(21 25 30 / 7%);
}

.role-row.warning {
  border-color: #f3b6ae;
}

.role-emoji {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: #f2f4f6;
  font-size: 20px;
}

.role-row strong {
  display: block;
  font-size: 15px;
}

.role-row p,
.reminder-panel p {
  color: var(--muted);
  font-size: 13px;
}

.reminder-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  border-radius: 8px;
  background: #1f2329;
  color: #fff;
  padding: 16px;
}

.reminder-panel p {
  color: #b8c0ca;
}

.reminder-panel span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 690px;
  padding: 72px 0 96px;
}

.hero-copy {
  width: min(560px, 58%);
}

.eyebrow {
  margin: 0 0 18px;
  color: #9a5c06;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 580px;
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 520px;
  margin: 24px 0 0;
  color: #4d5560;
  font-size: 21px;
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 900;
  padding: 0 22px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 4px 4px 0 var(--ink);
}

.button.secondary {
  background: #fff;
}

.hero-note {
  margin: 18px 0 0;
  color: #69707a;
  font-size: 14px;
  font-weight: 700;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 38px 0;
}

.trust-strip h2 {
  margin: 0 0 22px;
  color: #767f89;
  font-size: 15px;
  text-align: center;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.trust-items span {
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  color: #373f49;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  padding: 0 10px;
}

.features {
  padding: 74px 0 34px;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  align-items: center;
  gap: 68px;
  padding: 58px 0;
}

.feature.reverse .feature-copy {
  order: 2;
}

.feature h2,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.feature p,
.section-heading p,
.final-cta p {
  margin: 18px 0 0;
  color: #555e68;
  font-size: 18px;
}

.feature-visual {
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.roster-visual {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 28px;
}

.mini-calendar {
  display: grid;
  min-height: 170px;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow);
  color: #19140a;
}

.mini-calendar span,
.mini-calendar strong {
  grid-column: 1;
}

.mini-calendar span {
  align-self: end;
  font-size: 18px;
  font-weight: 900;
}

.mini-calendar strong {
  align-self: start;
  font-size: 70px;
  line-height: 1;
}

.mini-stack {
  display: grid;
  gap: 16px;
}

.mini-stack div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.mini-stack p {
  margin: 6px 0 0;
  color: var(--muted);
}

.message-visual {
  display: grid;
  gap: 18px;
  background: #f7f9fb;
  padding: 34px;
}

.message-bubble {
  max-width: 72%;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 12px 28px rgb(21 25 30 / 10%);
}

.message-bubble.alt {
  justify-self: end;
  background: var(--green-soft);
}

.message-bubble p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
}

.message-bubble span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.attention-visual {
  display: grid;
  gap: 14px;
  padding: 34px;
}

.attention-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 850;
  padding: 18px;
}

.attention-row.muted {
  color: #59626d;
}

.dot {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.dot.red {
  background: var(--coral);
}

.dot.gold {
  background: var(--yellow);
}

.dot.green {
  background: var(--green);
}

.cost-section,
.steps-section {
  background: var(--wash);
  padding: 84px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.cost-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cost-grid article,
.steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 16px 36px rgb(21 25 30 / 7%);
}

.cost-grid strong {
  display: block;
  color: var(--ink);
  font-size: 42px;
  line-height: 1;
}

.cost-grid p,
.steps p {
  margin: 14px 0 0;
  color: #58616c;
}

.steps-section {
  background: #fff;
}

.steps article span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 900;
}

.steps h3 {
  margin: 18px 0 0;
  font-size: 22px;
}

.final-cta {
  background: #1f2329;
  color: #fff;
  padding: 82px 0;
}

.final-cta-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-cta p {
  max-width: 620px;
  color: #c7ced7;
}

.final-cta .button {
  margin-top: 28px;
}

.site-footer {
  background: #111418;
  color: #d4dae2;
  padding: 54px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
}

.footer-brand {
  color: #fff;
}

.site-footer p {
  margin: 14px 0 0;
  color: #aeb6c1;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 14px;
}

.site-footer a:not(.brand) {
  display: block;
  color: #c7ced7;
  font-size: 14px;
  line-height: 2;
}

@media (max-width: 980px) {
  .primary-nav {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-inner {
    order: 1;
  }

  .hero-background {
    order: 2;
    position: relative;
    inset: auto;
    padding-bottom: 48px;
  }

  .browser-shot {
    position: relative;
    right: auto;
    top: auto;
    width: min(720px, calc(100% - 40px));
    min-width: 0;
    margin: 0 auto;
    transform: none;
  }

  .hero-inner {
    display: block;
    min-height: 0;
    padding: 48px 0 34px;
  }

  .hero-copy {
    width: 100%;
  }

  .trust-items,
  .cost-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature,
  .feature.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature.reverse .feature-copy {
    order: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .announcement {
    font-size: 13px;
  }

  .header-inner {
    min-height: 64px;
  }

  .signin-link {
    display: none;
  }

  .browser-shot {
    width: calc(100% - 18px);
  }

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

  .shot-sidebar {
    display: none;
  }

  .shot-main {
    padding: 18px;
  }

  .shot-toolbar {
    display: grid;
  }

  .role-row {
    grid-template-columns: 36px 1fr;
  }

  .role-row .check,
  .role-row .needs {
    grid-column: 2;
    justify-self: start;
  }

  .hero-inner {
    padding-top: 28px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .trust-items,
  .cost-grid,
  .steps,
  .roster-visual {
    grid-template-columns: 1fr;
  }

  .feature {
    padding: 38px 0;
  }

  .message-bubble {
    max-width: 100%;
  }

  .cost-section,
  .steps-section {
    padding: 62px 0;
  }
}
