:root {
  --tbo-bg: #0a0e1a;
  --tbo-bg-2: #121830;
  --tbo-bg-3: #1a2238;
  --tbo-green: #00e88f;
  --tbo-orange: #ff6b00;
  --tbo-text: #e8edf5;
  --tbo-text-2: #9aa7bd;
  --tbo-border: #2a3552;
  --tbo-blue: #4da6ff;
  --tbo-yellow: #ffc531;
  --tbo-header-h: 72px;
  --tbo-font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Inter", sans-serif;
  --tbo-mono: "Roboto Mono", "SFMono-Regular", "Menlo", Consolas, monospace;
  --tbo-radius-sm: 10px;
  --tbo-radius: 16px;
  --tbo-radius-lg: 24px;
  --tbo-radius-pill: 999px;
  --tbo-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --tbo-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--tbo-font);
  background: var(--tbo-bg);
  color: var(--tbo-text);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--tbo-header-h);
  overflow-x: hidden;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
}

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

::selection {
  background: rgba(0, 232, 143, 0.3);
  color: var(--tbo-text);
}

:focus-visible {
  outline: 2px solid var(--tbo-green);
  outline-offset: 3px;
  border-radius: 4px;
}

[id] {
  scroll-margin-top: calc(var(--tbo-header-h) + 24px);
}

#main-content {
  scroll-margin-top: var(--tbo-header-h);
}

main {
  flex: 1;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--tbo-font);
  line-height: 1.3;
  font-weight: 400;
}

h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 100;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 400;
  line-height: 1.4;
}

h3 {
  font-size: 18px;
  font-weight: 500;
}

.tbo-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 32px;
}

.tbo-section {
  padding: 72px 0;
}

.tbo-section__head {
  max-width: 720px;
  margin-bottom: 40px;
}

.tbo-section__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 100;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.tbo-section__desc {
  color: var(--tbo-text-2);
  font-size: 16px;
  margin-top: 12px;
}

.tbo-eyebrow {
  display: inline-block;
  font-family: var(--tbo-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tbo-green);
  margin-bottom: 14px;
}

.tbo-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(12, 1fr);
}

.tbo-grid--2 > * {
  grid-column: span 6;
}

.tbo-grid--3 > * {
  grid-column: span 4;
}

.tbo-grid--4 > * {
  grid-column: span 3;
}

.tbo-grid > .tbo-grid__full {
  grid-column: 1 / -1;
}

.tbo-skip {
  position: fixed;
  top: 0;
  left: -9999px;
  z-index: 10000;
  background: var(--tbo-green);
  color: #0a0e1a;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 232, 143, 0.4);
}

.tbo-skip:focus {
  left: 16px;
  top: 16px;
}

.tbo-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--tbo-header-h);
  background: rgba(10, 14, 26, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(42, 53, 82, 0.6);
}

.tbo-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.tbo-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--tbo-text);
  text-decoration: none;
  flex-shrink: 0;
}

.tbo-brand__mark {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--tbo-green);
  flex-shrink: 0;
}

.tbo-brand__mark::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(0, 232, 143, 0.4);
}

.tbo-brand__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tbo-green);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(0, 232, 143, 0.9);
}

.tbo-brand__text {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.tbo-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.tbo-nav__link {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  color: var(--tbo-text-2);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: color var(--tbo-transition);
}

.tbo-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--tbo-green);
  transition: right var(--tbo-transition);
}

.tbo-nav__link:hover,
.tbo-nav__link:focus-visible {
  color: var(--tbo-text);
}

.tbo-nav__link:hover::after,
.tbo-nav__link:focus-visible::after {
  right: 0;
}

.tbo-nav__link[aria-current="page"] {
  color: var(--tbo-text);
}

.tbo-nav__link[aria-current="page"]::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 1px;
  background: var(--tbo-green);
  transform: rotate(45deg) translateY(-1px);
}

.tbo-nav__link[aria-current="page"]::after {
  right: 0;
}

.tbo-nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--tbo-border);
  background: rgba(26, 34, 56, 0.5);
}

.tbo-nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--tbo-text);
  transition: transform var(--tbo-transition), opacity var(--tbo-transition);
}

.tbo-scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--tbo-green), var(--tbo-blue));
  border-radius: 0 2px 2px 0;
  transition: width 0.08s linear;
  pointer-events: none;
}

.tbo-footer {
  position: relative;
  background: var(--tbo-bg-2);
  border-top: 1px solid var(--tbo-border);
  margin-top: auto;
  overflow: hidden;
}

.tbo-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--tbo-green) 0%, transparent 30%, var(--tbo-blue) 65%, var(--tbo-orange) 100%);
  opacity: 0.6;
}

.tbo-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 48px;
  padding: 56px 0 40px;
}

.tbo-footer__brand .tbo-brand {
  margin-bottom: 16px;
}

.tbo-brand--footer .tbo-brand__mark {
  width: 30px;
  height: 30px;
}

.tbo-brand--footer .tbo-brand__text {
  font-size: 18px;
}

.tbo-footer__desc {
  color: var(--tbo-text-2);
  font-size: 14px;
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 16px;
}

.tbo-footer__note {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255, 197, 49, 0.08);
  border: 1px solid rgba(255, 197, 49, 0.25);
  color: var(--tbo-yellow);
  border-radius: var(--tbo-radius-sm);
  font-size: 13px;
  line-height: 1.6;
  padding: 10px 14px;
  max-width: 360px;
}

.tbo-footer__note::before {
  content: "i";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-size: 11px;
  font-family: var(--tbo-mono);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.tbo-footer__heading {
  font-size: 15px;
  font-weight: 500;
  color: var(--tbo-text);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(42, 53, 82, 0.6);
}

.tbo-footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tbo-footer__list a {
  color: var(--tbo-text-2);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--tbo-transition);
}

.tbo-footer__list a:hover,
.tbo-footer__list a:focus-visible {
  color: var(--tbo-green);
}

.tbo-footer__list li {
  color: var(--tbo-text-2);
  font-size: 14px;
}

.tbo-footer__col--contact .tbo-footer__list li {
  font-family: var(--tbo-mono);
  font-size: 13px;
  line-height: 1.7;
}

.tbo-footer__col--contact .tbo-footer__list li:first-child a {
  font-family: var(--tbo-font);
  font-size: 14px;
}

.tbo-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(42, 53, 82, 0.5);
}

.tbo-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.tbo-footer__legal a {
  color: var(--tbo-text-2);
  font-size: 13px;
  text-decoration: none;
  transition: color var(--tbo-transition);
}

.tbo-footer__legal a:hover,
.tbo-footer__legal a:focus-visible {
  color: var(--tbo-blue);
}

.tbo-footer__legal-sep {
  color: var(--tbo-border);
  font-size: 12px;
}

.tbo-footer__copy {
  font-family: var(--tbo-mono);
  font-size: 13px;
  color: var(--tbo-text-2);
}

.tbo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--tbo-radius-pill);
  font-family: var(--tbo-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--tbo-border);
  background: var(--tbo-bg-3);
  color: var(--tbo-text);
  transition: background var(--tbo-transition), border-color var(--tbo-transition), color var(--tbo-transition), box-shadow var(--tbo-transition);
}

.tbo-btn:hover,
.tbo-btn:focus-visible {
  border-color: var(--tbo-green);
  color: var(--tbo-green);
}

.tbo-btn--primary {
  background: var(--tbo-green);
  border-color: var(--tbo-green);
  color: #0a0e1a;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 232, 143, 0.2);
}

.tbo-btn--primary:hover,
.tbo-btn--primary:focus-visible {
  background: #00c57a;
  border-color: #00c57a;
  color: #0a0e1a;
  box-shadow: 0 6px 28px rgba(0, 232, 143, 0.3);
}

.tbo-btn--ghost {
  background: transparent;
  border-color: var(--tbo-green);
  color: var(--tbo-green);
}

.tbo-btn--ghost:hover,
.tbo-btn--ghost:focus-visible {
  background: rgba(0, 232, 143, 0.1);
  color: var(--tbo-green);
}

.tbo-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 12px;
  border-radius: var(--tbo-radius-pill);
  font-size: 12px;
  letter-spacing: 0.04em;
  background: var(--tbo-bg-3);
  color: var(--tbo-text-2);
  border: 1px solid var(--tbo-border);
}

.tbo-tag--green {
  color: var(--tbo-green);
  border-color: rgba(0, 232, 143, 0.35);
  background: rgba(0, 232, 143, 0.08);
}

.tbo-tag--orange {
  color: var(--tbo-orange);
  border-color: rgba(255, 107, 0, 0.35);
  background: rgba(255, 107, 0, 0.08);
}

.tbo-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: var(--tbo-radius-pill);
  font-family: var(--tbo-font);
  font-size: 13px;
  font-weight: 400;
  background: var(--tbo-bg-3);
  color: var(--tbo-text-2);
  border: 1px solid var(--tbo-border);
  cursor: pointer;
  transition: all var(--tbo-transition);
}

.tbo-chip:hover,
.tbo-chip:focus-visible {
  border-color: var(--tbo-blue);
  color: var(--tbo-text);
}

.tbo-chip.is-active {
  background: rgba(77, 166, 255, 0.15);
  border-color: var(--tbo-blue);
  color: var(--tbo-blue);
}

.tbo-card {
  display: flex;
  flex-direction: column;
  background: var(--tbo-bg-3);
  border: 1px solid var(--tbo-border);
  border-radius: var(--tbo-radius-lg);
  padding: 24px;
  transition: border-color var(--tbo-transition), box-shadow var(--tbo-transition), transform var(--tbo-transition);
}

.tbo-card:hover {
  border-color: rgba(0, 232, 143, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.tbo-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.tbo-card__title {
  font-size: 18px;
  font-weight: 500;
  color: var(--tbo-text);
}

.tbo-card__body {
  font-size: 14px;
  color: var(--tbo-text-2);
  line-height: 1.8;
  flex: 1;
}

.tbo-card__foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(42, 53, 82, 0.5);
}

.tbo-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px;
  background: var(--tbo-bg-2);
  border: 1px solid var(--tbo-border);
  border-radius: var(--tbo-radius);
}

.tbo-metric__value {
  font-family: var(--tbo-mono);
  font-size: 30px;
  font-weight: 500;
  color: var(--tbo-green);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.tbo-metric__label {
  font-size: 13px;
  color: var(--tbo-text-2);
  letter-spacing: 0.05em;
}

.tbo-plaque {
  position: relative;
  background: linear-gradient(135deg, rgba(26, 34, 56, 0.92), rgba(18, 24, 48, 0.92));
  border: 1px solid var(--tbo-border);
  border-radius: var(--tbo-radius);
  padding: 26px 24px 20px;
}

.tbo-plaque::before {
  content: attr(data-label);
  position: absolute;
  top: -9px;
  left: 18px;
  background: var(--tbo-bg-2);
  border: 1px solid var(--tbo-border);
  border-radius: var(--tbo-radius-pill);
  color: var(--tbo-green);
  font-family: var(--tbo-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 12px;
}

.tbo-plaque--orange::before {
  color: var(--tbo-orange);
  border-color: rgba(255, 107, 0, 0.35);
}

.tbo-window {
  position: relative;
  background: var(--tbo-bg-2);
  border: 1px solid var(--tbo-border);
  border-radius: var(--tbo-radius-lg);
  padding: 28px;
}

.tbo-window::before,
.tbo-window::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.tbo-window::before {
  top: 9px;
  left: 9px;
  border-top: 2px solid var(--tbo-green);
  border-left: 2px solid var(--tbo-green);
  border-radius: 4px 0 0 0;
}

.tbo-window::after {
  bottom: 9px;
  right: 9px;
  border-bottom: 2px solid var(--tbo-green);
  border-right: 2px solid var(--tbo-green);
  border-radius: 0 0 4px 0;
}

.tbo-timeline {
  position: relative;
  padding-left: 32px;
}

.tbo-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--tbo-green), var(--tbo-border) 80%);
}

.tbo-timeline__item {
  position: relative;
  padding-bottom: 32px;
}

.tbo-timeline__item:last-child {
  padding-bottom: 0;
}

.tbo-timeline__item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tbo-bg);
  border: 2px solid var(--tbo-green);
}

.tbo-timeline__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--tbo-text);
  margin-bottom: 4px;
}

.tbo-timeline__text {
  font-size: 14px;
  color: var(--tbo-text-2);
}

.tbo-index {
  display: flex;
  flex-direction: column;
  counter-reset: tbo-index;
}

.tbo-index__item {
  counter-increment: tbo-index;
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(42, 53, 82, 0.45);
}

.tbo-index__item:last-child {
  border-bottom: none;
}

.tbo-index__item::before {
  content: counter(tbo-index, decimal-leading-zero);
  font-family: var(--tbo-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--tbo-green);
  letter-spacing: 0.03em;
}

.tbo-index__item a {
  color: var(--tbo-text);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  transition: color var(--tbo-transition);
}

.tbo-index__item a:hover,
.tbo-index__item a:focus-visible {
  color: var(--tbo-green);
}

.tbo-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--tbo-text-2);
  padding: 18px 0;
}

.tbo-breadcrumb a {
  color: var(--tbo-blue);
  text-decoration: none;
}

.tbo-breadcrumb a:hover,
.tbo-breadcrumb a:focus-visible {
  text-decoration: underline;
}

.tbo-breadcrumb__sep {
  color: var(--tbo-border);
  font-family: var(--tbo-mono);
  font-size: 12px;
}

.tbo-breadcrumb [aria-current="page"] {
  color: var(--tbo-text-2);
}

.tbo-media {
  position: relative;
  border-radius: var(--tbo-radius);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 232, 143, 0.05), transparent 45%), var(--tbo-bg-2);
  aspect-ratio: 16 / 9;
  border: 1px solid var(--tbo-border);
}

.tbo-media--square {
  aspect-ratio: 1 / 1;
}

.tbo-media--tall {
  aspect-ratio: 3 / 4;
}

.tbo-media--wide {
  aspect-ratio: 21 / 9;
}

.tbo-media__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--tbo-ease);
}

.tbo-media:hover .tbo-media__img {
  transform: scale(1.02);
}

.tbo-media__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tbo-text-2);
  font-family: var(--tbo-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tbo-media__caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--tbo-text);
  font-size: 12px;
  font-family: var(--tbo-mono);
  padding: 4px 12px;
  border-radius: var(--tbo-radius-pill);
  border: 1px solid rgba(42, 53, 82, 0.8);
}

.tbo-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--tbo-bg-3);
  border: 1px solid var(--tbo-border);
  color: var(--tbo-green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--tbo-transition), border-color var(--tbo-transition), transform var(--tbo-transition), opacity var(--tbo-transition);
}

.tbo-top:hover,
.tbo-top:focus-visible {
  background: var(--tbo-bg-3);
  border-color: var(--tbo-green);
  transform: translateY(-3px);
}

.tbo-top[hidden] {
  display: none;
}

.tbo-top__icon {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
  margin-bottom: 5px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--tbo-ease), transform 0.5s var(--tbo-ease);
}

.js [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .tbo-nav__list {
    gap: 20px;
  }

  .tbo-footer__top {
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 32px;
  }

  .tbo-grid--4 > * {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .tbo-container {
    padding-inline: 16px;
  }

  .tbo-section {
    padding: 48px 0;
  }

  .tbo-nav-toggle {
    display: flex;
  }

  .tbo-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--tbo-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s var(--tbo-ease);
  }

  .tbo-nav[data-open] {
    max-height: calc(100vh - var(--tbo-header-h));
    overflow-y: auto;
  }

  .tbo-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 20px;
  }

  .tbo-nav__item + .tbo-nav__item {
    border-top: 1px solid rgba(42, 53, 82, 0.5);
  }

  .tbo-nav__link {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    width: 100%;
  }

  .tbo-nav__link::after {
    display: none;
  }

  .tbo-nav__link[aria-current="page"]::before {
    margin-right: 8px;
  }

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

  .tbo-nav-toggle[aria-expanded="true"] .tbo-nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }

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

  .tbo-footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 0 28px;
  }

  .tbo-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .tbo-grid--2 > *,
  .tbo-grid--3 > *,
  .tbo-grid--4 > * {
    grid-column: 1 / -1;
  }

  .tbo-top {
    right: 16px;
    bottom: 16px;
  }
}

@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;
  }

  .tbo-scroll-progress {
    transition: none;
  }

  .tbo-nav {
    transition: none;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js [data-reveal].is-revealed {
    opacity: 1;
    transform: none;
  }

  .tbo-media__img {
    transition: none;
  }

  .tbo-top {
    transition: none;
  }
}
