.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  clip-path: inset(0);
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 6rem;
}

.hero__bg {
  position: absolute;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  will-change: transform;
}
.hero__orb--1 {
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, var(--c-purple), transparent 70%);
  top: 5%; left: 5%;
}
.hero__orb--2 {
  width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
  background: radial-gradient(circle, var(--c-pink), transparent 70%);
  top: 30%; right: -10%;
}
.hero__orb--3 {
  width: 45vw; height: 45vw; max-width: 540px; max-height: 540px;
  background: radial-gradient(circle, var(--c-cyan), transparent 70%);
  bottom: -15%; left: 20%;
  opacity: 0.35;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.08); }
  66%      { transform: translate(-30px, 25px) scale(0.95); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  color: var(--c-text-2);
  margin-bottom: 2rem;
}
.hero__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
}

.hero__headline {
  font-family: var(--ff-display);
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--c-text);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--c-text-2);
  max-width: 56ch;
  margin-bottom: 2.5rem;
  text-wrap: pretty;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero__cta { padding: 1.15em 2em; font-size: 1rem; }

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  color: var(--c-text-3);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
.hero__trust-item strong {
  color: var(--c-text);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-right: 0.35em;
}
.hero__trust-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--c-text-muted);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-arrow {
  display: block;
  width: 18px;
  height: 18px;
  border-right: 1.5px solid rgba(255,255,255,0.3);
  border-bottom: 1.5px solid rgba(255,255,255,0.3);
  transform: rotate(45deg) translate(-2px, -2px);
  animation: scroll-chevron 2.6s ease-in-out infinite;
}
@keyframes scroll-chevron {
  0%, 100% { transform: rotate(45deg) translate(-2px, -2px); opacity: 0.3; }
  55%       { transform: rotate(45deg) translate(3px, 3px);   opacity: 0.75; }
}

@media (max-width: 768px) {
  .hero__scroll-indicator { display: none; }
  .hero__ctas { margin-bottom: 3rem; }
  .hero__cta { width: 100%; }
}
