@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=IBM+Plex+Mono:wght@400;500;600&family=Newsreader:opsz,wght@6..72,400;6..72,600&display=swap");

:root {
  --night: #101b4b;
  --night-2: #07102f;
  --paper: #f4edda;
  --paper-deep: #e6ddc5;
  --ink: #111522;
  --blue: #223fb4;
  --amber: #ffbf45;
  --orange: #f05a28;
  --mint: #8be0b4;
  --acid: #d8ed55;
  --line-dark: rgba(17, 21, 34, 0.28);
  --line-light: rgba(244, 237, 218, 0.32);
  --mono: "IBM Plex Mono", monospace;
  --display: "Archivo Black", sans-serif;
  --serif: "Newsreader", serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--night-2);
  color: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 6%, rgba(48, 87, 255, 0.28), transparent 27rem),
    linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

button,
input {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

figure,
p,
h1,
h2,
h3 {
  margin-top: 0;
}

.ccg-topbar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1500px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ccg-brand {
  font-weight: 600;
  text-decoration: none;
}

.ccg-issue {
  text-align: center;
}

.ccg-topbar nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.ccg-topbar nav a {
  text-decoration: none;
}

.ccg-topbar nav a:hover,
.ccg-topbar nav a:focus-visible {
  color: var(--amber);
}

.ccg-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  min-height: 900px;
  padding-top: clamp(48px, 8vw, 128px);
}

.ccg-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px clamp(28px, 6vw, 96px) 78px max(24px, calc((100vw - 1500px) / 2));
}

.ccg-kicker,
.ccg-section-mark,
.ccg-byline,
.ccg-game-list span,
.ccg-game-list strong,
.ccg-contract-grid span,
.ccg-number span,
.ccg-path li > span,
.ccg-sources,
.ccg-demo-note {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ccg-kicker {
  margin-bottom: 20px;
  color: var(--amber);
}

.ccg-hero h1 {
  max-width: 8.2ch;
  margin-bottom: 30px;
  font-family: var(--display);
  font-size: clamp(3.3rem, 7.4vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.83;
  text-transform: uppercase;
}

.ccg-deck {
  max-width: 42rem;
  margin-bottom: 42px;
  font-size: clamp(1.35rem, 2.2vw, 2.3rem);
  line-height: 1.16;
}

.ccg-byline {
  display: grid;
  gap: 7px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  color: rgba(244, 237, 218, 0.7);
}

.ccg-hero-art {
  position: relative;
  align-self: stretch;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.25), transparent 45%),
    #15235e;
}

.ccg-hero-art::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, var(--night) 0%, transparent 12%);
}

.ccg-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ccg-hero-art figcaption,
.ccg-wide-art figcaption,
.ccg-thesis figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 14px 18px;
  color: var(--paper);
  background: rgba(7, 16, 47, 0.86);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.ccg-rule {
  border-top: 2px solid var(--ink);
}

.ccg-opening,
.ccg-games,
.ccg-contract,
.ccg-path {
  color: var(--ink);
  background: var(--paper);
}

.ccg-opening {
  display: grid;
  grid-template-columns: 0.36fr minmax(0, 1.2fr) minmax(280px, 0.65fr);
  gap: clamp(30px, 5vw, 90px);
  padding: clamp(70px, 10vw, 150px) max(24px, calc((100vw - 1400px) / 2));
}

.ccg-section-mark {
  padding-top: 10px;
  border-top: 1px solid var(--ink);
}

.ccg-opening h2,
.ccg-section-intro h2,
.ccg-demo h2,
.ccg-contract h2,
.ccg-thesis h2,
.ccg-modeler h2,
.ccg-path h2,
.ccg-principles h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-transform: uppercase;
}

.ccg-opening-copy h2 {
  max-width: 12ch;
}

.ccg-opening-copy p {
  max-width: 46rem;
}

.ccg-lede {
  font-size: clamp(1.45rem, 2.6vw, 2.55rem);
  line-height: 1.15;
}

.ccg-pullquote {
  align-self: start;
  padding: 26px;
  color: var(--paper);
  background: var(--orange);
  box-shadow: 14px 14px 0 var(--ink);
  transform: rotate(1.5deg);
}

.ccg-pullquote p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 4.4rem);
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.ccg-pullquote p + p {
  margin-top: 24px;
  color: var(--acid);
}

.ccg-demo {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(32px, 6vw, 110px);
  padding: clamp(70px, 9vw, 140px) max(24px, calc((100vw - 1400px) / 2));
  background:
    linear-gradient(rgba(244, 237, 218, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 237, 218, 0.06) 1px, transparent 1px),
    var(--night);
  background-size: 28px 28px;
}

.ccg-demo-copy {
  align-self: center;
}

.ccg-demo h2 {
  max-width: 10ch;
}

.ccg-demo-copy > p:not(.ccg-kicker, .ccg-demo-note) {
  max-width: 36rem;
  color: rgba(244, 237, 218, 0.8);
}

.ccg-demo button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 18px 24px;
  border: 2px solid var(--paper);
  color: var(--night-2);
  background: var(--amber);
  box-shadow: 8px 8px 0 var(--orange);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.ccg-demo button:hover,
.ccg-demo button:focus-visible {
  background: var(--acid);
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--orange);
}

.ccg-demo button:disabled {
  cursor: default;
  opacity: 0.82;
}

.ccg-demo-note {
  margin-top: 20px;
  color: rgba(244, 237, 218, 0.62);
}

.ccg-building {
  align-self: center;
  padding: clamp(24px, 4vw, 54px);
  border: 2px solid var(--paper);
  background: var(--night-2);
  box-shadow: 18px 18px 0 var(--orange);
}

.ccg-window-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: clamp(7px, 1.1vw, 14px);
}

.ccg-window {
  aspect-ratio: 0.78;
  border: 1px solid rgba(244, 237, 218, 0.2);
  background: #0b1233;
  transition: background 240ms ease, box-shadow 240ms ease;
}

.ccg-window.is-lit {
  border-color: currentColor;
  box-shadow: 0 0 22px currentColor;
}

.ccg-window.is-amber {
  color: var(--amber);
  background: var(--amber);
}

.ccg-window.is-mint {
  color: var(--mint);
  background: var(--mint);
}

.ccg-window.is-orange {
  color: var(--orange);
  background: var(--orange);
}

.ccg-window.is-blue {
  color: #6f8eff;
  background: #6f8eff;
}

.ccg-building-status {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.ccg-games,
.ccg-contract,
.ccg-path {
  display: grid;
  grid-template-columns: 0.3fr minmax(0, 1.7fr);
  column-gap: clamp(32px, 7vw, 120px);
  padding: clamp(80px, 10vw, 150px) max(24px, calc((100vw - 1400px) / 2));
}

.ccg-section-intro {
  max-width: 72rem;
}

.ccg-section-intro .ccg-kicker,
.ccg-contract .ccg-kicker,
.ccg-path .ccg-kicker {
  color: var(--orange);
}

.ccg-section-intro h2,
.ccg-contract h2,
.ccg-path h2 {
  max-width: 13ch;
}

.ccg-section-intro > p:last-child,
.ccg-contract .ccg-section-intro > p:last-child {
  max-width: 54rem;
  font-size: 1.28rem;
}

.ccg-game-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column: 2;
  margin-top: 72px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.ccg-game-list article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 24px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.ccg-game-list article:nth-child(1),
.ccg-game-list article:nth-child(6) {
  background: var(--amber);
}

.ccg-game-list article:nth-child(2),
.ccg-game-list article:nth-child(7) {
  background: var(--mint);
}

.ccg-game-list article:nth-child(3),
.ccg-game-list article:nth-child(8) {
  color: var(--paper);
  background: var(--blue);
}

.ccg-game-list article:nth-child(4),
.ccg-game-list article:nth-child(5) {
  background: var(--orange);
}

.ccg-game-list h3 {
  margin: auto 0 18px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.2vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-transform: uppercase;
}

.ccg-game-list p {
  margin-bottom: 22px;
  line-height: 1.32;
}

.ccg-game-list strong {
  margin-top: auto;
}

.ccg-wide-art {
  position: relative;
  min-height: 720px;
  margin: 0;
  background: #18286a;
}

.ccg-wide-art img {
  width: 100%;
  min-height: 720px;
  object-fit: cover;
}

.ccg-contract-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column: 2;
  gap: 0;
  margin-top: 68px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.ccg-contract-grid article {
  min-height: 165px;
  padding: 22px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.ccg-contract-grid span {
  color: var(--orange);
  font-weight: 600;
}

.ccg-contract-grid p {
  margin: 30px 0 0;
  font-size: 1.18rem;
  line-height: 1.28;
}

.ccg-system-line {
  display: flex;
  grid-column: 2;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 58px;
  padding: 28px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-align: center;
}

.ccg-system-line i {
  color: var(--acid);
  font-size: 1.4rem;
  font-style: normal;
}

.ccg-thesis {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(380px, 0.75fr);
  align-items: stretch;
  color: var(--paper);
  background: var(--night);
}

.ccg-thesis figure {
  position: relative;
  min-height: 780px;
  margin: 0;
  background: #15235e;
}

.ccg-thesis figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ccg-thesis > div {
  align-self: center;
  padding: clamp(55px, 7vw, 110px);
}

.ccg-thesis h2 {
  max-width: 11ch;
}

.ccg-thesis > div > p:not(.ccg-kicker) {
  color: rgba(244, 237, 218, 0.82);
}

.ccg-modeler {
  padding: clamp(80px, 10vw, 150px) max(24px, calc((100vw - 1400px) / 2));
  color: var(--ink);
  background: var(--acid);
}

.ccg-modeler .ccg-kicker {
  color: var(--blue);
}

.ccg-modeler-head {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
  padding-bottom: 60px;
  border-bottom: 2px solid var(--ink);
}

.ccg-modeler-head h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.ccg-modeler-head > p {
  max-width: 36rem;
  margin-bottom: 0;
  font-size: 1.25rem;
}

.ccg-model-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.7fr) minmax(520px, 1.3fr);
  gap: clamp(42px, 8vw, 130px);
  padding-top: 64px;
}

.ccg-controls {
  display: grid;
  gap: 22px;
}

.ccg-controls label {
  display: grid;
  gap: 8px;
}

.ccg-controls label > span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ccg-controls output {
  font-weight: 600;
}

.ccg-controls input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
}

.ccg-model-output {
  align-self: start;
}

.ccg-number {
  padding: 24px;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.ccg-number-primary {
  color: var(--paper);
  background: var(--blue);
  box-shadow: 14px 14px 0 var(--orange);
}

.ccg-number span {
  display: block;
  margin-bottom: 28px;
}

.ccg-number strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.86;
}

.ccg-number p {
  margin: 18px 0 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.ccg-number-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 34px;
}

.ccg-number-grid .ccg-number + .ccg-number {
  border-left: 0;
}

.ccg-number-grid .ccg-number strong {
  font-size: clamp(2rem, 4vw, 4.5rem);
}

.ccg-revenue-mix {
  display: grid;
  gap: 18px;
  margin-top: 38px;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.ccg-revenue-mix > div {
  display: grid;
  grid-template-columns: 150px minmax(100px, 1fr) 90px;
  align-items: center;
  gap: 18px;
}

.ccg-revenue-mix i {
  display: block;
  width: 100%;
  height: 12px;
  background: var(--blue);
  transform-origin: left;
  transition: width 220ms ease;
}

.ccg-revenue-mix > div:nth-child(2) i {
  background: var(--orange);
}

.ccg-revenue-mix > div:nth-child(3) i {
  background: var(--night);
}

.ccg-revenue-mix strong {
  text-align: right;
}

.ccg-model-note {
  max-width: 52rem;
  margin: 40px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 0.64rem;
  line-height: 1.5;
  text-transform: uppercase;
}

.ccg-path ol {
  grid-column: 2;
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: path;
}

.ccg-path li {
  display: grid;
  grid-template-columns: 0.45fr 0.7fr 1fr;
  gap: 38px;
  align-items: start;
  padding: 32px 0;
  border-top: 2px solid var(--ink);
}

.ccg-path li:last-child {
  border-bottom: 2px solid var(--ink);
}

.ccg-path h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-transform: uppercase;
}

.ccg-path li p {
  margin: 0;
}

.ccg-network-art {
  min-height: 820px;
}

.ccg-network-art img {
  min-height: 820px;
}

.ccg-principles {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 9vw, 150px);
  padding: clamp(80px, 10vw, 150px) max(24px, calc((100vw - 1400px) / 2));
  color: var(--paper);
  background: var(--orange);
}

.ccg-principles .ccg-kicker {
  color: var(--acid);
}

.ccg-principles h2 {
  max-width: 10ch;
}

.ccg-principles ul {
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--paper);
  list-style: none;
}

.ccg-principles li {
  position: relative;
  padding: 22px 20px 22px 52px;
  border-bottom: 2px solid var(--paper);
  font-size: clamp(1.18rem, 2vw, 1.8rem);
  line-height: 1.25;
}

.ccg-principles li::before {
  position: absolute;
  top: 21px;
  left: 4px;
  color: var(--acid);
  content: "●";
  font-family: var(--mono);
}

.ccg-footer {
  padding: clamp(80px, 12vw, 170px) max(24px, calc((100vw - 1400px) / 2)) 70px;
  color: var(--paper);
  background: var(--night-2);
}

.ccg-final-line {
  max-width: 15ch;
  margin-bottom: 110px;
  font-family: var(--display);
  font-size: clamp(2.7rem, 6.5vw, 7.2rem);
  letter-spacing: -0.06em;
  line-height: 0.88;
  text-transform: uppercase;
}

.ccg-sources {
  display: grid;
  grid-template-columns: 0.3fr 1.7fr;
  gap: 42px;
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
  color: rgba(244, 237, 218, 0.7);
  text-transform: none;
}

.ccg-sources .ccg-kicker {
  color: var(--amber);
}

.ccg-sources ol {
  display: grid;
  gap: 18px;
  margin: 0;
  padding-left: 22px;
}

.ccg-sources a {
  color: var(--amber);
}

.ccg-sources > p:last-child {
  grid-column: 2;
}

.ccg-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 64px;
}

.ccg-footer-links a {
  padding: 12px 16px;
  border: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 0.7rem;
  text-decoration: none;
  text-transform: uppercase;
}

.ccg-footer-links a:hover,
.ccg-footer-links a:focus-visible {
  color: var(--night-2);
  background: var(--amber);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1120px) {
  .ccg-topbar {
    grid-template-columns: 1fr auto;
  }

  .ccg-issue {
    display: none;
  }

  .ccg-hero {
    grid-template-columns: 1fr;
  }

  .ccg-hero-copy {
    min-height: 720px;
    padding-left: max(24px, calc((100vw - 900px) / 2));
  }

  .ccg-hero-art {
    min-height: 720px;
  }

  .ccg-opening {
    grid-template-columns: 0.25fr 1fr;
  }

  .ccg-pullquote {
    grid-column: 2;
    max-width: 620px;
  }

  .ccg-demo,
  .ccg-thesis,
  .ccg-model-layout {
    grid-template-columns: 1fr;
  }

  .ccg-demo {
    gap: 70px;
  }

  .ccg-game-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .ccg-thesis figure {
    min-height: 680px;
  }

  .ccg-model-layout {
    gap: 72px;
  }

  .ccg-controls {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 17px;
  }

  .ccg-topbar {
    width: calc(100% - 28px);
  }

  .ccg-topbar nav a:not(:first-child) {
    display: none;
  }

  .ccg-hero-copy {
    min-height: 650px;
    padding: 70px 20px;
  }

  .ccg-hero h1 {
    font-size: clamp(2.85rem, 12.9vw, 3.15rem);
  }

  .ccg-hero-art,
  .ccg-wide-art,
  .ccg-wide-art img,
  .ccg-network-art,
  .ccg-network-art img {
    min-height: 520px;
  }

  .ccg-opening,
  .ccg-games,
  .ccg-contract,
  .ccg-path {
    grid-template-columns: 1fr;
    padding-right: 20px;
    padding-left: 20px;
  }

  .ccg-section-mark {
    margin-bottom: 44px;
  }

  .ccg-pullquote,
  .ccg-game-list,
  .ccg-contract-grid,
  .ccg-system-line,
  .ccg-path ol {
    grid-column: 1;
  }

  .ccg-demo,
  .ccg-modeler,
  .ccg-principles,
  .ccg-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .ccg-building {
    padding: 20px;
    box-shadow: 10px 10px 0 var(--orange);
  }

  .ccg-window-grid {
    gap: 6px;
  }

  .ccg-building-status {
    display: grid;
  }

  .ccg-game-list,
  .ccg-contract-grid,
  .ccg-number-grid,
  .ccg-controls,
  .ccg-modeler-head,
  .ccg-principles,
  .ccg-sources {
    grid-template-columns: 1fr;
  }

  .ccg-game-list article {
    min-height: 280px;
  }

  .ccg-contract-grid article {
    min-height: auto;
  }

  .ccg-system-line {
    align-items: stretch;
    flex-direction: column;
  }

  .ccg-system-line i {
    transform: rotate(90deg);
  }

  .ccg-thesis {
    display: flex;
    flex-direction: column;
  }

  .ccg-thesis figure {
    min-height: 520px;
  }

  .ccg-thesis > div {
    padding: 70px 20px;
  }

  .ccg-modeler-head {
    gap: 24px;
  }

  .ccg-modeler-head > p {
    font-size: 1.05rem;
  }

  .ccg-number-primary {
    box-shadow: 8px 8px 0 var(--orange);
  }

  .ccg-number-grid .ccg-number + .ccg-number {
    border-top: 0;
    border-left: 2px solid var(--ink);
  }

  .ccg-revenue-mix > div {
    grid-template-columns: 110px minmax(60px, 1fr) 72px;
    gap: 10px;
  }

  .ccg-path li {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ccg-principles {
    gap: 48px;
  }

  .ccg-sources {
    gap: 16px;
  }

  .ccg-sources > p:last-child {
    grid-column: 1;
  }
}
