@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap");

:root {
  --bg-1: #091f2b;
  --bg-2: #12394d;
  --bg-3: #1f6175;
  --surface: rgba(8, 15, 19, 0.72);
  --surface-border: rgba(196, 245, 255, 0.18);
  --text-main: #f2f7fa;
  --text-muted: #b8d1da;
  --accent: #7cf0cd;
  --accent-strong: #d8fff3;
  --code-bg: #0c1722;
}

.reveal {
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 10% -10%, #5bd2c044 0%, transparent 34%),
    radial-gradient(circle at 88% 112%, #ffd48330 0%, transparent 36%),
    linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 52%, var(--bg-3) 100%);
}

.reveal .slides {
  text-align: left;
}

.reveal .slides section {
  box-sizing: border-box;
  padding: 2.2rem 2.5rem 2.4rem;
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  background: linear-gradient(140deg, var(--surface), rgba(3, 10, 16, 0.62));
  backdrop-filter: blur(4px);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.reveal .stage-orchestrator-swap__replacement {
  display: none;
}

.reveal .stage-orchestrator-swap:has(.stage-orchestrator-swap__replacement.visible) .stage-orchestrator-swap__initial {
  display: none;
}

.reveal .stage-orchestrator-swap__replacement.visible {
  display: inline;
  color: var(--accent-strong);
  font-weight: 700;
  text-shadow: 0 0 14px rgba(124, 240, 205, 0.35);
}

.reveal .slides section.stack {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.reveal h1,
.reveal h2,
.reveal h3 {
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--accent-strong);
  margin-bottom: 0.55em;
  line-height: 1.08;
}

.reveal h1 {
  font-size: clamp(2rem, 4.1vw, 3.25rem);
  font-weight: 800;
}

.reveal h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
}

.reveal h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--text-muted);
}

.reveal p,
.reveal li {
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.45;
}

.reveal ol,
.reveal ul {
  margin-top: 0.5em;
  color: var(--text-main);
}

/* Tighten label-to-list spacing on slides with a short intro and ordered list. */
.reveal .slides section.compact-list-slide p {
  margin-bottom: 0.1em;
}

.reveal .slides section.compact-list-slide ol {
  margin-top: 0;
}

.reveal .slides section.top-models-slide h2 {
  margin-bottom: 0.3em;
}

.reveal .slides section.breaking-pattern-slide h2 {
  margin-bottom: 0.32em;
}

.reveal .slides section.orchestration-slide h2 {
  margin-bottom: 0.24em;
}

.reveal .slides section.orchestration-slide p {
  margin-bottom: 0.28em;
}

.reveal .slides section.orchestration-slide ul {
  margin-top: 0.12em;
  padding-left: 1.1em;
}

.reveal .slides section.orchestration-slide li {
  padding-left: 0.1em;
}

.reveal .slides > section.stack > section.orchestration-slide img {
  display: block;
  width: min(74%, 720px);
  max-height: 46vh;
  margin: 0.9rem auto 0;
  border-radius: 12px;
  border: 1px solid rgba(196, 245, 255, 0.22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.reveal .slides > section.stack > section.worktrees-slide img {
  display: block;
  width: min(68%, 640px);
  max-height: 44vh;
  margin: 0.85rem auto 0;
  border-radius: 12px;
  border: 1px solid rgba(196, 245, 255, 0.22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.reveal .slides section.closing-slide {
  display: grid !important;
  place-items: center;
  min-height: 100%;
  padding: 2.4rem 2.6rem;
  background:
    radial-gradient(circle at 82% 78%, rgba(124, 240, 205, 0.08), transparent 28%),
    linear-gradient(155deg, rgba(6, 17, 27, 0.92), rgba(9, 29, 40, 0.88) 60%, rgba(17, 61, 74, 0.82));
  border-color: rgba(196, 245, 255, 0.16);
}

.reveal .closing-slide__title {
  margin: 0;
  max-width: 13.5ch;
  font-size: clamp(2.9rem, 5.4vw, 4.9rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: #f8fffc;
  text-wrap: balance;
  text-align: center;
}

.reveal .closing-slide__title span {
  display: block;
  margin-top: 0.2em;
  color: var(--accent);
}

.reveal .breaking-pattern-slide__lead {
  max-width: none;
  margin: 0 0 1.25rem;
  font-size: clamp(0.9rem, 1.2vw, 1.08rem);
  color: var(--text-muted);
  white-space: nowrap;
}

.reveal .breaking-pattern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.9rem;
}

.reveal .breaking-pattern-card {
  display: flex;
  flex-direction: column;
  min-height: 14.5rem;
  padding: 1.1rem 1.05rem 1.15rem;
  border: 1px solid rgba(196, 245, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    rgba(8, 16, 22, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 28px rgba(0, 0, 0, 0.2);
}

.reveal .breaking-pattern-card__label,
.reveal .breaking-pattern-card__title,
.reveal .breaking-pattern-card__detail,
.reveal .breaking-pattern-card__links {
  margin: 0;
}

.reveal .breaking-pattern-card__label {
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.reveal .breaking-pattern-card__title {
  margin-bottom: 0.8rem;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.04;
  color: var(--accent-strong);
}

.reveal .breaking-pattern-card__detail {
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.35;
  color: var(--text-main);
}

.reveal .breaking-pattern-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.95rem;
}

.reveal .breaking-pattern-card__link {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem 0.34rem;
  border: 1px solid rgba(124, 240, 205, 0.26);
  border-radius: 999px;
  background: rgba(124, 240, 205, 0.08);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.reveal .breaking-pattern-card__link:hover,
.reveal .breaking-pattern-card__link:focus {
  border-color: rgba(124, 240, 205, 0.42);
  background: rgba(124, 240, 205, 0.14);
}

.reveal .slides section.frontend-slide h2 {
  margin-bottom: 0.35em;
}

.reveal .slides section.frontend-slide p {
  margin-bottom: 0;
}

.reveal .slides section.agents-slide h2 {
  margin-bottom: 0.28em;
}

.reveal .agents-slide__lead {
  max-width: 40rem;
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.reveal .agents-callout {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0;
  padding: 0.7rem 0.95rem 0.78rem;
  border: 1px solid rgba(124, 240, 205, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(124, 240, 205, 0.13), rgba(255, 255, 255, 0)),
    rgba(7, 16, 18, 0.58);
}

.reveal .agents-callout__label {
  flex: 0 0 auto;
  padding: 0.18rem 0.62rem 0.24rem;
  border-radius: 999px;
  background: rgba(124, 240, 205, 0.16);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reveal .agents-callout__text {
  font-size: clamp(0.96rem, 1.18vw, 1.06rem);
  color: var(--text-main);
}

.reveal .agents-slide__figure {
  width: min(100%, 44rem);
  margin: 0.75rem auto 0;
}

.reveal .agents-slide__caption {
  margin-top: 0.45rem;
  font-size: clamp(0.84rem, 1vw, 0.95rem);
  color: var(--text-muted);
  text-align: center;
}

.reveal .agents-slide__image {
  display: block;
  width: min(100%, 720px);
  max-height: 20vh;
  margin: 0 auto;
  border: 1px solid rgba(196, 245, 255, 0.16);
  border-radius: 14px;
  background: rgba(4, 10, 16, 0.42);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.reveal .slides section.frontend-slide img {
  display: block;
  width: 100%;
  max-width: none;
  max-height: 41vh;
  margin: 1rem auto 0;
  border-radius: 12px;
  border: 1px solid rgba(196, 245, 255, 0.22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.reveal .slides section.observability-slide p:last-of-type img {
  display: block;
  width: min(76%, 760px);
  max-height: 44vh;
  margin: 1rem auto 0;
  border-radius: 12px;
  border: 1px solid rgba(196, 245, 255, 0.22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.reveal .slides section.deployment-slide h2 {
  margin-bottom: 0.3em;
}

.reveal .deployment-slide__lead {
  margin: 0 0 1.2rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.reveal .deployment-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.7rem;
  align-items: center;
  margin-top: 1.1rem;
}

.reveal .deployment-flow__step {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7.2rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(196, 245, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    rgba(8, 16, 22, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 28px rgba(0, 0, 0, 0.22);
  font-size: clamp(1.45rem, 2.3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  color: var(--accent-strong);
}

.reveal .deployment-flow__step--accent {
  border-color: rgba(124, 240, 205, 0.34);
  background:
    linear-gradient(180deg, rgba(124, 240, 205, 0.16), rgba(255, 255, 255, 0)),
    rgba(7, 18, 20, 0.66);
}

.reveal .deployment-flow__arrow {
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  font-weight: 700;
  color: var(--accent);
}

.reveal .slide-resource {
  margin: 1rem 0 0;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  color: var(--text-muted);
}

.reveal .slide-resource a {
  color: var(--accent-strong);
  text-decoration-color: rgba(124, 240, 205, 0.45);
  text-underline-offset: 0.12em;
  overflow-wrap: anywhere;
}

.reveal .security-focus {
  margin: 0.55rem 0 0;
  color: var(--text-muted);
  font-size: 0.74em;
  line-height: 1.2;
}

.reveal .security-focus code {
  font-size: 0.88em;
}

.reveal .top-models-slide__subtitle {
  max-width: 32rem;
  margin: 0 0 1.15rem;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
}

.reveal .top-models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
  align-items: stretch;
  margin-top: 0.8rem;
}

.reveal .top-models-card {
  display: grid;
  grid-template-rows: minmax(2.6rem, auto) minmax(5rem, auto) auto auto;
  align-content: start;
  min-height: 17.5rem;
  padding: 1.2rem 1.15rem 1.25rem;
  border: 1px solid rgba(196, 245, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(6, 14, 20, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 30px rgba(0, 0, 0, 0.22);
}

.reveal .top-models-card--weak {
  border-color: rgba(255, 156, 127, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 156, 127, 0.12), rgba(255, 255, 255, 0)),
    rgba(20, 10, 10, 0.58);
}

.reveal .top-models-card--average {
  border-color: rgba(255, 214, 122, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 214, 122, 0.12), rgba(255, 255, 255, 0)),
    rgba(18, 16, 8, 0.58);
}

.reveal .top-models-card--top {
  border-color: rgba(124, 240, 205, 0.34);
  background:
    linear-gradient(180deg, rgba(124, 240, 205, 0.16), rgba(255, 255, 255, 0)),
    rgba(7, 18, 20, 0.62);
}

.reveal .top-models-card__label,
.reveal .top-models-card__multiplier,
.reveal .top-models-card__detail {
  margin: 0;
}

.reveal .top-models-card__label {
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.reveal .top-models-card__multiplier {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.02;
  font-weight: 800;
  color: var(--accent-strong);
}

.reveal .top-models-card__value,
.reveal .top-models-card__role {
  display: block;
}

.reveal .top-models-card__detail {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-main);
}

.reveal .slides > section.stack > section.security-slide h2 {
  margin-bottom: 0.35em;
}

.reveal .slides > section.stack > section.security-slide table {
  font-size: clamp(0.88rem, 1.08vw, 0.98rem);
}

.reveal .slides > section.stack > section.security-slide th,
.reveal .slides > section.stack > section.security-slide td {
  font-size: inherit;
}

.reveal .slides > section.stack > section.security-skill-slide {
  top: 0 !important;
  padding-top: 1.35rem;
  padding-bottom: 1.8rem;
}

.reveal .slides > section.stack > section.security-skill-slide h2 {
  margin-bottom: 0.24em;
}

.reveal .slides > section.stack > section.security-skill-slide > p {
  margin: 0 0 0.22em;
  font-size: clamp(0.92rem, 1.22vw, 1.14rem);
  line-height: 1.28;
}

.reveal .slides > section.stack > section.security-skill-slide > pre {
  margin-top: 0.18rem;
}

.reveal .slides > section.stack > section.security-skill-slide > pre code {
  max-height: none;
  overflow: visible;
}

.reveal .slides > section.stack > section.security-skill-slide .security-focus {
  margin-top: 0.4rem;
  font-size: 0.68em;
  line-height: 1.15;
}

.reveal .slides > section.stack > section.security-skill-slide .slide-resource {
  margin-top: 0.45rem;
  font-size: 0.74rem;
}

.reveal .security-slide__lead,
.reveal .security-slide__note,
.reveal .security-slide__tools {
  margin: 0 0 0.45em;
}

.reveal .security-slide__figure {
  margin: 0;
}

.reveal .security-slide__image {
  display: block;
  width: min(100%, 760px);
  max-height: 34vh;
  margin: 0 auto;
  border-radius: 8px;
}

.reveal .slides section.system-design-slide h2 {
  grid-area: title;
  margin-bottom: 0.2em;
}

.reveal .slides > section.stack > section.system-design-slide {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "title tree"
    "lead tree"
    "options tree";
  column-gap: 1.4rem;
  row-gap: 0.9rem;
  align-items: start;
}

.reveal .slides > section.stack > section.system-design-slide > p {
  grid-area: lead;
  margin: 0;
  max-width: 24rem;
  font-size: clamp(1.08rem, 1.65vw, 1.38rem);
  line-height: 1.38;
}

.reveal .slides > section.stack > section.system-design-slide > ul {
  grid-area: options;
  display: grid;
  gap: 0.75rem;
  margin: 0;
  margin-top: 0.2rem;
  padding: 0;
  list-style: none;
}

.reveal .slides > section.stack > section.system-design-slide > ul li {
  margin: 0;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(196, 245, 255, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(124, 240, 205, 0.12), rgba(255, 255, 255, 0)),
    rgba(10, 19, 27, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.32;
}

.reveal .slides > section.stack > section.system-design-slide > ul li::marker {
  content: "";
}

.reveal .slides > section.stack > section.system-design-slide > pre {
  grid-area: tree;
  width: 100%;
  margin: 0;
  align-self: center;
  border: 1px solid rgba(124, 240, 205, 0.22);
  background:
    linear-gradient(180deg, rgba(131, 255, 210, 0.06), rgba(255, 255, 255, 0)),
    rgba(7, 13, 20, 0.84);
}

.reveal .slides > section.stack > section.system-design-slide > pre code {
  display: block;
  padding: 1rem 1.05rem;
  font-size: clamp(0.72rem, 0.95vw, 0.9rem);
  line-height: 1.35;
  max-height: none;
}

.reveal ol li::marker,
.reveal ul li::marker {
  color: var(--accent);
  font-weight: 700;
}

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

.reveal .fragment.highlight-current-green.current-fragment {
  color: var(--accent-strong);
  font-weight: 700;
  text-shadow: 0 0 14px rgba(124, 240, 205, 0.35);
}

.reveal .stage-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: center;
}

.reveal .stage-split--media-pair {
  grid-template-columns: 1fr 1fr;
}

.reveal .stage-split ol {
  margin: 0.45em 0 0 1.2em;
}

.reveal .stage-image-wrap {
  margin: 0;
}

.reveal .stage-image-caption {
  margin-top: 0.45rem;
  font-size: clamp(0.84rem, 1vw, 0.95rem);
  color: var(--text-muted);
  text-align: center;
}

.reveal .stage-image {
  display: block;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(196, 245, 255, 0.25);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.3);
}

.reveal code {
  font-family: "IBM Plex Mono", "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.8em;
  background: #0f2030;
  color: #8fffe0;
  border: 1px solid rgba(124, 240, 205, 0.24);
  border-radius: 8px;
  padding: 0.15em 0.36em;
}

.reveal pre {
  position: relative;
  width: 100%;
  margin: 0.75rem 0 0;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.38);
  border-radius: 14px;
  border: 1px solid rgba(124, 240, 205, 0.2);
  overflow: hidden;
}

.reveal pre:has(code.language-powershell)::before {
  content: "PowerShell";
  position: absolute;
  top: 0.62rem;
  right: 0.72rem;
  z-index: 1;
  padding: 0.28rem 0.72rem;
  border: 1px solid rgba(137, 192, 255, 0.48);
  border-radius: 999px;
  background: rgba(11, 29, 49, 0.96);
  color: #c7e1ff;
  font-family: "IBM Plex Mono", "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(78, 140, 210, 0.16);
}

.reveal pre code {
  font-size: 0.88em;
  line-height: 1.45;
  max-height: 430px;
  padding: 1rem 1.1rem;
  background: var(--code-bg);
  border: none;
  border-radius: 0;
}

.reveal .progress span {
  background: linear-gradient(90deg, #83ffd2, #83d8ff);
}

.reveal .controls {
  color: #b3f4df;
}

@media (max-width: 900px) {
  .reveal .slides section {
    padding: 1.3rem 1.2rem 1.4rem;
    border-radius: 18px;
  }

  .reveal .slides section.closing-slide {
    padding: 1.5rem 1.25rem;
  }

  .reveal .closing-slide__title {
    max-width: none;
    font-size: clamp(2.2rem, 9vw, 3.35rem);
  }

  .reveal p,
  .reveal li {
    font-size: clamp(0.9rem, 3.6vw, 1.08rem);
  }

  .reveal pre code {
    max-height: 260px;
    font-size: 0.78em;
  }

  .reveal .stage-split {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .reveal .deployment-flow {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .reveal .breaking-pattern-grid {
    grid-template-columns: 1fr;
  }

  .reveal .breaking-pattern-slide__lead {
    white-space: normal;
  }

  .reveal .deployment-flow__arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .reveal .slides > section.stack > section.system-design-slide {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "lead"
      "options"
      "tree";
  }

  .reveal .slides > section.stack > section.system-design-slide > p {
    max-width: none;
  }

  .reveal .top-models-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .reveal .top-models-card {
    min-height: 11.5rem;
    padding: 1rem 0.95rem 1rem;
    grid-template-rows: auto auto auto auto;
  }

  .reveal .top-models-card--top {
    grid-column: 1 / -1;
  }

  .reveal .top-models-card__multiplier {
    font-size: clamp(1.8rem, 3vw, 2.25rem);
    margin-bottom: 0.85rem;
  }

  .reveal .top-models-card__detail {
    font-size: 0.98rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }
}

@media (max-width: 700px) {
  .reveal .top-models-grid {
    grid-template-columns: 1fr;
  }

  .reveal .top-models-card--top {
    grid-column: auto;
  }
}
