/* myDeploy brand layer on top of reveal.js black theme.
   Keeps to 3 font sizes and 2-3 colors for visual coherence. */

:root {
  --bg: #0b1020;
  --ink: #e8ecf4;
  --muted: #9fb0cc;
  --accent: #4f8cff;
  --accent-strong: #2563eb;
}

.reveal {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  font-size: 36px;
}

.reveal h1,
.reveal h2,
.reveal h3 {
  text-transform: none;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.reveal h1.title {
  font-size: 2.6em;
  margin-bottom: 0.1em;
  text-shadow: 0 4px 30px rgba(37, 99, 235, 0.45);
}

.reveal h2 {
  font-size: 1.7em;
  margin-bottom: 0.5em;
}

.reveal .subtitle {
  font-size: 1.1em;
  color: var(--ink);
  margin: 0.2em 0;
}

.reveal .kicker {
  font-size: 0.8em;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.reveal .lead {
  font-size: 1.1em;
  line-height: 1.4;
}

.reveal .accent {
  color: var(--accent);
}

.reveal ul,
.reveal ol.flow {
  display: inline-block;
  text-align: left;
  line-height: 1.6;
}

.reveal pre.cmd {
  width: auto;
  display: inline-block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.reveal pre.cmd code {
  background: #0a0f1c;
  color: #cfe0ff;
  border: 1px solid rgba(79, 140, 255, 0.35);
  border-radius: 10px;
  padding: 0.7em 1.1em;
  font-family: "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.85em;
}

/* Card grid for the "what it provisions" slide */
.reveal .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7em;
  margin-top: 0.5em;
}

.reveal .card {
  background: rgba(79, 140, 255, 0.08);
  border: 1px solid rgba(79, 140, 255, 0.25);
  border-radius: 14px;
  padding: 0.7em 0.5em;
  font-size: 0.7em;
  line-height: 1.3;
}

.reveal .card small {
  color: var(--muted);
  font-size: 0.8em;
}

.reveal .progress {
  color: var(--accent);
}
