.hero {
  min-height: 100vh;
  padding: calc(var(--space-5xl) + 24px) var(--container-pad) var(--space-4xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
  z-index: 2;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 7px 14px 7px 11px;
  border-radius: var(--radius-pill);
  background: oklch(22% 0.04 265 / 0.6);
  border: 1px solid oklch(32% 0.06 265);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  width: fit-content;
  opacity: 0;
}

.hero__pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  font-variation-settings: "opsz" 12;
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--ink);
  max-width: 14ch;
  margin-block: var(--space-md) var(--space-lg);
}

.hero__title-line { display: block; overflow: hidden; padding-bottom: 0.18em; }
.hero__word {
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity;
}
.hero__word em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 60;
  color: var(--accent);
  text-shadow: 0 0 40px var(--accent-glow);
}

.hero__lower {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--space-3xl);
  flex-wrap: wrap;
  max-width: 1100px;
  margin-top: var(--space-md);
}

.hero__lede {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 46ch;
  opacity: 0;
}
.hero__lede em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink);
}

.hero__ctas {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  min-height: 44px;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}
.btn--primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow:
    0 0 0 1px oklch(70% 0.25 252 / 0.5),
    0 16px 28px -10px oklch(50% 0.22 252 / 0.4),
    0 30px 60px -20px oklch(50% 0.22 252 / 0.25);
}
.btn--primary:hover {
  background: var(--accent-hot);
  box-shadow:
    0 0 0 1px oklch(80% 0.25 252 / 0.7),
    0 20px 36px -10px oklch(50% 0.22 252 / 0.55),
    0 36px 70px -20px oklch(50% 0.22 252 / 0.35);
}
.btn--secondary {
  color: var(--ink-soft);
  background: oklch(20% 0.02 265 / 0.4);
  border: 1px solid var(--rule);
}
.btn--secondary:hover { color: var(--ink); border-color: oklch(45% 0.04 265); }

.hero__indicator {
  position: absolute;
  bottom: var(--space-2xl);
  right: var(--container-pad);
  text-align: right;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  z-index: 3;
}
.hero__indicator strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 4px;
}

@media (max-width: 640px) {
  .hero__title { max-width: 16ch; }
  .hero__indicator { display: none; }
}
