/* GLOBALS */
.makr75-content {
  --panel-max-content-width: 500px;
  --panel-padding: 4rem 2rem;
  --megamenu-height: 60px;
  --navigation-height: 80px;
  --keyboard-width: 400px;
}

.makr75-content img {
  user-select: none;
  pointer-events: none;
}

.padding-panel {
  padding: var(--panel-padding);
}

.makr75-content :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: #fff;
}

.makr75-content h2 {
  font-size: 2.25rem;
}

.makr75-content ul {
  list-style-type: disc;
  list-style-position: inside;
}

.makr75-content p,
.makr75-content li,
.makr75-content td {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
}

.makr75-content .block-subtitle {
  letter-spacing: 0.15em;
  color: #ece81a;
  font-weight: 500;
  font-size: 0.875rem;
}

.makr75-content .block-cta {
  color: black;
  background-color: #ece81a;
  padding: 0.75rem 2rem;
  font-weight: 600;
  width: fit-content;
  font-size: 1rem;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .makr75-content {
    --panel-max-content-width: 640px;
    --panel-padding: 4rem;
    --keyboard-width: 500px;
  }

  .makr75-content h2 {
    font-size: 3.25rem;
  }

  .makr75-content p,
  .makr75-content li {
    font-size: 1.125rem;
  }

  .makr75-content .block-subtitle {
    font-size: 1rem;
  }
}

@media screen and (min-width: 1280px) {
  .makr75-content {
    --panel-max-content-width: 1280px;
    --panel-padding: 4rem 6rem;
    --keyboard-width: 700px;
  }

  .makr75-content h2 {
    font-size: 3.25rem;
    margin-bottom: 1rem;
  }
}

@media screen and (min-width: 1600px) {
  .makr75-content {
    --panel-max-content-width: 1440px;
  }
}

@media screen and (min-width: 1920px) {
  .makr75-content {
    --panel-max-content-width: 1600px;
  }
}

@media screen and (min-height: 1100px) {
  .makr75-content {
    --keyboard-width: 900px;
  }
}

@media screen and (min-height: 1200px) {
  .makr75-content {
    --keyboard-width: 1024px;
  }
}

/* ANIMATIONS */
.animate-in {
  opacity: 0;
}

/* HERO  */
#hero {
  background: linear-gradient(180deg, #000 0%, rgba(47, 47, 43, 1) 100%);
  min-height: fit-content;
  height: calc(100svh - var(--megamenu-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding-bottom: 0;
  position: relative;
}

#hero .hero-content {
  max-width: var(--panel-max-content-width);
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#hero .block-title {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(241, 230, 126, 1) 25%,
    rgba(249, 162, 98, 1) 50%,
    rgba(239, 70, 108, 1) 75%,
    rgba(91, 202, 232, 1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 100;
  text-align: center;
  padding: 0 2rem;
  margin: 0 -2rem 0.5rem -2rem;
  max-width: 400px;
}

#hero .block-description {
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

#hero .hero-media {
  --image-separation: 30%;
  position: relative;
  width: 100%;
  flex-grow: 1;
  max-width: var(--keyboard-width);
}

#hero .front-wrapper,
#hero .back-wrapper {
  position: absolute;
}

#hero .back-wrapper {
  top: 0;
  right: 0;
}

#hero .front-wrapper {
  top: 0;
  left: 0;
}

#hero .back-image-positioning {
  position: relative;
  left: 50%;
  transform: rotate(90deg) translateY(calc(-1 * var(--image-separation)));
  transform-origin: top left;
}

#hero .front-image-positioning {
  position: relative;
  left: -50%;
  transform: rotate(-90deg) translateY(calc(-1 * var(--image-separation)));
  transform-origin: top right;
}

#keyboard-front {
  transform: translateY(-50%);
  transform-origin: center;
  object-fit: contain;
  display: none;
}

#keyboard-back {
  transform: translateX(10%) translateY(-50%);
  transform-origin: center;
  object-fit: contain;
}

#keyboard-front.active {
  display: block;
}

#hero .hero-badge {
  position: absolute;
  width: 100%;
  max-width: var(--panel-max-content-width);
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: flex-end;
}

#hero .hero-badge-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

#hero .hero-modal {
  display: none;
}

#hero .modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

#hero .hero-modal .close-modal {
  position: absolute;
  top: calc(var(--megamenu-height) + 1rem);
  right: 1rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  color: white;
  font-size: 2rem;
}

#hero .hero-modal iframe {
  z-index: 1;
  position: relative;
  max-width: 640px;
}

#hero .hero-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: fixed;
  inset: 0;
  z-index: 1000;
}

@media screen and (min-width: 768px) {
  #hero {
    background: linear-gradient(180deg, #131313 0%, #383838 100%);
  }

  #hero .block-title {
    max-width: var(--panel-max-content-width);
    font-size: 3.5rem;
  }

  #hero .block-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }

  #hero .hero-modal.active {
    padding: 4rem;
  }

  #hero .hero-modal iframe {
    max-width: 1280px;
  }
}

@media screen and (min-width: 912px) {
  #hero {
    --megamenu-height: 100px;
  }
}

@media screen and (min-width: 1280px) {
  #hero {
    padding-top: 6rem;
  }

  #hero .block-title {
    max-width: 700px;
    font-size: 4.5rem;
    line-height: 1;
  }

  #hero .block-description {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1600px) {
  #hero .block-title {
    max-width: 900px;
    font-size: 5.5rem;
  }
}

/* NAVIGATION */
#makr75-navigation {
  height: var(--navigation-height);
  position: sticky;
  top: var(--megamenu-height);
  display: flex;
  justify-content: center;
  background: #262626;
  z-index: 100;
  transition: all 300ms ease-out;
  padding: 0.75rem 0;
  width: 100%;
  backdrop-filter: blur(4px);
}

#makr75-navigation .navigation-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#makr75-navigation .navigation-list {
  display: none;
}

#makr75-navigation .nav-item {
  display: flex;
}

#makr75-navigation .nav-item button {
  font-weight: 600;
  font-size: 0.875rem;
}

#makr75-navigation .block-cta {
  margin: 0;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  #makr75-navigation {
    --megamenu-height: 0px;
  }

  #makr75-navigation.megamenu-visible {
    --megamenu-height: 60px;
  }
}

@media screen and (min-width: 912px) {
  #makr75-navigation.megamenu-visible {
    --megamenu-height: 100px;
  }
}

@media screen and (min-width: 1280px) {
  #makr75-navigation .navigation-list {
    display: flex;
    gap: 2rem;
  }

  #makr75-navigation .navigation-content {
    max-width: var(--panel-max-content-width);
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
  }
}

/* KEYBOARD FRONT STICKY TRACK */
#keyboard-front-animation.sticky-track {
  background: linear-gradient(180deg, #2a271e 0%, #1f0f13 100%);
  position: relative;
}

#keyboard-front-animation.sticky-track .sticky-content {
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

#keyboard-front-animation.sticky-track .block-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

#keyboard-front-oriented {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}

#keyboard-front-animation.sticky-track .block-media {
  position: relative;
  width: 100%;
}

#keyboard-front-animation.sticky-track .block-media::before {
  content: "";
  display: block;
  position: relative;
  top: 0;
  margin-top: 45%;
}

#keyboard-front-oriented {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  #keyboard-front-animation.sticky-track {
    background: linear-gradient(180deg, #383838 0%, #1f0f13 100%);
    position: relative;
  }
}

/* KEYCAPS */
#keycaps-panel .keyboard-base,
#keycaps-panel .keyboard-keycaps,
#keycaps-panel .keyboard-keycaps-clone,
#keycaps-panel .keyboard-keycaps-old {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
}

#keycaps-panel .keyboard-keycaps {
  z-index: 99;
}

#keycaps-panel .block-header,
#keycaps-panel .swatches-container {
  max-width: var(--panel-max-content-width);
}

#keycaps-panel .block-media {
  max-width: var(--keyboard-width);
}

#keycaps-panel
  .swatches-container[data-visible-group="cherry"]
  .swatches-group:not([data-group-name="cherry"]),
#keycaps-panel
  .swatches-container[data-visible-group="oem"]
  .swatches-group:not([data-group-name="oem"]),
#keycaps-panel
  .swatches-container[data-visible-group="dcx"]
  .swatches-group:not([data-group-name="dcx"]) {
  display: none;
}

#keycaps-panel .swatches-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#keycaps-panel .swatches-tabs-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  justify-items: center;
}

#keycaps-panel .swatches-tabs-title,
#keycaps-panel .swatches-group-title,
#frame .swatches-group-title {
  color: #b3b3b3;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

#keycaps-panel .swatches-tabs-list .tab-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.5rem;
  color: white;
}

#keycaps-panel
  .swatches-container[data-visible-group="cherry"]
  .tab-button[data-group-name="cherry"],
#keycaps-panel
  .swatches-container[data-visible-group="dcx"]
  .tab-button[data-group-name="dcx"],
#keycaps-panel
  .swatches-container[data-visible-group="oem"]
  .tab-button[data-group-name="oem"] {
  border: 1px solid #ece81a;
}

#keycaps-panel .swatches-tabs-list .tab-button img {
  margin-bottom: 0.5rem;
  width: 80%;
}

#keycaps-panel .tab-name {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0.375rem;
}

#keycaps-panel .tab-description {
  font-size: 0.625rem;
  line-height: 1.25;
}

#keycaps-panel .swatches-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  justify-items: start;
}

#keycaps-panel .swatches-group-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#keycaps-panel .swatches-group-item .swatch-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 100%;
  color: white;
}

#keycaps-panel .swatches-group-item.active .swatch-icon {
  border: 2px solid #ece81a;
}

#keycaps-panel .swatches-group-item span {
  color: white;
  font-size: 1rem;
  line-height: 1.25;
  text-align: left;
}

#breakpoint-keycaps {
  position: relative;
  top: -450px;
}

@media screen and (min-width: 1280px) {
  #keycaps-panel .swatches-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
  }

  #keycaps-panel .swatches-group {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

/* SWITCHES */
#switches-panel .keyboard-base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
}

#switches-panel .keyboard-base.active {
  opacity: 1;
}

#switches-panel .block-header,
#switches-panel .swatches-group {
  max-width: var(--panel-max-content-width);
}

#switches-panel .block-media {
  max-width: var(--keyboard-width);
}

#switches-panel .swatches-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  justify-items: start;
}

#switches-panel .swatches-group-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

#switches-panel .swatch-item-button {
  width: 64px;
  height: 64px;
  border: 1px solid transparent;
  border-radius: 50%;
  flex-shrink: 0;
}

#switches-panel .swatch-item-button img {
  object-fit: contain;
}

#switches-panel .swatch-item-button.active {
  border: 1px solid #ece81a;
}

#switches-panel .swatch-item-description {
  display: flex;
  flex-direction: column;
}

#switches-panel .block-footer {
  text-align: center;
  color: #ece81a;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

#switches-panel .switches-listen {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #ece81a;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  align-self: flex-start;
  margin-top: 0.5rem;
}

#switches-panel .switches-listen .stop-icon {
  display: none;
  width: 9px;
  margin: 0 3px;
  height: 9px;
  border-radius: 1px;
  background: #ece81a;
}

#switches-panel .switches-listen .play-icon {
  display: block;
}

#switches-panel .switches-listen.active .stop-icon {
  display: block;
}

#switches-panel .switches-listen.active .play-icon {
  display: none;
}

@media screen and (min-width: 768px) {
  #switches-panel .swatch-item-button {
    width: 96px;
    height: 96px;
  }

  #switches-panel .swatches-group {
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
    row-gap: 1rem;
  }

  #switches-panel .swatch-item-description {
    font-size: 1.125rem;
  }

  #switches-panel .block-description {
    max-width: 1200px;
  }

  #keycaps-panel .swatches-tabs-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Devices that CAN fit the sticky content */
/* Mobile fit */
/* {
  mobileFit: `(min-height: 1000px) and (max-width: 767px)`,
  mediumFit: `(min-width: 768px) and (min-height: 1000px) and (max-width: 1279px)`,
  largeFit: `(min-width: 1280px) and (min-height: 1000px)`,
} */
@media screen and (min-height: 1000px) and (max-width: 767px) {
  #keyboard-front-animation.sticky-track .sticky-content {
    top: calc(var(--navigation-height) + var(--megamenu-height));
    height: calc(100svh - var(--navigation-height) - var(--megamenu-height));
  }
}

@media screen and (min-width: 768px) and (min-height: 1000px) and (max-width: 1279px) {
  #keyboard-front-animation.sticky-track .sticky-content {
    top: var(--navigation-height);
    height: calc(100svh - var(--navigation-height));
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media screen and (min-width: 1280px) and (min-height: 1000px) {
  #keyboard-front-animation.sticky-track .sticky-content {
    top: var(--navigation-height);
    height: calc(100svh - var(--navigation-height));
    padding-top: 6rem;
  }
}

@media screen and (min-height: 1000px) and (max-width: 767px),
  screen and (min-width: 768px) and (min-height: 1000px) and (max-width: 1279px),
  screen and (min-width: 1280px) and (min-height: 1000px) {
  #switches-panel {
    pointer-events: none;
  }

  #keyboard-front-animation.sticky-track .sticky-content {
    position: sticky;
  }

  #keyboard-front-animation.sticky-track {
    min-height: 350vh;
  }

  #breakpoint-keycaps {
    top: 0;
  }

  #breakpoint-switches {
    position: relative;
    top: 50vh;
  }

  #keycaps-panel .block-header,
  #keycaps-panel .swatches-container {
    opacity: 0;
    visibility: hidden;
  }

  #switches-panel .block-header,
  #switches-panel .block-footer,
  #switches-panel .swatches-group {
    opacity: 0;
    visibility: hidden;
  }

  #switches-panel .block-media {
    opacity: 0;
    visibility: hidden;
  }
}

/* TWO-BLOCK */
#frame {
  background: linear-gradient(180deg, #1e0f14 0%, #180e1e 100%);
  overflow: hidden;
}

#wireless {
  background: linear-gradient(180deg, #171815 0%, #1e1b18 100%);
  overflow: hidden;
}

.two-block {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.two-block .block-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  max-width: var(--panel-max-content-width);
}

#wireless .italic-description {
  font-style: italic;
  font-size: 0.875rem;
}

.two-block .block-media {
  position: relative;
}

.two-block .block-media img {
  object-fit: contain;
}

#frame .block-media .top-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#frame .block-media[data-color="carbon"] img:not([data-color="carbon"]),
#frame .block-media[data-color="silver"] img:not([data-color="silver"]) {
  display: none;
}

#frame .swatches-wrapper {
  color: white;
}

#frame .swatches-wrapper.mobile-only {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

#frame .swatches-wrapper .swatches-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#frame .swatches-wrapper .swatch-icon {
  border-radius: 40px;
  width: 40px;
  height: 40px;
}

#frame .swatches-wrapper .swatch-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#frame .swatches-wrapper [data-color="carbon"] .swatch-icon {
  background: linear-gradient(155deg, #666867 15.15%, #3c3d3d 85.75%);
}

#frame .swatches-wrapper [data-color="silver"] .swatch-icon {
  background: linear-gradient(
    155deg,
    rgba(87, 80, 87, 1) 15.15%,
    rgba(191, 193, 197, 1) 85.75%
  );
}

#frame .swatches-wrapper .swatch-item.active .swatch-icon {
  outline: 2px solid #ece81a;
  outline-offset: 4px;
}

.two-block .desktop-only {
  display: none;
}

@media screen and (max-width: 1279px) {
  #wireless .block-media {
    margin: -4rem -2rem 0;
  }
}

@media screen and (min-width: 1280px) {
  .two-block {
    text-align: left;
  }

  .two-block .block-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .two-block .desktop-only {
    display: flex;
  }

  .two-block .mobile-only {
    display: none;
  }

  .two-block .block-media {
    margin-right: -40rem;
  }

  .two-block .block-description {
    max-width: 700px;
  }

  #wireless {
    margin-top: -8rem;
    margin-bottom: 0;
  }

  #frame .swatches-wrapper.mobile-only {
    display: none;
  }

  #frame .swatches-wrapper.desktop-only {
    display: flex;
    flex-direction: column;
  }

  .two-block .block-title {
    margin-bottom: 1rem;
  }

  #frame .block-description {
    margin-bottom: 2rem;
  }

  #frame .swatches-group-title {
    margin-bottom: 1.5rem;
  }

  #wireless .block-description {
    margin-bottom: 2rem;
  }
}

/* KNOB */
#knob-animation {
  background: linear-gradient(180deg, #180e1e 0%, #15191d 100%);
}

#knob-animation .mobile-only .mobile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

#knob-animation .mobile-only .block-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: var(--panel-max-content-width);
}

#knob-animation .mobile-only .block-media {
  margin-left: -2rem;
  margin-right: -4rem;
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

#knob-animation .desktop-only {
  display: none;
}

@media screen and (min-width: 768px) {
  #knob-animation .mobile-only .block-media {
    margin: 0;
    mask-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 50%
    );
  }
}

@media screen and (min-width: 1280px) {
  #knob-animation .mobile-only {
    display: none;
  }

  #knob-animation .desktop-only {
    display: block;
    min-height: 200vh;
    margin-top: -10rem;
  }

  #knob-animation .sticky-section {
    display: flex;
    justify-content: center;
    height: calc(100svh - var(--navigation-height));
    top: var(--navigation-height);
    position: sticky;
  }

  #knob-animation .block-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: var(--panel-max-content-width);
    width: 100%;
  }

  #knob-animation .block-media {
    width: calc(100% + 6rem);
    height: fit-content;
    margin-left: -6rem;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 20%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  #knob-canvas {
    width: 100%;
    object-fit: contain;
    mask-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  #knob-animation .block-copy-wrapper {
    position: relative;
  }

  #knob-animation .block-copy {
    position: absolute;
  }

  #lcd-copy {
    opacity: 0;
    visibility: hidden;
  }
}

@media screen and (min-width: 1440px) {
  #knob-canvas {
    width: 100%;
    object-fit: contain;
    mask-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 50%
    );
  }
}

/* LAYERS OF CRAFTMANSHIP */
#internals {
  background: linear-gradient(180deg, #15191d 0%, #171815 100%);
}

.panel-tri-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.panel-tri-grid .block-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: var(--panel-max-content-width);
}

.panel-tri-grid .block-title {
  margin-bottom: 1.5rem;
}

.panel-tri-grid .media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 400px;
}

.panel-tri-grid .media-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.panel-tri-grid .media-grid-item .img-wrapper {
  width: 100%;
  /* padding-bottom: 6rem; */
  margin-bottom: 0.5rem;
  background: linear-gradient(180deg, #14151a 0%, #353640 100%);
}

.panel-tri-grid .media-grid-item-title {
  font-size: 1.25rem;
  line-height: 1.1;
}

.panel-tri-grid .media-grid-item-description {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 1280px) {
  .panel-tri-grid .block-content {
    align-items: flex-start;
    text-align: left;
  }

  .panel-tri-grid .block-title {
    margin-bottom: 0;
  }

  .panel-tri-grid .media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: none;
  }

  .panel-tri-grid .media-grid-item {
    align-items: flex-start;
    text-align: left;
  }

  .panel-tri-grid .media-grid-item-title {
    font-size: 1.75rem;
  }

  .panel-tri-grid .media-grid-item-description {
    font-size: 1rem;
  }
}

/* VIDEO */
.panel-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

.panel-video .block-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--panel-max-content-width);
  gap: 1rem;
}

.panel-video .block-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.panel-video .block-description {
  margin-bottom: 1.5rem;
}

.panel-video .block-media {
  width: 100%;
}

#build-yours {
  background: linear-gradient(180deg, #1e1b18 0%, #211b19 100%);
}

#web-utility-tool {
  background: #191919;
}

#web-utility-tool .block-footer {
  padding-top: 2rem;
}

@media screen and (min-width: 768px) {
  .panel-video .block-media {
    max-width: 1024px;
  }

  .panel-video .block-description {
    max-width: 800px;
  }

  .panel-video .block-subtitle {
    font-size: 1.25rem;
  }
}

/* CALLOUT OVERRIDES */
div[class*="BlockCentered_container"] {
  background: linear-gradient(180deg, #211b19 0%, #111010 100%);
  padding: 6rem 2rem 2rem;
}

[class*="BlockCentered_heading"] h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.1;
}

div[class*="Tooltip_text-wrapper"] div {
  font-weight: 400;
}

#individual-parts {
  background: linear-gradient(180deg, #111010 0%, #0c0c0c 100%);
  padding-top: 0;
}

#individual-parts .block-content {
  display: flex;
  justify-content: center;
}

#individual-parts .block-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: var(--panel-max-content-width);
}

@media screen and (min-width: 1280px) {
  div[class*="BlockCentered_container"] {
    padding: 12rem 6rem 4rem;
  }

  [class*="BlockCentered_heading"] h2 {
    font-size: 3.25rem;
  }

  div[class*="BlockCentered_image-container"] {
    max-width: 1200px;
  }

  #individual-parts {
    padding-bottom: 6rem;
  }
}

/* SOUND DAMPENING */
#sound-dampening {
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg, #1e1b18 0%, #1e1b18 100%);
}

#sound-dampening .block-content {
  display: flex;
  flex-direction: column-reverse;
  max-width: var(--panel-max-content-width);
  gap: 2rem;
}

#sound-dampening .block-copy {
  color: white;
  flex: 1;
  position: relative;
}

#sound-dampening .block-header {
  text-align: center;
  margin-bottom: 1rem;
}

#sound-dampening .swatches {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
}

#sound-dampening .swatch-button {
  display: flex;
  gap: 1rem;
  align-items: center;
  text-align: left;
  color: #b3b3b3;
}

#sound-dampening .numbersquare {
  height: 40px;
  justify-content: center;
  min-width: 40px;
  align-items: center;
  display: inline-flex;
  border-radius: 2px;
  background: black;
  color: white;
}

#sound-dampening .swatch-button.active {
  color: white;
}

#sound-dampening .swatch-button.active .numbersquare {
  background: #ece81a;
  color: black;
}

@media screen and (min-width: 1280px) {
  #sound-dampening .block-header {
    text-align: left;
    max-width: 700px;
  }

  #sound-dampening .block-content {
    display: grid;
    grid-template-columns: 5fr 7fr;
    align-items: flex-start;
    gap: 0;
  }

  #sound-dampening .block-media {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (min-width: 1920px) {
  #sound-dampening .block-copy {
    padding-top: 1rem;
  }
}
