:root {
  --techr-purple: #8c5ad8;
  --techr-purple-dark: #5b39a8;
  --text: #080808;
  --body: #161616;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: #f6fbff;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 48px 24px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  backdrop-filter: blur(0px);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 20px;
}

.techr-mark {
  width: clamp(104px, 11vw, 154px);
  height: clamp(104px, 11vw, 154px);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--techr-purple), var(--techr-purple-dark));
  box-shadow: 0 22px 46px rgba(91, 57, 168, 0.18);
  position: relative;
  margin-bottom: 46px;
}

.techr-mark span {
  position: absolute;
  top: 32%;
  width: 17%;
  height: 30%;
  background: var(--white);
  border-radius: 999px;
}

.techr-mark span:first-child {
  left: 31%;
}

.techr-mark span:last-child {
  right: 31%;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 5.25vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 800;
}

h1::last-letter,
h1 .accent {
  color: var(--techr-purple);
}
span { color: #8c5ad8; }

p {
  max-width: 840px;
  margin: 30px 0 34px;
  font-size: clamp(21px, 2.35vw, 33px);
  line-height: 1.22;
  letter-spacing: -0.035em;
  color: var(--body);
  font-weight: 400;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 13px 25px 13px 30px;
  min-width: 154px;
  min-height: 70px;
  border-radius: 27px;
  background: linear-gradient(145deg, #9f72de, #6f42bf);
  color: var(--white);
  text-decoration: none;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  box-shadow: 0 16px 34px rgba(111, 66, 191, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero__button:hover,
.hero__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(111, 66, 191, 0.3);
}

.hero__button svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 700px) {
  .hero {
    padding: 32px 20px;
  }

  .hero__content {
    margin-top: 0;
  }

  .techr-mark {
    margin-bottom: 32px;
  }

  p {
    margin-top: 24px;
  }

  .desktop-break {
    display: none;
  }

  .hero__button {
    min-height: 58px;
    border-radius: 22px;
  }
}
