body.tgo {
  --mg-color-canvas: #030509;
  --mg-color-surface: #0c1118;
  --mg-color-text: #eff2f3;
  --mg-color-text-muted: #b8c0c9;
  --mg-color-border: #252d39;
  --mg-color-brand: #ff384b;
  --mg-color-action: #2f6ee5;
  --mg-color-action-hover: #1f57c6;
  --mg-surface-overlay: rgba(3, 5, 9, 0.9);
  --mg-font-heading: var(--mg-font-body);
  --mg-frame-background: rgba(12, 17, 24, 0.82);
  --mg-frame-border: #171b24;
  --mg-frame-accent: var(--mg-color-brand);
  --mg-frame-cut: 4.6rem;
  /* Corner brackets overhang the frame by this much. Any section whose frame
     touches the <main> edge must reserve it as padding, or main{overflow:hidden}
     clips the bracket. */
  --tgo-frame-overhang: 1.2rem;
  /* FAQ panel intentionally exceeds the standard container. */
  --tgo-faq-width: 138rem;
  --tgo-panel-border: var(--mg-frame-border);
  --tgo-text-soft: #e5e5e5;
  position: relative;
  isolation: isolate;
  height: auto;
  min-height: 100%;
  margin: 0;
  background-color: var(--mg-color-canvas);
  color: var(--mg-color-text);
  font-family: var(--mg-font-body);
  overflow-x: hidden;
}

body.tgo::before {
  position: fixed;
  z-index: 0;
  inset: 0;
  background-image: linear-gradient(rgba(3, 5, 9, 0.8), rgba(3, 5, 9, 0.8)), url("img/tgo/background-texture.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  pointer-events: none;
}

body.tgo > main,
body.tgo > footer {
  position: relative;
  z-index: 1;
}

.tgo .ds-frame {
  overflow: visible;
  border: 0;
  background: transparent;
  clip-path: none;
  isolation: isolate;
}

.tgo-frame__surface {
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 1px solid var(--mg-frame-border);
  background: var(--mg-frame-background);
  clip-path: polygon(0 0, calc(100% - var(--mg-frame-cut)) 0, 100% var(--mg-frame-cut), 100% 100%, var(--mg-frame-cut) 100%, 0 calc(100% - var(--mg-frame-cut)));
  pointer-events: none;
}

.tgo .ds-frame::before,
.tgo .ds-frame::after {
  width: 5rem;
  height: 4.9rem;
  border: 0;
  background: url("img/tgo/Corner.png") center / contain no-repeat;
}

.tgo .ds-frame::before {
  top: calc(-1 * var(--tgo-frame-overhang));
  left: calc(-1 * var(--tgo-frame-overhang));
  transform: rotate(180deg);
}

.tgo .ds-frame::after {
  right: calc(-1 * var(--tgo-frame-overhang));
  bottom: calc(-1 * var(--tgo-frame-overhang));
}

.tgo .tgo-section--faq > .ds-container {
  width: min(calc(100% - 2 * var(--mg-gutter)), var(--tgo-faq-width));
}

/* TGO uses the shared .navbar-custom component. Only these two are restated, to
   outrank the legacy desktop rule that strips the border and makes the bar
   transparent at the top of the page — TGO wants it opaque from the start. */
.tgo .navbar {
  border-bottom: 1px solid rgba(229, 229, 229, 0.12);
  background: var(--mg-surface-overlay);
}

.tgo .navbar .container {
  width: min(calc(100% - 4rem), 117rem);
}

/* Margin resets: see the #nav-logo block in mineogames.css. */
.tgo #nav-logo {
  display: flex;
  align-items: center;
  height: 4rem;
  margin-left: 0;
  padding: 0 1.5rem 0 0;
  line-height: 4rem;
}

.tgo #nav-logo img {
  width: 2.8rem;
  height: 2.8rem;
  margin: 0;
  vertical-align: middle;
}

/* Driven by height so the logo can never overflow the navbar row. The SVG carries
   ~28% of vertical padding of its own, so it can fill the row height. */
.tgo #nav-logo .tgo-nav-logo {
  width: auto;
  height: 4rem;
}

.tgo .navbar-locale a {
  color: inherit;
}

.tgo .navbar-toggle {
  color: var(--mg-color-text);
  border: 1px solid rgba(229, 229, 229, 0.22);
  border-radius: 0;
  background: rgba(12, 17, 24, 0.88);
}

.tgo main {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.tgo-hero {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 145rem;
  padding: 24rem 0 7rem;
  place-items: start center;
  /* Painted inside the hero box, so anything past it is hard-clipped. Radii are
     fixed rem, so a % position eventually falls outside: anchor from the edges. */
  background-image: radial-gradient(ellipse 48rem 36rem at 94% 52%, rgba(47, 110, 229, 0.14) 0%, rgba(47, 72, 255, 0.06) 42%, rgba(47, 72, 255, 0) 74%), radial-gradient(ellipse 34rem 28rem at 4% calc(100% - 30rem), rgba(47, 110, 229, 0.08) 0%, rgba(47, 72, 255, 0.03) 44%, rgba(47, 72, 255, 0) 74%);
  background-repeat: no-repeat;
  text-align: center;
}

.tgo-hero__content {
  max-width: 97.7rem;
  margin-inline: auto;
}

.tgo .ds-eyebrow {
  margin-bottom: 2.6rem;
  color: var(--tgo-text-soft);
  font-family: var(--mg-font-body);
  font-size: var(--mg-text-3xl);
  font-style: normal;
  font-synthesis: none;
  font-weight: 500;
  letter-spacing: 0;
  transform: skewX(-5deg) scaleX(0.9);
  text-transform: none;
}

.tgo-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  margin: 0 0 8.5rem;
}

.tgo .ds-badge {
  min-height: 4.8rem;
  padding: 0.8rem 2rem;
  border-color: rgba(229, 229, 229, 0.16);
  border-radius: 0;
  background: rgba(12, 17, 24, 0.84);
  box-shadow: 0 0.45rem 0.6rem rgba(0, 0, 0, 0.3);
  color: var(--tgo-text-soft);
  font-size: var(--mg-text-md);
  font-weight: 500;
}

.tgo-proof__stars {
  margin-right: 0.8rem;
  color: #ffd65a;
}

.tgo-hero__title,
.tgo-section__title,
.tgo-copy-card h2 {
  margin: 0;
  color: var(--mg-color-text);
  font-family: var(--mg-font-display);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tgo-hero__title {
  font-size: var(--mg-text-display);
  line-height: 0.88;
  text-shadow: 0 -0.5rem 3.5rem rgba(21, 46, 255, 0.2);
}

.tgo-hero__lead {
  display: block;
  margin-bottom: 0.14em;
  font-size: 0.57em;
  line-height: 1;
}

.tgo-hero__accent {
  display: block;
  color: var(--mg-color-brand);
  font-size: 1.31em;
  font-style: normal;
  font-synthesis: none;
  line-height: 0.92;
  text-shadow: 0 0 5rem rgba(255, 56, 75, 0.25), 0 0 10rem rgba(47, 72, 255, 0.12);
  transform: skewX(-4deg) scaleX(0.95) scaleY(1.08);
  transform-origin: center top;
}

.tgo-hero__subtitle {
  max-width: 82rem;
  margin: 5rem auto 0;
  color: var(--tgo-text-soft);
  font-size: var(--mg-text-lg);
  line-height: 1.45;
}

.tgo-hero__subtitle strong {
  display: block;
  margin: 0;
  color: var(--mg-color-text);
}

.tgo-hero__subtitle span,
.tgo-hero__subtitle em {
  display: block;
}

.tgo-hero__subtitle em {
  margin-top: 0.4rem;
  color: var(--mg-color-text);
  font-style: normal;
  font-weight: 700;
}

.tgo-cta {
  margin-top: 9.3rem;
  text-align: center;
}

/* Shape, colour and glow now come from the base component. Only the CTA's
   generous footprint is page-specific. */
.tgo .ds-button {
  min-width: 39rem;
  min-height: 7.2rem;
  padding-inline: 3rem;
}

.tgo-cta__hint {
  margin: 1.4rem 0 0;
  color: rgba(229, 229, 229, 0.78);
  font-size: var(--mg-text-sm);
}

.tgo-cta__hint::before {
  margin-right: 1rem;
  content: "\21B3";
}

/* Asymmetric by design, expressed as a proportion of the token to stay fluid.
   Overview is the first section in <main>: its frame touches the edge, so it
   must leave room for the corner bracket overhang. */
.tgo .tgo-section--overview {
  padding-block: var(--tgo-frame-overhang) calc(var(--mg-section-gap) * 0.8);
}

.tgo .tgo-section--features {
  padding-block: calc(var(--mg-section-gap) * 0.9) calc(var(--mg-section-gap) * 1.8);
}

.tgo .tgo-section--profile {
  padding-block: 0 calc(var(--mg-section-gap) * 0.7);
}

.tgo .tgo-section--faq {
  padding-block: 0 calc(var(--mg-section-gap) * 0.55);
}

.tgo-split,
.tgo-profile {
  display: grid;
  align-items: center;
}

.tgo-split {
  align-items: start;
  grid-template-columns: minmax(0, 55.5rem) minmax(0, 47rem);
  gap: 7rem;
  min-height: 71rem;
  padding: 7rem;
}

.tgo-copy-card h2 {
  font-family: var(--mg-font-body);
  font-size: var(--mg-text-4xl);
  font-weight: 750;
  line-height: 1.12;
  text-transform: none;
}

.tgo-copy-card__accent {
  display: block;
  color: var(--mg-color-action);
}

.tgo-copy-card > p {
  margin: 2.4rem 0 0;
  font-size: var(--mg-text-md);
  line-height: 1.55;
}

.tgo-copy-card > .tgo-copy-card__intro {
  margin-top: 6rem;
  font-size: var(--mg-text-md);
}

.tgo-list {
  gap: 1.8rem;
  margin: 3rem 0 0;
}

.tgo-media {
  width: min(100%, 47rem);
  margin: 0;
  justify-self: end;
}

.tgo-media img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: -1rem 0.8rem 2.4rem rgba(35, 92, 255, 0.18), 0.8rem -0.6rem 2rem rgba(255, 40, 78, 0.1), 0 0 4rem rgba(45, 68, 255, 0.1);
  transform: rotate(1.2deg);
  transform-origin: center;
}

.tgo-section__title {
  font-family: var(--mg-font-body);
  font-size: var(--mg-text-4xl);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.08;
  text-align: center;
  text-transform: none;
}

.tgo-section__intro {
  max-width: 42rem;
  margin: 1rem auto 0;
  line-height: 1.65;
  text-align: center;
}

.tgo-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 9rem;
}

.tgo-feature {
  position: relative;
  min-height: 33rem;
  text-align: left;
}

.tgo-feature__surface {
  height: 100%;
  padding: 8.5rem 2.5rem 2.6rem;
}

.tgo-feature:first-child .tgo-feature__surface {
  box-shadow: 0 1.6rem 3.6rem rgba(0, 0, 0, 0.28), -6rem 4rem 11rem -8rem rgba(255, 36, 66, 0.24);
}

.tgo-feature:last-child .tgo-feature__surface {
  box-shadow: 0 1.6rem 3.6rem rgba(0, 0, 0, 0.28), 6rem 5rem 11rem -8rem rgba(255, 36, 66, 0.18);
}

/* Sized by height, not by a square box. The icons are 1.00, 1.07 and 1.19 in
   ratio, so a square box plus object-fit letterboxed the widest one down to
   109px tall against 130px for the first — it read as undersized. */
.tgo-feature__icon {
  position: absolute;
  z-index: 2;
  top: -6.5rem;
  left: 50%;
  display: block;
  width: auto;
  height: 13rem;
  filter: drop-shadow(0 0 1.8rem rgba(255, 56, 75, 0.3)) drop-shadow(0 0 1.2rem rgba(47, 110, 229, 0.24));
  transform: translateX(-50%);
}

.tgo-feature h3 {
  min-height: 5.4rem;
  margin: 0;
  font-family: var(--mg-font-body);
  font-size: var(--mg-text-xl);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.tgo-feature p {
  margin: 1.5rem 0 0;
  color: var(--mg-color-text-muted);
  font-size: var(--mg-text-md);
  line-height: 1.55;
}

.tgo-feature p strong {
  color: var(--mg-color-text);
  font-weight: 700;
}

.tgo-section--profile {
  background: rgba(3, 5, 9, 0.45);
}

.tgo-profile__title {
  margin-bottom: 8rem;
}

.tgo-profile {
  display: block;
  align-items: end;
  min-height: 52rem;
  padding: 5rem 8rem 0;
  border: 0;
  background: transparent;
  box-shadow: -7rem 1rem 12rem -11rem rgba(47, 72, 255, 0.2), 8rem 5rem 12rem -10rem rgba(255, 36, 66, 0.22);
  clip-path: none;
}

.tgo-profile__surface {
  background: rgba(12, 17, 24, 0.86);
}

.tgo-profile__image {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 8rem;
  width: 42rem;
  overflow: visible;
  margin: 0;
}

.tgo-profile__image img {
  display: block;
  width: 100%;
  max-height: 62rem;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(1.25);
  transform-origin: center bottom;
}

.tgo-profile__card {
  position: relative;
  z-index: 1;
  max-width: 57rem;
  margin-left: 50rem;
  padding: 4rem 0 5rem;
}

.tgo-profile__card h3 {
  margin: 0 0 2.5rem;
  color: var(--mg-color-text);
  font-family: var(--mg-font-body);
  font-size: var(--mg-text-2xl);
  letter-spacing: 0;
  text-transform: none;
}

.tgo-profile__card h3 span {
  color: var(--mg-color-action);
}

.tgo-profile__card p {
  max-width: 55rem;
  margin: 1.6rem 0;
  color: var(--mg-color-text-muted);
  font-size: var(--mg-text-md);
  line-height: 1.75;
}

.tgo .tgo-section--conversion {
  padding-top: calc(var(--mg-section-gap) * 0.55);
  padding-bottom: 0;
  text-align: center;
}

.tgo-chevrons {
  width: 9.8rem;
  margin: 0 auto 5.7rem;
}

.tgo-chevrons svg {
  display: block;
  width: 100%;
  height: auto;
}

.tgo-section--conversion .tgo-cta {
  margin-top: 0;
}

.tgo-proof--conversion {
  margin: 24.1rem 0 0;
}

.tgo-character {
  position: relative;
  width: min(100%, 110rem);
  min-height: 79.5rem;
  margin: 4rem auto 0;
}

.tgo-character > img {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: min(56.3rem, 60%);
  filter: drop-shadow(-2rem 1rem 5rem rgba(47, 72, 255, 0.15)) drop-shadow(2rem 1rem 5rem rgba(255, 36, 66, 0.12));
  transform: translateX(-50%);
}

.tgo-character__callout {
  position: absolute;
  display: flex;
  width: 28rem;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
  padding: 1.5rem 1.8rem;
  border: 1px solid var(--tgo-panel-border);
  background: rgba(12, 17, 24, 0.94);
  color: var(--tgo-text-soft);
  font-size: var(--mg-text-md);
  line-height: 1.4;
  text-align: left;
}

.tgo-character__callout img {
  position: absolute;
  top: 50%;
  width: 6.4rem;
  height: 6.4rem;
  object-fit: contain;
  transform: translateY(-50%);
}

.tgo-character__callout p {
  margin: 0;
}

.tgo-character__callout--left-top {
  top: 25%;
  left: 2%;
  transform: rotate(6deg);
}

.tgo-character__callout--left-bottom {
  top: 44%;
  left: 0;
  transform: rotate(-7deg);
}

.tgo-character__callout--right-top {
  top: 27%;
  right: 1%;
  transform: rotate(-4deg);
}

.tgo-character__callout--right-bottom {
  top: 47%;
  right: 0;
  transform: rotate(9deg);
}

.tgo-character__callout--left-top img,
.tgo-character__callout--left-bottom img {
  right: calc(100% - 1.2rem);
}

.tgo-character__callout--right-top img,
.tgo-character__callout--right-bottom img {
  left: calc(100% - 1.2rem);
}

.tgo-faq {
  max-width: 138rem;
  margin: 0 auto;
  padding: 7.5rem 5rem 6rem;
  box-shadow: 8rem 6rem 10rem -7rem rgba(255, 36, 66, 0.34), -6rem -3rem 10rem -8rem rgba(47, 72, 255, 0.16);
}

.tgo-faq__heading .tgo-section__title {
  color: var(--mg-color-action);
  font-size: var(--mg-text-3xl);
  text-align: left;
}

.tgo-faq__heading .tgo-section__intro {
  max-width: 83.2rem;
  margin-inline: 0;
  text-align: left;
  font-size: var(--mg-text-md);
}

.tgo-faq__accordion {
  overflow: visible;
  margin-top: 7.5rem;
  border: 0;
  border-top: 1px solid var(--mg-color-border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.tgo .ds-accordion__trigger {
  padding: 2rem 0;
  border-bottom: 0;
  font-size: var(--mg-text-md);
  text-align: left;
}

.tgo .ds-accordion__trigger[aria-expanded="false"] {
  border-bottom: 1px solid var(--mg-color-border);
}

.tgo .ds-accordion__panel {
  padding: 0 5rem 1.8rem 0;
  border-bottom: 1px solid var(--mg-color-border);
  font-size: var(--mg-text-md);
  line-height: 1.55;
}

.tgo .ds-accordion__panel p {
  max-width: var(--mg-measure);
  margin: 0;
}

.tgo-accordion__icon {
  width: 1.2rem;
  height: 1.2rem;
  border-top: 0.25rem solid var(--mg-color-text);
  border-left: 0.25rem solid var(--mg-color-text);
  transform: rotate(45deg);
  transition: transform 150ms ease;
}

.tgo .ds-accordion__trigger[aria-expanded="false"] .tgo-accordion__icon {
  transform: rotate(225deg);
}

/* Layout, button shape and copyright type now come from the base footer. Only
   the translucent surfaces, which sit over the fixed background texture, are
   TGO-specific. Sections here already carry their own bottom padding, so the
   base footer's top margin would double the gap. */
.tgo footer {
  margin-top: 0;
  border-top-color: rgba(229, 229, 229, 0.12);
  background: rgba(3, 5, 9, 0.92);
}

.tgo footer .container {
  width: min(calc(100% - 4rem), 117rem);
}

.tgo footer .btn-default {
  border-color: rgba(229, 229, 229, 0.2);
  background: rgba(12, 17, 24, 0.82);
}

.tgo footer .btn-default:hover,
.tgo footer .btn-default:focus {
  border-color: var(--mg-color-brand);
  background: var(--mg-color-brand);
  color: #fff;
}

/* Layout now comes from the base component; only the translucent surface and the
   smaller type are TGO-specific. */
.tgo .cookie-consent {
  padding: 1rem 2rem;
  border-top: 1px solid rgba(229, 229, 229, 0.16);
  background: rgba(3, 5, 9, 0.96);
  font-family: var(--mg-font-body);
  font-size: var(--mg-text-xs);
}

.tgo .cookie-consent .button {
  min-height: 3.4rem;
  margin: 0;
  padding: 0.7rem 1.1rem;
  border-radius: 0;
  font-size: var(--mg-text-xs);
  line-height: 1.5;
}

.tgo .cookie-consent .button:hover,
.tgo .cookie-consent .button:focus {
  padding: 0.7rem 1.1rem;
  border-radius: 0;
}

@media (max-width: 72rem) {
  .tgo-hero {
    min-height: 112rem;
    padding-top: 18rem;
  }

  .tgo-split {
    grid-template-columns: 1fr;
    min-height: 54rem;
    gap: 4rem;
    padding: 5rem;
  }

  .tgo-copy-card {
    max-width: 58rem;
  }

  .tgo-media {
    width: min(100%, 48rem);
    justify-self: center;
  }

  .tgo-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 10rem;
  }

  .tgo-feature:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 0.9rem);
    justify-self: center;
  }

  .tgo-profile {
    padding-inline: 4rem;
  }

  .tgo-profile__image {
    left: 4rem;
    width: 34rem;
  }

  .tgo-profile__card {
    margin-left: 36rem;
    padding-right: 0;
  }

  .tgo-character {
    width: min(100%, 96rem);
  }

  .tgo-character__callout {
    width: 27rem;
  }

  .tgo-character__callout--left-top,
  .tgo-character__callout--left-bottom {
    left: 6rem;
  }

  .tgo-character__callout--right-top,
  .tgo-character__callout--right-bottom {
    right: 6rem;
  }
}

@media (max-width: 60rem) {
  .tgo-hero {
    min-height: 100rem;
    padding-top: 15rem;
  }

  .tgo-profile__image {
    width: min(100%, 32rem);
  }

  .tgo-character__callout {
    width: 24rem;
  }
}

@media (max-width: 48rem) {
  .tgo .navbar {
    min-height: 5.6rem;
    padding: 0.8rem 0;
  }

  .tgo .navbar .container {
    width: 100%;
    padding-inline: 1.5rem;
  }

  .tgo #nav-logo {
    height: 4rem;
    padding: 0 1rem 0 0;
  }

  .tgo #nav-logo img {
    width: 2.8rem;
    height: 2.8rem;
  }

  .tgo #nav-logo .tgo-nav-logo {
    width: auto;
    height: 3.6rem;
  }

  .tgo .navbar-locale {
    float: right;
    padding-inline: 0.8rem;
  }

  .tgo .navbar-toggle {
    display: grid;
    width: 4rem;
    height: 4rem;
    margin: 0;
    padding: 0;
    place-items: center;
    font-size: 1.6rem;
  }

  .tgo .navbar-collapse {
    float: none !important;
    clear: both;
    margin: 0 -1.5rem;
    padding: 0.8rem 1.5rem 1.2rem;
    border-top: 1px solid rgba(229, 229, 229, 0.12);
    box-shadow: none;
  }

  .tgo .navbar-collapse.collapse {
    display: none !important;
  }

  .tgo .navbar-collapse.collapse.in {
    display: block !important;
  }

  .tgo .navbar-nav {
    float: none !important;
    margin: 0;
  }

  .tgo .navbar-nav > li {
    float: none;
  }

  .tgo .navbar-nav > li > a {
    min-height: 4.4rem;
    padding: 1.5rem 1rem;
  }

  .tgo footer {
    padding: 4rem 0 2.5rem;
  }

  .tgo footer .container {
    width: min(calc(100% - 3rem), 117rem);
  }

  .tgo footer .banner-social-buttons {
    gap: 0.8rem;
  }

  .tgo footer .btn-default {
    min-height: 4rem;
    padding: 0.9rem 1.1rem;
  }

  .tgo .cookie-consent {
    padding: 1rem 1.5rem;
  }

  .tgo .cookie-consent p {
    gap: 0.6rem;
  }

  .tgo-hero {
    min-height: 76rem;
    padding: 9rem 0 6rem;
  }

  .tgo-hero__title {
    line-height: 0.9;
  }

  .tgo .ds-eyebrow {
    margin-bottom: 1.5rem;
  }

  .tgo-proof {
    gap: 0.7rem;
    margin-bottom: 3rem;
  }

  .tgo .ds-badge {
    min-height: 3rem;
    padding: 0.5rem 1rem;
    font-size: var(--mg-text-xs);
  }

  .tgo-hero__subtitle {
    max-width: 35rem;
    margin-top: 2.5rem;
    font-size: var(--mg-text-md);
  }

  .tgo-cta {
    margin-top: 3.5rem;
  }

  .tgo .ds-button {
    width: min(100%, 35rem);
    min-width: 0;
    min-height: 5rem;
    padding-inline: 1.5rem;
    font-size: var(--mg-text-md);
  }

  .tgo-split {
    min-height: 0;
    padding: 3rem 2rem;
  }

  .tgo-copy-card > .tgo-copy-card__intro {
    margin-top: 3.5rem;
  }

  .tgo-list {
    gap: 1.2rem;
  }

  .tgo-features {
    grid-template-columns: 1fr;
    gap: 9rem;
    margin-top: 9rem;
  }

  .tgo-feature,
  .tgo-feature:last-child {
    grid-column: auto;
    width: 100%;
    min-height: 24rem;
  }

  .tgo-feature__surface {
    padding: 8rem 2rem 2.5rem;
  }

  .tgo-feature h3 {
    min-height: 0;
  }

  .tgo-feature__icon {
    top: -5rem;
    width: auto;
    height: 10rem;
  }

  .tgo-profile__title {
    margin-bottom: 6rem;
  }

  .tgo-profile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 3rem 2rem 0;
  }

  .tgo-profile__image {
    position: relative;
    bottom: auto;
    left: auto;
    width: min(100%, 25rem);
    margin: 0 auto;
  }

  .tgo-profile__image img {
    transform: none;
  }

  .tgo-profile__card {
    grid-row: 1;
    margin-left: 0;
    padding: 1rem 0 4rem;
  }

  .tgo-chevrons {
    width: 6rem;
    margin-bottom: 3rem;
  }

  .tgo-proof--conversion {
    margin-top: 9rem;
  }

  .tgo-character {
    display: flex;
    min-height: 0;
    margin-top: 6rem;
    flex-direction: column;
    gap: 1rem;
  }

  .tgo-character > img {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 32rem);
    margin-inline: auto;
    transform: none;
  }

  .tgo-character__callout {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: calc(100% - 4rem);
    margin-inline: auto;
    transform: none;
    text-align: center;
  }

  .tgo-character__callout img {
    top: 50%;
    right: auto;
    left: -2.5rem;
    width: 5rem;
    height: 5rem;
  }

  .tgo-faq {
    padding: 4rem 2rem;
  }

  .tgo-faq__heading .tgo-section__title,
  .tgo-faq__heading .tgo-section__intro {
    text-align: left;
  }

  .tgo-faq__accordion {
    margin-top: 3rem;
  }

  .tgo .ds-accordion__trigger {
    gap: 1rem;
    padding: 2rem 0;
  }

  .tgo .ds-accordion__panel {
    padding-right: 1rem;
  }
}

@media (max-width: 30rem) {
  body.tgo {
    --mg-frame-cut: 2rem;
  }

  .tgo-hero__lead {
    font-size: 0.5em;
  }

  .tgo-proof {
    align-items: center;
    flex-direction: column;
  }

}

@media (prefers-reduced-motion: reduce) {
  .tgo-accordion__icon {
    transition: none;
  }
}

