/* ==========================================================================
   SLIDE 05 — AKT 1 — BRAND: NeuroClaw is born
   Two columns: LEFT = the brand identity made real (mascot, wordmark, pitch);
   RIGHT = the reasoning as three spec rows (angle / avatar / naming). First
   appearance of the crab — the topic ("Agentic AI") now has a face. A faint
   vertical divider separates "what it is" from "why it is".
   ========================================================================== */

.nc-brand__slide { justify-content: center; }

.nc-brand__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-4xl);
  align-items: stretch;
}
/* identity block: top-aligned with the spec rows (the mascot used to sit above
   the wordmark; with it gone the title rides up to meet "01 DER WINKEL") */
.nc-brand__id { display: flex; flex-direction: column; justify-content: flex-start; }

/* --- left: the identity ---------------------------------------------------- */
.nc-brand__id {
  position: relative;
  padding-right: var(--space-3xl);
}
/* hairline divider between identity and reasoning */
.nc-brand__id::after {
  content: "";
  position: absolute;
  top: 6%; bottom: 6%; right: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-subtle) 20%, var(--border-subtle) 80%, transparent);
}

.nc-brand__mascot {
  width: 168px;
  height: auto;
  display: block;
  margin-bottom: var(--space-lg);
  filter: drop-shadow(0 14px 36px rgba(214,52,43,0.26));
}

.reveal .nc-brand__wordmark {
  font-family: var(--font-display);
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0;
}

.nc-brand__tag {
  margin: var(--space-md) 0 var(--space-xl);
  font-size: var(--fs-label-sm);
  letter-spacing: 0.2em;
  color: var(--accent-2);
}
.nc-brand__tag .idx { color: var(--accent-2); opacity: 0.7; }

.nc-brand__pitch {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 40ch;
  margin: 0;
}
.nc-brand__pitch strong { color: var(--text-primary); font-weight: 600; }

/* --- right: the spec rows -------------------------------------------------- */
.nc-brand__spec {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.nc-spec-row {
  display: grid;
  grid-template-columns: 13rem 1fr;
  gap: var(--space-xl);
  align-items: start;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
}
.nc-brand__spec .nc-spec-row:last-child { border-bottom: none; padding-bottom: 0; }

.nc-spec-row__k {
  font-size: var(--fs-label-sm);
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin: 0;
  padding-top: 0.35rem;
}
.nc-spec-row__k .idx { color: var(--accent); }

.nc-spec-row__v {
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  line-height: 1.45;
  color: var(--text-primary);
  margin: 0;
}
.nc-spec-row__v strong { color: var(--text-primary); font-weight: 700; }
.nc-spec-row__v em { color: var(--accent-text); font-style: italic; }

/* the naming tags — sharp mono chips, the product command-words */
.nc-brand__naming { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.nc-tag {
  font-family: var(--font-mono);
  font-size: var(--fs-label-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  background: var(--bg-inset);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.4em 0.7em;
  line-height: 1;
}
