/* =========================================================
   KONFLIKT — Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* Content sits close under the fixed header rather than being
     vertically centred — the copy should read immediately, not float
     in a large empty gap on tall viewports. */
  justify-content: flex-start;
  padding: var(--space-xl) var(--gutter) var(--space-lg);
  overflow: hidden;
}

/* Ambient depth: a slow, subtle wash — not decoration for its own sake,
   it reads as the "distillery" atmosphere behind the glass */
.hero::before {
  content: '';
  position: absolute;
  inset: -20%;
  /* vmin-based sizing (not % of the enlarged box) so the ellipses stay a
     sane size on narrow/tall mobile viewports instead of ballooning wide
     enough to wash out the fixed header/logo behind the blur. Anchored
     lower too, for clearance from the header. */
  background:
    radial-gradient(ellipse 45vmin 35vmin at 78% 35%, rgba(164, 205, 57, 0.10), transparent 60%),
    radial-gradient(ellipse 40vmin 32vmin at 15% 88%, rgba(127, 106, 147, 0.18), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: var(--space-sm);
}

.hero__eyebrow .drop {
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(164,205,57,0.55);
  animation: pulse-drop 2.6s var(--ease-out) infinite;
}

@keyframes pulse-drop {
  0%   { box-shadow: 0 0 0 0 rgba(164,205,57,0.45); }
  70%  { box-shadow: 0 0 0 10px rgba(164,205,57,0); }
  100% { box-shadow: 0 0 0 0 rgba(164,205,57,0); }
}

.hero__title {
  font-size: var(--fs-hero);
  color: var(--text-primary);
}

.hero__title .accent-word {
  color: var(--accent);
}

.hero__sub {
  margin-top: var(--space-sm);
  max-width: 560px;
  font-size: var(--fs-h3);
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.4;
}

.hero__actions {
  margin-top: var(--space-lg);
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn-primary, .btn-ghost {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.03em;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-contrast);
}
.btn-primary:hover { transform: translateY(-2px); }

.btn-ghost {
  border: 1px solid var(--hairline-strong);
  color: var(--text-primary);
}
.btn-ghost:hover { border-color: var(--accent); transform: translateY(-2px); }

/* Scroll cue built from the icon-K silhouette: bar + triangle,
   doubling as a literal "keep watching" affordance */
.scroll-cue {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  z-index: 1;
}

.scroll-cue svg { animation: drift 1.8s var(--ease-out) infinite; }

@keyframes drift {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(5px); opacity: 1; }
}

@media (max-width: 780px) {
  .hero { padding-top: var(--space-2xl); min-height: 92vh; }
  .scroll-cue { display: none; }
}
