:root {
  color-scheme: light;
  --ink: #172c36;
  --muted: #536269;
  --paper: #faf9f5;
  --blue: #294fe3;
  --line: #dddfd9;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
.wrap {
  width: min(1200px, calc(100% - 80px));
  margin-inline: auto;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -1.5px;
  text-decoration: none;
  line-height: 1;
}
.brand-pro {
  font-weight: 400;
}
.brand-dot {
  color: var(--blue);
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}
.site-header nav a {
  text-decoration: none;
}
.site-header nav a:hover,
.site-footer a:hover {
  color: var(--blue);
}
.login-link {
  border: 1px solid #b7bfbd;
  border-radius: 7px;
  padding: 10px 17px;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  padding: 10px;
  background: white;
  z-index: 10;
}
.skip-link:focus {
  top: 10px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 52px;
  align-items: center;
  padding-block: 92px 112px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 1.7px;
  font-weight: 750;
  margin: 0 0 26px;
}
.hero .eyebrow {
  letter-spacing: 0.3px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #338568;
  border-radius: 50%;
  flex-shrink: 0;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.hero h1 {
  font-size: clamp(56px, 5.9vw, 82px);
  line-height: 1.02;
  letter-spacing: -5px;
  font-weight: 650;
  margin-bottom: 28px;
}
.hero h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--blue);
}
.lede {
  font-size: 18px;
  line-height: 1.75;
  max-width: 440px;
  color: var(--muted);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 23px;
  background: var(--blue);
  color: white;
  padding: 15px 21px;
  border-radius: 7px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  transition:
    background 0.15s,
    transform 0.15s;
}
.button:hover {
  background: #193cbe;
  transform: translateY(-2px);
}
.text-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}
.text-link:hover {
  text-decoration: underline;
}
.hero-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 23px;
  margin-bottom: 0;
}
.product-preview {
  position: relative;
  background: white;
  border: 1px solid #d8ddda;
  border-radius: 12px;
  box-shadow: 0 22px 60px #172c3612;
  transform: rotate(-1deg);
  margin-bottom: 26px;
}
.preview-bar {
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 11px 11px 0 0;
  font-size: 12px;
}
.mini-brand {
  background: #afc6fa;
  color: var(--ink);
  border-radius: 5px;
  padding: 0 6px;
  font-weight: 800;
  font-size: 15px;
}
.preview-dots {
  margin-left: auto;
  letter-spacing: 3px;
  color: #9dadb4;
}
.preview-body {
  padding: 23px 17px 14px;
}
.preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 24px;
}
.micro {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--muted);
}
.preview-heading h2 {
  margin: 3px 0 0;
  font-size: 20px;
  letter-spacing: -0.8px;
}
.pill {
  border: 1px solid #dce0dc;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 10px;
  white-space: nowrap;
}
.schedule {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.day {
  background: #f5f6f3;
  padding: 7px;
  border-radius: 6px;
  min-height: 260px;
}
.day > span {
  display: block;
  text-align: center;
  font-size: 9px;
  color: var(--muted);
  margin-bottom: 12px;
}
.day b {
  font-size: 12px;
  margin-left: 4px;
  color: var(--ink);
}
.selected-day {
  background: #edf1fe;
}
.visit {
  border-radius: 5px;
  padding: 9px 8px;
  margin-bottom: 9px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid #00000006;
}
.visit > div {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  align-items: center;
}
.visit strong {
  font-size: 11px;
  line-height: 1.4;
}
.visit small {
  font-size: 9px;
  line-height: 1.4;
}
.blue {
  background: #dce7fd;
}
.green {
  background: #dceee4;
}
.peach {
  background: #f8e2d6;
}
.avatar {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffffb3;
  width: 23px;
  height: 23px;
  font-size: 8px;
  font-weight: 750;
}
.completed {
  font-size: 9px;
  color: #215d45;
}
.open-slot {
  padding-top: 24px;
  text-align: center;
  font-size: 10px;
  color: #65716f;
}
.preview-bottom {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 16px;
  font-size: 9px;
  color: var(--muted);
}
.preview-bottom .status-dot {
  width: 5px;
  height: 5px;
  margin-right: 4px;
}
.quote-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 23px;
  position: absolute;
  right: 27px;
  bottom: -32px;
  background: #fff;
  border: 1px solid #e2e5df;
  border-radius: 9px;
  box-shadow: 0 10px 24px #172c3612;
  transform: rotate(3deg);
}
.quote-note strong {
  display: block;
  font-size: 13px;
}
.quote-note small {
  font-size: 11px;
  color: var(--muted);
}
.checkmark {
  border-radius: 50%;
  background: #deeee3;
  color: #28613b;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
}
.workflow-strip {
  border-block: 1px solid var(--line);
  background: #f0f1e9;
}
.workflow-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 25px;
}
.workflow-strip span {
  font-size: 13px;
  color: var(--muted);
}
.workflow-strip p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}
.workflow-strip i {
  font-style: normal;
  margin-inline: 20px;
  color: #6c786b;
}
.section {
  padding-block: 94px;
}
.section-heading {
  margin-bottom: 44px;
}
.section-heading .eyebrow {
  margin-bottom: 15px;
}
.section h2,
.customer-section h2,
.closing h2 {
  font-size: clamp(32px, 3.5vw, 47px);
  letter-spacing: -2px;
  font-weight: 550;
  line-height: 1.14;
  margin-bottom: 18px;
}
.section-heading > p:last-child {
  color: var(--muted);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature {
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}
.feature:nth-child(2) {
  border-color: var(--blue);
}
.feature:nth-child(3) {
  border-color: #bb6d50;
}
.feature-number {
  font-size: 10px;
  letter-spacing: 1.2px;
  color: var(--muted);
  font-weight: 650;
}
.feature h3 {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.7px;
  line-height: 1.25;
  margin-block: 19px 15px;
}
.feature p {
  font-size: 15px;
  color: var(--muted);
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 23px;
}
.feature-tags span {
  font-size: 10px;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
}
.customer-section {
  background: #e9ede5;
  padding-block: 72px;
}
.customer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 100px;
  align-items: center;
}
.customer-grid p:not(.eyebrow) {
  color: var(--muted);
  max-width: 470px;
}
.customer-grid .text-link {
  display: inline-block;
  margin-top: 12px;
}
.hub-preview {
  background: #fffef9;
  border: 1px solid #d6dfd2;
  border-radius: 10px;
  padding: 30px;
}
.hub-preview .pill {
  font-size: 9px;
  letter-spacing: 1px;
}
.hub-preview h3 {
  margin-block: 20px;
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -1px;
  font-weight: 550;
}
.hub-preview ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hub-preview li {
  border-top: 1px solid var(--line);
  padding: 13px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}
.hub-preview li span {
  color: #65716b;
  font-size: 10px;
}
.hub-preview li b {
  margin-left: auto;
  color: var(--blue);
}
.faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq details:first-child {
  border-top: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  padding-right: 15px;
}
.faq details p {
  margin: 15px 0 2px;
  color: var(--muted);
  font-size: 15px;
}
.closing {
  padding: 48px;
  border-radius: 12px;
  background: var(--ink);
  color: #fcfff5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 70px;
}
.closing .eyebrow {
  color: #c5d9b0;
  font-size: 10px;
}
.closing h2 {
  margin-bottom: 0;
}
.closing-invitation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.gopher {
  width: 190px;
  height: auto;
  overflow: visible;
}
.gopher-wave {
  transform-origin: 146px 135px;
}
.gopher-eyes {
  transform-origin: 106px 82px;
}
.gopher-greeting .gopher-wave {
  animation: gopher-wave 3.6s ease-in-out 1;
}
.gopher-greeting .gopher-eyes {
  animation: gopher-blink 3.6s ease-in-out 1;
}
@keyframes gopher-wave {
  0%,
  18%,
  54%,
  100% {
    transform: rotate(0deg);
  }
  27%,
  45% {
    transform: rotate(13deg);
  }
  36% {
    transform: rotate(-9deg);
  }
}
@keyframes gopher-blink {
  0%,
  65%,
  71%,
  100% {
    transform: scaleY(1);
  }
  68% {
    transform: scaleY(0.12);
  }
}
.button-light {
  background: #d5edbb;
  color: var(--ink);
  white-space: nowrap;
}
.button-light:hover {
  background: #c3e6a1;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.site-footer .brand {
  gap: 0;
  font-size: 25px;
}
.site-footer p {
  color: var(--muted);
  margin-block: 13px 22px;
  font-size: 13px;
}
.site-footer small {
  font-size: 11px;
  color: var(--muted);
}
.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}
.site-footer nav a {
  text-decoration: none;
}
.legal-heading {
  padding-block: 48px;
}
.legal-heading .eyebrow {
  margin-top: 38px;
  margin-bottom: 14px;
}
.legal-heading h1 {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -2px;
  line-height: 1.12;
  max-width: 900px;
  margin-bottom: 18px;
}
.legal-heading > p:not(.eyebrow) {
  font-size: 19px;
  color: var(--muted);
}
.updated {
  font-size: 13px;
  color: var(--muted);
}
.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 70px;
  padding-bottom: 80px;
}
.legal-layout aside nav {
  position: sticky;
  top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}
.legal-layout aside a {
  text-decoration: none;
  color: var(--muted);
}
.legal-layout aside a:hover {
  color: var(--blue);
  text-decoration: underline;
}
.legal-content h2 {
  font-size: 23px;
  letter-spacing: -0.4px;
  line-height: 1.3;
}
.legal-content section {
  padding-block: 25px;
  border-top: 1px solid var(--line);
}
.legal-content p,
.legal-content li {
  color: #40515a;
  font-size: 16px;
  line-height: 1.8;
}
.legal-content li {
  margin-bottom: 12px;
}
.legal-content a {
  color: #2345c3;
}
@media (min-width: 1500px) {
  .hero {
    padding-block: 112px 132px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .hero {
    gap: 28px;
  }
  .hero h1 {
    letter-spacing: -3px;
  }
  .hero .eyebrow {
    font-size: 11px;
  }
  .preview-body {
    padding-inline: 10px;
  }
  .preview-heading h2 {
    font-size: 17px;
  }
  .preview-heading .pill {
    display: none;
  }
  .day {
    padding: 4px;
  }
  .visit {
    padding: 7px 5px;
  }
  .visit > div {
    flex-wrap: wrap;
  }
  .customer-grid {
    gap: 45px;
  }
  .legal-layout {
    gap: 35px;
    grid-template-columns: 190px minmax(0, 1fr);
  }
}
@media (max-width: 760px) {
  .site-header {
    min-height: 84px;
  }
  .site-header nav {
    gap: 14px;
  }
  .desktop-link {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-block: 50px 75px;
    gap: 46px;
  }
  .hero h1 {
    font-size: 68px;
  }
  .hero-copy {
    max-width: 540px;
  }
  .lede {
    max-width: 520px;
  }
  .product-preview {
    max-width: 570px;
    width: 100%;
    margin-inline: auto;
  }
  .preview-body {
    padding: 20px 14px 15px;
  }
  .preview-heading h2 {
    font-size: 20px;
  }
  .preview-heading .pill {
    display: block;
  }
  .day {
    padding: 7px;
  }
  .visit {
    padding: 10px 8px;
  }
  .visit > div {
    flex-wrap: nowrap;
  }
  .visit strong {
    font-size: 12px;
  }
  .visit small {
    font-size: 10px;
  }
  .workflow-strip .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .workflow-strip i {
    margin-inline: 12px;
  }
  .feature-grid,
  .customer-grid,
  .faq {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .section {
    padding-block: 60px;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .feature {
    padding-top: 20px;
  }
  .feature p {
    max-width: 550px;
  }
  .customer-section {
    padding-block: 52px;
  }
  .closing {
    padding: 32px;
    align-items: flex-start;
    flex-direction: column;
  }
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .legal-layout aside nav {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 18px;
  }
  .legal-layout aside strong {
    grid-column: 1/-1;
  }
  .legal-heading {
    padding-block: 35px;
  }
}
@media (max-width: 390px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 58px;
  }
  .brand {
    font-size: 25px;
  }
  .brand img {
    width: 30px;
    height: 30px;
  }
  .login-link {
    padding: 8px 12px;
  }
  .visit > div {
    flex-wrap: wrap;
  }
  .preview-bottom {
    flex-direction: column;
  }
  .workflow-strip p {
    font-size: 13px;
  }
  .workflow-strip i {
    margin-inline: 8px;
  }
  .site-footer {
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gopher-greeting .gopher-wave,
  .gopher-greeting .gopher-eyes {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
  .button:hover {
    transform: none;
  }
}
@media print {
  .site-header,
  .site-footer,
  .legal-layout aside,
  .legal-heading .text-link {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
  .wrap {
    width: 100%;
  }
  .legal-layout {
    display: block;
  }
  .legal-content section {
    break-inside: avoid;
  }
  .legal-content p,
  .legal-content li {
    color: black;
  }
  .legal-heading {
    padding-block: 0 24px;
  }
}
