:root {
  color-scheme: light;
  --ink: #173330;
  --muted: #5d6d69;
  --soft-ink: #395552;
  --paper: #f8faf7;
  --paper-warm: #fff9f2;
  --teal: #12665f;
  --teal-dark: #0a463f;
  --coral: #d47868;
  --line: rgba(23, 51, 48, 0.14);
  --shadow: 0 18px 48px rgba(13, 48, 45, 0.16);
  --page-padding: 48px;
  --headline-size: 76px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  text-rendering: optimizeLegibility;
}

button,
a {
  font: inherit;
}

button {
  border: 0;
}

.page {
  min-height: 100svh;
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  overflow: hidden;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(251, 253, 249, 0.98) 0%,
      rgba(251, 253, 249, 0.93) 28%,
      rgba(251, 253, 249, 0.58) 52%,
      rgba(251, 253, 249, 0.14) 78%
    ),
    linear-gradient(
      180deg,
      rgba(255, 249, 242, 0.82) 0%,
      rgba(255, 249, 242, 0) 38%,
      rgba(248, 250, 247, 0.64) 100%
    );
}

.hero__inner {
  display: flex;
  min-height: calc(100svh - 78px);
  flex-direction: column;
  justify-content: space-between;
  padding: 28px var(--page-padding) 64px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: 0;
  text-decoration: none;
}

.brand__mark {
  position: relative;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(18, 102, 95, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 30px rgba(18, 102, 95, 0.1);
}

.brand__mark::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid var(--teal);
  border-radius: 50%;
}

.brand__mark span:first-child,
.brand__mark span:last-child {
  position: absolute;
  display: block;
  background: var(--coral);
}

.brand__mark span:first-child {
  width: 14px;
  height: 2px;
}

.brand__mark span:last-child {
  width: 2px;
  height: 14px;
}

.hero__content {
  width: min(620px, 100%);
  padding: 72px 0 22px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  border-left: 4px solid var(--coral);
  padding-left: 14px;
  color: var(--soft-ink);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: var(--headline-size);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.96;
}

.intro {
  max-width: 540px;
  margin: 26px 0 0;
  color: var(--soft-ink);
  font-size: 21px;
  line-height: 1.55;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 156px;
  min-height: 54px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 780;
  letter-spacing: 0;
  transition:
    box-shadow 160ms ease,
    transform 160ms ease,
    background-color 160ms ease;
}

.button--primary {
  background: var(--teal);
  color: white;
  box-shadow: var(--shadow);
}

.button__arrow {
  position: relative;
  width: 18px;
  height: 10px;
  flex: 0 0 auto;
}

.button__arrow::before,
.button__arrow::after {
  position: absolute;
  content: "";
  display: block;
}

.button__arrow::before {
  top: 4px;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.button__arrow::after {
  top: 1px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--teal-dark);
  box-shadow: 0 22px 52px rgba(13, 48, 45, 0.2);
}

.button:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(212, 120, 104, 0.5);
  outline-offset: 4px;
}

.footer {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  padding: 18px var(--page-padding);
  color: var(--muted);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.footer__line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--soft-ink);
  font-weight: 680;
}

.status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(212, 120, 104, 0.18);
}

@media (max-width: 900px) {
  :root {
    --page-padding: 30px;
    --headline-size: 58px;
  }

  .hero__shade {
    background:
      linear-gradient(
        90deg,
        rgba(251, 253, 249, 0.98) 0%,
        rgba(251, 253, 249, 0.94) 48%,
        rgba(251, 253, 249, 0.54) 100%
      ),
      linear-gradient(
        180deg,
        rgba(255, 249, 242, 0.84) 0%,
        rgba(248, 250, 247, 0.52) 100%
      );
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__content {
    padding-top: 86px;
  }
}

@media (max-width: 680px) {
  :root {
    --page-padding: 22px;
    --headline-size: 46px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: calc(100svh - 104px);
    padding-top: 20px;
    padding-bottom: 46px;
  }

  .topbar {
    gap: 16px;
  }

  .brand {
    font-size: 16px;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .hero__content {
    padding-top: 72px;
  }

  .eyebrow {
    font-size: 13px;
  }

  .intro {
    font-size: 18px;
  }

  .footer {
    min-height: 104px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  :root {
    --headline-size: 39px;
  }

  .hero__inner {
    min-height: calc(100svh - 116px);
  }

  .brand {
    gap: 9px;
  }

  .brand__mark {
    width: 31px;
    height: 31px;
  }

  .button {
    width: 100%;
  }

  .footer {
    min-height: 116px;
    font-size: 13px;
  }
}
