:root {
  --ink: #1c211f;
  --muted: #68706c;
  --line: #d9ddd8;
  --paper: #f7f7f2;
  --white: #ffffff;
  --green: #1f6a4a;
  --green-dark: #174c38;
  --green-soft: #dfeee6;
  --blue: #315f9c;
  --blue-soft: #e5edf8;
  --red: #c34d42;
  --red-soft: #f6e7e4;
  --yellow: #9a6b10;
  --yellow-soft: #f7edcf;
  --shadow: 0 24px 60px rgba(26, 33, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.page-width {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  background: var(--paper);
  border-bottom: 1px solid rgba(28, 33, 31, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.brand-logo {
  width: 150px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.site-nav a {
  color: #4f5753;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-header > .button {
  justify-self: end;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.decision:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(49, 95, 156, 0.34);
  outline-offset: 3px;
}

.button svg,
.text-link svg,
.control-note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-small {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 14px;
}

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

.button-primary:hover {
  background: #ffda68;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: #303733;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 680px;
  height: 84vh;
  max-height: 820px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background-image: url("assets/helper-owner-workday.webp");
  background-size: cover;
  background-position: center center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(14, 20, 17, 0.52);
}

.hero-content {
  padding-block: 70px;
}

.hero-content > * {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--green);
}

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

h1,
h2 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  font-size: 68px;
}

h2 {
  font-size: 46px;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}

.hero-copy {
  margin: 24px 0 0;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 23px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.text-link-light {
  color: var(--white);
}

.hero-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
}

.workflow-section,
.capabilities-section,
.pilot-section {
  padding: 112px 0;
}

.workflow-section {
  background: var(--white);
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  align-items: center;
  gap: 88px;
}

.section-intro > p:last-child,
.section-heading-row > p,
.pilot-copy > p:not(.eyebrow):not(.pilot-footnote) {
  color: var(--muted);
  font-size: 18px;
}

.section-intro > p:last-child {
  max-width: 480px;
  margin: 24px 0 0;
}

.conversation-demo {
  border: 1px solid #cfd5d1;
  border-radius: 8px;
  overflow: hidden;
  background: #f8faf8;
  box-shadow: var(--shadow);
}

.demo-bar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.demo-person,
.owner-check-heading {
  display: flex;
  align-items: center;
  gap: 11px;
}

.demo-person div,
.owner-check-heading div {
  display: grid;
}

.demo-person strong,
.owner-check-heading strong {
  font-size: 15px;
}

.demo-person span:not(.avatar),
.owner-check-heading span:not(.avatar) {
  color: var(--muted);
  font-size: 12px;
}

.avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  font-weight: 700;
}

.avatar-customer {
  color: var(--blue);
  background: var(--blue-soft);
}

.avatar-helper {
  color: var(--white);
  background: var(--green);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.status > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a9f6f;
}

.message-area {
  display: grid;
  gap: 15px;
  padding: 24px;
}

.message {
  width: min(82%, 410px);
  padding: 13px 15px 10px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.45;
}

.message time {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.message-customer {
  justify-self: start;
  background: var(--white);
  border: 1px solid var(--line);
}

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

.owner-check {
  margin-top: 6px;
  padding: 17px;
  border: 1px solid #e4c664;
  border-radius: 8px;
  background: #fff9e7;
}

.owner-check p {
  margin: 16px 0;
  font-size: 15px;
  line-height: 1.45;
}

.decision-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.decision {
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid #c9cfc9;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.decision-yes {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.capabilities-section {
  background: var(--paper);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  align-items: end;
  gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.section-heading-row > p {
  margin: 0;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capability {
  min-width: 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 38px 30px 38px 0;
}

.capability + .capability {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.capability p,
.tools-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.icon-box {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 7px;
}

.icon-box svg {
  width: 21px;
  height: 21px;
}

.icon-blue {
  color: var(--blue);
  background: var(--blue-soft);
}

.icon-red {
  color: var(--red);
  background: var(--red-soft);
}

.icon-yellow {
  color: var(--yellow);
  background: var(--yellow-soft);
}

.icon-green {
  color: var(--green);
  background: var(--green-soft);
}

.tools-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tools-copy {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 700px;
}

.control-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
}

.pilot-section {
  color: var(--white);
  background: #14372b;
}

.pilot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  align-items: start;
  gap: 100px;
}

.pilot-layout > *,
.footer-content > * {
  min-width: 0;
}

.pilot-copy h2 {
  max-width: 660px;
}

.pilot-copy > p:not(.eyebrow):not(.pilot-footnote) {
  max-width: 610px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.72);
}

.pilot-footnote {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.waitlist-form {
  min-width: 0;
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.waitlist-form h3 {
  font-size: 22px;
}

.waitlist-form div > p {
  margin: 7px 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.waitlist-form label {
  margin-top: 4px;
  color: #474e4a;
  font-size: 13px;
  font-weight: 700;
}

.waitlist-form input {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #cdd2ce;
  border-radius: 6px;
  color: var(--ink);
  background: #fbfcfb;
}

.waitlist-form input::placeholder {
  color: #959c98;
}

.form-message {
  min-height: 20px;
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.site-footer {
  background: var(--paper);
}

.footer-content {
  min-height: 116px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.footer-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.footer-content > a:last-child {
  justify-self: end;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .workflow-layout,
  .pilot-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .conversation-demo {
    width: min(100%, 650px);
  }

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

  .waitlist-form {
    width: min(100%, 580px);
  }

  .tools-band {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .page-width {
    width: min(100% - 32px, 620px);
  }

  .site-header {
    min-height: 66px;
    grid-template-columns: 1fr auto;
    padding: 0 16px;
  }

  .site-nav {
    display: none;
  }

  .brand {
    font-size: 18px;
  }

  .brand-logo {
    width: 140px;
  }

  .hero {
    min-height: 590px;
    height: 80vh;
    max-height: 720px;
    background-position: 62% center;
  }

  .hero-shade {
    background: rgba(14, 20, 17, 0.59);
  }

  .hero-content {
    align-self: end;
    padding-block: 62px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-copy {
    max-width: 500px;
    font-size: 20px;
  }

  .workflow-section,
  .capabilities-section,
  .pilot-section {
    padding: 78px 0;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .capability,
  .capability + .capability {
    padding: 26px 0;
    border-left: 0;
  }

  .capability + .capability {
    border-top: 1px solid var(--line);
  }

  .footer-content {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
    padding-block: 28px;
  }

  .footer-content p {
    text-align: left;
  }

  .footer-content > a:last-child {
    justify-self: start;
  }
}

@media (max-width: 480px) {
  .site-header > .button {
    min-height: 38px;
    padding-inline: 12px;
  }

  .hero {
    min-height: 560px;
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 33px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .demo-bar {
    align-items: flex-start;
  }

  .status {
    margin-top: 8px;
    font-size: 12px;
  }

  .message-area {
    padding: 16px;
  }

  .message {
    width: 92%;
  }

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

  .waitlist-form {
    padding: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
