/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.hero-subtitle {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.1rem;
  letter-spacing: 0.06em;
  font-size: 1rem;
  font-family: 'DM Mono', monospace;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.06;
  margin-bottom: 1.6rem;
  letter-spacing: -0.035em;
}

.hero-title em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── INFO BLOCK DROIT ─── */
.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-terminal {
  width: 100%;
  max-width: 360px;
  border-left: 2px solid var(--border-bright);
  padding-left: 1.75rem;
}

.hero-terminal-bar { display: none; }

.hero-terminal-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hero-terminal-body p {
  font-family: 'DM Mono', monospace;
  font-size: 0.83rem;
  line-height: 1.5;
  display: flex;
  gap: 0;
}

.ht-key {
  color: var(--muted);
  min-width: 6rem;
  flex-shrink: 0;
}

.ht-sep { color: var(--border-bright); margin-right: 0.5rem; }

.ht-val { color: var(--text); }

.ht-green {
  color: #4ade80;
  font-family: 'DM Mono', monospace;
  font-size: 0.83rem;
}

.ht-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0.3rem 0 !important;
  height: 0 !important;
}

/* ─── BOUTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  font-family: 'Syne', sans-serif;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 28px rgba(79,172,254,0.28);
}

.btn-primary:hover {
  color: #fff;
  opacity: 0.88;
  box-shadow: 0 6px 36px rgba(139,92,246,0.38);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
}

.btn-ghost:hover {
  border-color: var(--border-bright);
  color: var(--text);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 7rem;
    gap: 3rem;
  }
  .hero-right { justify-content: flex-start; }
  .hero-terminal { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-desc { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
}
