/* =============================================
   HERO — Full-screen landing section
   ============================================= */

#hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 64px;
  overflow: hidden;
}

.hc {
  max-width: 840px;
}

/* Eyebrow label */
.hey {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  opacity: 0;
  animation: up .7s .2s forwards;
}

.hey-ln {
  width: 32px;
  height: 1.5px;
  background: var(--blue);
}

.hey-tx {
  font-family: 'Space Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 3.5px;
  color: var(--blue);
  text-transform: uppercase;
}

/* Headline */
.htit {
  font-size: clamp(50px, 8vw, 110px);
  font-weight: 700;
  line-height: .93;
  letter-spacing: -4px;
  margin-bottom: 28px;
  color: var(--text);
}

.htit .ln {
  display: block;
  overflow: hidden;
}

.htit .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  animation: wup .8s forwards cubic-bezier(.16, 1, .3, 1);
}

.htit .stroke {
  -webkit-text-stroke: 1.5px rgba(11, 26, 45, .2);
  color: transparent;
}

.htit .ac {
  color: var(--blue);
}

/* Subtitle */
.hsub {
  font-size: 17px;
  color: var(--mut);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 44px;
  opacity: 0;
  animation: up .7s .75s forwards;
}

/* Buttons */
.hbtns {
  display: flex;
  gap: 12px;
  opacity: 0;
  animation: up .7s .95s forwards;
}

.bp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--blue);
  color: #fff;
  padding: 16px 34px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .4px;
  transition: all .25s;
  box-shadow: 0 6px 24px rgba(0, 129, 204, .28);
}

.bp:hover {
  background: var(--dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 78, 122, .3);
}

.bs {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  padding: 16px 34px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(0, 129, 204, .3);
  letter-spacing: .4px;
  transition: all .25s;
  background: rgba(0, 129, 204, .04);
}

.bs:hover {
  border-color: var(--blue);
  background: rgba(0, 129, 204, .08);
}

/* Scroll indicator */
.hscrl {
  position: absolute;
  bottom: 40px;
  right: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: up .7s 1.3s forwards;
}

.hscrl-t {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--mut);
  writing-mode: vertical-rl;
}

.hscrl-l {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: slp 2s ease-in-out infinite;
}
