:root {
  color-scheme: dark;
  --canvas: #071311;
  --canvas-soft: #0d201c;
  --text: #f5fbf9;
  --muted: #b7c9c4;
  --teal: #55dfc2;
  --teal-dark: #08241e;
  --line: rgb(255 255 255 / 0.18);
  --surface: rgb(255 255 255 / 0.06);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-synthesis: none;
}

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

html {
  min-width: 320px;
  background: var(--canvas);
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(
      circle at 18% 16%,
      rgb(85 223 194 / 0.11),
      transparent 28rem
    ),
    linear-gradient(145deg, var(--canvas-soft), var(--canvas) 55%);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: var(--teal-dark);
  background: var(--teal);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 140ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.ambient {
  position: absolute;
  z-index: -1;
  border: 1px solid rgb(85 223 194 / 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.ambient::after {
  position: absolute;
  inset: 11%;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.ambient-one {
  top: -28rem;
  right: -20rem;
  width: 52rem;
  height: 52rem;
}

.ambient-two {
  bottom: -25rem;
  left: -22rem;
  width: 42rem;
  height: 42rem;
}

.site-header,
.site-footer {
  width: min(100% - 2rem, 74rem);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
}

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

.brand img {
  width: 10.4rem;
  height: auto;
}

.header-link,
.site-footer a {
  color: var(--muted);
  font-weight: 650;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
}

.header-link {
  text-decoration: none;
}

.header-link:hover,
.site-footer a:hover {
  color: var(--text);
}

.holding-main {
  display: grid;
  place-items: center;
  width: min(100% - 2rem, 74rem);
  margin-inline: auto;
  padding-block: clamp(4.5rem, 12vh, 9rem);
}

.holding-copy {
  width: min(100%, 54rem);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.5rem;
  color: var(--teal);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentcolor;
  box-shadow: 0 0 0 0.32rem rgb(85 223 194 / 0.13);
}

h1 {
  max-width: 13ch;
  margin: 0 auto;
  font-size: clamp(2.7rem, 8vw, 6.4rem);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.intro {
  max-width: 40rem;
  margin: clamp(1.5rem, 4vw, 2.25rem) auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: 10.5rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 780;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 140ms ease,
    border-color 140ms ease,
    color 140ms ease,
    transform 140ms ease;
}

.button svg {
  width: 1.1rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button-primary {
  color: var(--teal-dark);
  background: var(--teal);
}

.button-primary:hover {
  background: #79ead3;
}

.button-secondary {
  border-color: var(--line);
  color: var(--text);
  background: var(--surface);
}

.button-secondary:hover {
  border-color: rgb(255 255 255 / 0.34);
  background: rgb(255 255 255 / 0.1);
}

.customer-note {
  margin: 1.5rem 0 0;
  color: #91aaa4;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.25rem 1.75rem;
  border-top: 1px solid var(--line);
  color: #91aaa4;
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
}

a:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

@media (max-width: 36rem) {
  .site-header,
  .site-footer,
  .holding-main {
    width: min(100% - 1.5rem, 74rem);
  }

  .site-header {
    padding-block: 1.15rem;
  }

  .brand img {
    width: 8.8rem;
  }

  .holding-main {
    padding-block: 4rem;
  }

  .actions,
  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
