:root {
  --cgtj-black: #11100f;
  --cgtj-panel: #0e0e0e;
  --cgtj-card: #121212;
  --cgtj-orange: #ff6a3d;
  --cgtj-orange-muted: #f2663b;
  --cgtj-purple: #533887;
  --cgtj-white: #ffffff;
  --cgtj-text: rgba(255, 255, 255, 0.84);
  --cgtj-muted: rgba(255, 255, 255, 0.68);
  --cgtj-line: rgba(255, 255, 255, 0.2);
  --cgtj-radius: 22px;
  --cgtj-button-radius: 16px;
  --cgtj-shell: 1296px;
}

html {
  scroll-behavior: smooth;
}

body.cgtj-theme {
  margin: 0;
  overflow-x: hidden;
  background: var(--cgtj-black);
}

.cgtj,
.cgtj * {
  box-sizing: border-box;
}

.cgtj {
  width: 100%;
  overflow: clip;
  background: var(--cgtj-black);
  color: var(--cgtj-white);
  font-family: "Nexa", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.cgtj h1,
.cgtj h2,
.cgtj h3,
.cgtj p,
.cgtj ul,
.cgtj ol {
  margin: 0;
}

.cgtj h1,
.cgtj h2 {
  color: var(--cgtj-white);
  font-family: "Coanda", Impact, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.cgtj a {
  color: inherit;
  text-decoration: none;
}

.cgtj button,
.cgtj input {
  font: inherit;
}

.cgtj button {
  color: inherit;
}

.cgtj img,
.cgtj svg {
  display: block;
  max-width: 100%;
}

.cgtj [id] {
  scroll-margin-top: 90px;
}

.cgtj-shell {
  width: min(var(--cgtj-shell), calc(100% - 144px));
  margin-inline: auto;
}

.cgtj-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--cgtj-line);
  border-radius: var(--cgtj-radius);
  background: var(--cgtj-panel);
}

.cgtj-section {
  position: relative;
}

.cgtj-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 72px;
  background: rgba(17, 16, 15, 0.96);
  backdrop-filter: blur(14px);
}

.cgtj-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.cgtj-logo {
  display: inline-flex;
  width: 118px;
  height: 32px;
  align-items: center;
}

.cgtj-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cgtj-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 40px);
}

.cgtj-nav a {
  position: relative;
  padding-block: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24px;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.cgtj-nav a:not(.cgtj-nav__cta)::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--cgtj-orange);
  transition: transform 180ms ease;
}

.cgtj-nav a:hover,
.cgtj-nav a:focus-visible {
  color: var(--cgtj-white);
}

.cgtj-nav a:not(.cgtj-nav__cta):hover::after,
.cgtj-nav a:not(.cgtj-nav__cta):focus-visible::after {
  transform: scaleX(1);
}

.cgtj-nav__cta {
  padding: 10px 16px !important;
  border-radius: 12px;
  background: var(--cgtj-orange);
  color: var(--cgtj-white) !important;
}

.cgtj-nav__cta:hover,
.cgtj-nav__cta:focus-visible {
  background: var(--cgtj-purple);
  transform: translateY(-1px);
}

.cgtj-menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.cgtj-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--cgtj-white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.cgtj-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border: 1px solid transparent;
  border-radius: var(--cgtj-button-radius);
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
  letter-spacing: 0.32px;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.cgtj-button:hover,
.cgtj-button:focus-visible {
  transform: translateY(-2px);
}

.cgtj-button:active {
  transform: translateY(0);
}

.cgtj-button--filled {
  background: var(--cgtj-orange);
  color: var(--cgtj-white);
}

.cgtj-button--filled:hover,
.cgtj-button--filled:focus-visible,
.cgtj-button--filled:active {
  background: var(--cgtj-purple);
}

.cgtj-button--outline {
  border-color: rgba(255, 255, 255, 0.78);
  background: transparent;
  color: var(--cgtj-white);
}

.cgtj-button--outline:hover,
.cgtj-button--outline:focus-visible,
.cgtj-button--outline:active {
  border-color: var(--cgtj-purple);
  background: var(--cgtj-purple);
}

.cgtj-button--orange-outline {
  gap: 16px;
  border-color: var(--cgtj-orange);
  background: transparent;
  color: var(--cgtj-orange);
}

.cgtj-button--orange-outline:hover,
.cgtj-button--orange-outline:focus-visible,
.cgtj-button--orange-outline:active {
  border-color: var(--cgtj-purple);
  background: var(--cgtj-purple);
  color: var(--cgtj-white);
}

.cgtj :focus-visible {
  outline: 3px solid rgba(255, 106, 61, 0.6);
  outline-offset: 3px;
}

.cgtj-hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}

.cgtj-hero__gradient {
  position: absolute;
  z-index: 0;
  top: -12%;
  right: -5%;
  width: min(64vw, 900px);
  height: 118%;
  object-fit: contain;
  pointer-events: none;
}

.cgtj-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 540px;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  align-items: center;
}

.cgtj-hero__copy {
  padding: 28px 0 24px 6px;
}

.cgtj-hero h1 {
  font-size: clamp(54px, 4.45vw, 64px);
  line-height: 1.0625;
}

.cgtj-hero__subhead {
  max-width: 690px;
  margin-top: 36px !important;
  color: var(--cgtj-white);
  font-size: 22px;
  font-weight: 800;
  line-height: 28px;
}

.cgtj-hero__body {
  max-width: 700px;
  margin-top: 12px !important;
  color: var(--cgtj-white);
  font-size: 18px;
  line-height: 28px;
}

.cgtj-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px !important;
}

.cgtj-hero__details {
  margin-top: 28px !important;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14px;
}

.cgtj-hero__details span {
  margin-inline: 9px;
}

.cgtj-hero__art {
  position: relative;
  display: flex;
  min-width: 0;
  height: 520px;
  align-items: center;
  justify-content: flex-end;
}

.cgtj-hero__art img {
  width: min(100%, 600px);
  height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.4));
}

.cgtj-proof__grid {
  display: grid;
  min-height: 84px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.cgtj-proof p {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.26px;
  text-align: center;
}

.cgtj-proof p + p::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 34px;
  content: "";
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.34);
}

.cgtj-problem {
  padding: 46px 0 40px;
}

.cgtj-problem__panel {
  display: grid;
  min-height: 334px;
  padding: 40px 48px 38px;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 72px;
  align-items: center;
}

.cgtj-problem__gradient {
  position: absolute;
  right: -14%;
  bottom: -70%;
  width: 76%;
  opacity: 0.42;
  pointer-events: none;
}

.cgtj-problem__copy,
.cgtj-problem__list {
  position: relative;
  z-index: 1;
}

.cgtj-problem h2 {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: 48px;
  line-height: 54px;
}

.cgtj-problem__copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 28px;
}

.cgtj-orange-rule {
  display: block;
  width: 88px;
  height: 3px;
  margin-top: 14px;
  background: var(--cgtj-orange-muted);
}

.cgtj-problem__list {
  display: grid;
  padding: 0;
  list-style: none;
  gap: 34px;
}

.cgtj-problem__list li {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 24px;
}

.cgtj-problem__list span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cgtj-orange-muted);
  border-radius: 50%;
  color: var(--cgtj-orange-muted);
  font-size: 22px;
  line-height: 1;
}

.cgtj-pillars {
  padding: 32px 0 66px;
}

.cgtj-pillars h2,
.cgtj-curriculum h2,
.cgtj-fit h2,
.cgtj-comparison h2 {
  font-size: 52px;
  line-height: 58px;
}

.cgtj-pillars__grid {
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.cgtj-pillar {
  min-height: 312px;
  padding: 32px 15px 24px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 18px;
  background: var(--cgtj-card);
  text-align: center;
  transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.cgtj-pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 61, 0.7);
  background: #151312;
}

.cgtj-pillar svg {
  width: 66px;
  height: 66px;
  margin: 0 auto;
  color: var(--cgtj-orange);
}

.cgtj-pillar h3 {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 800;
  line-height: 22px;
}

.cgtj-pillar p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 23px;
}

.cgtj-preview {
  padding: 40px 0;
}

.cgtj-preview__panel {
  display: grid;
  min-height: 420px;
  padding: 44px 36px 44px 53px;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.cgtj-preview__gradient {
  position: absolute;
  right: -3%;
  bottom: -31%;
  width: 61%;
  pointer-events: none;
}

.cgtj-preview__copy,
.cgtj-daw {
  position: relative;
  z-index: 1;
}

.cgtj-preview h2 {
  font-size: 50px;
  line-height: 54px;
}

.cgtj-preview__copy p {
  max-width: 420px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 28px;
}

.cgtj-preview__copy .cgtj-button {
  margin-top: 28px;
}

.cgtj-play-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.cgtj-daw {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 640 / 330;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: #222225;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
}

.cgtj-daw__top {
  height: 8.5%;
  background: #303034;
}

.cgtj-daw__tracks {
  display: grid;
  height: 64%;
  padding: 5% 5% 2%;
  gap: 3%;
}

.cgtj-daw__tracks span {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: #533887;
}

.cgtj-daw__tracks span:nth-child(2n) {
  width: 78%;
  margin-left: 5%;
  background: #f2663b;
}

.cgtj-daw__tracks span:nth-child(3n) {
  width: 67%;
  background: #7e519c;
}

.cgtj-daw__mixer {
  display: grid;
  height: 26%;
  padding: 0 3% 3%;
  grid-template-columns: repeat(9, 1fr);
  gap: 1.2%;
}

.cgtj-daw__mixer span {
  border: 1px solid #44444a;
  border-radius: 3px;
  background: linear-gradient(to bottom, #39393e 0 18%, #242428 18% 100%);
}

.cgtj-daw__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 78px;
  height: 78px;
  padding: 0;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  place-items: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transition: transform 180ms ease, background-color 180ms ease;
}

.cgtj-daw__play:hover,
.cgtj-daw__play:focus-visible {
  transform: translate(-50%, -50%) scale(1.07);
  background: var(--cgtj-orange);
}

.cgtj-daw__play span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--cgtj-orange);
}

.cgtj-daw__play:hover span,
.cgtj-daw__play:focus-visible span {
  border-left-color: var(--cgtj-white);
}

.cgtj-curriculum {
  padding: 30px 0 60px;
}

.cgtj-section-lead {
  margin-top: 4px !important;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 24px;
}

.cgtj-accordion {
  display: grid;
  margin-top: 32px;
  gap: 18px;
}

.cgtj-accordion details {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: #0f0f0f;
  transition: border-color 180ms ease;
}

.cgtj-accordion details[open] {
  border-color: rgba(255, 255, 255, 0.28);
}

.cgtj-accordion summary {
  display: grid;
  min-height: 60px;
  padding: 16px 23px;
  cursor: pointer;
  list-style: none;
  grid-template-columns: 58px 1fr 30px;
  align-items: center;
  border-bottom: 1px solid transparent;
}

.cgtj-accordion details[open] summary {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.cgtj-accordion summary::-webkit-details-marker {
  display: none;
}

.cgtj-accordion__number {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
}

.cgtj-accordion__title {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 800;
  line-height: 24px;
}

.cgtj-accordion__symbol {
  position: relative;
  width: 24px;
  height: 24px;
  justify-self: end;
}

.cgtj-accordion__symbol::before,
.cgtj-accordion__symbol::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  content: "";
  transform: translate(-50%, -50%);
  background: var(--cgtj-orange);
  transition: transform 180ms ease;
}

.cgtj-accordion__symbol::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.cgtj-accordion details[open] .cgtj-accordion__symbol::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.cgtj-module-grid {
  display: grid;
  padding: 18px 28px 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 44px;
  row-gap: 18px;
}

.cgtj-module {
  display: grid;
  min-height: 36px;
  grid-template-columns: 10px 52px 1fr;
  align-items: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 24px;
}

.cgtj-module__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cgtj-orange);
}

.cgtj-module b {
  padding-left: 12px;
  color: var(--cgtj-orange);
  font-size: 12.5px;
  font-weight: 800;
}

.cgtj-instructor {
  padding: 40px 0;
}

.cgtj-instructor__panel {
  display: grid;
  min-height: 440px;
  grid-template-columns: 44% 56%;
}

.cgtj-instructor__gradient {
  position: absolute;
  bottom: -46%;
  left: -15%;
  width: 76%;
  pointer-events: none;
}

.cgtj-instructor__photo {
  position: absolute;
  z-index: 1;
  bottom: -1px;
  left: -1%;
  width: 48%;
  max-height: 112%;
  object-fit: contain;
  object-position: bottom center;
  pointer-events: none;
}

.cgtj-instructor__copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  padding: 38px 62px 40px 40px;
}

.cgtj-instructor h2 {
  font-size: 48px;
  line-height: 52px;
}

.cgtj-instructor h3 {
  margin-top: 14px;
  color: var(--cgtj-orange-muted);
  font-size: 24px;
  font-weight: 800;
  line-height: 28px;
}

.cgtj-instructor__copy > p {
  max-width: 590px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 25px;
}

.cgtj-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.cgtj-badge {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 22px;
  letter-spacing: 0.28px;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.cgtj-badge:hover,
.cgtj-badge:focus-visible {
  transform: translateY(-2px);
  border-color: var(--cgtj-purple);
  background: var(--cgtj-purple);
}

.cgtj-fit {
  padding: 26px 0 42px;
}

.cgtj-fit__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 80px;
  align-items: center;
}

.cgtj-fit h2 {
  font-size: 48px;
  line-height: 54px;
}

.cgtj-check-list {
  display: grid;
  margin-top: 24px !important;
  padding: 0;
  list-style: none;
  gap: 14px;
}

.cgtj-check-list li {
  position: relative;
  padding-left: 40px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 28px;
}

.cgtj-check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  content: "✓";
  border: 2px solid var(--cgtj-orange);
  border-radius: 50%;
  color: var(--cgtj-orange);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  place-items: center;
}

.cgtj-prereq {
  display: grid;
  min-height: 250px;
  padding: 34px 34px;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: start;
}

.cgtj-prereq > img {
  position: absolute;
  right: -22%;
  bottom: -80%;
  width: 125%;
  pointer-events: none;
}

.cgtj-prereq > *:not(img) {
  position: relative;
  z-index: 1;
}

.cgtj-prereq__icon {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cgtj-prereq__icon span {
  position: relative;
  width: 3px;
  height: 34px;
  background: rgba(255, 255, 255, 0.72);
}

.cgtj-prereq__icon span::after {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 8px;
  height: 8px;
  content: "";
  transform: translateX(-50%);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--cgtj-panel);
}

.cgtj-prereq__icon span:nth-child(2)::after { top: 20px; }
.cgtj-prereq__icon span:nth-child(3)::after { top: 3px; }

.cgtj-prereq h3 {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 800;
  line-height: 24px;
}

.cgtj-prereq p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 30px;
}

.cgtj-pricing {
  padding: 24px 0 36px;
}

.cgtj-pricing__panel {
  overflow: visible;
  min-height: 646px;
  padding: 30px 106px 24px;
}

.cgtj-pricing h2 {
  font-size: 48px;
  line-height: 54px;
  text-align: center;
}

.cgtj-pricing__grid {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(3, minmax(0, 340px));
  justify-content: center;
  gap: 34px;
}

.cgtj-tier {
  position: relative;
  display: flex;
  min-height: 486px;
  flex-direction: column;
  padding: 32px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  background: #111111;
}

.cgtj-tier--featured {
  border: 2px solid var(--cgtj-orange-muted);
}

.cgtj-tier__badge {
  position: absolute;
  z-index: 2;
  top: -16px;
  left: 50%;
  display: inline-flex;
  min-width: 116px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 5px 16px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--cgtj-orange-muted);
  color: var(--cgtj-white);
  font-size: 11px;
  font-weight: 800;
  line-height: 14px;
  white-space: nowrap;
}

.cgtj-tier__header {
  min-height: 54px;
  text-align: center;
}

.cgtj-tier__header h3 {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  font-weight: 800;
  line-height: 22px;
}

.cgtj-tier__header p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 20px;
}

.cgtj-tier__price {
  display: flex;
  min-height: 60px;
  align-items: flex-end;
  margin-top: 20px !important;
  margin-bottom: 22px !important;
  gap: 14px;
}

.cgtj-tier__price span {
  font-family: "Coanda", Impact, sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 48px;
}

.cgtj-tier__price small {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 18px;
}

.cgtj-tier ul {
  display: grid;
  margin: 0 0 26px !important;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.cgtj-tier li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 20px;
}

.cgtj-tier li::before {
  position: absolute;
  top: -1px;
  left: 0;
  content: "✓";
  color: var(--cgtj-orange);
  font-size: 16px;
  font-weight: 800;
}

.cgtj-tier li strong {
  color: var(--cgtj-orange);
  font-weight: 400;
}

.cgtj-tier__button {
  width: 100%;
  min-height: 56px;
  margin-top: auto;
  padding-inline: 16px;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.28px;
}

.cgtj-pricing__note {
  margin-top: 20px !important;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
  text-align: center;
}

.cgtj-comparison {
  padding: 18px 0 44px;
}

.cgtj-eyebrow {
  color: var(--cgtj-orange-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
}

.cgtj-comparison h2 {
  margin-top: 10px;
  font-size: 48px;
  line-height: 54px;
}

.cgtj-comparison__details {
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid rgba(242, 102, 59, 0.7);
  border-radius: 18px;
  background: var(--cgtj-panel);
}

.cgtj-comparison__details summary {
  display: grid;
  min-height: 56px;
  padding: 15px 21px;
  cursor: pointer;
  list-style: none;
  grid-template-columns: 1fr auto 30px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  line-height: 18px;
}

.cgtj-comparison__details summary::-webkit-details-marker {
  display: none;
}

.cgtj-comparison__state {
  color: var(--cgtj-orange-muted);
  font-size: 11px;
  line-height: 16px;
}

.cgtj-comparison__state .is-expanded,
.cgtj-comparison__details[open] .is-collapsed {
  display: none;
}

.cgtj-comparison__details[open] .is-expanded {
  display: inline;
}

.cgtj-comparison__chevron {
  position: relative;
  width: 24px;
  height: 24px;
}

.cgtj-comparison__chevron::before {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 9px;
  height: 9px;
  content: "";
  transform: rotate(45deg);
  border-right: 2px solid var(--cgtj-orange);
  border-bottom: 2px solid var(--cgtj-orange);
  transition: transform 180ms ease, top 180ms ease;
}

.cgtj-comparison__details[open] .cgtj-comparison__chevron::before {
  top: 10px;
  transform: rotate(225deg);
}

.cgtj-comparison__scroll {
  overflow-x: auto;
  overscroll-behavior-x: contain;
}

.cgtj-comparison table {
  width: 100%;
  min-width: 1080px;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.cgtj-comparison th,
.cgtj-comparison td {
  height: 54px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  text-align: center;
  vertical-align: middle;
}

.cgtj-comparison th:first-child,
.cgtj-comparison td:first-child {
  width: 31%;
  padding-left: 24px;
  text-align: left;
}

.cgtj-comparison th:nth-child(2),
.cgtj-comparison td:nth-child(2) {
  width: 16%;
}

.cgtj-comparison thead th {
  height: 72px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 800;
}

.cgtj-comparison tbody td:not(:first-child) {
  color: var(--cgtj-orange);
  font-weight: 800;
}

.cgtj-comparison tbody td:nth-child(2) {
  color: rgba(255, 255, 255, 0.58);
}

.cgtj-comparison .cgtj-value {
  color: var(--cgtj-orange-muted) !important;
}

.cgtj-comparison th:nth-child(4),
.cgtj-comparison td:nth-child(4) {
  background: rgba(83, 56, 135, 0.42);
}

.cgtj-comparison tfoot th,
.cgtj-comparison tfoot td {
  height: 72px;
  border-top: 1px solid var(--cgtj-orange-muted);
  border-bottom: 0;
  color: var(--cgtj-orange);
  font-size: 22px;
  font-weight: 800;
}

.cgtj-comparison tfoot th {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.cgtj-final {
  padding: 18px 0 22px;
}

.cgtj-final__panel {
  display: grid;
  min-height: 214px;
  padding: 38px 47px;
  grid-template-columns: minmax(320px, 1.05fr) minmax(260px, 0.82fr) 300px;
  gap: 34px;
  align-items: center;
}

.cgtj-final__panel > img {
  position: absolute;
  right: -7%;
  bottom: -100%;
  width: 50%;
  pointer-events: none;
}

.cgtj-final__panel > *:not(img) {
  position: relative;
  z-index: 1;
}

.cgtj-final h2 {
  font-size: 42px;
  line-height: 46px;
}

.cgtj-final__panel > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 23px;
}

.cgtj-final__form form,
.cgtj-final__form form > div {
  display: grid;
  gap: 8px;
}

.cgtj-final__form .form-group,
.cgtj-final__form .cgtj-form-field {
  margin: 0 !important;
}

.cgtj-input,
.cgtj-final__form input[type="text"],
.cgtj-final__form input[type="email"],
.cgtj-final__form input[type="tel"] {
  width: 100%;
  height: 42px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  outline: 0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--cgtj-black);
  font-size: 13px;
  line-height: 16px;
}

.cgtj-final__form input:focus {
  border-color: var(--cgtj-orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 61, 0.25);
}

.cgtj-final__form .cgtj-button {
  width: 100%;
  min-height: 56px;
  border: 0;
  cursor: pointer;
}

.cgtj-form-status {
  min-height: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  line-height: 16px;
  text-align: center;
}

.cgtj-editor-note {
  margin-top: 6px !important;
  color: var(--cgtj-orange);
  font-size: 11px;
  text-align: center;
}

.cgtj-footer {
  display: grid;
  min-height: 77px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  grid-template-columns: 1fr 0.8fr 1.3fr 1.2fr;
  align-items: start;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 800;
  line-height: 16px;
}

.cgtj-footer .cgtj-logo {
  width: 112px;
  height: 30px;
}

.cgtj-footer > a:not(.cgtj-logo) {
  padding-top: 5px;
}

.cgtj-footer__social {
  display: flex;
  padding-top: 5px;
  justify-content: center;
  gap: 18px;
}

.cgtj-footer > p {
  text-align: right;
}

.cgtj-footer a {
  transition: color 180ms ease;
}

.cgtj-footer a:hover,
.cgtj-footer a:focus-visible {
  color: var(--cgtj-white);
}

.cgtj-modal[hidden] {
  display: none !important;
}

.cgtj-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

.cgtj-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.cgtj-modal__panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding: 44px;
  border: 1px solid rgba(255, 106, 61, 0.7);
  border-radius: 22px;
  background: var(--cgtj-panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.cgtj-modal__panel h2 {
  margin-top: 12px;
  font-size: 42px;
  line-height: 46px;
}

.cgtj-modal__panel > p:last-child {
  margin-top: 22px;
  color: var(--cgtj-text);
}

.cgtj-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--cgtj-orange);
  font-size: 32px;
  cursor: pointer;
}

.cgtj-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.cgtj-modal-open {
  overflow: hidden;
}

@media (max-width: 1240px) {
  .cgtj-shell {
    width: min(var(--cgtj-shell), calc(100% - 80px));
  }

  .cgtj-header__inner {
    width: calc(100% - 48px);
  }

  .cgtj-nav {
    gap: 18px;
  }

  .cgtj-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  }

  .cgtj-hero h1 {
    font-size: 56px;
  }

  .cgtj-hero__subhead {
    font-size: 19px;
  }

  .cgtj-pillars__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cgtj-pillar {
    min-height: 278px;
  }

  .cgtj-pricing__panel {
    padding-inline: 32px;
  }

  .cgtj-pricing__grid {
    gap: 22px;
  }

  .cgtj-instructor__copy {
    padding-right: 38px;
  }

  .cgtj-badge {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 12px;
  }

  .cgtj-final__panel {
    grid-template-columns: 1fr 0.82fr 280px;
    padding-inline: 34px;
    gap: 24px;
  }
}

@media (max-width: 980px) {
  .cgtj-shell {
    width: calc(100% - 48px);
  }

  .cgtj-header__inner {
    width: calc(100% - 40px);
  }

  .cgtj-menu-toggle {
    display: block;
  }

  .cgtj-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .cgtj-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .cgtj-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .cgtj-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--cgtj-line);
    background: rgba(14, 14, 14, 0.99);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.38);
  }

  .cgtj-nav.is-open {
    display: flex;
  }

  .cgtj-nav a {
    padding: 13px 8px;
    font-size: 14px;
  }

  .cgtj-nav__cta {
    margin-top: 10px;
    text-align: center;
  }

  .cgtj-hero,
  .cgtj-hero__grid {
    min-height: 0;
  }

  .cgtj-hero {
    padding: 60px 0 44px;
  }

  .cgtj-hero__grid {
    grid-template-columns: 1fr;
  }

  .cgtj-hero__copy {
    padding: 0;
  }

  .cgtj-hero__art {
    height: auto;
    margin-top: 28px;
    justify-content: center;
  }

  .cgtj-hero__art img {
    width: min(620px, 100%);
    height: auto;
  }

  .cgtj-hero__gradient {
    top: 30%;
    right: -30%;
    width: 120%;
    height: 80%;
  }

  .cgtj-proof__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cgtj-proof p {
    min-height: 58px;
    display: grid;
    place-items: center;
  }

  .cgtj-proof p + p::before {
    display: none;
  }

  .cgtj-proof p:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.24);
  }

  .cgtj-proof p:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .cgtj-problem__panel {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .cgtj-problem__list {
    gap: 20px;
  }

  .cgtj-preview__panel {
    grid-template-columns: 1fr;
  }

  .cgtj-preview__copy p {
    max-width: 600px;
  }

  .cgtj-daw {
    max-width: none;
  }

  .cgtj-instructor__panel {
    min-height: 720px;
    grid-template-columns: 1fr;
    align-content: end;
  }

  .cgtj-instructor__photo {
    top: -15px;
    bottom: auto;
    left: 50%;
    width: min(520px, 75%);
    height: 420px;
    transform: translateX(-50%);
    object-position: top center;
  }

  .cgtj-instructor__gradient {
    top: -24%;
    bottom: auto;
    left: 5%;
    width: 90%;
  }

  .cgtj-instructor__copy {
    grid-column: 1;
    padding: 390px 34px 34px;
  }

  .cgtj-fit__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .cgtj-prereq {
    width: min(560px, 100%);
  }

  .cgtj-pricing__grid {
    max-width: 560px;
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cgtj-tier {
    min-height: 470px;
  }

  .cgtj-final__panel {
    grid-template-columns: 1fr 1fr;
  }

  .cgtj-final__form {
    grid-column: 1 / -1;
  }

  .cgtj-final__form form {
    grid-template-columns: 1fr 1fr;
  }

  .cgtj-final__form .cgtj-button,
  .cgtj-final__form .cgtj-form-status {
    grid-column: 1 / -1;
  }

  .cgtj-footer {
    grid-template-columns: 1fr 1fr;
    row-gap: 22px;
  }

  .cgtj-footer__social {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .cgtj-shell,
  .cgtj-header__inner {
    width: calc(100% - 32px);
  }

  .cgtj-header,
  .cgtj-header__inner {
    height: 64px;
  }

  .cgtj-nav {
    top: 64px;
  }

  .cgtj-logo {
    width: 102px;
    height: 28px;
  }

  .cgtj-hero {
    padding-top: 42px;
  }

  .cgtj-hero h1 {
    font-size: clamp(42px, 13.2vw, 56px);
    line-height: 1.04;
  }

  .cgtj-hero__subhead {
    margin-top: 30px;
    font-size: 18px;
    line-height: 25px;
  }

  .cgtj-hero__body {
    font-size: 16px;
    line-height: 25px;
  }

  .cgtj-button-row {
    display: grid;
    gap: 12px;
  }

  .cgtj-button-row .cgtj-button {
    width: 100%;
  }

  .cgtj-hero__details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 4px;
    font-size: 12px;
    text-align: center;
  }

  .cgtj-hero__details span {
    margin-inline: 2px;
  }

  .cgtj-proof p {
    padding: 10px;
    font-size: 11px;
    line-height: 16px;
  }

  .cgtj-problem {
    padding-block: 28px;
  }

  .cgtj-problem__panel,
  .cgtj-preview__panel {
    padding: 30px 22px;
  }

  .cgtj-problem h2,
  .cgtj-preview h2,
  .cgtj-pillars h2,
  .cgtj-curriculum h2,
  .cgtj-fit h2,
  .cgtj-comparison h2,
  .cgtj-instructor h2,
  .cgtj-pricing h2 {
    font-size: 38px;
    line-height: 42px;
  }

  .cgtj-problem__copy p,
  .cgtj-problem__list li,
  .cgtj-preview__copy p,
  .cgtj-check-list li {
    font-size: 15px;
    line-height: 24px;
  }

  .cgtj-problem__list li {
    gap: 14px;
  }

  .cgtj-pillars {
    padding-bottom: 42px;
  }

  .cgtj-pillars__grid {
    margin-top: 28px;
    grid-template-columns: 1fr;
  }

  .cgtj-pillar {
    display: grid;
    min-height: 0;
    padding: 22px;
    grid-template-columns: 64px 1fr;
    text-align: left;
    column-gap: 18px;
  }

  .cgtj-pillar svg {
    grid-row: 1 / 3;
  }

  .cgtj-pillar h3 {
    margin-top: 4px;
  }

  .cgtj-pillar p {
    margin-top: 5px;
  }

  .cgtj-preview__copy .cgtj-button {
    width: 100%;
    padding-inline: 20px;
  }

  .cgtj-daw__play {
    width: 62px;
    height: 62px;
  }

  .cgtj-curriculum {
    padding-bottom: 40px;
  }

  .cgtj-section-lead {
    margin-top: 10px !important;
    font-size: 15px;
  }

  .cgtj-accordion {
    margin-top: 24px;
    gap: 12px;
  }

  .cgtj-accordion summary {
    min-height: 64px;
    padding: 14px 16px;
    grid-template-columns: 42px 1fr 24px;
  }

  .cgtj-accordion__number {
    font-size: 12px;
  }

  .cgtj-accordion__title {
    padding-right: 8px;
    font-size: 15px;
    line-height: 21px;
  }

  .cgtj-module-grid {
    padding: 16px 16px 22px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cgtj-module {
    grid-template-columns: 9px 48px 1fr;
    font-size: 15px;
    line-height: 22px;
  }

  .cgtj-instructor__panel {
    min-height: 0;
  }

  .cgtj-instructor__photo {
    top: 0;
    width: 105%;
    height: 390px;
  }

  .cgtj-instructor__copy {
    padding: 370px 22px 28px;
  }

  .cgtj-instructor h3 {
    font-size: 21px;
  }

  .cgtj-instructor__copy > p {
    font-size: 15px;
    line-height: 24px;
  }

  .cgtj-badge-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cgtj-badge {
    width: 100%;
  }

  .cgtj-prereq {
    min-height: 0;
    padding: 26px 20px;
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .cgtj-prereq p {
    font-size: 14px;
    line-height: 26px;
  }

  .cgtj-pricing__panel {
    padding: 28px 16px 24px;
  }

  .cgtj-pricing__grid {
    margin-top: 34px;
  }

  .cgtj-tier {
    min-height: 0;
    padding: 30px 22px 24px;
  }

  .cgtj-tier__price {
    margin-top: 18px !important;
    margin-bottom: 22px !important;
  }

  .cgtj-tier__price span {
    font-size: 40px;
  }

  .cgtj-comparison__details summary {
    padding-inline: 16px;
    grid-template-columns: 1fr 24px;
  }

  .cgtj-comparison__state {
    display: none;
  }

  .cgtj-comparison table {
    font-size: 14px;
  }

  .cgtj-final__panel {
    padding: 30px 22px;
    grid-template-columns: 1fr;
  }

  .cgtj-final h2 {
    font-size: 38px;
    line-height: 42px;
  }

  .cgtj-final__form {
    grid-column: 1;
  }

  .cgtj-final__form form,
  .cgtj-final__form form > div {
    grid-template-columns: 1fr;
  }

  .cgtj-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .cgtj-footer .cgtj-logo {
    margin-inline: auto;
  }

  .cgtj-footer__social {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cgtj-footer > p {
    text-align: center;
  }

  .cgtj-modal {
    padding: 16px;
  }

  .cgtj-modal__panel {
    padding: 34px 24px;
  }

  .cgtj-modal__panel h2 {
    font-size: 34px;
    line-height: 38px;
  }
}

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

  .cgtj *,
  .cgtj *::before,
  .cgtj *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
