:root {
  color-scheme: light;
  --ink: #17191d;
  --muted: #60646d;
  --blue: #3964ed;
  --paper: #f7f8fa;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 6px;
}
a:hover {
  text-decoration: underline;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
.site-header,
.site-footer {
  padding: 30px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  font-size: 30px;
  font-weight: 750;
  letter-spacing: -1.4px;
}
.wordmark span {
  color: var(--blue);
}
nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 550;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-weight: 650;
}
h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 600;
}
h3 {
  font-size: 22px;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.hero {
  min-height: 650px;
  padding: 85px 6vw 100px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 4vw;
}
.eyebrow {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--muted);
}
.intro {
  font-size: 19px;
  line-height: 1.6;
  max-width: 410px;
  color: var(--muted);
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  background: var(--blue);
  color: white;
  padding: 18px 26px;
  border-radius: 32px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 32px;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  background: #2b51d2;
  text-decoration: none;
  transform: translateY(-2px);
}
.availability {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
}
.illustration {
  position: relative;
  height: 230px;
  width: 100%;
  max-width: 480px;
  justify-self: center;
  transform: rotate(-5deg);
  animation: arrive 0.8s ease-out both;
}
.notification-front {
  position: absolute;
  inset: 0 0 auto;
  height: 156px;
  border: 2px solid var(--ink);
  border-radius: 45px;
  background: white;
  display: flex;
  align-items: center;
  padding: 30px;
  gap: 20px;
  z-index: 3;
}
.notification-back {
  position: absolute;
  height: 110px;
  border: 2px solid var(--ink);
  border-radius: 40px;
}
.back-one {
  top: 70px;
  left: 20px;
  right: 20px;
  background: #edf0ff;
  z-index: 2;
}
.back-two {
  top: 94px;
  left: 42px;
  right: 42px;
  background: #dce4fd;
  z-index: 1;
}
.bell {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: #f1f2f3;
  border-radius: 50%;
}
.notification-lines {
  flex: 1;
}
.notification-lines span {
  display: block;
  height: 10px;
  background: #dadce0;
  border-radius: 20px;
}
.notification-lines span + span {
  margin-top: 13px;
  width: 60%;
  background: #f0f1f3;
}
.notification-time {
  font-size: 16px;
  color: var(--muted);
}
.illustration-label {
  position: absolute;
  bottom: -28px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  transform: rotate(5deg);
}
.workflow {
  background: white;
  padding: 100px 6vw;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 7vw;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps li {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid #dedfe3;
}
.steps li:first-child {
  padding-top: 0;
  border-top: 0;
}
.steps p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 430px;
  margin-top: 10px;
}
.step-number {
  font-size: 12px;
  color: var(--muted);
  padding-top: 6px;
}
.closing {
  padding: 95px 6vw 105px;
  text-align: center;
}
.closing p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  margin: 22px auto;
  max-width: 620px;
  line-height: 1.6;
}
.text-link {
  display: inline-block;
  border-bottom: 1px solid var(--ink);
  padding: 10px 0;
  font-weight: 550;
  transition: color 0.2s;
}
.text-link:hover {
  color: var(--blue);
  text-decoration: none;
}
.site-footer {
  border-top: 1px solid #dedfe3;
  padding-top: 35px;
  padding-bottom: 35px;
}
.site-footer small {
  color: var(--muted);
  font-size: 12px;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  background: white;
  padding: 15px;
  z-index: 9;
}
.skip-link:focus {
  top: 12px;
}
@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(16px) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-5deg);
  }
}
@media (max-width: 760px) {
  .site-header,
  .site-footer {
    padding: 24px;
  }
  .site-header nav {
    gap: 20px;
  }
  .wordmark {
    font-size: 26px;
  }
  .hero {
    padding: 44px 24px 64px;
    grid-template-columns: 1fr;
    gap: 62px;
    min-height: 0;
  }
  .hero h1 {
    font-size: clamp(44px, 9vw, 64px);
  }
  .intro {
    font-size: 17px;
    margin-top: 22px;
    max-width: 360px;
  }
  .eyebrow {
    margin-bottom: 22px;
  }
  .illustration {
    width: 85%;
    max-width: 380px;
    height: 185px;
    margin: 8px auto 20px;
  }
  .notification-front {
    height: 124px;
    border-radius: 34px;
    padding: 22px;
    gap: 16px;
  }
  .bell {
    width: 52px;
    height: 52px;
  }
  .notification-time {
    font-size: 13px;
  }
  .notification-back {
    height: 85px;
    border-radius: 28px;
  }
  .back-one {
    top: 53px;
    left: 15px;
    right: 15px;
  }
  .back-two {
    top: 71px;
    left: 32px;
    right: 32px;
  }
  .illustration-label {
    bottom: 0;
  }
  .workflow {
    padding: 64px 24px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps li {
    gap: 20px;
  }
  .closing {
    padding: 64px 24px;
  }
  .site-footer {
    flex-wrap: wrap;
  }
  .site-footer small {
    width: 100%;
  }
  .site-footer nav {
    gap: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
