/* ===========================================================
   custom.css - LAMA deck components
   (loaded after colors_and_type.css + deck-styles.css)
   why-now infographics, AI copilot chat, outlet network,
   targets band, scope card, example callout, impact line
   =========================================================== */
/* Why-now cards (slide 03) */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.why-card {
  background: var(--bg-elev);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 236px;
}
.why-card .wk {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
}
.why-card .wt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.why-card .wi {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  color: var(--n-700);
  margin-top: auto;
}
.why-card .viz {
  display: block;
  width: 100%;
  height: 58px;
  margin: 10px 0 2px;
}
.why-card .vrow {
  margin: 12px 0 4px;
}
.why-card .chanbar {
  display: flex;
  height: 18px;
  border-radius: 9px;
  overflow: hidden;
  background: var(--n-200);
}
.why-card .chanbar span {
  display: block;
  height: 100%;
}
.why-card .chankeys {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--n-700);
}
.why-card .chankeys span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.why-card .chankeys .dt {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
/* AI copilot chat (slide 06) */
.ai {
  width: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-float);
  background: #fff;
  border: 1px solid var(--hairline);
  justify-self: center;
}
.ai .aih {
  background: var(--ink);
  color: var(--paper);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ai .aih .av {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(198, 242, 78, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai .aih .av svg {
  width: 19px;
  height: 19px;
  color: var(--lime);
}
.ai .aih .nm {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.ai .aih .ss {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #9a9a9a;
}
.ai .aib {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-muted);
}
.ai .q {
  align-self: flex-end;
  background: var(--violet);
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px 14px 3px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  max-width: 78%;
}
.ai .a {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--hairline);
  padding: 11px 14px;
  border-radius: 14px 14px 14px 3px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  max-width: 90%;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.ai .a b {
  color: var(--violet);
  font-weight: 700;
}
/* Outlet network map (slide 08) */
.net {
  position: relative;
  height: 430px;
  margin-top: 24px;
  background: linear-gradient(180deg, var(--bg-muted) 0%, var(--paper) 100%);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.net-wires {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.net-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 11px 16px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.net-node svg {
  width: 20px;
  height: 20px;
  color: var(--violet);
}
.net-node .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--n-200);
  color: var(--n-700);
}
.net-node .tag.fast {
  background: rgba(31, 199, 154, 0.16);
  color: var(--teal);
}
.net-node .tag.slow {
  background: rgba(255, 107, 61, 0.16);
  color: var(--coral);
}
.net-hub {
  background: var(--ink);
  color: var(--paper);
  padding: 14px 22px;
  font-size: 18px;
  box-shadow: var(--shadow-float);
}
.net-hub svg {
  color: var(--lime);
  width: 22px;
  height: 22px;
}
.net-legend {
  position: absolute;
  left: 24px;
  bottom: 15px;
  display: flex;
  gap: 20px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--n-700);
}
.net-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.net-legend i {
  width: 18px;
  height: 3px;
  border-radius: 2px;
  display: inline-block;
}
.net-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.net-stat {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.net-stat .v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.net-stat .k {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--n-700);
}
/* Pilot targets band (slide 09) */
.target-band {
  margin-top: 28px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.target-band .tl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--n-700);
  margin-bottom: 20px;
  padding-left: 2px;
}
.target-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.target-tile {
  background: linear-gradient(160deg, #f8f6ff 0%, #ffffff 100%);
  border: 2px solid rgba(124, 92, 252, 0.22);
  border-radius: 22px;
  padding: 26px 24px 22px;
  box-shadow:
    0 8px 24px -6px rgba(124, 92, 252, 0.14),
    0 2px 6px rgba(20, 20, 20, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 140px;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.target-tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 5px;
  background: var(--ink);
}
.target-tile::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(124, 92, 252, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.target-k {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  color: var(--n-700);
  font-weight: 500;
}
.target-v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: center;
  gap: 10px;
}
.target-v .arrow {
  font-size: 22px;
  line-height: 1;
  color: var(--teal);
}
.target-v .arrow.up {
  color: var(--teal);
}
.target-v .arrow.down {
  color: var(--teal);
}
.scope-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
/* Next-step scope card (slide 10) */
.scope-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 26px 28px;
}
.scope-card .sh {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--n-500);
  margin-bottom: 16px;
}
.scope-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.scope-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.35;
  color: var(--paper);
}
.scope-card li svg {
  width: 18px;
  height: 18px;
  color: var(--lime);
  flex-shrink: 0;
  margin-top: 2px;
}
/* Example callout (slide 02) */
.example {
  margin-top: 20px;
  background: var(--n-200);
  border-left: 3px solid var(--violet);
  border-radius: 8px;
  padding: 15px 20px;
  max-width: 600px;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--n-700);
}
.example b {
  color: var(--ink);
  font-weight: 600;
}
/* Impact strong line (slide 04) */
.impact-line {
  margin-top: 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.impact-line em {
  font-style: normal;
  color: var(--violet);
}
