html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --sally-navy: #001744;
  --sally-blue: #0066ff;
  --sally-blue-hover: #0054d6;
  --sally-muted: #657087;
  --sally-soft: #f4f7fb;
  --sally-line: #dfe5ef;
  --sally-white: #ffffff;
}

.get-started {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--sally-navy);
  font-family: "Red Hat Display", sans-serif;
}

.get-started-shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}


/* =========================
   NAV
   ========================= */

.get-started-nav {
  padding: 24px 0 8px;
  background: #ffffff;
}

.get-started-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.get-started-brand {
  display: inline-flex;
  align-items: center;
}

.get-started-brand img {
  display: block;
  width: 155px;
  height: auto;
}

.get-started-login {
  color: var(--sally-navy);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
}


/* =========================
   INTRO
   ========================= */

.get-started-intro {
  padding: 45px 0 58px;
  background: #ffffff;
}

.get-started-intro__content {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.get-started-intro h1 {
  margin: 0;
  color: var(--sally-navy);
  font-size: clamp(48px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.05em;
  font-weight: 900;
}

.get-started-intro h1 span {
  display: block;
  color: var(--sally-blue);
}

.get-started-intro__pricing-copy {
  max-width: 790px;
  margin: 54px auto 0;
}

.get-started-intro__pricing-copy h2 {
  margin: 0;
  color: #d2d7de;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 800;
}

.get-started-intro__pricing-copy p {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--sally-muted);
  font-size: 15px;
  line-height: 1.6;
}


/* =========================
   PRICING
   ========================= */

.get-started-pricing {
  padding: 46px 0 115px;
  background: var(--sally-soft);
}

.get-started-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 24px;
}

.get-started-plan {
  position: relative;
  min-height: 0;
  display: block;
  padding: 38px;
  border: 1px solid var(--sally-line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(0, 23, 68, .06);
}

.get-started-plan--featured {
  border: 2px solid var(--sally-blue);
  box-shadow: 0 22px 50px rgba(0, 102, 255, .13);
}

.get-started-plan__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--sally-blue);
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
  white-space: nowrap;
}

.get-started-plan__name {
  margin: 0;
  color: var(--sally-navy);
  font-size: 23px;
  font-weight: 900;
}

.get-started-plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 20px;
}

.get-started-plan__price strong {
  color: var(--sally-navy);
  font-size: 52px;
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 900;
}

.get-started-plan__price span {
  color: var(--sally-muted);
  font-size: 14px;
  font-weight: 700;
}

.get-started-plan__annual {
  margin: 8px 0 0;
  color: var(--sally-muted);
  font-size: 13px;
  font-weight: 650;
}

.get-started-plan__description {
  min-height: 75px;
  margin: 26px 0 0;
  color: var(--sally-muted);
  font-size: 15px;
  line-height: 1.6;
}

.get-started-plan ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.get-started-plan li {
  position: relative;
  padding-left: 24px;
  color: var(--sally-navy);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 650;
}

.get-started-plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sally-blue);
  font-weight: 900;
}


/* =========================
   BUTTONS
   ========================= */

.get-started-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  transition:
    transform .18s ease,
    background .18s ease,
    box-shadow .18s ease;
}

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

.get-started-button--blue {
  background: var(--sally-blue);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 102, 255, .22);
}

.get-started-button--blue:hover {
  background: var(--sally-blue-hover);
}

.get-started-button--outline {
  border: 1px solid #ccd6e4;
  background: #ffffff;
  color: var(--sally-navy);
}

.get-started-button--large {
  min-height: 58px;
  padding: 0 34px;
  font-size: 17px;
}


/* =========================
   FINAL
   ========================= */

.get-started-bottom {
  margin-top: 68px;
  text-align: center;
}

.get-started-bottom p {
  margin: 0;
  color: var(--sally-navy);
  font-size: 20px;
}

.get-started-bottom .get-started-button {
  margin-top: 26px;
}

.get-started-bottom > span {
  display: block;
  margin-top: 13px;
  color: var(--sally-muted);
  font-size: 13px;
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {

  .get-started-plans {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .get-started-plan {
    min-height: auto;
  }
}

@media (max-width: 600px) {

  .get-started-shell {
    width: min(100% - 30px, 1160px);
  }

  .get-started-intro {
    padding: 58px 0 42px;
  }

  .get-started-intro h1 {
    font-size: 45px;
  }

  .get-started-intro__pricing-copy {
    margin-top: 40px;
  }

  .get-started-intro__pricing-copy h2 {
    font-size: 31px;
  }

  .get-started-pricing {
    padding: 38px 0 80px;
  }

  .get-started-plan {
    padding: 30px;
  }
}