
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse at 82% 44%, rgb(36 120 255 / .14), transparent 55%),
    #0b1115;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgb(147 197 253 / .13) 1px, transparent 1px),
    linear-gradient(90deg, rgb(147 197 253 / .13) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent 30%, black);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 88px 32px 76px;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  margin-bottom: 24px;
  border: 1px solid rgb(96 165 250 / .22);
  border-radius: 999px;
  background: rgb(36 120 255 / .07);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .025em;
}

.hero-eyebrow > span {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 12px rgb(96 165 250 / .6);
}

.hero-title {
  margin: 0;
  font-size: clamp(40px, 4.4vw, 62px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -.045em;
}

.hero-title > span {
  display: block;
  margin-top: 9px;
  color: #60a5fa;
  background: linear-gradient(100deg, #3987ff, #90caff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  max-width: 460px;
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.8;
  color: #b7c4d3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-primary,
.hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.hero-primary {
  color: #fff;
  background: #2478ff;
  border: 1px solid #438bff;
  box-shadow: 0 8px 30px rgb(36 120 255 / .22);
}

.hero-primary:hover {
  background: #155bd4;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgb(36 120 255 / .32);
}

.hero-secondary {
  color: #dbeafe;
  border: 1px solid rgb(147 197 253 / .25);
  background: rgb(255 255 255 / .025);
}

.hero-secondary:hover {
  background: rgb(96 165 250 / .1);
  transform: translateY(-2px);
}

.hero-note {
  margin-top: 14px;
  color: #94a3b8;
  font-size: 12px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / .09);
  list-style: none;
  color: #b7c4d3;
  font-size: 12px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-features li > span {
  color: #60a5fa;
}

.hero-visual {
  position: relative;
  margin: 0;
  padding-bottom: 24px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 15% 8%;
  z-index: -1;
  border-radius: 50%;
  background: rgb(36 120 255 / .15);
  filter: blur(55px);
  pointer-events: none;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 22px rgb(0 0 0 / .25));
}

.hero-caption {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: calc(100% - 24px);
  margin: -12px auto 0;
  padding: 14px 18px;
  border: 1px solid rgb(147 197 253 / .18);
  border-radius: 16px;
  background: rgb(17 27 36 / .94);
  box-shadow: 0 14px 35px rgb(0 0 0 / .2);
  backdrop-filter: blur(12px);
}

.hero-caption-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #60a5fa;
  background: rgb(36 120 255 / .12);
}

.hero-caption strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
}

.hero-caption small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: #94a3b8;
}

@media (max-width: 1023px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
    padding: 56px 24px 40px;
  }

  .hero-copy {
    max-width: 640px;
    margin-inline: auto;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(40px, 7vw, 62px);
  }

  .hero-description {
    max-width: 540px;
  }

  .hero-visual {
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
  }
}

@media (max-width: 479px) {
  .hero-layout {
    padding-inline: 20px;
  }

  .hero-title {
    font-size: clamp(32px, 8.8vw, 42px);
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-primary,
  .hero-secondary {
    width: 100%;
  }

  .hero-features {
    gap: 12px 16px;
  }

  .hero-caption {
    padding: 12px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-visual {
    animation: hero-appear .65s ease both;
  }

  .hero-visual {
    animation-delay: .12s;
  }

  @keyframes hero-appear {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-primary,
  .hero-secondary {
    transition: none;
  }
}
