/* =============================================
   blaze.css — Blaze VTuber Agency page
   ============================================= */

/* ---- HERO ---- */
.blaze-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #08050f;
}

#blazeCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}

.blaze-hero__vignette {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 80%, rgba(220,80,40,0.2) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(60,10,80,0.25) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(8,5,15,0.5) 0%, transparent 30%),
    linear-gradient(to top,    rgba(8,5,15,0.8) 0%, transparent 40%);
}

.blaze-hero__content {
  position: relative; z-index: 3;
  text-align: center;
  padding: 120px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.blaze-hero__logo {
  width: 100px;
  height: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 32px rgba(220,100,60,0.5));
  opacity: 0;
  animation: fadeUp 0.7s 0.1s forwards;
}

.blaze-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 90px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  opacity: 0;
  animation: fadeUp 0.7s 0.25s forwards;
}

.blaze-hero__sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}

.blaze-hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  opacity: 0;
  animation: fadeUp 0.7s 0.55s forwards;
}

/* Override primary button color for Blaze — warm salmon/flame instead of purple */
.blaze-hero .btn--primary,
.blaze-contact .btn--primary {
  background: #c45a35;
}
.blaze-hero .btn--primary:hover,
.blaze-contact .btn--primary:hover {
  background: #d96b44;
}

/* ---- SECTIONS ---- */
.blaze-section {
  padding: 88px 0;
  background: var(--bg-2);
}
.blaze-section--alt {
  background: var(--bg);
}

/* ---- TWO COL ---- */
.blaze-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.blaze-two-col p { color: var(--text-muted); margin-bottom: 14px; }
.blaze-two-col p:first-of-type { margin-top: 20px; }
.blaze-note {
  font-size: 13px;
  color: var(--text-muted);
  border-left: 2px solid rgba(220,100,60,0.5);
  padding-left: 12px;
  margin-top: 16px;
}

.blaze-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.blaze-social-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  transition: all 0.2s;
}
.blaze-social-link:hover {
  color: var(--text);
  border-color: rgba(220,100,60,0.5);
  background: rgba(220,100,60,0.08);
}

/* ---- DETAIL CARDS ---- */
.blaze-detail-cards { display: flex; flex-direction: column; gap: 16px; }
.blaze-detail-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.blaze-detail-card h3 {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #e07050;
  margin-bottom: 14px;
}
.blaze-detail-card li {
  color: var(--text-muted); font-size: 14px;
  padding: 3px 0 3px 14px; position: relative;
}
.blaze-detail-card li::before {
  content: '/'; position: absolute; left: 0;
  color: #c45a35; font-weight: 700;
}
.blaze-detail-card strong { color: var(--text); }

/* ---- ROLE GRID ---- */
.blaze-role-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.blaze-role-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.blaze-role-card__label {
  display: block;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #e07050;
  margin-bottom: 10px;
}
.blaze-role-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ---- ROSTER ---- */
.blaze-roster-empty {
  color: var(--text-muted);
  font-size: 14px;
  grid-column: 1 / -1;
}

/* ---- CONTACT ---- */
.blaze-contact__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.blaze-contact__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.18;
}
.blaze-contact__logo {
  width: 180px;
  mix-blend-mode: screen;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 860px) {
  .blaze-two-col,
  .blaze-contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .blaze-role-grid { grid-template-columns: 1fr; }
  .blaze-contact__logo-wrap { display: none; }
}
