:root {
  --page: #ffffff;
  --ink: #343b44;
  --muted: #606872;
  --line: #dfe2e5;
  --panel: #f6f7f8;
  --dark: #252b34;
  --blue: #0ca8dd;
  --mint: #66d6b0;
  --lime: #a8cd2a;
  --green: #41ad31;
  --red: #db1f2e;
  --orange: #f07d00;
  --yellow: #f7ad0b;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f0f1f2;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.38;
}

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

.page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, 980px);
  min-height: calc(100vh - 16px);
  margin: 8px auto;
  overflow: hidden;
  background: var(--page);
  border: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(44, 50, 56, 0.16);
}

.topbar {
  display: flex;
  align-items: center;
  min-height: 104px;
  padding: 28px 48px 20px;
  background: #fff;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: 96px;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.coming-soon {
  position: relative;
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(248, 249, 250, 0.99) 0%, rgba(248, 249, 250, 0.96) 40%, rgba(248, 249, 250, 0.16) 66%, rgba(248, 249, 250, 0) 100%),
    url("assets/hero-doctor.jpg") right center / 58% auto no-repeat,
    linear-gradient(180deg, #fafafa 0%, #f2f3f4 100%);
}

.stripe-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  padding: 0 48px;
}

.stripe {
  height: 7px;
  border-radius: 6px;
}

.stripe-blue {
  background: var(--blue);
}

.stripe-mint {
  background: var(--mint);
}

.stripe-lime {
  background: var(--lime);
}

.stripe-green {
  background: var(--green);
}

.stripe-red {
  background: var(--red);
}

.stripe-orange {
  background: var(--orange);
}

.stripe-yellow {
  background: var(--yellow);
}

.hero-content {
  display: grid;
  align-items: center;
  min-height: 553px;
  padding: 64px 48px 74px;
}

.hero-text {
  width: min(100%, 475px);
}

h1,
p {
  margin-top: 0;
}

.eyebrow {
  margin-bottom: 16px;
  color: #4f5660;
  font-size: 26px;
  font-weight: 400;
}

h1 {
  max-width: 430px;
  margin-bottom: 24px;
  color: #454b54;
  font-size: 58px;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  max-width: 390px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.notice {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 0;
  padding: 0 22px;
  background: var(--dark);
  color: #fff;
  box-shadow: 0 3px 5px rgba(32, 38, 45, 0.24);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  padding: 35px 48px 31px;
  background: #fff;
}

.footer-logo {
  width: 88px;
}

.footer p {
  margin-bottom: 0;
  color: #3d444d;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .page {
    min-height: 100vh;
    margin: 0;
    border: 0;
  }

  .topbar {
    min-height: 88px;
    padding: 22px;
  }

  .coming-soon {
    background:
      linear-gradient(90deg, rgba(248, 249, 250, 0.99) 0%, rgba(248, 249, 250, 0.92) 53%, rgba(248, 249, 250, 0.22) 100%),
      url("assets/hero-doctor.jpg") right center / auto 100% no-repeat,
      linear-gradient(180deg, #fafafa 0%, #f2f3f4 100%);
  }

  .stripe-row {
    padding: 0 22px;
  }

  .hero-content {
    padding: 54px 22px 68px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 22px;
  }
}

@media (max-width: 560px) {
  .coming-soon {
    min-height: 610px;
    background:
      linear-gradient(180deg, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0.96) 50%, rgba(248, 249, 250, 0.35) 100%),
      url("assets/hero-doctor.jpg") right bottom / 124% auto no-repeat,
      linear-gradient(180deg, #fafafa 0%, #f2f3f4 100%);
  }

  .hero-content {
    align-items: start;
    min-height: 603px;
    padding-top: 42px;
  }

  .eyebrow {
    font-size: 22px;
  }

  h1 {
    max-width: 320px;
    font-size: 42px;
  }

  .lead {
    max-width: 300px;
    font-size: 16px;
  }
}
