:root {
  --tsg-color-forest: #093836;
  --tsg-color-forest-light: #12534e;
  --tsg-color-night: #0c1406;
  --tsg-color-leaf: #54b435;
  --tsg-color-leaf-dark: #2f7d32;
  --tsg-color-leaf-deep: #286f2c;
  --tsg-color-lime: #c6dd76;
  --tsg-color-ink: #202820;
  --tsg-color-body: #465049;
  --tsg-color-muted: #6e786f;
  --tsg-color-line: #dfe7df;
  --tsg-color-paper: #ffffff;
  --tsg-color-soft: #f4f7f2;
  --tsg-color-mist: #eaf2e8;
  --tsg-font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tsg-space-1: 0.25rem;
  --tsg-space-2: 0.5rem;
  --tsg-space-3: 0.75rem;
  --tsg-space-4: 1rem;
  --tsg-space-5: 1.25rem;
  --tsg-space-6: 1.5rem;
  --tsg-space-8: 2rem;
  --tsg-space-10: 2.5rem;
  --tsg-space-12: 3rem;
  --tsg-space-16: 4rem;
  --tsg-space-20: 5rem;
  --tsg-radius-sm: 0.625rem;
  --tsg-radius-md: 0.875rem;
  --tsg-radius-lg: 1.25rem;
  --tsg-radius-xl: 1.75rem;
  --tsg-shadow-header: 0 0.625rem 2rem rgba(6, 18, 11, 0.34);
  --tsg-shadow-card: 0 1.25rem 3.5rem rgba(9, 56, 54, 0.1);
  --tsg-container: 75rem;
  --tsg-header-height: 5.25rem;
  --tsg-header-height-compact: 3.875rem;
  --tsg-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--tsg-color-paper);
  color: var(--tsg-color-body);
  font-family: var(--tsg-font-sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.admin-bar .site-header {
  top: 2rem;
}

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

a {
  color: var(--tsg-color-leaf-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--tsg-color-leaf-deep);
}

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

button {
  color: inherit;
}

:focus-visible {
  outline: 0.1875rem solid var(--tsg-color-forest);
  outline-offset: 0.1875rem;
  box-shadow: 0 0 0 0.375rem var(--tsg-color-paper);
}

::selection {
  background: #edfbe2;
  color: var(--tsg-color-forest);
}

[hidden] {
  display: none !important;
}

.no-js .faq-item__panel[hidden] {
  display: block !important;
}

.site-container {
  width: min(100% - 2.5rem, var(--tsg-container));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: var(--tsg-space-3);
  left: var(--tsg-space-3);
  padding: var(--tsg-space-3) var(--tsg-space-4);
  border-radius: var(--tsg-radius-sm);
  background: var(--tsg-color-paper);
  color: var(--tsg-color-forest);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 160ms var(--tsg-ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 200;
  inset: 0 0 auto;
  border-bottom: 0.0625rem solid transparent;
  background: transparent;
  color: var(--tsg-color-forest);
  transition:
    background-color 300ms var(--tsg-ease),
    border-color 300ms var(--tsg-ease),
    box-shadow 300ms var(--tsg-ease),
    color 300ms var(--tsg-ease),
    backdrop-filter 300ms var(--tsg-ease);
}

.site-header.is-over-dark,
.site-header.is-past-hero {
  color: var(--tsg-color-paper);
}

.no-js .site-header {
  border-bottom-color: rgba(198, 221, 118, 0.2);
  background: linear-gradient(90deg, rgba(10, 59, 56, 0.97) 0%, rgba(9, 56, 54, 0.97) 55%, rgba(12, 20, 6, 0.97) 100%);
  box-shadow: var(--tsg-shadow-header);
  color: var(--tsg-color-paper);
}

.no-js .site-header__brand img {
  filter: brightness(0) invert(1);
}

.site-header.is-past-hero {
  border-bottom-color: rgba(198, 221, 118, 0.2);
  background: linear-gradient(90deg, rgba(10, 59, 56, 0.97) 0%, rgba(9, 56, 54, 0.97) 55%, rgba(12, 20, 6, 0.97) 100%);
  box-shadow: var(--tsg-shadow-header);
  -webkit-backdrop-filter: blur(1rem) saturate(1.25);
  backdrop-filter: blur(1rem) saturate(1.25);
}

.site-header__inner {
  min-width: 0;
  min-height: var(--tsg-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--tsg-space-4);
  transition: min-height 300ms var(--tsg-ease);
}

.site-header.is-past-hero .site-header__inner {
  min-height: var(--tsg-header-height-compact);
}

.site-header__brand {
  flex: 0 1 12.5rem;
  min-width: 7.5rem;
}

.site-header__brand img {
  width: auto;
  height: 3.25rem;
  transition: filter 300ms var(--tsg-ease), height 300ms var(--tsg-ease);
}

.site-header.is-over-dark .site-header__brand img,
.site-header.is-past-hero .site-header__brand img {
  filter: brightness(0) invert(1);
}

.site-header.is-past-hero .site-header__brand img {
  height: 2.625rem;
}

.site-menu {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.5rem, 1.4vw, 1.25rem);
}

.site-nav__list {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  display: inline-flex;
  padding: 0.5rem 0.55rem;
  border-radius: 0.5rem;
  color: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms var(--tsg-ease), background-color 180ms var(--tsg-ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(84, 180, 53, 0.1);
  color: var(--tsg-color-leaf-dark);
}

.site-header.is-over-dark .site-nav a,
.site-header.is-past-hero .site-nav a {
  color: var(--tsg-color-paper);
}

.site-header.is-over-dark .site-nav a:hover,
.site-header.is-over-dark .site-nav a:focus-visible,
.site-header.is-past-hero .site-nav a:hover,
.site-header.is-past-hero .site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--tsg-color-lime);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--tsg-space-2);
}

.site-button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: var(--tsg-space-2);
  padding: 0.625rem 1rem;
  border: 0.0625rem solid transparent;
  border-radius: var(--tsg-radius-sm);
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms var(--tsg-ease), border-color 180ms var(--tsg-ease), color 180ms var(--tsg-ease), transform 180ms var(--tsg-ease);
}

.site-button:hover {
  transform: translateY(-0.0625rem);
}

.site-button--large {
  min-height: 3.25rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.9rem;
}

.site-button--primary {
  background: var(--tsg-color-leaf-dark);
  color: var(--tsg-color-paper);
}

.site-button--primary:hover {
  background: var(--tsg-color-leaf-deep);
  color: var(--tsg-color-paper);
}

.site-button--outline {
  border-color: rgba(9, 56, 54, 0.28);
  color: inherit;
}

.site-button--ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--tsg-color-paper);
}

.site-button--ghost:hover {
  border-color: var(--tsg-color-lime);
  color: var(--tsg-color-lime);
}

.site-header.is-over-dark .site-button--outline,
.site-header.is-past-hero .site-button--outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--tsg-color-paper);
}

.site-button--outline:hover {
  border-color: var(--tsg-color-leaf);
  color: var(--tsg-color-leaf-dark);
}

.site-header.is-over-dark .site-button--outline:hover,
.site-header.is-past-hero .site-button--outline:hover {
  border-color: var(--tsg-color-lime);
  color: var(--tsg-color-lime);
}

.site-header__toggle {
  display: none;
  width: 2.875rem;
  height: 2.875rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0.0625rem solid currentColor;
  border-radius: var(--tsg-radius-sm);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.site-header__toggle:hover,
.site-header__toggle:focus,
.site-header__toggle:active {
  background: rgba(84, 180, 53, 0.1);
  color: inherit;
}

.site-header__toggle:focus-visible {
  outline: 0.1875rem solid var(--tsg-color-lime);
  outline-offset: 0.125rem;
  box-shadow: 0 0 0 0.25rem var(--tsg-color-forest);
}

.site-header.is-over-dark .site-header__toggle:hover,
.site-header.is-over-dark .site-header__toggle:focus,
.site-header.is-over-dark .site-header__toggle:active,
.site-header.is-past-hero .site-header__toggle:hover,
.site-header.is-past-hero .site-header__toggle:focus,
.site-header.is-past-hero .site-header__toggle:active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--tsg-color-paper);
}

.site-header__toggle-icon {
  width: 1.25rem;
  display: grid;
  gap: 0.25rem;
}

.site-header__toggle-icon span {
  display: block;
  height: 0.125rem;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms var(--tsg-ease), opacity 180ms var(--tsg-ease);
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-icon span:nth-child(1) {
  transform: translateY(0.375rem) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-icon span:nth-child(2) {
  opacity: 0;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-icon span:nth-child(3) {
  transform: translateY(-0.375rem) rotate(-45deg);
}

.site-main--front {
  min-width: 0;
}

.site-main--front section,
.site-main--front [id] {
  scroll-margin-top: calc(var(--tsg-header-height-compact) + 1.25rem);
}

.section {
  padding-block: clamp(5rem, 9vw, 7.5rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: var(--tsg-space-2);
  margin: 0 0 var(--tsg-space-3);
  color: var(--tsg-color-leaf-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--tsg-color-lime);
}

.eyebrow--light > span {
  width: 0.4375rem;
  height: 0.4375rem;
  flex: none;
  border-radius: 50%;
  background: var(--tsg-color-leaf);
  box-shadow: 0 0 0 0.25rem rgba(84, 180, 53, 0.12);
}

.section h2,
.platform-cta h2,
.contact h2 {
  margin: 0;
  color: var(--tsg-color-ink);
  font-size: clamp(2.15rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.12;
  text-wrap: balance;
}

.section-lead {
  max-width: 42rem;
  margin: var(--tsg-space-5) 0 0;
  color: var(--tsg-color-muted);
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  text-wrap: pretty;
}

.section-heading--center {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center .section-lead {
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: max(50rem, 100svh);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-block: calc(var(--tsg-header-height) + 4rem) 13rem;
  background: linear-gradient(160deg, #0a3b38 0%, var(--tsg-color-forest) 44%, var(--tsg-color-night) 100%);
  color: var(--tsg-color-paper);
  isolation: isolate;
}

.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4.5rem);
  opacity: 0.7;
}

.hero__glow--one {
  width: min(44rem, 72vw);
  aspect-ratio: 1;
  top: -22rem;
  left: -15rem;
  background: radial-gradient(circle, rgba(84, 180, 53, 0.52), transparent 68%);
}

.hero__glow--two {
  width: min(33rem, 60vw);
  aspect-ratio: 1;
  right: -13rem;
  bottom: -10rem;
  background: radial-gradient(circle, rgba(198, 221, 118, 0.25), transparent 68%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(19rem, 0.88fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.hero__content {
  min-width: 0;
}

.hero h1 {
  max-width: 12ch;
  margin: var(--tsg-space-6) 0 0;
  color: var(--tsg-color-paper);
  font-size: clamp(3.2rem, 6.2vw, 5.35rem);
  font-weight: 800;
  letter-spacing: -0.062em;
  line-height: 1.02;
  text-wrap: balance;
}

.hero h1::first-line {
  color: var(--tsg-color-paper);
}

.hero__lead {
  max-width: 40rem;
  margin: var(--tsg-space-6) 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tsg-space-3);
  margin-top: var(--tsg-space-8);
}

.hero__routes {
  max-width: 42rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--tsg-space-3);
  margin-top: var(--tsg-space-10);
}

.hero__routes > a {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: var(--tsg-space-3);
  padding: var(--tsg-space-4);
  border: 0.0625rem solid rgba(255, 255, 255, 0.13);
  border-radius: var(--tsg-radius-md);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: background-color 180ms var(--tsg-ease), border-color 180ms var(--tsg-ease), transform 180ms var(--tsg-ease);
}

.hero__routes > a:hover {
  border-color: rgba(198, 221, 118, 0.48);
  background: rgba(255, 255, 255, 0.08);
  color: var(--tsg-color-paper);
  transform: translateY(-0.125rem);
}

.hero__routes svg {
  flex: none;
  margin-top: 0.125rem;
  stroke: var(--tsg-color-lime);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__routes span {
  min-width: 0;
  display: grid;
  gap: 0.125rem;
  font-size: 0.72rem;
  line-height: 1.45;
}

.hero__routes strong {
  color: var(--tsg-color-paper);
  font-size: 0.82rem;
}

.hero__visual {
  position: relative;
}

.hero__visual::before,
.hero__visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  border: 0.0625rem solid rgba(198, 221, 118, 0.16);
}

.hero__visual::before {
  width: 32rem;
  height: 32rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__visual::after {
  width: 23rem;
  height: 23rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-map {
  max-width: 25rem;
  padding: 1.25rem;
  margin-inline: auto;
  border: 0.0625rem solid rgba(255, 255, 255, 0.16);
  border-radius: var(--tsg-radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
  box-shadow: 0 2.5rem 6rem rgba(0, 0, 0, 0.26);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
  transform: rotate(1.5deg);
}

.hero-map__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--tsg-space-3);
  align-items: center;
  padding-bottom: var(--tsg-space-4);
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-map__header > span:first-child {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--tsg-color-leaf);
  box-shadow: 0 0 0 0.3rem rgba(84, 180, 53, 0.14);
}

.hero-map__header i {
  width: 2rem;
  height: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-map ol {
  padding: 0;
  margin: var(--tsg-space-4) 0 0;
  list-style: none;
}

.hero-map li {
  position: relative;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: var(--tsg-space-3);
  align-items: center;
  padding: 0.8rem;
  border-radius: var(--tsg-radius-sm);
}

.hero-map li + li {
  margin-top: 0.2rem;
}

.hero-map li:nth-child(3) {
  background: rgba(84, 180, 53, 0.13);
}

.hero-map li > span {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border: 0.0625rem solid rgba(198, 221, 118, 0.32);
  border-radius: 0.7rem;
  color: var(--tsg-color-lime);
  font-size: 0.68rem;
  font-weight: 800;
}

.hero-map li div {
  display: grid;
}

.hero-map strong {
  color: var(--tsg-color-paper);
  font-size: 0.86rem;
}

.hero-map small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.68rem;
}

.hero__skyline {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 13rem;
  pointer-events: none;
}

.hero__skyline-back {
  fill: #16402a;
  opacity: 0.64;
}

.hero__skyline-front {
  fill: #06120b;
}

.work-areas {
  padding-block: 3.5rem 4rem;
  border-bottom: 0.0625rem solid var(--tsg-color-line);
  background: var(--tsg-color-paper);
}

.work-areas__intro {
  margin: 0 0 var(--tsg-space-6);
  color: var(--tsg-color-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.work-areas__list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--tsg-space-3);
  padding: 0;
  margin: 0;
  list-style: none;
}

.work-areas__list li {
  min-height: 3.6rem;
  display: grid;
  place-items: center;
  padding: var(--tsg-space-3);
  border: 0.0625rem solid var(--tsg-color-line);
  border-radius: 999px;
  color: var(--tsg-color-forest);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.about {
  background: var(--tsg-color-soft);
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(25rem, 1.04fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--tsg-space-5);
  margin-top: var(--tsg-space-10);
}

.about-values article {
  min-width: 0;
  padding-top: var(--tsg-space-4);
  border-top: 0.125rem solid var(--tsg-color-line);
}

.about-values article > span {
  color: var(--tsg-color-leaf-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.about-values h3 {
  margin: var(--tsg-space-2) 0 0;
  color: var(--tsg-color-ink);
  font-size: 1rem;
  line-height: 1.3;
}

.about-values p {
  margin: var(--tsg-space-2) 0 0;
  color: var(--tsg-color-muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.about-visual {
  position: relative;
  min-width: 0;
  min-height: 32rem;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 0.0625rem solid rgba(47, 125, 50, 0.22);
  border-radius: var(--tsg-radius-xl);
  background:
    linear-gradient(rgba(47, 125, 50, 0.08) 0.0625rem, transparent 0.0625rem),
    linear-gradient(90deg, rgba(47, 125, 50, 0.08) 0.0625rem, transparent 0.0625rem),
    linear-gradient(145deg, #eef5eb, #dcebd7);
  background-size: 2rem 2rem, 2rem 2rem, auto;
  box-shadow: var(--tsg-shadow-card);
}

.about-visual__halo {
  position: absolute;
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84, 180, 53, 0.32), transparent 68%);
  filter: blur(2rem);
}

.about-visual__shield {
  position: relative;
  z-index: 1;
  width: min(47%, 16.875rem);
  filter: drop-shadow(0 1.5rem 2rem rgba(9, 56, 54, 0.2));
}

.about-visual__shield-back {
  fill: var(--tsg-color-forest);
}

.about-visual__shield-front {
  fill: var(--tsg-color-paper);
  stroke: rgba(47, 125, 50, 0.35);
  stroke-width: 2;
}

.about-visual__check {
  stroke: var(--tsg-color-leaf-dark);
  stroke-width: 15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-visual__panel {
  position: absolute;
  z-index: 2;
  top: 2rem;
  left: 2rem;
  width: min(14rem, calc(100% - 4rem));
  padding: var(--tsg-space-5);
  border: 0.0625rem solid rgba(255, 255, 255, 0.7);
  border-radius: var(--tsg-radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--tsg-shadow-card);
  -webkit-backdrop-filter: blur(0.75rem);
  backdrop-filter: blur(0.75rem);
}

.about-visual__panel > span {
  color: var(--tsg-color-forest);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-visual__panel ol {
  display: grid;
  gap: var(--tsg-space-3);
  padding: 0;
  margin: var(--tsg-space-4) 0 0;
  list-style: none;
}

.about-visual__panel li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--tsg-space-3);
  align-items: center;
  color: var(--tsg-color-body);
  font-size: 0.75rem;
}

.about-visual__panel i {
  width: 0.55rem;
  height: 0.55rem;
  border: 0.125rem solid var(--tsg-color-leaf-dark);
  border-radius: 50%;
  box-shadow: 0 0 0 0.2rem rgba(47, 125, 50, 0.1);
}

.about-visual__note {
  position: absolute;
  z-index: 2;
  right: -1rem;
  bottom: 2rem;
  display: grid;
  gap: 0.125rem;
  padding: var(--tsg-space-4) var(--tsg-space-5);
  border: 0.0625rem solid var(--tsg-color-line);
  border-radius: var(--tsg-radius-md);
  background: var(--tsg-color-paper);
  box-shadow: var(--tsg-shadow-card);
}

.about-visual__note strong {
  color: var(--tsg-color-forest);
  font-size: 0.86rem;
}

.about-visual__note span {
  color: var(--tsg-color-muted);
  font-size: 0.7rem;
}

.services {
  background: var(--tsg-color-paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--tsg-space-5);
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.service-card {
  position: relative;
  min-width: 0;
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 0.0625rem solid var(--tsg-color-line);
  border-radius: var(--tsg-radius-lg);
  background: var(--tsg-color-paper);
  transition: border-color 180ms var(--tsg-ease), box-shadow 180ms var(--tsg-ease), transform 180ms var(--tsg-ease);
}

.service-card:hover {
  border-color: rgba(84, 180, 53, 0.5);
  box-shadow: var(--tsg-shadow-card);
  transform: translateY(-0.25rem);
}

.service-card__number {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 0.8rem;
  background: var(--tsg-color-mist);
  color: var(--tsg-color-leaf-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.service-card h3 {
  margin: var(--tsg-space-5) 0 0;
  color: var(--tsg-color-ink);
  font-size: 1.12rem;
  line-height: 1.35;
}

.service-card p {
  margin: var(--tsg-space-3) 0 var(--tsg-space-5);
  color: var(--tsg-color-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.service-card a {
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.service-catalog {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(28rem, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  padding: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(3rem, 6vw, 5rem);
  border-radius: var(--tsg-radius-xl);
  background: var(--tsg-color-soft);
}

.service-catalog h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.service-catalog__intro > p:last-child {
  margin: var(--tsg-space-4) 0 0;
  color: var(--tsg-color-muted);
  font-size: 0.9rem;
}

.service-catalog__details {
  display: grid;
  gap: var(--tsg-space-3);
}

.service-catalog details {
  border: 0.0625rem solid var(--tsg-color-line);
  border-radius: var(--tsg-radius-md);
  background: var(--tsg-color-paper);
}

.service-catalog summary {
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--tsg-space-4);
  padding: var(--tsg-space-4) var(--tsg-space-5);
  color: var(--tsg-color-ink);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.service-catalog summary::-webkit-details-marker {
  display: none;
}

.service-catalog summary span {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
}

.service-catalog summary span::before,
.service-catalog summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8rem;
  height: 0.125rem;
  border-radius: 999px;
  background: var(--tsg-color-leaf-dark);
  transform: translate(-50%, -50%);
}

.service-catalog summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms var(--tsg-ease);
}

.service-catalog details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.service-catalog details > ul,
.service-catalog details > p {
  padding: 0 var(--tsg-space-6) var(--tsg-space-5) 2.75rem;
  margin: 0;
  color: var(--tsg-color-muted);
  font-size: 0.84rem;
}

.service-catalog details li + li {
  margin-top: var(--tsg-space-2);
}

.platform-cta {
  position: relative;
  padding-block: clamp(4rem, 7vw, 6rem);
  overflow: hidden;
  background: linear-gradient(120deg, var(--tsg-color-forest), var(--tsg-color-night));
  color: rgba(255, 255, 255, 0.72);
}

.platform-cta::before {
  content: "";
  position: absolute;
  width: 30rem;
  height: 30rem;
  top: -18rem;
  right: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84, 180, 53, 0.45), transparent 70%);
  filter: blur(3rem);
}

.platform-cta__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--tsg-space-10);
}

.platform-cta__inner > div {
  max-width: 47rem;
}

.platform-cta h2 {
  color: var(--tsg-color-paper);
}

.platform-cta p:last-child {
  max-width: 43rem;
  margin: var(--tsg-space-4) 0 0;
}

.platform-cta .site-button {
  flex: none;
}

.faq {
  background: var(--tsg-color-paper);
}

.faq__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(30rem, 1.3fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: calc(var(--tsg-header-height-compact) + 2rem);
}

.text-link {
  display: inline-flex;
  gap: var(--tsg-space-2);
  margin-top: var(--tsg-space-6);
  color: var(--tsg-color-forest);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.faq__list {
  display: grid;
  gap: var(--tsg-space-3);
}

.faq-item {
  border: 0.0625rem solid var(--tsg-color-line);
  border-radius: var(--tsg-radius-md);
  background: var(--tsg-color-paper);
  transition: border-color 180ms var(--tsg-ease), box-shadow 180ms var(--tsg-ease);
}

.faq-item:has(button[aria-expanded="true"]) {
  border-color: rgba(84, 180, 53, 0.48);
  box-shadow: 0 0.75rem 2rem rgba(9, 56, 54, 0.07);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--tsg-space-4);
  padding: var(--tsg-space-5) var(--tsg-space-6);
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: var(--tsg-color-ink);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.faq-item button i {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
}

.faq-item button i::before,
.faq-item button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8rem;
  height: 0.125rem;
  border-radius: 999px;
  background: var(--tsg-color-leaf-dark);
  transform: translate(-50%, -50%);
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms var(--tsg-ease);
}

.faq-item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__panel p {
  padding: 0 var(--tsg-space-6) var(--tsg-space-6);
  margin: 0;
  color: var(--tsg-color-muted);
  font-size: 0.9rem;
}

.contact {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #0a3b38, var(--tsg-color-night));
  color: rgba(255, 255, 255, 0.7);
}

.contact::before {
  content: "";
  position: absolute;
  width: 42rem;
  height: 42rem;
  bottom: -27rem;
  left: -18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84, 180, 53, 0.42), transparent 68%);
  filter: blur(4rem);
}

.contact__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(30rem, 1.18fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.contact h2 {
  color: var(--tsg-color-paper);
}

.contact__content > p:not(.eyebrow) {
  max-width: 35rem;
  margin: var(--tsg-space-5) 0 0;
}

.contact__content ul {
  display: grid;
  gap: var(--tsg-space-4);
  padding: var(--tsg-space-8) 0 0;
  margin: var(--tsg-space-8) 0 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.contact__content li {
  display: grid;
  gap: 0.125rem;
}

.contact__content li span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact__content li strong,
.contact__content li a {
  color: var(--tsg-color-paper);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact__form {
  min-width: 0;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.14);
  border-radius: var(--tsg-radius-xl);
  background: var(--tsg-color-paper);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.24);
  color: var(--tsg-color-body);
}

.contact__form .wpforms-container,
.contact__form div.wpforms-container-full {
  margin: 0;
}

.contact__form .wpforms-field {
  padding-block: 0 1rem;
}

.contact__form .wpforms-field-label,
.contact__form div.wpforms-container-full .wpforms-form .wpforms-field-label {
  display: block;
  margin: 0 0 0.4rem;
  color: var(--tsg-color-ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact__form input[type="text"],
.contact__form input[type="email"],
.contact__form input[type="tel"],
.contact__form textarea,
.contact__form div.wpforms-container-full input[type="text"],
.contact__form div.wpforms-container-full input[type="email"],
.contact__form div.wpforms-container-full input[type="tel"],
.contact__form div.wpforms-container-full textarea {
  width: 100%;
  max-width: none;
  min-height: 3rem;
  padding: 0.72rem 0.85rem;
  border: 0.0625rem solid #7c8c7f;
  border-radius: var(--tsg-radius-sm);
  background: var(--tsg-color-soft);
  color: var(--tsg-color-ink);
  font-size: 0.9rem;
  transition: border-color 180ms var(--tsg-ease), box-shadow 180ms var(--tsg-ease), background-color 180ms var(--tsg-ease);
}

.contact__form textarea,
.contact__form div.wpforms-container-full textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact__form input:focus,
.contact__form textarea:focus,
.contact__form div.wpforms-container-full input:focus,
.contact__form div.wpforms-container-full textarea:focus {
  border-color: var(--tsg-color-leaf-dark);
  background: var(--tsg-color-paper);
  box-shadow: 0 0 0 0.2rem rgba(47, 125, 50, 0.16);
  outline: 0.125rem solid var(--tsg-color-leaf-dark);
  outline-offset: 0.125rem;
}

.contact__form .wpforms-submit-container {
  padding-top: var(--tsg-space-2);
}

.contact__form button[type="submit"],
.contact__form div.wpforms-container-full button[type="submit"] {
  min-height: 3.25rem;
  padding: 0.8rem 1.4rem;
  border: 0;
  border-radius: var(--tsg-radius-sm);
  background: var(--tsg-color-leaf-dark);
  color: var(--tsg-color-paper);
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms var(--tsg-ease), transform 180ms var(--tsg-ease);
}

.contact__form button[type="submit"]:hover,
.contact__form div.wpforms-container-full button[type="submit"]:hover {
  background: var(--tsg-color-leaf-deep);
  transform: translateY(-0.0625rem);
}

.contact__form .wpforms-error,
.contact__form label.wpforms-error {
  color: #a32f2f;
  font-size: 0.75rem;
}

.contact__fallback h3 {
  margin: 0;
  color: var(--tsg-color-ink);
  font-size: 1.25rem;
}

.contact__fallback p {
  margin: var(--tsg-space-3) 0 var(--tsg-space-5);
}

.site-main:not(.site-main--front) {
  min-height: 55vh;
  padding-block: calc(var(--tsg-header-height) + var(--tsg-space-12)) var(--tsg-space-16);
}

.site-entry,
.site-entry__content {
  min-width: 0;
}

.site-entry__content > :first-child {
  margin-top: 0;
}

.site-entry__content > :last-child {
  margin-bottom: 0;
}

.site-footer {
  position: relative;
  padding-block: var(--tsg-space-16) var(--tsg-space-6);
  background: var(--tsg-color-night);
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__accent {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.0625rem;
  background: linear-gradient(90deg, transparent, var(--tsg-color-leaf) 30%, var(--tsg-color-lime) 50%, var(--tsg-color-leaf) 70%, transparent);
  opacity: 0.65;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.64);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--tsg-color-lime);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(14rem, 1.6fr) repeat(3, minmax(9rem, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.site-footer__brand img {
  width: auto;
  height: 3rem;
  margin-bottom: var(--tsg-space-4);
  filter: brightness(0) invert(1);
}

.site-footer__brand p {
  max-width: 23rem;
  margin: 0;
  font-size: 0.82rem;
}

.site-footer__title {
  margin: 0 0 var(--tsg-space-4);
  color: var(--tsg-color-paper);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-footer__column ul {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__column li,
.site-footer__column a,
.site-footer__column address,
.site-footer__column address span {
  font-size: 0.8rem;
  font-style: normal;
}

.site-footer__contact address {
  display: grid;
  gap: 0.55rem;
}

.site-footer__contact a {
  overflow-wrap: anywhere;
}

.site-footer__legal {
  padding-top: var(--tsg-space-6);
  margin-top: var(--tsg-space-10);
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.site-error {
  max-width: 42rem;
  padding-block: var(--tsg-space-16);
}

.site-error__code {
  margin: 0;
  color: var(--tsg-color-leaf-dark);
  font-size: clamp(4rem, 16vw, 8rem);
  font-weight: 800;
  line-height: 0.9;
}

@media (max-width: 72rem) {
  .site-header__actions .site-button--outline {
    display: none;
  }

  .hero__inner {
    gap: 3rem;
  }

  .about-visual__note {
    right: 1rem;
  }
}

@media (max-width: 62rem) {
  .site-header__brand {
    flex-basis: 10rem;
  }

  .site-nav a {
    padding-inline: 0.42rem;
    font-size: 0.75rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.18fr) minmax(17rem, 0.82fr);
  }

  .hero-map {
    padding: 1rem;
  }

  .work-areas__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about__inner {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.9fr);
    gap: 3rem;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__inner {
    grid-template-columns: minmax(14rem, 1.5fr) repeat(3, minmax(7rem, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 56.25rem) {
  :root {
    --tsg-header-height: 4.5rem;
    --tsg-header-height-compact: 4.25rem;
  }

  body.admin-bar .site-header {
    top: 2.875rem;
  }

  .site-container {
    width: min(100% - 2rem, var(--tsg-container));
  }

  .site-header__brand img,
  .site-header.is-past-hero .site-header__brand img {
    height: 2.625rem;
  }

  .js .site-header__toggle {
    display: inline-flex;
  }

  .site-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    min-width: 0;
    max-height: calc(100vh - var(--tsg-header-height) - 2rem);
    overflow-y: auto;
    display: grid;
    gap: var(--tsg-space-4);
    padding: var(--tsg-space-4);
    border: 0.0625rem solid rgba(198, 221, 118, 0.22);
    border-radius: var(--tsg-radius-md);
    background: linear-gradient(150deg, rgba(9, 56, 54, 0.99), rgba(12, 20, 6, 0.99));
    box-shadow: var(--tsg-shadow-header);
    color: var(--tsg-color-paper);
  }

  .site-menu[hidden] {
    display: none;
  }

  .no-js .site-menu {
    position: static;
    display: block;
    padding: var(--tsg-space-3);
    background: var(--tsg-color-forest);
  }

  .site-nav__list,
  .site-header__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--tsg-space-2);
  }

  .site-nav a,
  .site-button {
    width: 100%;
    justify-content: flex-start;
    white-space: normal;
  }

  .site-header__actions .site-button--outline {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding-block: calc(var(--tsg-header-height) + 4rem) 11rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .hero__visual {
    width: min(100%, 27rem);
    margin-inline: auto;
  }

  .hero__skyline {
    height: 10rem;
  }

  .about__inner,
  .faq__inner,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 38rem;
    width: 100%;
    margin-inline: auto;
  }

  .service-catalog {
    grid-template-columns: 1fr;
  }

  .platform-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .platform-cta .site-button {
    width: auto;
  }

  .faq__intro {
    position: static;
  }

  .contact__content {
    max-width: 42rem;
  }

  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 40rem) {
  body.admin-bar .site-header {
    top: 2.875rem;
  }

  .section {
    padding-block: 4.5rem;
  }

  .hero {
    padding-top: calc(var(--tsg-header-height) + 3rem);
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .hero__actions,
  .hero__actions .site-button {
    width: 100%;
  }

  .hero__actions .site-button {
    justify-content: center;
  }

  .hero__routes {
    grid-template-columns: 1fr;
  }

  .hero__visual::before {
    width: 27rem;
    height: 27rem;
  }

  .hero__visual::after {
    width: 20rem;
    height: 20rem;
  }

  .work-areas__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 29rem;
  }

  .about-visual__panel {
    top: 1rem;
    left: 1rem;
  }

  .about-visual__note {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-catalog {
    padding: 1.5rem;
  }

  .service-catalog details > ul,
  .service-catalog details > p {
    padding-right: var(--tsg-space-5);
    padding-left: var(--tsg-space-10);
  }

  .faq-item button {
    padding-inline: var(--tsg-space-5);
  }

  .faq-item__panel p {
    padding-inline: var(--tsg-space-5);
  }

  .contact__form {
    padding: 1.25rem;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }
}

@media (max-width: 48.875rem) {
  body.admin-bar .site-header {
    top: 2.875rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

/* Block 8: reference header, hero and industries strip. */
@keyframes tsg-reference-aurora-a {
  0%,
  100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5.625rem, 3.75rem) scale(1.18); }
}

@keyframes tsg-reference-aurora-b {
  0%,
  100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-6.875rem, -4.375rem) scale(1.12); }
}

@keyframes tsg-reference-aurora-c {
  0%,
  100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5rem, -5.625rem) scale(1.22); }
}

@keyframes tsg-reference-spin {
  to { transform: rotate(360deg); }
}

@keyframes tsg-reference-float {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-2.375rem, 2.625rem) scale(0.94); }
}

@keyframes tsg-reference-blink {
  0%,
  100% { opacity: 0.15; }
  50% { opacity: 1; }
}

@keyframes tsg-reference-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-header--reference {
  border-bottom-color: transparent;
  background: transparent;
  color: var(--tsg-color-paper);
}

.site-header--reference.is-past-hero {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(12, 20, 6, 0.78);
  box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(0.875rem) saturate(1.4);
  backdrop-filter: blur(0.875rem) saturate(1.4);
}

.site-header--reference .site-header__inner {
  min-height: 5.25rem;
  gap: 0.875rem;
}

.site-header--reference.is-past-hero .site-header__inner {
  min-height: 3.875rem;
}

.site-header--reference .site-header__brand {
  flex: none;
  min-width: 0;
}

.site-header--reference .site-header__brand img {
  width: auto;
  height: 3.25rem;
  filter: brightness(0) invert(1);
}

.site-header--reference.is-past-hero .site-header__brand img {
  height: 2.625rem;
}

.site-header--reference .site-menu {
  flex: 1 1 auto;
  justify-content: space-between;
  gap: clamp(0.875rem, 2.2vw, 2.25rem);
  margin-left: clamp(6rem, 13vw, 10.625rem);
}

.site-header--reference .site-nav__list {
  gap: 0.25rem;
}

.site-header--reference .site-nav a,
.site-header--reference .site-nav__resources-toggle {
  width: auto;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.625rem;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.90625rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms var(--tsg-ease), background-color 180ms var(--tsg-ease);
}

.site-header--reference .site-nav__item--active > a {
  color: var(--tsg-color-lime);
  font-weight: 700;
}

.site-header--reference .site-nav a:hover,
.site-header--reference .site-nav a:focus-visible,
.site-header--reference .site-nav__resources-toggle:hover,
.site-header--reference .site-nav__resources-toggle:focus-visible {
  background: transparent;
  color: var(--tsg-color-lime);
}

.site-header--reference .site-nav__resources {
  position: relative;
}

.site-header--reference .site-nav__resources-toggle svg {
  flex: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms var(--tsg-ease);
}

.site-header--reference .site-nav__dropdown {
  position: absolute;
  z-index: 60;
  top: calc(100% + 0.625rem);
  left: -0.5rem;
  min-width: 13.125rem;
  display: grid;
  gap: 0;
  padding: 0.5rem;
  margin: 0;
  border: 0.0625rem solid #eaeaea;
  border-radius: 0.75rem;
  background: var(--tsg-color-paper);
  box-shadow: 0 1.125rem 2.75rem rgba(9, 56, 54, 0.1);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.625rem);
  visibility: hidden;
  transition: opacity 180ms var(--tsg-ease), transform 180ms var(--tsg-ease), visibility 180ms var(--tsg-ease);
}

.site-header--reference .site-nav__dropdown::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 0.75rem;
}

.site-header--reference .site-nav__dropdown a,
.site-header--reference .site-nav__dropdown-label {
  width: 100%;
  display: block;
  padding: 0.625rem 0.875rem;
  border-radius: 0.5rem;
  color: #373131;
  font-size: 0.90625rem;
  font-weight: 600;
  white-space: nowrap;
}

.site-header--reference.is-over-dark .site-nav__dropdown a,
.site-header--reference.is-past-hero .site-nav__dropdown a {
  color: #373131;
}

.site-header--reference .site-nav__dropdown-label {
  border: 0;
  background: transparent;
  cursor: default;
  text-align: left;
}

.site-header--reference .site-nav__dropdown a:hover,
.site-header--reference .site-nav__dropdown a:focus-visible {
  background: #fafafa;
  color: #379237;
}

.site-header--reference .site-nav__resources:hover .site-nav__dropdown,
.site-header--reference .site-nav__resources.is-open .site-nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.site-header--reference .site-nav__resources:hover .site-nav__resources-toggle svg,
.site-header--reference .site-nav__resources.is-open .site-nav__resources-toggle svg {
  transform: rotate(180deg);
}

.site-header--reference .site-header__actions {
  gap: 0.625rem;
}

.site-header--reference .site-header__actions .site-button {
  width: auto;
  min-height: 0;
  border-radius: 0.625rem;
  font-size: 0.84375rem;
  line-height: 1.2;
  white-space: nowrap;
}

.site-header--reference .site-header__actions .site-button--outline {
  display: inline-flex;
  gap: 0.4375rem;
  padding: 0.5625rem 0.875rem;
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--tsg-color-paper);
}

.site-header--reference .site-header__actions .site-button--outline svg {
  stroke: var(--tsg-color-leaf);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header--reference .site-header__actions .site-button--primary {
  padding: 0.625rem 1rem;
  background: var(--tsg-color-leaf);
}

.site-header--reference .site-header__actions .site-button--primary:hover {
  background: #379237;
}

.reference-hero {
  position: relative;
  min-height: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  background: linear-gradient(180deg, #0a3b38 0%, #093836 34%, #0c1406 100%);
  color: var(--tsg-color-paper);
  isolation: isolate;
}

.reference-hero__shapes {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.reference-hero__blob {
  position: absolute;
  border-radius: 50%;
}

.reference-hero__blob--a {
  width: 45rem;
  height: 45rem;
  top: -13.75rem;
  left: -12.5rem;
  background: radial-gradient(circle at 40% 40%, rgba(84, 180, 53, 0.55), rgba(84, 180, 53, 0.12) 55%, transparent 70%);
  filter: blur(4.375rem);
  animation: tsg-reference-aurora-a 18s ease-in-out infinite;
}

.reference-hero__blob--b {
  width: 40rem;
  height: 40rem;
  right: -11.25rem;
  bottom: -16.25rem;
  background: radial-gradient(circle at 55% 45%, rgba(198, 221, 118, 0.42), rgba(198, 221, 118, 0.1) 55%, transparent 72%);
  filter: blur(5rem);
  animation: tsg-reference-aurora-b 23s ease-in-out infinite;
}

.reference-hero__blob--c {
  width: 33.75rem;
  height: 33.75rem;
  bottom: -18.75rem;
  left: 28%;
  background: radial-gradient(circle at 45% 45%, rgba(52, 148, 118, 0.5), transparent 68%);
  filter: blur(5rem);
  animation: tsg-reference-aurora-c 27s ease-in-out infinite;
}

.reference-hero__conic {
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(198, 221, 118, 0.07) 55deg, transparent 120deg, rgba(84, 180, 53, 0.07) 235deg, transparent 300deg);
  animation: tsg-reference-spin 44s linear infinite;
}

.reference-hero__ring {
  position: absolute;
  border-radius: 50%;
}

.reference-hero__ring--outer {
  width: 11.875rem;
  height: 11.875rem;
  top: 18%;
  right: 11%;
  border: 0.09375rem dashed rgba(198, 221, 118, 0.28);
  animation: tsg-reference-spin 48s linear infinite;
}

.reference-hero__ring--inner {
  width: 7.5rem;
  height: 7.5rem;
  top: 25%;
  right: 13.4%;
  border: 0.09375rem solid rgba(84, 180, 53, 0.22);
}

.reference-hero__dot {
  position: absolute;
  width: 0.625rem;
  height: 0.625rem;
  top: 30%;
  left: 15%;
  border-radius: 50%;
  background: rgba(198, 221, 118, 0.4);
  animation: tsg-reference-float 12s ease-in-out infinite alternate;
}

.reference-hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 38%, transparent 52%, rgba(12, 20, 6, 0.5) 100%);
}

.reference-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 75rem;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(6rem, 14vh, 7.875rem) 1.5rem clamp(7.875rem, 19vh, 10.625rem);
  margin: 0 auto;
  box-sizing: border-box;
}

.reference-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4375rem 1rem;
  margin: 0;
  border: 0.0625rem solid rgba(198, 221, 118, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--tsg-color-lime);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.65;
}

.reference-hero__eyebrow span {
  width: 0.4375rem;
  height: 0.4375rem;
  flex: none;
  border-radius: 50%;
  background: var(--tsg-color-leaf);
}

.reference-hero h1 {
  max-width: none;
  margin: 1.875rem 0 0;
  color: var(--tsg-color-paper);
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.125rem;
  line-height: 1.08;
  text-wrap: balance;
}

.reference-hero h1 span {
  color: var(--tsg-color-lime);
}

.reference-hero__lead {
  max-width: 33.75rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.0625rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.reference-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2.375rem;
}

.reference-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border: 0.0625rem solid transparent;
  border-radius: 0.75rem;
  color: var(--tsg-color-paper);
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.65;
  text-decoration: none;
  transition: background-color 180ms var(--tsg-ease), border-color 180ms var(--tsg-ease), color 180ms var(--tsg-ease);
}

.reference-hero__button--primary {
  background: var(--tsg-color-leaf);
}

.reference-hero__button--primary:hover,
.reference-hero__button--primary:focus-visible {
  background: #379237;
  color: var(--tsg-color-paper);
}

.reference-hero__button--secondary {
  padding-inline: 1.625rem;
  border-color: rgba(255, 255, 255, 0.28);
}

.reference-hero__button--secondary:hover,
.reference-hero__button--secondary:focus-visible {
  border-color: var(--tsg-color-lime);
  color: var(--tsg-color-lime);
}

.reference-hero__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3rem;
}

.reference-hero__stats span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84375rem;
  line-height: 1.65;
}

.reference-hero__stats strong {
  color: var(--tsg-color-paper);
  font-weight: 800;
}

.reference-hero__stats i {
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background: rgba(84, 180, 53, 0.7);
}

.reference-hero__skyline {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.reference-hero__skyline-glow {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 20rem;
  background: linear-gradient(180deg, rgba(84, 180, 53, 0), rgba(84, 180, 53, 0.13));
}

.reference-hero__skyline svg {
  width: 100%;
  height: 15rem;
}

.reference-hero__skyline-back {
  fill: #16402a;
  opacity: 0.55;
}

.reference-hero__skyline-front {
  fill: #06120b;
}

.reference-hero__light {
  fill: var(--tsg-color-lime);
  animation: tsg-reference-blink 2.8s infinite;
}

.reference-hero__light--two { animation-duration: 3.4s; animation-delay: 0.6s; }
.reference-hero__light--three { fill: var(--tsg-color-leaf); animation-duration: 3s; animation-delay: 1.2s; }
.reference-hero__light--four { animation-duration: 2.6s; animation-delay: 1.8s; }
.reference-hero__light--five { fill: var(--tsg-color-leaf); animation-duration: 3.2s; animation-delay: 0.3s; }
.reference-hero__light--six { animation-duration: 3.6s; animation-delay: 1.5s; }

.reference-industries {
  padding: 3.5rem 0 4rem;
  overflow: hidden;
  background: var(--tsg-color-paper);
}

.reference-industries > p {
  margin: 0 0 1.625rem;
  color: #7a7a7a;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.65;
  text-align: center;
}

.reference-industries__viewport {
  position: relative;
  overflow: hidden;
}

.reference-industries__fade {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 8.75rem;
  pointer-events: none;
}

.reference-industries__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--tsg-color-paper), rgba(255, 255, 255, 0));
}

.reference-industries__fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--tsg-color-paper), rgba(255, 255, 255, 0));
}

.reference-industries__track {
  width: max-content;
  display: flex;
  white-space: nowrap;
  animation: tsg-reference-marquee 32s linear infinite;
}

.reference-industries__group {
  flex: none;
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding: 0 3.5rem 0 0;
  margin: 0;
  list-style: none;
}

.reference-industries__group li:nth-child(odd) {
  color: #7a7a7a;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0.1875rem;
  line-height: 1.65;
  opacity: 0.55;
}

.reference-industries__group li:nth-child(even) {
  width: 0.375rem;
  height: 0.375rem;
  flex: none;
  border-radius: 50%;
  background: var(--tsg-color-lime);
}

@media (max-width: 72rem) {
  .site-header--reference .site-menu {
    gap: 0.75rem;
    margin-left: 2rem;
  }

  .site-header--reference .site-nav a,
  .site-header--reference .site-nav__resources-toggle {
    padding-inline: 0.45rem;
    font-size: 0.8125rem;
  }
}

@media (min-width: 56.3125rem) and (max-height: 42rem) {
  .reference-hero__content {
    padding: 4.25rem 1.5rem 6rem;
  }

  .reference-hero h1 {
    margin-top: 1.25rem;
    font-size: 3.5rem;
    line-height: 1.05;
  }

  .reference-hero__lead {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  .reference-hero__actions {
    margin-top: 1.625rem;
  }

  .reference-hero__button {
    padding-block: 0.6875rem;
  }

  .reference-hero__stats {
    margin-top: 1.75rem;
  }

  .reference-hero__skyline svg {
    height: 13.125rem;
  }
}

@media (max-width: 56.25rem) {
  .site-header--reference .site-header__inner,
  .site-header--reference.is-past-hero .site-header__inner {
    min-height: 4.5rem;
  }

  .site-header--reference .site-header__brand img,
  .site-header--reference.is-past-hero .site-header__brand img {
    height: 2.625rem;
  }

  .site-header--reference .site-menu {
    gap: 1rem;
    margin-left: 0;
  }

  .site-header--reference .site-nav__list {
    display: grid;
    gap: 0.5rem;
  }

  .site-header--reference .site-nav a,
  .site-header--reference .site-nav__resources-toggle,
  .site-header--reference .site-header__actions .site-button {
    width: 100%;
    justify-content: flex-start;
    padding: 0.75rem;
    font-size: 0.875rem;
    white-space: normal;
  }

  .site-header--reference .site-nav__dropdown {
    position: static;
    min-width: 0;
    display: none;
    padding: 0.375rem;
    margin-top: 0.25rem;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .site-header--reference .site-nav__resources:hover .site-nav__dropdown,
  .site-header--reference .site-nav__resources.is-open .site-nav__dropdown {
    display: grid;
  }

  .reference-hero {
    height: auto;
    min-height: 100svh;
  }

  .reference-hero__content {
    height: auto;
    min-height: 100svh;
    justify-content: flex-start;
    padding: 9.375rem 1.375rem 15.625rem;
  }

  .reference-hero h1 {
    font-size: clamp(2.625rem, 12vw, 3.625rem);
    letter-spacing: -0.09375rem;
  }

  .reference-hero__ring--outer { right: -3rem; }
  .reference-hero__ring--inner { right: 0; }

  .reference-industries__fade {
    width: 4rem;
  }
}

@media (max-width: 32.5rem) {
  .reference-hero__content {
    padding-top: 8.875rem;
  }

  .reference-hero h1 br {
    display: none;
  }

  .reference-hero__actions,
  .reference-hero__button {
    width: 100%;
  }

  .reference-hero__stats {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .reference-hero__stats i {
    display: none;
  }

  .reference-industries {
    padding-block: 2.75rem 3.25rem;
  }

  .reference-industries > p {
    padding-inline: 1.25rem;
  }
}
