* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #17151d;
  --muted: #686572;

  --purple: #7657e8;
  --purple-dark: #5f43cc;

  --lavender: #f3f0ff;

  --line: #e9e7ee;

  --white: #ffffff;
  --soft: #faf9fc;

  --radius: 22px;

  --shadow:
    0 24px 70px rgba(42, 30, 80, .12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;

  color: var(--ink);

  background: var(--white);

  line-height: 1.6;
}

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

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

  margin: 0 auto;
}


/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;

  background:
    rgba(255, 255, 255, .88);

  backdrop-filter: blur(16px);

  border-bottom:
    1px solid rgba(233, 231, 238, .7);
}

.nav {
  height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.brand {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  font-weight: 800;

  font-size: 1.35rem;

  letter-spacing: -.06em;
}

.brand > span:last-child > span {
  color: var(--purple);
}

.brand-mark {
  display: grid;
  place-items: center;

  width: 30px;
  height: 30px;

  border-radius: 9px;

  background: var(--purple);

  color: white;

  font-size: .9rem;

  letter-spacing: 0;
}

.nav-links {
  display: flex;

  gap: 32px;

  color: var(--muted);

  font-size: .9rem;
}

.nav-links a:hover,
.text-link:hover,
footer a:hover {
  color: var(--purple);
}


/* BUTTONS */

.button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding: 0 25px;

  border: 0;

  border-radius: 14px;

  background: var(--purple);

  color: white;

  font-weight: 700;

  font-size: .92rem;

  transition:
    transform .2s ease,
    background .2s ease,
    box-shadow .2s ease;

  cursor: pointer;
}

.button:hover {
  background: var(--purple-dark);

  transform: translateY(-2px);

  box-shadow:
    0 12px 28px rgba(118, 87, 232, .22);
}

.button-small {
  min-height: 43px;

  padding: 0 18px;
}


/* HERO */

.hero {
  padding: 92px 0 105px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 82% 35%,
      rgba(118, 87, 232, .13),
      transparent 29%
    ),
    linear-gradient(
      180deg,
      #fff 0%,
      #fbfaff 100%
    );
}

.hero-grid {
  display: grid;

  grid-template-columns:
    1fr .82fr;

  align-items: center;

  gap: 80px;
}

.eyebrow {
  margin-bottom: 16px;

  color: var(--purple);

  font-size: .77rem;

  font-weight: 800;

  letter-spacing: .13em;

  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;

  font-size:
    clamp(
      3.1rem,
      6vw,
      5.2rem
    );

  line-height: .98;

  letter-spacing: -.065em;
}

.hero h1 span,
.pricing-copy h2 span {
  color: var(--purple);
}

.hero-text {
  max-width: 590px;

  margin: 28px 0;

  color: var(--muted);

  font-size: 1.08rem;
}

.hero-actions {
  display: flex;

  align-items: center;

  gap: 25px;
}

.text-link {
  color: var(--ink);

  font-weight: 700;

  font-size: .92rem;
}

.text-link span {
  color: var(--purple);

  margin-left: 6px;
}

.trust-row {
  display: flex;

  flex-wrap: wrap;

  gap: 18px;

  margin-top: 30px;

  color: #5b5863;

  font-size: .78rem;

  font-weight: 600;
}


/* APP PREVIEW */

.app-preview {
  border:
    1px solid #e4e0ed;

  border-radius: 25px;

  background: white;

  box-shadow: var(--shadow);

  overflow: hidden;

  transform: rotate(1.2deg);
}

.window-bar {
  height: 39px;

  display: flex;

  align-items: center;

  gap: 6px;

  padding: 0 16px;

  background: #f8f7fa;

  border-bottom:
    1px solid var(--line);
}

.window-bar span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #d4d0da;
}

.preview-content {
  padding: 28px;
}

.preview-top,
.setup,
.preview-stats {
  display: flex;

  justify-content: space-between;

  gap: 16px;
}

.muted {
  color: #85818c;

  font-size: .72rem;
}

.preview-top h2 {
  margin-top: 3px;

  font-size: 1rem;

  letter-spacing: -.02em;
}

.avatar {
  display: grid;

  place-items: center;

  width: 37px;
  height: 37px;

  border-radius: 50%;

  background: var(--lavender);

  color: var(--purple);

  font-weight: 800;
}

.clock-card {
  margin: 25px 0 17px;

  padding: 25px;

  border-radius: 17px;

  background: var(--lavender);
}

.clock-card > strong {
  display: block;

  margin: 5px 0 3px;

  font-size: 2.4rem;

  line-height: 1;

  letter-spacing: -.06em;
}

.status {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  color: #4d4a55;

  font-size: .68rem;
}

.status i {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #6fc58d;
}

.clock-button {
  width: 100%;

  margin-top: 22px;

  padding: 12px;

  border: 0;

  border-radius: 10px;

  background: var(--purple);

  color: white;

  font: inherit;

  font-size: .75rem;

  font-weight: 700;
}

.preview-stats > div {
  flex: 1;

  padding: 12px;

  border:
    1px solid var(--line);

  border-radius: 12px;
}

.preview-stats span {
  display: block;

  color: #88848f;

  font-size: .59rem;
}

.preview-stats strong {
  display: block;

  margin-top: 3px;

  font-size: .72rem;
}


/* GENERAL SECTIONS */

.section {
  padding: 110px 0;
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  max-width: 650px;

  margin-bottom: 55px;
}

.section-heading h2,
.pricing-copy h2,
.cta h2 {
  font-size:
    clamp(
      2.1rem,
      4vw,
      3.3rem
    );

  line-height: 1.05;

  letter-spacing: -.055em;
}

.section-heading > p:last-child {
  margin-top: 18px;

  color: var(--muted);
}


/* FEATURES */

.feature-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 17px;
}

.feature-card {
  min-height: 255px;

  padding: 28px;

  border:
    1px solid var(--line);

  border-radius: var(--radius);

  background: white;

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 15px 40px rgba(30, 20, 60, .07);
}

.icon {
  display: grid;

  place-items: center;

  width: 43px;
  height: 43px;

  margin-bottom: 34px;

  border-radius: 13px;

  background: var(--lavender);

  color: var(--purple);

  font-size: 1.1rem;

  font-weight: 800;
}

.feature-card h3,
.step h3 {
  font-size: 1rem;

  letter-spacing: -.02em;
}

.feature-card p,
.step p {
  margin-top: 10px;

  color: var(--muted);

  font-size: .85rem;
}


/* STEPS */

.steps {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 0;

  border-top:
    1px solid var(--line);
}

.step {
  display: grid;

  grid-template-columns:
    auto 1fr;

  gap: 22px;

  padding: 32px 28px 0 0;

  border-right:
    1px solid var(--line);
}

.step + .step {
  padding-left: 28px;
}

.step:last-child {
  border-right: 0;
}

.step > span {
  color: var(--purple);

  font-size: .76rem;

  font-weight: 800;
}


/* PRICING */

.pricing-section {
  padding: 110px 0 80px;

  background: #17151d;

  color: white;
}

.pricing-wrap {
  display: grid;

  grid-template-columns:
    1fr .8fr;

  gap: 80px;

  align-items: center;
}

.pricing-copy h2 {
  max-width: 620px;
}

.pricing-copy > p:last-child {
  margin-top: 20px;

  color: #aaa6b1;
}

.price-card {
  padding: 34px;

  border-radius: 24px;

  background: white;

  color: var(--ink);
}

.price-main {
  display: flex;

  align-items: baseline;

  gap: 8px;
}

.price {
  font-size: 4.5rem;

  line-height: .9;

  font-weight: 800;

  letter-spacing: -.07em;
}

.period {
  color: var(--muted);

  font-size: .85rem;
}

.price-description {
  margin-top: 13px;

  color: var(--muted);

  font-size: .9rem;
}

.price-divider {
  height: 1px;

  margin: 27px 0;

  background: var(--line);
}

.setup {
  align-items: flex-start;

  margin-bottom: 28px;
}

.setup strong {
  font-size: .86rem;
}

.setup p {
  max-width: 230px;

  margin-top: 4px;

  color: var(--muted);

  font-size: .73rem;

  line-height: 1.45;
}

.setup-price {
  white-space: nowrap;

  color: var(--purple);
}

.setup-price small {
  display: block;

  color: var(--muted);

  font-size: .58rem;

  font-weight: 500;

  text-align: right;
}

.full-width {
  width: 100%;
}


/* ANNUAL SERVICE */

.annual-note {
  display: flex;

  gap: 18px;

  margin-top: 35px;

  padding: 20px 22px;

  border:
    1px solid #34313c;

  border-radius: 16px;

  color: #cbc7d0;
}

.note-icon {
  flex: 0 0 auto;

  display: grid;

  place-items: center;

  width: 25px;
  height: 25px;

  border:
    1px solid #686370;

  border-radius: 50%;

  font-size: .7rem;
}

.annual-note strong {
  color: white;

  font-size: .8rem;
}

.annual-note p {
  margin-top: 4px;

  font-size: .72rem;

  line-height: 1.55;
}


/* FAQ */

.faq-section {
  background: var(--soft);
}

.narrow {
  max-width: 800px;
}

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

details {
  border-bottom:
    1px solid var(--line);
}

summary {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding: 23px 0;

  cursor: pointer;

  list-style: none;

  font-weight: 700;

  font-size: .9rem;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";

  color: var(--purple);

  font-size: 1.2rem;

  font-weight: 400;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 650px;

  padding: 0 40px 23px 0;

  color: var(--muted);

  font-size: .84rem;
}


/* CTA */

.cta-section {
  padding: 90px 0;

  background: var(--purple);

  color: white;
}

.cta {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 60px;
}

.cta .eyebrow {
  color: #ddd6ff;
}

.cta h2 {
  max-width: 750px;
}

.cta p:last-of-type {
  margin-top: 15px;

  color: #e5e0ff;
}

.button-light {
  flex-shrink: 0;

  background: white;

  color: var(--purple-dark);
}

.button-light:hover {
  background: #f5f2ff;
}


/* FOOTER */

footer {
  padding: 28px 0;

  background: #111015;

  color: #8f8a96;

  font-size: .72rem;
}

.footer-content {
  display: flex;

  align-items: center;

  gap: 25px;
}

.footer-brand {
  color: white;

  font-size: 1.05rem;
}

.footer-content p:last-child {
  margin-left: auto;
}

footer a {
  color: white;
}


/* TABLET */

@media (max-width: 900px) {

  .nav-links {
    display: none;
  }

  .hero-grid,
  .pricing-wrap {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .hero {
    padding-top: 65px;
  }

  .app-preview {
    max-width: 580px;
  }

  .feature-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .pricing-copy {
    max-width: 650px;
  }

}


/* MOBILE */

@media (max-width: 650px) {

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

  .nav {
    height: 68px;
  }

  .nav .button-small {
    display: none;
  }

  .hero {
    padding: 58px 0 75px;
  }

  .hero h1 {
    font-size:
      clamp(
        2.75rem,
        15vw,
        4rem
      );
  }

  .hero-text {
    font-size: .98rem;
  }

  .hero-actions {
    align-items: flex-start;

    flex-direction: column;
  }

  .trust-row {
    flex-direction: column;

    gap: 8px;
  }

  .preview-content {
    padding: 18px;
  }

  .clock-card {
    padding: 20px;
  }

  .preview-stats {
    display: grid;

    grid-template-columns:
      1fr 1fr;
  }

  .section,
  .pricing-section {
    padding: 78px 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step,
  .step + .step {
    padding: 25px 0;

    border-right: 0;

    border-bottom:
      1px solid var(--line);
  }

  .step:last-child {
    border-bottom: 0;
  }

  .price-card {
    padding: 26px;
  }

  .price {
    font-size: 3.8rem;
  }

  .annual-note {
    align-items: flex-start;
  }

  .cta {
    align-items: flex-start;

    flex-direction: column;
  }

  .footer-content {
    flex-wrap: wrap;
  }

  .footer-content p:last-child {
    width: 100%;

    margin-left: 0;
  }

}