/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 24px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 90% 50% at 50% -10%,
      rgba(27, 125, 184, 0.35) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 60% 40% at 10% 80%,
      rgba(245, 160, 32, 0.2) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 35% at 90% 70%,
      rgba(255, 204, 0, 0.12) 0%,
      transparent 55%
    ),
    var(--k);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: drift 8s ease-in-out infinite alternate;
  pointer-events: none;
}
.orb1 {
  width: 500px;
  height: 400px;
  background: rgba(27, 125, 184, 0.2);
  top: -100px;
  left: -100px;
}
.orb2 {
  width: 400px;
  height: 350px;
  background: rgba(245, 160, 32, 0.15);
  bottom: -50px;
  right: -80px;
  animation-delay: -3s;
}
.orb3 {
  width: 300px;
  height: 280px;
  background: rgba(255, 204, 0, 0.1);
  top: 40%;
  left: 60%;
  animation-delay: -5s;
}
@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, 20px) scale(1.05);
  }
}
.colorbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--o) 0%,
    var(--b) 33%,
    var(--g) 66%,
    #222 100%
  );
}
.hero-c {
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 8px 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 36px;
  animation: fadeUp 1s ease both;
}
.ldot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--o);
  animation: lp 2s ease infinite;
  flex-shrink: 0;
}
@keyframes lp {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 160, 32, 0.7);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(245, 160, 32, 0);
  }
}
.kicker {
  font-size: clamp(12px, 1.8vw, 15px);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bl);
  margin-bottom: 16px;
  animation: fadeUp 1s 0.1s ease both;
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 10vw, 110px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeUp 1s 0.15s ease both;
}
.grad-text {
  display: block;
  font-style: italic;
  background: linear-gradient(135deg, var(--o) 0%, var(--g) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(17px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--w6);
  max-width: 620px;
  margin: 0 auto 12px;
  animation: fadeUp 1s 0.2s ease both;
}
.hero-sub {
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--w3);
  max-width: 500px;
  margin: 0 auto 48px;
  animation: fadeUp 1s 0.25s ease both;
  line-height: 1.75;
}
.dpills {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeUp 1s 0.3s ease both;
}
.dp {
  background: var(--w1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 13px;
  line-height: 1.4;
}
.dp strong {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 2px;
}
.cta-wrap {
  animation: fadeUp 1s 0.35s ease both;
}
.cta-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--o) 0%, var(--od) 100%);
  color: var(--k);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 17px;
  padding: 22px 52px;
  border-radius: 100px;
  text-decoration: none;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow:
    0 0 60px rgba(245, 160, 32, 0.4),
    0 4px 24px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.cta-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.cta-main:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 80px rgba(245, 160, 32, 0.55),
    0 8px 40px rgba(0, 0, 0, 0.4);
}
.cta-main svg {
  width: 22px;
  height: 22px;
  fill: var(--k);
  flex-shrink: 0;
}
.cta-micro {
  font-size: 12px;
  color: var(--w3);
  margin-top: 14px;
  letter-spacing: 0.03em;
}
.sl-wrap {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeUp 1s 1.2s ease both;
}
.sl {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--o), transparent);
  animation: sld 2s ease infinite;
}
@keyframes sld {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 0;
  }
}
.sl-lbl {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--w3);
}

.hero-date {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
  margin-bottom: 14px;
  font-size: 14px;
  opacity: 0.9;
}

.hero-date span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
