:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --text: #172033;
  --muted: #5d687c;
  --accent: #d65243;
  --line: rgba(214, 82, 67, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: #ffffff;
}

.welcome-page {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr);
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 5.5rem);
}

.welcome-page::before,
.welcome-page::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  background: rgba(214, 82, 67, 0.06);
  filter: blur(1px);
}

.welcome-page::before {
  width: 18rem;
  height: 18rem;
  left: -7rem;
  bottom: -7rem;
}

.welcome-page::after {
  width: 10rem;
  height: 10rem;
  right: 18%;
  top: 12%;
}

.content-card {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid #edf0f5;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(23, 32, 51, 0.1);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 1.5rem;
  color: var(--text);
  font-size: clamp(2.6rem, 7vw, 5.7rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.96;
  text-transform: uppercase;
}

p {
  max-width: 680px;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1.7;
}

.thanks {
  margin-top: 1.75rem;
  color: var(--accent);
  font-weight: 700;
}

.gear-art {
  position: relative;
  z-index: 1;
  min-height: 420px;
}

.gear {
  position: absolute;
  display: block;
  aspect-ratio: 1;
  border: 3px solid var(--line);
  border-radius: 50%;
  opacity: 0.85;
}

.gear::before,
.gear::after {
  position: absolute;
  inset: 18%;
  content: "";
  border: 3px solid var(--line);
  border-radius: inherit;
}

.gear::after {
  inset: -15%;
  border-style: dashed;
  transform: rotate(18deg);
}

.gear-large {
  width: min(28vw, 260px);
  right: 8%;
  top: 0;
}

.gear-medium {
  width: min(22vw, 210px);
  left: 0;
  top: 28%;
}

.gear-small {
  width: min(19vw, 170px);
  right: 2%;
  bottom: 8%;
}

@media (max-width: 820px) {
  .welcome-page {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .gear-art {
    position: absolute;
    inset: auto -4rem -4rem auto;
    width: 18rem;
    min-height: 18rem;
    opacity: 0.3;
  }

  .gear-large {
    width: 13rem;
  }

  .gear-medium {
    width: 10rem;
  }

  .gear-small {
    width: 8rem;
  }
}
