:root {
  --color-background: #fffbf9;
  --color-surface: #ffffff;
  --color-navy: #0c1b31;
  --color-text: #405066;
  --color-muted: #8c96a6;
  --color-blue: #3f7fd7;
  --color-blue-soft: #eef5ff;
  --color-orange: #ff7e61;
  --color-orange-soft: #fff0ea;
  --font-sans: ui-rounded, -apple-system, BlinkMacSystemFont, "SF Pro Rounded",
    "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  color: var(--color-navy);
  background: var(--color-background);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page-shell {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}

.decorative-shape {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.decorative-shape--blue {
  top: -12rem;
  right: -10rem;
  width: 34rem;
  height: 34rem;
  background: var(--color-blue-soft);
}

.decorative-shape--orange {
  bottom: -17rem;
  left: -13rem;
  width: 38rem;
  height: 38rem;
  background: var(--color-orange-soft);
}

.hero {
  display: grid;
  width: min(100% - 3rem, 52rem);
  flex: 1;
  grid-template-rows: auto 1fr;
  align-items: center;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  align-self: start;
  justify-self: center;
  gap: 0.7rem;
}

.brand__mark-wrap {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(230, 233, 239, 0.72);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 24px rgba(52, 67, 90, 0.08);
}

.brand__mark {
  display: block;
  width: 2.35rem;
  height: 2.35rem;
}

.brand__name {
  font-size: 1.45rem;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.hero__content {
  max-width: 39rem;
  justify-self: center;
  padding: clamp(4rem, 10vh, 7rem) 0 clamp(3rem, 8vh, 6rem);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1.25rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: var(--color-blue);
  background: var(--color-blue-soft);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.65rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h1 span {
  color: var(--color-blue);
}

.accent-line {
  width: 3rem;
  height: 0.3rem;
  margin: 1.75rem 0 1.35rem;
  margin-right: auto;
  margin-left: auto;
  border-radius: 999px;
  background: var(--color-orange);
}

.hero__description {
  max-width: 34rem;
  margin: 0 auto;
  color: var(--color-text);
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: -0.02em;
  line-height: 1.6;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(230, 233, 239, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 30px rgba(52, 67, 90, 0.09);
  color: var(--color-navy);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.coming-soon__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-orange);
  box-shadow: 0 0 0 0.3rem var(--color-orange-soft);
}

.site-footer {
  display: flex;
  width: min(100% - 3rem, 68rem);
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 1rem 0 2rem;
  color: var(--color-muted);
  font-size: 0.78rem;
}

@media (max-width: 760px) {
  .decorative-shape--blue {
    top: -13rem;
    right: -15rem;
  }

  .decorative-shape--orange {
    bottom: -22rem;
    left: -19rem;
  }

  .hero {
    width: min(100% - 2.5rem, 34rem);
    grid-template-rows: auto 1fr;
    justify-items: center;
    padding-top: 1.5rem;
  }

  .brand {
    justify-self: center;
  }

  .hero__content {
    padding: clamp(3.5rem, 10vh, 5.5rem) 0 2.5rem;
    text-align: center;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.5rem);
  }

  .accent-line {
    margin-right: auto;
    margin-left: auto;
  }

  .hero__description {
    max-width: 28rem;
  }

  .site-footer {
    width: min(100% - 2.5rem, 34rem);
  }
}

@media (max-width: 420px) {
  .hero__content {
    padding-top: 3rem;
  }

  .hero__description {
    font-size: 0.98rem;
  }

}
