.tjsr-root {
  --tjsr-ink: #17212b;
  --tjsr-muted: #596571;
  --tjsr-line: #dce3e8;
  --tjsr-navy: #123047;
  --tjsr-navy-2: #0b2436;
  --tjsr-blue: #0d5d86;
  --tjsr-teal: #0b716b;
  --tjsr-gold: #aa7b27;
  --tjsr-gold-soft: #efe4cf;
  --tjsr-soft: #f5f7f8;
  --tjsr-paper: #ffffff;
  --tjsr-radius: 16px;
  color: var(--tjsr-ink);
  background: var(--tjsr-paper);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.8;
}

.tjsr-root *,
.tjsr-root *::before,
.tjsr-root *::after {
  box-sizing: border-box;
}

.tjsr-root a {
  color: var(--tjsr-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.tjsr-root a:hover {
  color: var(--tjsr-navy);
}

.tjsr-root :focus-visible {
  outline: 3px solid #efb949;
  outline-offset: 4px;
}

.tjsr-root h1,
.tjsr-root h2,
.tjsr-root h3,
.tjsr-root p,
.tjsr-root li,
.tjsr-root summary,
.tjsr-root th,
.tjsr-root td {
  overflow-wrap: anywhere;
  word-break: auto-phrase;
}

.tjsr-wrap {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.tjsr-section {
  padding: 88px 0;
}

.tjsr-section--soft {
  background: var(--tjsr-soft);
}

.tjsr-section--navy {
  color: #fff;
  background: var(--tjsr-navy);
}

.tjsr-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.tjsr-section-head > p {
  margin: 0;
  color: var(--tjsr-muted);
}

.tjsr-section--navy .tjsr-section-head > p {
  color: rgba(255, 255, 255, 0.76);
}

.tjsr-kicker {
  margin: 0 0 12px;
  color: var(--tjsr-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tjsr-root h1,
.tjsr-root h2,
.tjsr-root h3 {
  margin: 0;
  color: inherit;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.28;
  text-wrap: balance;
}

.tjsr-root h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.tjsr-root h3 {
  font-size: clamp(20px, 2vw, 25px);
}

.tjsr-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(207, 166, 89, 0.27), transparent 27%),
    radial-gradient(circle at 72% 92%, rgba(22, 117, 126, 0.3), transparent 32%),
    linear-gradient(125deg, var(--tjsr-navy-2) 0%, var(--tjsr-navy) 56%, #154c5e 100%);
}

.tjsr-hero::before,
.tjsr-hero::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.tjsr-hero::before {
  width: 640px;
  height: 640px;
  right: -180px;
  top: -250px;
}

.tjsr-hero::after {
  width: 420px;
  height: 420px;
  right: 110px;
  bottom: -290px;
}

.tjsr-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: 72px;
  align-items: end;
  min-height: 690px;
  padding: 108px 0 58px;
}

.tjsr-hero-label {
  margin: 0 0 22px;
  color: #e7ce9e;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.tjsr-hero h1 {
  max-width: 850px;
  font-size: clamp(44px, 6.4vw, 80px);
  line-height: 1.12;
}

.tjsr-hero h1 span {
  display: block;
}

.tjsr-hero-lead {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.9;
}

.tjsr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.tjsr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #fff;
  color: var(--tjsr-navy) !important;
  font-weight: 750;
  text-decoration: none !important;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.tjsr-btn:hover {
  transform: translateY(-2px);
}

.tjsr-btn--outline {
  border-color: rgba(255, 255, 255, 0.62);
  background: transparent;
  color: #fff !important;
}

.tjsr-btn--dark {
  background: var(--tjsr-navy);
  color: #fff !important;
}

.tjsr-btn--gold {
  background: #d5ad61;
  color: #17212b !important;
}

.tjsr-journey {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: journey;
}

.tjsr-journey li {
  position: relative;
  min-height: 58px;
  padding: 12px 14px 12px 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
  counter-increment: journey;
}

.tjsr-journey li::before {
  position: absolute;
  left: 10px;
  top: 14px;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #e7ce9e;
  content: counter(journey, decimal-leading-zero);
  font-size: 10px;
  font-weight: 800;
  line-height: 24px;
  text-align: center;
}

.tjsr-definition {
  border-bottom: 1px solid var(--tjsr-line);
  background: #fff;
}

.tjsr-definition-inner {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 42px;
  padding: 40px 0 44px;
}

.tjsr-definition h2 {
  color: var(--tjsr-gold);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tjsr-definition p {
  max-width: 900px;
  margin: 0;
  color: var(--tjsr-ink);
  font-size: 18px;
  line-height: 1.95;
}

.tjsr-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tjsr-fact {
  padding: 28px;
  border: 1px solid var(--tjsr-line);
  border-top: 4px solid var(--tjsr-gold);
  border-radius: var(--tjsr-radius);
  background: #fff;
}

.tjsr-fact strong {
  display: block;
  color: var(--tjsr-navy);
  font-size: clamp(23px, 2.4vw, 32px);
  line-height: 1.35;
}

.tjsr-fact p {
  margin: 12px 0 0;
  color: var(--tjsr-muted);
}

.tjsr-fact small,
.tjsr-note {
  display: block;
  margin-top: 16px;
  color: #697580;
  font-size: 12px;
  line-height: 1.65;
}

.tjsr-stage-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.tjsr-stage {
  display: flex;
  min-height: 220px;
  padding: 22px;
  flex-direction: column;
  border: 1px solid var(--tjsr-line);
  border-radius: var(--tjsr-radius);
  background: #fff;
  color: var(--tjsr-ink) !important;
  text-decoration: none !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.tjsr-stage:hover {
  transform: translateY(-3px);
  border-color: #b8c4cd;
  box-shadow: 0 16px 34px rgba(18, 48, 71, 0.09);
}

.tjsr-stage > span:first-child {
  color: var(--tjsr-gold);
  font-size: 12px;
  font-weight: 800;
}

.tjsr-stage strong {
  display: block;
  margin-top: 20px;
  color: var(--tjsr-navy);
  font-size: 20px;
  line-height: 1.45;
}

.tjsr-stage p {
  margin: 12px 0 0;
  color: var(--tjsr-muted);
  font-size: 14px;
  line-height: 1.75;
}

.tjsr-stage > span:last-child {
  margin-top: auto;
  padding-top: 18px;
  color: var(--tjsr-blue);
  font-size: 13px;
  font-weight: 750;
}

.tjsr-business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tjsr-business {
  display: flex;
  min-height: 420px;
  padding: 28px;
  flex-direction: column;
  border: 1px solid var(--tjsr-line);
  border-radius: var(--tjsr-radius);
  background: #fff;
}

.tjsr-business-number {
  color: var(--tjsr-gold);
  font-size: 13px;
  font-weight: 800;
}

.tjsr-business h3 {
  margin-top: 18px;
  color: var(--tjsr-navy);
}

.tjsr-label {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--tjsr-gold-soft);
  color: #725014;
  font-size: 12px;
  font-weight: 800;
}

.tjsr-business dl {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 8px 12px;
  margin: 22px 0 0;
  font-size: 14px;
}

.tjsr-business dt {
  color: #73808a;
  font-weight: 700;
}

.tjsr-business dd {
  margin: 0;
  color: var(--tjsr-ink);
}

.tjsr-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: auto;
  padding-top: 24px;
}

.tjsr-card-links a {
  font-size: 14px;
  font-weight: 750;
}

.tjsr-reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tjsr-reason {
  padding: 30px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.tjsr-reason:last-child {
  border-right: 0;
}

.tjsr-reason span {
  color: #e1c58e;
  font-size: 12px;
  font-weight: 800;
}

.tjsr-reason h3 {
  margin-top: 14px;
  color: #fff;
}

.tjsr-reason p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.tjsr-case-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.tjsr-case {
  padding: 28px;
  border: 1px solid var(--tjsr-line);
  border-radius: var(--tjsr-radius);
  background: #fff;
}

.tjsr-case--primary {
  background: #fffdf8;
  border-color: #ddc89e;
}

.tjsr-case h3 {
  color: var(--tjsr-navy);
}

.tjsr-case dl {
  margin: 22px 0 0;
}

.tjsr-case dt {
  margin-top: 14px;
  color: #7b673e;
  font-size: 12px;
  font-weight: 800;
}

.tjsr-case dd {
  margin: 4px 0 0;
  color: var(--tjsr-muted);
}

.tjsr-case a {
  display: inline-block;
  margin-top: 20px;
  font-weight: 750;
}

.tjsr-relationship {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
}

.tjsr-relationship-core {
  display: flex;
  min-height: 100%;
  padding: 32px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--tjsr-radius);
  background: var(--tjsr-navy);
  color: #fff;
}

.tjsr-relationship-core p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.tjsr-relationship-core a {
  margin-top: 28px;
  color: #f0d69e;
  font-weight: 750;
}

.tjsr-relationship-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.tjsr-relationship-item {
  padding: 22px;
  border: 1px solid var(--tjsr-line);
  border-radius: var(--tjsr-radius);
  background: #fff;
}

.tjsr-relationship-item span {
  color: var(--tjsr-gold);
  font-size: 12px;
  font-weight: 800;
}

.tjsr-relationship-item h3 {
  margin-top: 9px;
  color: var(--tjsr-navy);
  font-size: 20px;
}

.tjsr-relationship-item p {
  margin: 10px 0 0;
  color: var(--tjsr-muted);
  font-size: 14px;
}

.tjsr-knowledge {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
}

.tjsr-book {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--tjsr-line);
  border-radius: var(--tjsr-radius);
  background: #fff;
}

.tjsr-book img {
  width: 138px;
  height: auto;
  border: 1px solid var(--tjsr-line);
  border-radius: 6px;
}

.tjsr-book h3 {
  color: var(--tjsr-navy);
}

.tjsr-book p {
  margin: 12px 0 0;
  color: var(--tjsr-muted);
  font-size: 14px;
}

.tjsr-profile {
  display: grid;
  gap: 16px;
}

.tjsr-profile-card {
  padding: 26px;
  border: 1px solid var(--tjsr-line);
  border-radius: var(--tjsr-radius);
  background: #fff;
}

.tjsr-profile-card h3 {
  color: var(--tjsr-navy);
}

.tjsr-profile-card p {
  margin: 12px 0 0;
  color: var(--tjsr-muted);
}

.tjsr-network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tjsr-network-card {
  display: flex;
  min-height: 190px;
  padding: 22px;
  flex-direction: column;
  border: 1px solid var(--tjsr-line);
  border-radius: var(--tjsr-radius);
  background: #fff;
  color: var(--tjsr-ink) !important;
  text-decoration: none !important;
}

.tjsr-network-card span {
  color: var(--tjsr-gold);
  font-size: 12px;
  font-weight: 800;
}

.tjsr-network-card h3 {
  margin-top: 14px;
  color: var(--tjsr-navy);
  font-size: 20px;
}

.tjsr-network-card p {
  margin: 10px 0 0;
  color: var(--tjsr-muted);
  font-size: 14px;
}

.tjsr-network-card strong {
  margin-top: auto;
  padding-top: 18px;
  color: var(--tjsr-blue);
  font-size: 13px;
}

.tjsr-faq {
  border-top: 1px solid var(--tjsr-line);
}

.tjsr-faq details {
  border-bottom: 1px solid var(--tjsr-line);
}

.tjsr-faq summary {
  position: relative;
  padding: 24px 52px 24px 0;
  color: var(--tjsr-navy);
  cursor: pointer;
  font-size: 18px;
  font-weight: 750;
  list-style: none;
}

.tjsr-faq summary::-webkit-details-marker {
  display: none;
}

.tjsr-faq summary::after {
  position: absolute;
  right: 8px;
  top: 23px;
  content: "+";
  color: var(--tjsr-gold);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.tjsr-faq details[open] summary::after {
  content: "−";
}

.tjsr-faq details p {
  max-width: 900px;
  margin: -4px 0 24px;
  color: var(--tjsr-muted);
}

.tjsr-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 50px;
  border-radius: 22px;
  background: linear-gradient(125deg, var(--tjsr-navy-2), #154c5e);
  color: #fff;
}

.tjsr-cta p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.tjsr-consult-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tjsr-consult-links a {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
}

.tjsr-updated {
  margin: 28px 0 0;
  color: #66737e;
  font-size: 12px;
  text-align: right;
}

.tjsr-page-hero {
  padding: 88px 0 58px;
  color: #fff;
  background: linear-gradient(125deg, var(--tjsr-navy-2), #154c5e);
}

.tjsr-page-hero h1 {
  max-width: 900px;
  font-size: clamp(38px, 5vw, 64px);
}

.tjsr-page-hero p:not(.tjsr-kicker) {
  max-width: 820px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.tjsr-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.tjsr-breadcrumb a {
  color: #f0d69e;
}

.tjsr-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--tjsr-line);
  border-radius: var(--tjsr-radius);
}

.tjsr-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
}

.tjsr-table th,
.tjsr-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--tjsr-line);
  text-align: left;
  vertical-align: top;
}

.tjsr-table tr:last-child th,
.tjsr-table tr:last-child td {
  border-bottom: 0;
}

.tjsr-table th {
  width: 210px;
  color: var(--tjsr-navy);
  background: #f7f8f9;
  font-weight: 750;
}

.tjsr-source-list,
.tjsr-plain-list {
  margin: 22px 0 0;
  padding-left: 1.3em;
}

.tjsr-source-list li,
.tjsr-plain-list li {
  margin: 8px 0;
}

.tjsr-inventory-group + .tjsr-inventory-group {
  margin-top: 42px;
}

.tjsr-inventory-group h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.tjsr-inventory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.tjsr-inventory article {
  padding: 22px;
  border: 1px solid var(--tjsr-line);
  border-radius: var(--tjsr-radius);
  background: #fff;
}

.tjsr-inventory h3 {
  color: var(--tjsr-navy);
  font-size: 20px;
}

.tjsr-inventory p {
  margin: 10px 0 0;
  color: var(--tjsr-muted);
  font-size: 14px;
}

.tjsr-inventory a {
  display: inline-block;
  margin-top: 14px;
  font-weight: 750;
}

.tjsr-form-context {
  margin: 0 0 24px;
  padding: 14px 16px;
  border-left: 4px solid var(--tjsr-gold);
  background: #fff8e9;
  color: var(--tjsr-navy);
  font-weight: 750;
}

#site_loader_overlay,
#tenpojs-lite-css {
  display: none !important;
}

.tenpojs-menu-cta > a {
  border-radius: 999px !important;
  background: #123047 !important;
  color: #fff !important;
}

@media (max-width: 1020px) {
  .tjsr-stage-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tjsr-business-grid,
  .tjsr-network-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .tjsr-reason:nth-child(2) {
    border-right: 0;
  }

  .tjsr-reason:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .tjsr-case-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tjsr-case--primary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .tjsr-wrap {
    width: min(100% - 32px, 1160px);
  }

  .tjsr-section {
    padding: 62px 0;
  }

  .tjsr-section-head,
  .tjsr-hero-inner,
  .tjsr-definition-inner,
  .tjsr-relationship,
  .tjsr-knowledge,
  .tjsr-cta {
    grid-template-columns: 1fr;
  }

  .tjsr-section-head {
    gap: 18px;
  }

  .tjsr-hero-inner {
    min-height: auto;
    gap: 44px;
    padding: 84px 0 46px;
  }

  .tjsr-hero h1 {
    font-size: clamp(40px, 12vw, 64px);
  }

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

  .tjsr-definition-inner {
    gap: 14px;
  }

  .tjsr-facts,
  .tjsr-stage-grid,
  .tjsr-business-grid,
  .tjsr-network-grid,
  .tjsr-inventory {
    grid-template-columns: 1fr;
  }

  .tjsr-stage {
    min-height: 0;
  }

  .tjsr-business {
    min-height: 0;
  }

  .tjsr-case-grid {
    grid-template-columns: 1fr;
  }

  .tjsr-case--primary {
    grid-column: auto;
  }

  .tjsr-cta {
    padding: 34px 26px;
  }

  .tjsr-updated {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .tjsr-root {
    font-size: 15px;
  }

  .tjsr-hero h1 {
    font-size: clamp(38px, 12.5vw, 54px);
  }

  .tjsr-hero h1 span {
    display: inline;
  }

  .tjsr-actions {
    display: grid;
  }

  .tjsr-btn {
    width: 100%;
  }

  .tjsr-journey {
    grid-template-columns: 1fr;
  }

  .tjsr-reasons,
  .tjsr-relationship-list {
    grid-template-columns: 1fr;
  }

  .tjsr-reason,
  .tjsr-reason:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .tjsr-reason:last-child {
    border-bottom: 0;
  }

  .tjsr-book {
    grid-template-columns: 94px 1fr;
    gap: 16px;
    padding: 20px;
  }

  .tjsr-book img {
    width: 94px;
  }

  .tjsr-table th {
    width: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tjsr-root *,
  .tjsr-root *::before,
  .tjsr-root *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Editorial corporate direction */
.tjsr-root {
  --tjsr-line: #cfd5d8;
  --tjsr-soft: #f2f1ed;
  --tjsr-paper: #fbfbf9;
  --tjsr-radius: 2px;
  background: var(--tjsr-paper);
  line-height: 1.75;
}

.tjsr-line {
  display: block;
}

.tjsr-copy-lines .tjsr-line + .tjsr-line {
  margin-top: 0.14em;
}

.tjsr-copy-lines .tjsr-line--lead {
  margin-top: 0.5em;
  color: var(--tjsr-ink);
  font-weight: 680;
}

.tjsr-copy-lines .tjsr-line--meta {
  margin-top: 0.45em;
  color: #6a747b;
  font-size: 0.88em;
  line-height: 1.65;
}

.tjsr-hero .tjsr-copy-lines .tjsr-line--lead,
.tjsr-hero .tjsr-copy-lines .tjsr-line--meta,
.tjsr-page-hero .tjsr-copy-lines .tjsr-line--lead,
.tjsr-page-hero .tjsr-copy-lines .tjsr-line--meta,
.tjsr-section--navy .tjsr-copy-lines .tjsr-line--lead,
.tjsr-section--navy .tjsr-copy-lines .tjsr-line--meta,
.tjsr-cta .tjsr-copy-lines .tjsr-line--lead,
.tjsr-cta .tjsr-copy-lines .tjsr-line--meta {
  color: inherit;
}

.tjsr-section {
  padding: 104px 0;
}

.tjsr-section-head {
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: 80px;
  align-items: start;
  margin-bottom: 48px;
}

.tjsr-section-head > p {
  max-width: 620px;
  padding-top: 28px;
  border-top: 1px solid var(--tjsr-line);
}

.tjsr-kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: none;
}

.tjsr-kicker::before {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}

.tjsr-root h1,
.tjsr-root h2,
.tjsr-root h3 {
  font-weight: 720;
  letter-spacing: 0;
  text-wrap: pretty;
}

.tjsr-hero {
  background: #0c2b3d;
}

.tjsr-hero::before,
.tjsr-hero::after {
  display: none;
}

.tjsr-hero-inner {
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.5fr);
  gap: 110px;
  min-height: 650px;
  padding: 116px 0 64px;
}

.tjsr-hero-label {
  margin-bottom: 30px;
  padding-left: 14px;
  border-left: 2px solid #d5ad61;
  color: #e2c98f;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.tjsr-hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 5.6vw, 76px);
  line-height: 1.1;
}

.tjsr-hero-lead {
  margin-top: 36px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 2;
}

.tjsr-hero-lead .tjsr-line + .tjsr-line {
  margin-top: 0.12em;
}

.tjsr-btn,
.tenpojs-menu-cta > a {
  border-radius: 2px !important;
}

.tjsr-btn {
  min-height: 50px;
  padding-inline: 22px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.tjsr-btn:hover {
  transform: none;
}

.tjsr-journey li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 0;
  padding: 19px 0;
  color: rgba(255, 255, 255, 0.9);
}

.tjsr-journey li::before {
  display: none;
}

.tjsr-journey li span {
  color: #d5ad61;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.tjsr-definition {
  background: #e9e7e0;
}

.tjsr-definition-inner {
  grid-template-columns: 150px minmax(0, 1fr);
  padding: 48px 0 52px;
}

.tjsr-definition h2 {
  padding-top: 8px;
  color: #74551f;
  text-transform: none;
}

.tjsr-definition p {
  font-size: clamp(17px, 1.7vw, 20px);
}

.tjsr-definition .tjsr-line--lead {
  max-width: 39em;
  font-size: 1.08em;
}

.tjsr-facts {
  gap: 0;
}

.tjsr-fact {
  padding: 0 38px;
  border: 0;
  border-left: 1px solid var(--tjsr-line);
  border-radius: 0;
  background: transparent;
}

.tjsr-fact:first-child {
  padding-left: 0;
  border-left: 0;
}

.tjsr-fact:last-child {
  padding-right: 0;
}

.tjsr-fact strong {
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 600;
}

.tjsr-stage-grid,
.tjsr-business-grid,
.tjsr-network-grid {
  display: block;
}

.tjsr-stage {
  display: grid;
  grid-template-columns: 54px minmax(220px, 0.8fr) minmax(280px, 1fr) 150px;
  gap: 24px;
  align-items: center;
  min-height: 0;
  padding: 24px 0;
  border: 0;
  border-top: 1px solid var(--tjsr-line);
  border-radius: 0;
  background: transparent;
  transition: color 0.15s ease;
}

.tjsr-stage:last-child {
  border-bottom: 1px solid var(--tjsr-line);
}

.tjsr-stage:hover {
  transform: none;
  border-color: var(--tjsr-line);
  box-shadow: none;
}

.tjsr-stage strong,
.tjsr-stage p,
.tjsr-stage > span:last-child {
  margin: 0;
  padding: 0;
}

.tjsr-stage strong {
  font-size: 19px;
}

.tjsr-stage strong .tjsr-line + .tjsr-line,
.tjsr-business h3 .tjsr-line + .tjsr-line {
  margin-top: 0.08em;
}

.tjsr-stage > span:last-child {
  text-align: right;
}

.tjsr-business {
  display: grid;
  grid-template-columns: 56px minmax(240px, 0.82fr) minmax(0, 1.18fr);
  grid-template-rows: auto auto auto;
  gap: 8px 32px;
  min-height: 0;
  padding: 36px 0;
  border: 0;
  border-top: 1px solid var(--tjsr-line);
  border-radius: 0;
  background: transparent;
}

.tjsr-business:last-child {
  border-bottom: 1px solid var(--tjsr-line);
}

.tjsr-business-number {
  grid-column: 1;
  grid-row: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.tjsr-business h3 {
  grid-column: 2;
  grid-row: 1;
  margin-top: 0;
}

.tjsr-label {
  grid-column: 2;
  grid-row: 2;
  margin-top: 6px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #806126;
  font-size: 12px;
}

.tjsr-business dl {
  grid-column: 3;
  grid-row: 1 / span 2;
  margin: 0;
}

.tjsr-business .tjsr-card-links {
  grid-column: 3;
  grid-row: 3;
}

.tjsr-card-links {
  margin-top: 0;
  padding-top: 14px;
}

.tjsr-card-links a,
.tjsr-case a,
.tjsr-relationship-core a,
.tjsr-network-card strong {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.tjsr-reasons {
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
}

.tjsr-reason {
  min-height: 230px;
  padding: 38px 30px;
}

.tjsr-case-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 0 54px;
}

.tjsr-case {
  padding: 30px 0;
  border: 0;
  border-top: 1px solid var(--tjsr-line);
  border-radius: 0;
  background: transparent;
}

.tjsr-case--primary {
  grid-row: 1 / span 2;
  padding-right: 54px;
  border-right: 1px solid var(--tjsr-line);
  background: transparent;
}

.tjsr-relationship {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
}

.tjsr-relationship-core {
  border-radius: 0;
  background: #0c2b3d;
}

.tjsr-relationship-list {
  gap: 0;
}

.tjsr-relationship-item {
  padding: 24px 0;
  border: 0;
  border-top: 1px solid var(--tjsr-line);
  border-radius: 0;
  background: transparent;
}

.tjsr-relationship-item:nth-child(odd) {
  padding-right: 24px;
}

.tjsr-relationship-item:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--tjsr-line);
}

.tjsr-book,
.tjsr-profile-card {
  border: 0;
  border-top: 1px solid var(--tjsr-line);
  border-radius: 0;
  background: transparent;
}

.tjsr-book {
  padding: 28px 0;
}

.tjsr-book img {
  border-radius: 0;
}

.tjsr-profile-card {
  padding: 26px 0;
}

.tjsr-network-card {
  display: grid;
  grid-template-columns: 150px minmax(220px, 0.8fr) minmax(220px, 1fr) 120px;
  gap: 28px;
  align-items: center;
  min-height: 0;
  padding: 24px 0;
  border: 0;
  border-top: 1px solid var(--tjsr-line);
  border-radius: 0;
  background: transparent;
}

.tjsr-network-card:last-child {
  border-bottom: 1px solid var(--tjsr-line);
}

.tjsr-network-card h3,
.tjsr-network-card p,
.tjsr-network-card strong {
  margin: 0;
  padding: 0;
}

.tjsr-network-card strong {
  text-align: right;
}

.tjsr-cta {
  padding: 52px 56px;
  border-left: 5px solid #d5ad61;
  border-radius: 0;
  background: #0c2b3d;
}

.tjsr-consult-links {
  gap: 6px 18px;
}

.tjsr-consult-links a {
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0;
}

.tjsr-page-hero {
  background: #0c2b3d;
}

.tjsr-table-wrap,
.tjsr-inventory article {
  border-radius: 0;
}

.tjsr-inventory {
  gap: 0;
}

.tjsr-inventory article {
  padding: 24px 0;
  border: 0;
  border-top: 1px solid var(--tjsr-line);
  background: transparent;
}

.tjsr-inventory article:nth-child(odd) {
  padding-right: 26px;
}

.tjsr-inventory article:nth-child(even) {
  padding-left: 26px;
  border-left: 1px solid var(--tjsr-line);
}

@media (max-width: 1020px) {
  .tjsr-stage {
    grid-template-columns: 48px minmax(200px, 0.85fr) minmax(240px, 1fr) 120px;
  }

  .tjsr-business-grid,
  .tjsr-network-grid {
    display: block;
  }

  .tjsr-case-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tjsr-case--primary {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .tjsr-section {
    padding: 72px 0;
  }

  .tjsr-hero h1 {
    font-size: clamp(40px, 8.5vw, 58px);
  }

  .tjsr-section-head {
    gap: 24px;
  }

  .tjsr-section-head > p {
    padding-top: 18px;
  }

  .tjsr-hero-inner {
    gap: 48px;
    padding: 86px 0 48px;
  }

  .tjsr-fact {
    padding: 28px 0;
    border-top: 1px solid var(--tjsr-line);
    border-left: 0;
  }

  .tjsr-stage {
    grid-template-columns: 38px 1fr;
    gap: 6px 16px;
  }

  .tjsr-stage strong,
  .tjsr-stage p,
  .tjsr-stage > span:last-child {
    grid-column: 2;
  }

  .tjsr-stage > span:last-child {
    margin-top: 8px;
    text-align: left;
  }

  .tjsr-business {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 8px 14px;
  }

  .tjsr-business h3,
  .tjsr-label,
  .tjsr-business dl,
  .tjsr-business .tjsr-card-links {
    grid-column: 2;
  }

  .tjsr-business h3 {
    grid-row: 1;
  }

  .tjsr-label {
    grid-row: 2;
  }

  .tjsr-business dl {
    grid-row: 3;
    margin-top: 16px;
  }

  .tjsr-business .tjsr-card-links {
    grid-row: 4;
  }

  .tjsr-case-grid {
    grid-template-columns: 1fr;
  }

  .tjsr-case--primary {
    padding-right: 0;
    border-right: 0;
  }

  .tjsr-relationship-item:nth-child(odd),
  .tjsr-relationship-item:nth-child(even),
  .tjsr-inventory article:nth-child(odd),
  .tjsr-inventory article:nth-child(even) {
    padding-inline: 0;
    border-left: 0;
  }

  .tjsr-network-card {
    grid-template-columns: 110px 1fr;
    gap: 8px 18px;
  }

  .tjsr-network-card h3,
  .tjsr-network-card p,
  .tjsr-network-card strong {
    grid-column: 2;
  }

  .tjsr-network-card strong {
    text-align: left;
  }

  .tjsr-cta {
    padding: 38px 28px;
  }
}

@media (max-width: 560px) {
  .tjsr-hero h1 {
    font-size: clamp(34px, 9.4vw, 46px);
    line-height: 1.16;
  }

  .tjsr-hero h1 span {
    display: block;
  }

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

  .tjsr-reason {
    min-height: 0;
  }

  .tjsr-book {
    padding: 24px 0;
  }

  .tjsr-network-card {
    grid-template-columns: 1fr;
  }

  .tjsr-network-card h3,
  .tjsr-network-card p,
  .tjsr-network-card strong {
    grid-column: 1;
  }

  .tjsr-copy-lines .tjsr-line--lead {
    margin-top: 0.34em;
  }

  .tjsr-section-head .tjsr-copy-lines {
    max-width: 28em;
  }
}

/* ThreeUI Kage inspired direction */
.tjsr-root {
  --tjsr-ink: #171a1d;
  --tjsr-muted: #5f6463;
  --tjsr-line: #c8c7c1;
  --tjsr-navy: #111820;
  --tjsr-navy-2: #080f14;
  --tjsr-blue: #79342e;
  --tjsr-gold: #b83b30;
  --tjsr-gold-soft: #eadbd3;
  --tjsr-soft: #ece9e2;
  --tjsr-paper: #f6f4ee;
  background: var(--tjsr-paper);
}

.tjsr-root h1,
.tjsr-root h2,
.tjsr-root h3 {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.tjsr-kicker {
  gap: 9px;
  color: var(--tjsr-gold);
  font-weight: 700;
  letter-spacing: 0.09em;
}

.tjsr-kicker::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tjsr-gold);
}

.tjsr-hero {
  isolation: isolate;
  min-height: clamp(620px, calc(100svh - 76px), 780px);
  background-color: #081118;
  background-image:
    linear-gradient(90deg, rgba(5, 12, 17, 0.98) 0%, rgba(5, 12, 17, 0.86) 43%, rgba(5, 12, 17, 0.27) 74%, rgba(5, 12, 17, 0.58) 100%),
    linear-gradient(0deg, rgba(4, 9, 13, 0.82) 0%, rgba(4, 9, 13, 0) 45%),
    url("storefront-grid.svg");
  background-position: center;
  background-size: cover;
}

.tjsr-hero::before {
  display: block;
  inset: 18px;
  width: auto;
  height: auto;
  border: 1px solid rgba(236, 240, 235, 0.23);
  border-radius: 0;
  background: none;
  pointer-events: none;
}

.tjsr-hero::after {
  display: block;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(255, 255, 255, 0.025) 25%);
  pointer-events: none;
}

.tjsr-hero-inner {
  grid-template-columns: minmax(0, 1.18fr) minmax(250px, 0.48fr);
  gap: 88px;
  align-items: center;
  min-height: clamp(620px, calc(100svh - 76px), 780px);
  padding: 84px 42px 88px;
}

.tjsr-hero-copy,
.tjsr-journey,
.tjsr-hero-vertical,
.tjsr-scroll {
  position: relative;
  z-index: 3;
}

.tjsr-scene {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Courier New", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.tjsr-scene span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d84538;
  box-shadow: 0 0 0 4px rgba(216, 69, 56, 0.12);
}

.tjsr-hero-label {
  margin-bottom: 24px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.tjsr-hero h1 {
  max-width: 820px;
  font-size: clamp(50px, 5.6vw, 78px);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.38);
}

.tjsr-hero h1 span + span {
  margin-top: 0.06em;
}

.tjsr-hero-lead {
  max-width: 660px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.8;
}

.tjsr-actions {
  gap: 26px;
  margin-top: 31px;
}

.tjsr-btn {
  min-height: 44px;
  padding: 0 17px;
  border-color: rgba(255, 255, 255, 0.75);
  background: #f1f1ed;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tjsr-btn--outline {
  padding-inline: 0;
  border-width: 0 0 1px;
  background: transparent;
}

.tjsr-journey {
  align-self: center;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.tjsr-journey li {
  grid-template-columns: 38px 1fr;
  padding: 17px 0;
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 520;
  letter-spacing: 0.06em;
}

.tjsr-journey li span {
  color: #d95a4d;
  font-family: "Courier New", monospace;
  font-size: 10px;
}

.tjsr-hero-vertical {
  position: absolute;
  right: 0;
  top: 118px;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1.4;
  writing-mode: vertical-rl;
}

.tjsr-hero-word {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: -0.27em;
  color: rgba(240, 241, 236, 0.075);
  font-family: Arial, sans-serif;
  font-size: clamp(138px, 21vw, 320px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.75;
  pointer-events: none;
  white-space: nowrap;
}

.tjsr-scroll {
  position: absolute;
  right: 43px;
  bottom: 48px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.55) !important;
  font-family: "Courier New", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-decoration: none !important;
  writing-mode: vertical-rl;
}

.tjsr-scroll::after {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.45);
  content: "";
}

.tjsr-definition {
  border-color: #aaa9a3;
  background: #dcd8cf;
}

.tjsr-definition h2 {
  color: #8d312b;
}

.tjsr-section--navy,
.tjsr-relationship-core,
.tjsr-cta,
.tjsr-page-hero {
  background: #111820;
}

.tjsr-fact strong {
  color: #202326;
  font-family: Georgia, "Yu Mincho", serif;
}

.tjsr-stage,
.tjsr-business,
.tjsr-network-card,
.tjsr-case,
.tjsr-profile-card,
.tjsr-book,
.tjsr-relationship-item,
.tjsr-inventory article {
  transition: background-color 0.18s ease, padding-left 0.18s ease;
}

.tjsr-stage:hover,
.tjsr-network-card:hover {
  padding-left: 12px;
  background: rgba(184, 59, 48, 0.045);
}

.tjsr-stage > span:first-child,
.tjsr-business-number,
.tjsr-network-card > span {
  font-family: "Courier New", monospace;
  letter-spacing: 0.08em;
}

.tjsr-cta {
  border-left-color: #c84236;
}

.tenpojs-menu-cta > a {
  border-radius: 1px !important;
  background: #111820 !important;
}

@keyframes tjsr-kage-reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tjsr-hero-copy > *,
.tjsr-journey {
  animation: tjsr-kage-reveal 0.65s both;
}

.tjsr-hero-copy > :nth-child(2) {
  animation-delay: 0.06s;
}

.tjsr-hero-copy > :nth-child(3) {
  animation-delay: 0.12s;
}

.tjsr-hero-copy > :nth-child(4) {
  animation-delay: 0.18s;
}

.tjsr-hero-copy > :nth-child(5),
.tjsr-journey {
  animation-delay: 0.24s;
}

@media (max-width: 1020px) {
  .tjsr-hero-inner {
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 48px;
    padding-inline: 34px;
  }

  .tjsr-hero-vertical {
    display: none;
  }
}

@media (max-width: 820px) {
  .tjsr-hero,
  .tjsr-hero-inner {
    min-height: 0;
  }

  .tjsr-hero {
    background-position: 60% center;
  }

  .tjsr-hero-inner {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 76px 26px 54px;
  }

  .tjsr-hero h1 {
    font-size: clamp(40px, 8.5vw, 58px);
  }

  .tjsr-journey {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tjsr-journey li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-top: 0;
  }

  .tjsr-journey li:last-child {
    border-right: 0;
  }

  .tjsr-scroll {
    display: none;
  }

  .tjsr-hero-word {
    left: 13px;
    bottom: -0.15em;
    font-size: 29vw;
  }
}

@media (max-width: 560px) {
  .tjsr-hero::before {
    inset: 10px;
  }

  .tjsr-hero-inner {
    padding: 62px 8px 46px;
  }

  .tjsr-scene {
    margin-bottom: 21px;
    font-size: 9px;
  }

  .tjsr-hero-label {
    max-width: 25em;
    font-size: 10px;
    line-height: 1.7;
  }

  .tjsr-hero h1 {
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: 1.12;
  }

  .tjsr-hero-lead {
    margin-top: 24px;
    font-size: 14px;
  }

  .tjsr-actions {
    display: flex;
    gap: 16px;
  }

  .tjsr-btn {
    width: auto;
    min-height: 42px;
    font-size: 12px;
  }

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

  .tjsr-journey li:nth-child(2) {
    border-right: 0;
  }

  .tjsr-journey li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .tjsr-hero-word {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tjsr-hero-copy > *,
  .tjsr-journey {
    animation: none;
  }
}

/* ThreeUI Structure Flow inspired motion layer */
.tjsr-motion-field {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.88;
  mix-blend-mode: screen;
  pointer-events: none;
}

.tjsr-hero::after {
  z-index: 0;
  background:
    linear-gradient(90deg, transparent 0, rgba(216, 69, 56, 0.04) 43%, rgba(216, 69, 56, 0.2) 50%, transparent 57%) -42vw 0 / 38vw 100% no-repeat,
    repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(255, 255, 255, 0.025) 25%);
  animation: tjsr-field-scan 12s linear infinite;
}

.tjsr-hero-word {
  animation: tjsr-word-drift 15s ease-in-out infinite alternate;
}

.tjsr-scroll::after {
  transform-origin: top;
  animation: tjsr-scroll-pulse 2.6s ease-in-out infinite;
}

.tjsr-motion-toggle {
  position: absolute;
  z-index: 5;
  right: 42px;
  top: 36px;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  color: rgba(255, 255, 255, 0.66);
  cursor: pointer;
  font: 700 9px/1.2 "Courier New", monospace;
  letter-spacing: 0.12em;
}

.tjsr-motion-toggle span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #da4e42;
  box-shadow: 0 0 0 4px rgba(218, 78, 66, 0.12);
}

.tjsr-motion-toggle[aria-pressed="true"] span {
  background: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.tjsr-motion-toggle:hover,
.tjsr-motion-toggle:focus-visible {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.72);
}

@keyframes tjsr-field-scan {
  from {
    background-position: -42vw 0, 0 0;
  }
  to {
    background-position: 112vw 0, 0 0;
  }
}

@keyframes tjsr-word-drift {
  from {
    transform: translate3d(-1.2%, 0, 0);
  }
  to {
    transform: translate3d(1.8%, -2px, 0);
  }
}

@keyframes tjsr-scroll-pulse {
  0%,
  100% {
    opacity: 0.32;
    transform: scaleY(0.45);
  }
  50% {
    opacity: 0.9;
    transform: scaleY(1);
  }
}

@media (max-width: 820px) {
  .tjsr-motion-field {
    opacity: 0.64;
  }

  .tjsr-motion-toggle {
    right: 30px;
    top: 25px;
  }
}

@media (max-width: 560px) {
  .tjsr-motion-field {
    opacity: 0.5;
  }

  .tjsr-motion-toggle {
    right: 22px;
    top: 19px;
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tjsr-hero::after,
  .tjsr-hero-word,
  .tjsr-scroll::after {
    animation: none;
  }
}
