:root {
  --ts-yellow: #ebb13a;
  --ts-yellow-bright: #f6c54b;
  --ts-yellow-deep: #c98b11;
  --ts-black: #101012;
  --ts-black-soft: #18181b;
  --ts-ink: #171719;
  --ts-paper: #f5f1e8;
  --ts-white: #fffdf8;
  --ts-muted: #6f6d67;
  --ts-line: #d9d2c4;
  --ts-dark-line: #343438;
  --ts-success: #19724d;
  --ts-error: #b42318;
  --ts-shadow: 0 24px 80px rgba(16, 16, 18, 0.14);
  --ts-radius: 18px;
  --ts-shell: 1200px;
  --ts-header-height: 76px;
}

body.ts-growth * {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--ts-header-height) + 24px);
}

body.ts-growth {
  margin: 0;
  background: var(--ts-paper);
  color: var(--ts-ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.ts-growth.nav-open {
  overflow: hidden;
}

body.ts-growth img,
body.ts-growth svg {
  display: block;
  max-width: 100%;
}

body.ts-growth a {
  color: inherit;
}

body.ts-growth button,
body.ts-growth input,
body.ts-growth select,
body.ts-growth textarea {
  font: inherit;
}

body.ts-growth button {
  color: inherit;
}

body.ts-growth h1,
body.ts-growth h2,
body.ts-growth h3,
body.ts-growth p,
body.ts-growth ul,
body.ts-growth ol {
  margin-top: 0;
}

body.ts-growth h1,
body.ts-growth h2,
body.ts-growth h3,
body.ts-growth .display {
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

body.ts-growth h1 {
  max-width: 930px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
}

body.ts-growth h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
}

body.ts-growth h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.035em;
}

body.ts-growth p:last-child {
  margin-bottom: 0;
}

body.ts-growth .shell {
  width: min(var(--ts-shell), calc(100% - 2.5rem));
  margin-inline: auto;
}

body.ts-growth .shell-narrow {
  width: min(860px, calc(100% - 2.5rem));
  margin-inline: auto;
}

body.ts-growth .skip-link {
  position: fixed;
  top: 0.8rem;
  left: -9999px;
  z-index: 1000;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  background: var(--ts-yellow);
  color: var(--ts-black);
  font-weight: 800;
}

body.ts-growth .skip-link:focus {
  left: 0.8rem;
}

body.ts-growth a:focus-visible,
body.ts-growth button:focus-visible,
body.ts-growth summary:focus-visible,
body.ts-growth input:focus-visible,
body.ts-growth select:focus-visible,
body.ts-growth textarea:focus-visible {
  outline: 3px solid var(--ts-yellow);
  outline-offset: 4px;
}

body.ts-growth .announcement {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--ts-yellow);
  color: var(--ts-black);
  font-size: 0.76rem;
  font-weight: 800;
  text-align: center;
}

body.ts-growth .announcement .shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 36px;
}

body.ts-growth .announcement span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ts-black);
  box-shadow: 0 0 0 4px rgba(16, 16, 18, 0.12);
}

body.ts-growth .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--ts-header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(16, 16, 18, 0.96);
  color: var(--ts-white);
  backdrop-filter: blur(18px);
}

body.ts-growth .nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

body.ts-growth .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--ts-white);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}

body.ts-growth .brand img {
  width: 42px;
  height: 42px;
}

body.ts-growth .brand strong {
  color: var(--ts-yellow);
}

body.ts-growth .nav-links {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

body.ts-growth .nav-links > a:not(.button) {
  color: #d8d5ce;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

body.ts-growth .nav-links > a:not(.button):hover {
  color: var(--ts-yellow);
}

body.ts-growth .nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--ts-dark-line);
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
}

body.ts-growth .nav-toggle span,
body.ts-growth .nav-toggle span::before,
body.ts-growth .nav-toggle span::after {
  width: 19px;
  height: 2px;
  display: block;
  background: var(--ts-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.ts-growth .nav-toggle span {
  position: relative;
}

body.ts-growth .nav-toggle span::before,
body.ts-growth .nav-toggle span::after {
  position: absolute;
  left: 0;
  content: "";
}

body.ts-growth .nav-toggle span::before {
  top: -6px;
}

body.ts-growth .nav-toggle span::after {
  top: 6px;
}

body.ts-growth .nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

body.ts-growth .nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

body.ts-growth .nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

body.ts-growth .button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid var(--ts-yellow);
  border-radius: 10px;
  padding: 0.8rem 1.25rem;
  background: var(--ts-yellow);
  color: var(--ts-black);
  font-size: 0.86rem;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(235, 177, 58, 0.18);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

body.ts-growth .button:hover {
  border-color: var(--ts-yellow-bright);
  background: var(--ts-yellow-bright);
  transform: translateY(-2px);
}

body.ts-growth .button-small {
  min-height: 42px;
  padding: 0.58rem 0.92rem;
  font-size: 0.78rem;
}

body.ts-growth .button-dark {
  border-color: var(--ts-black);
  background: var(--ts-black);
  color: var(--ts-white);
  box-shadow: none;
}

body.ts-growth .button-dark:hover {
  border-color: #29292d;
  background: #29292d;
}

body.ts-growth .button-outline {
  border-color: #5b5b60;
  background: transparent;
  color: var(--ts-white);
  box-shadow: none;
}

body.ts-growth .button-outline:hover {
  border-color: var(--ts-yellow);
  background: rgba(235, 177, 58, 0.08);
  color: var(--ts-yellow);
}

body.ts-growth .button-paper {
  border-color: var(--ts-line);
  background: var(--ts-white);
  color: var(--ts-black);
  box-shadow: none;
}

body.ts-growth .button-paper:hover {
  border-color: var(--ts-black);
  background: var(--ts-white);
}

body.ts-growth .text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ts-ink);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

body.ts-growth .text-link:hover {
  color: var(--ts-yellow-deep);
}

body.ts-growth .eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--ts-yellow-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.ts-growth .eyebrow::before {
  width: 24px;
  height: 3px;
  display: inline-block;
  background: currentColor;
  content: "";
}

body.ts-growth .eyebrow-light {
  color: var(--ts-yellow);
}

body.ts-growth .hero {
  position: relative;
  overflow: hidden;
  background: var(--ts-black);
  color: var(--ts-white);
}

body.ts-growth .hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  content: "";
  pointer-events: none;
}

body.ts-growth .hero::after {
  position: absolute;
  top: -220px;
  right: -220px;
  width: 620px;
  height: 620px;
  border: 120px solid rgba(235, 177, 58, 0.06);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

body.ts-growth .hero-grid {
  position: relative;
  z-index: 1;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

body.ts-growth .hero h1 {
  color: var(--ts-white);
}

body.ts-growth .hero h1 em {
  color: var(--ts-yellow);
  font-style: normal;
}

body.ts-growth .hero-copy {
  max-width: 760px;
  color: #c8c5bd;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

body.ts-growth .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

body.ts-growth .hero-microcopy {
  margin-top: 1.25rem;
  color: #929089;
  font-size: 0.73rem;
}

body.ts-growth .system-board {
  position: relative;
  border: 1px solid #424247;
  border-radius: 24px;
  padding: 1.05rem;
  background: #141416;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.4);
  transform: rotate(1deg);
}

body.ts-growth .system-board::before {
  position: absolute;
  inset: 11px -11px -11px 11px;
  z-index: -1;
  border: 1px solid rgba(235, 177, 58, 0.55);
  border-radius: 24px;
  content: "";
}

body.ts-growth .board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--ts-dark-line);
  padding: 0.45rem 0.4rem 1rem;
}

body.ts-growth .board-top span {
  color: var(--ts-yellow);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.ts-growth .board-top small {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #aaa7a0;
  font-size: 0.65rem;
  font-weight: 750;
}

body.ts-growth .board-top small::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #64d894;
  box-shadow: 0 0 0 4px rgba(100, 216, 148, 0.1);
  content: "";
}

body.ts-growth .board-inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
  padding: 1rem 0;
}

body.ts-growth .board-inputs span {
  border: 1px solid #343438;
  border-radius: 9px;
  padding: 0.7rem;
  background: #1d1d20;
  color: #c8c5bd;
  font-size: 0.68rem;
  font-weight: 750;
  text-align: center;
}

body.ts-growth .board-arrow {
  display: grid;
  place-items: center;
  margin: 0.15rem 0 0.6rem;
  color: var(--ts-yellow);
  font-size: 1.4rem;
}

body.ts-growth .board-output {
  border-radius: 14px;
  padding: 1.1rem;
  background: var(--ts-yellow);
  color: var(--ts-black);
}

body.ts-growth .board-output small {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.ts-growth .board-output strong {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

body.ts-growth .board-output ul {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

body.ts-growth .board-output li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(16, 16, 18, 0.2);
  padding-top: 0.35rem;
  font-size: 0.65rem;
  font-weight: 800;
}

body.ts-growth .proof-bar {
  border-block: 1px solid var(--ts-black);
  background: var(--ts-yellow);
  color: var(--ts-black);
}

body.ts-growth .proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

body.ts-growth .proof-grid span {
  min-height: 72px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(16, 16, 18, 0.28);
  padding: 0.85rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
}

body.ts-growth .proof-grid span:last-child {
  border-right: 0;
}

body.ts-growth .section {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

body.ts-growth .section-white {
  background: var(--ts-white);
}

body.ts-growth .section-dark {
  position: relative;
  overflow: hidden;
  background: var(--ts-black);
  color: var(--ts-white);
}

body.ts-growth .section-yellow {
  background: var(--ts-yellow);
  color: var(--ts-black);
}

body.ts-growth .section-heading {
  max-width: 820px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

body.ts-growth .section-heading p:not(.eyebrow) {
  max-width: 690px;
  color: var(--ts-muted);
  font-size: 1.05rem;
}

body.ts-growth .section-dark .section-heading h2,
body.ts-growth .section-dark h2,
body.ts-growth .section-dark h3 {
  color: var(--ts-white);
}

body.ts-growth .section-dark .section-heading p:not(.eyebrow) {
  color: #aaa7a0;
}

body.ts-growth .split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.58fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

body.ts-growth .split-heading p {
  color: var(--ts-muted);
}

body.ts-growth .problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--ts-line);
  border-radius: var(--ts-radius);
  background: var(--ts-white);
  box-shadow: var(--ts-shadow);
}

body.ts-growth .problem-card {
  min-height: 300px;
  border-right: 1px solid var(--ts-line);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

body.ts-growth .problem-card:last-child {
  border-right: 0;
}

body.ts-growth .problem-card > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 3rem;
  border-radius: 12px;
  background: var(--ts-black);
  color: var(--ts-yellow);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
}

body.ts-growth .problem-card p {
  color: var(--ts-muted);
  font-size: 0.9rem;
}

body.ts-growth .component-list {
  border-top: 1px solid var(--ts-dark-line);
}

body.ts-growth .component {
  display: grid;
  grid-template-columns: 100px minmax(250px, 0.65fr) minmax(300px, 1fr) 130px;
  align-items: start;
  gap: 1.5rem;
  border-bottom: 1px solid var(--ts-dark-line);
  padding: 2rem 0;
}

body.ts-growth .component-number {
  color: var(--ts-yellow);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

body.ts-growth .component h3 {
  margin: 0;
  color: var(--ts-white);
  font-size: clamp(1.45rem, 2.8vw, 2.25rem);
}

body.ts-growth .component-copy p {
  max-width: 650px;
  margin: 0;
  color: #aaa7a0;
  font-size: 0.92rem;
}

body.ts-growth .component-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

body.ts-growth .component-copy li {
  border: 1px solid #3b3b40;
  border-radius: 999px;
  padding: 0.35rem 0.58rem;
  color: #d0cdc5;
  font-size: 0.66rem;
  font-weight: 750;
}

body.ts-growth .plan-tag {
  justify-self: end;
  border-radius: 999px;
  padding: 0.4rem 0.65rem;
  background: rgba(235, 177, 58, 0.12);
  color: var(--ts-yellow);
  font-size: 0.66rem;
  font-weight: 850;
  text-align: center;
}

body.ts-growth .loop-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

body.ts-growth .loop-copy p {
  max-width: 560px;
}

body.ts-growth .loop-copy .small-note {
  margin-top: 1.4rem;
  color: rgba(16, 16, 18, 0.68);
  font-size: 0.76rem;
  font-weight: 700;
}

body.ts-growth .loop-diagram {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

body.ts-growth .loop-step {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(16, 16, 18, 0.35);
  border-radius: 14px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.2);
}

body.ts-growth .loop-step span {
  color: rgba(16, 16, 18, 0.55);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
}

body.ts-growth .loop-step strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.15rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

body.ts-growth .loop-step:last-child {
  background: var(--ts-black);
  color: var(--ts-white);
}

body.ts-growth .comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border: 1px solid var(--ts-line);
  border-radius: var(--ts-radius);
  background: var(--ts-white);
}

body.ts-growth .comparison-column {
  padding: clamp(1.6rem, 4vw, 3rem);
}

body.ts-growth .comparison-column:first-child {
  border-right: 1px solid var(--ts-line);
  color: var(--ts-muted);
}

body.ts-growth .comparison-column:last-child {
  background: var(--ts-black);
  color: var(--ts-white);
}

body.ts-growth .comparison-column h3 {
  margin-bottom: 2rem;
  color: inherit;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

body.ts-growth .comparison-column ul {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.ts-growth .comparison-column li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.7rem;
  border-top: 1px solid currentColor;
  padding-top: 0.75rem;
  font-size: 0.87rem;
  opacity: 0.84;
}

body.ts-growth .comparison-column:last-child li {
  border-color: #343438;
}

body.ts-growth .comparison-column li span {
  color: var(--ts-yellow);
  font-weight: 900;
}

body.ts-growth .plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

body.ts-growth .plan-card {
  position: relative;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ts-line);
  border-radius: 22px;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  background: var(--ts-white);
}

body.ts-growth .plan-card-featured {
  border: 2px solid var(--ts-yellow);
  background: var(--ts-black);
  color: var(--ts-white);
  box-shadow: var(--ts-shadow);
}

body.ts-growth .plan-ribbon {
  position: absolute;
  top: 0;
  right: 1.6rem;
  transform: translateY(-50%);
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  background: var(--ts-yellow);
  color: var(--ts-black);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.ts-growth .plan-name {
  margin-bottom: 0.35rem;
  color: var(--ts-yellow-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body.ts-growth .plan-card-featured .plan-name {
  color: var(--ts-yellow);
}

body.ts-growth .plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

body.ts-growth .plan-price strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(3.3rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.075em;
}

body.ts-growth .plan-price span {
  color: var(--ts-muted);
  font-size: 0.75rem;
  font-weight: 700;
}

body.ts-growth .plan-card-featured .plan-price span,
body.ts-growth .plan-card-featured .plan-intro,
body.ts-growth .plan-card-featured .plan-footnote {
  color: #aaa7a0;
}

body.ts-growth .plan-intro {
  min-height: 78px;
  color: var(--ts-muted);
  font-size: 0.9rem;
}

body.ts-growth .plan-divider {
  height: 1px;
  margin: 1.4rem 0;
  background: var(--ts-line);
}

body.ts-growth .plan-card-featured .plan-divider {
  background: var(--ts-dark-line);
}

body.ts-growth .plan-list {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

body.ts-growth .plan-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.65rem;
  font-size: 0.84rem;
}

body.ts-growth .plan-list li::before {
  color: var(--ts-yellow-deep);
  font-weight: 900;
  content: "✓";
}

body.ts-growth .plan-card-featured .plan-list li::before {
  color: var(--ts-yellow);
}

body.ts-growth .annual-box {
  margin-top: auto;
  border-radius: 12px;
  padding: 1rem;
  background: #ede7db;
}

body.ts-growth .plan-card-featured .annual-box {
  background: #232326;
}

body.ts-growth .annual-box strong,
body.ts-growth .annual-box span {
  display: block;
}

body.ts-growth .annual-box strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1rem;
}

body.ts-growth .annual-box span {
  margin-top: 0.2rem;
  color: var(--ts-muted);
  font-size: 0.68rem;
}

body.ts-growth .plan-card-featured .annual-box span {
  color: #aaa7a0;
}

body.ts-growth .plan-card .button {
  width: 100%;
  margin-top: 1rem;
}

body.ts-growth .plan-footnote {
  margin: 0.7rem 0 0;
  color: var(--ts-muted);
  font-size: 0.66rem;
  text-align: center;
}

body.ts-growth .terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

body.ts-growth .term-card {
  border-top: 4px solid var(--ts-black);
  padding: 1.4rem 0 0;
}

body.ts-growth .term-card-featured {
  border-color: var(--ts-yellow-deep);
}

body.ts-growth .term-card > span {
  display: block;
  margin-bottom: 1.6rem;
  color: var(--ts-muted);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

body.ts-growth .term-card p {
  color: var(--ts-muted);
  font-size: 0.86rem;
}

body.ts-growth .process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

body.ts-growth .process-step {
  position: relative;
  min-height: 285px;
  border: 1px solid var(--ts-dark-line);
  border-radius: 15px;
  padding: 1.35rem;
  background: var(--ts-black-soft);
}

body.ts-growth .process-step > span {
  display: block;
  margin-bottom: 4rem;
  color: var(--ts-yellow);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 850;
}

body.ts-growth .process-step p {
  color: #aaa7a0;
  font-size: 0.82rem;
}

body.ts-growth .promise-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  border-radius: 24px;
  padding: clamp(2rem, 6vw, 5rem);
  background: var(--ts-yellow);
  color: var(--ts-black);
}

body.ts-growth .promise-mark {
  position: relative;
  width: min(250px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid var(--ts-black);
  border-radius: 50%;
  font-family: "Space Grotesk", Inter, sans-serif;
  text-align: center;
}

body.ts-growth .promise-mark::before,
body.ts-growth .promise-mark::after {
  position: absolute;
  border: 1px solid rgba(16, 16, 18, 0.35);
  border-radius: 50%;
  content: "";
}

body.ts-growth .promise-mark::before {
  inset: 12px;
}

body.ts-growth .promise-mark::after {
  inset: 24px;
}

body.ts-growth .promise-mark strong {
  position: relative;
  z-index: 1;
  font-size: 2.6rem;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

body.ts-growth .promise-mark span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.ts-growth .promise-copy h2 {
  color: var(--ts-black);
}

body.ts-growth .promise-copy p {
  max-width: 680px;
}

body.ts-growth .promise-copy small {
  display: block;
  margin-top: 1rem;
  color: rgba(16, 16, 18, 0.62);
  font-size: 0.7rem;
}

body.ts-growth .faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(420px, 1fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 7rem);
}

body.ts-growth .faq-intro {
  position: sticky;
  top: calc(var(--ts-header-height) + 2rem);
}

body.ts-growth .faq-list {
  border-top: 1px solid var(--ts-line);
}

body.ts-growth .faq-list details {
  border-bottom: 1px solid var(--ts-line);
}

body.ts-growth .faq-list summary {
  position: relative;
  padding: 1.35rem 2.5rem 1.35rem 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

body.ts-growth .faq-list summary::-webkit-details-marker {
  display: none;
}

body.ts-growth .faq-list summary::after {
  position: absolute;
  top: 1.2rem;
  right: 0;
  color: var(--ts-yellow-deep);
  font-size: 1.45rem;
  font-weight: 500;
  content: "+";
}

body.ts-growth .faq-list details[open] summary::after {
  content: "−";
}

body.ts-growth .faq-list details p {
  max-width: 680px;
  margin: -0.25rem 0 1.4rem;
  color: var(--ts-muted);
  font-size: 0.88rem;
}

body.ts-growth .cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  border: 1px solid var(--ts-dark-line);
  border-radius: 24px;
  padding: clamp(2rem, 6vw, 5rem);
  background: var(--ts-black);
  color: var(--ts-white);
}

body.ts-growth .cta-panel h2 {
  max-width: 780px;
  color: var(--ts-white);
}

body.ts-growth .cta-panel p:not(.eyebrow) {
  max-width: 720px;
  color: #aaa7a0;
}

body.ts-growth .cta-actions {
  display: grid;
  gap: 0.8rem;
  min-width: 230px;
}

body.ts-growth .cta-actions small {
  color: #8f8c85;
  font-size: 0.66rem;
  text-align: center;
}

body.ts-growth .inner-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--ts-black);
  color: var(--ts-white);
}

body.ts-growth .inner-hero::after {
  position: absolute;
  top: -10rem;
  right: -8rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(235, 177, 58, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(235, 177, 58, 0.04),
    0 0 0 8rem rgba(235, 177, 58, 0.025);
  content: "";
}

body.ts-growth .inner-hero .shell,
body.ts-growth .inner-hero .shell-narrow {
  position: relative;
  z-index: 1;
}

body.ts-growth .inner-hero h1 {
  color: var(--ts-white);
  font-size: clamp(2.25rem, 4.5vw, 4rem);
}

body.ts-growth .inner-hero .hero-copy {
  max-width: 800px;
}

body.ts-growth .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
  color: #9d9a93;
  font-size: 0.72rem;
  font-weight: 750;
}

body.ts-growth .breadcrumb a {
  text-decoration: none;
}

body.ts-growth .breadcrumb a:hover {
  color: var(--ts-yellow);
}

body.ts-growth .detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

body.ts-growth .detail-card {
  min-height: 310px;
  border: 1px solid var(--ts-line);
  border-radius: var(--ts-radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--ts-white);
}

body.ts-growth .detail-card > span {
  display: block;
  margin-bottom: 4rem;
  color: var(--ts-yellow-deep);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.8rem;
  font-weight: 850;
}

body.ts-growth .detail-card p {
  color: var(--ts-muted);
  font-size: 0.9rem;
}

body.ts-growth .detail-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--ts-muted);
  font-size: 0.8rem;
}

body.ts-growth .inclusion-table {
  overflow: hidden;
  border: 1px solid var(--ts-line);
  border-radius: var(--ts-radius);
  background: var(--ts-white);
}

body.ts-growth .inclusion-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(2, minmax(130px, 0.55fr));
  border-bottom: 1px solid var(--ts-line);
}

body.ts-growth .inclusion-row:last-child {
  border-bottom: 0;
}

body.ts-growth .inclusion-row > * {
  display: flex;
  align-items: center;
  border-right: 1px solid var(--ts-line);
  padding: 0.9rem 1rem;
  font-size: 0.8rem;
}

body.ts-growth .inclusion-row > *:last-child {
  border-right: 0;
}

body.ts-growth .inclusion-row-head {
  background: var(--ts-black);
  color: var(--ts-white);
  font-weight: 800;
}

body.ts-growth .inclusion-row strong {
  font-family: "Space Grotesk", Inter, sans-serif;
}

body.ts-growth .tick {
  color: var(--ts-success);
  font-weight: 900;
}

body.ts-growth .dash {
  color: #a4a099;
}

body.ts-growth .delivery-timeline {
  display: grid;
  grid-template-columns: 100px 1fr;
}

body.ts-growth .delivery-day {
  border-right: 1px solid var(--ts-line);
  padding: 1.2rem 1.5rem 2.5rem 0;
  color: var(--ts-yellow-deep);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.76rem;
  font-weight: 850;
  text-align: right;
}

body.ts-growth .delivery-content {
  position: relative;
  padding: 1rem 0 2.5rem 2.5rem;
}

body.ts-growth .delivery-content::before {
  position: absolute;
  top: 1.4rem;
  left: -6px;
  width: 11px;
  height: 11px;
  border: 3px solid var(--ts-paper);
  border-radius: 50%;
  background: var(--ts-yellow-deep);
  content: "";
}

body.ts-growth .delivery-content p {
  max-width: 650px;
  color: var(--ts-muted);
  font-size: 0.88rem;
}

body.ts-growth .source-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

body.ts-growth .source-list li {
  border: 1px solid var(--ts-line);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  background: var(--ts-white);
  font-size: 0.76rem;
  font-weight: 750;
}

body.ts-growth .form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(460px, 1fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}

body.ts-growth .form-aside {
  position: sticky;
  top: calc(var(--ts-header-height) + 2rem);
}

body.ts-growth .form-aside h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}

body.ts-growth .form-aside p {
  color: var(--ts-muted);
}

body.ts-growth .fit-points {
  display: grid;
  gap: 0.7rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

body.ts-growth .fit-points li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.65rem;
  font-size: 0.82rem;
  font-weight: 750;
}

body.ts-growth .fit-points li::before {
  color: var(--ts-yellow-deep);
  content: "↳";
}

body.ts-growth .contact-card {
  border: 1px solid var(--ts-line);
  border-radius: 22px;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  background: var(--ts-white);
  box-shadow: var(--ts-shadow);
}

body.ts-growth .contact-card h2 {
  font-size: clamp(1.85rem, 4vw, 2.7rem);
}

body.ts-growth .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

body.ts-growth .field {
  display: grid;
  gap: 0.4rem;
}

body.ts-growth .field-full {
  grid-column: 1 / -1;
}

body.ts-growth .field label {
  font-size: 0.72rem;
  font-weight: 850;
}

body.ts-growth .field small {
  color: var(--ts-muted);
  font-size: 0.64rem;
}

body.ts-growth .field input,
body.ts-growth .field select,
body.ts-growth .field textarea {
  width: 100%;
  border: 1px solid #c9c2b5;
  border-radius: 9px;
  padding: 0.78rem 0.85rem;
  background: #fffcf6;
  color: var(--ts-ink);
}

body.ts-growth .field textarea {
  min-height: 125px;
  resize: vertical;
}

body.ts-growth .field input::placeholder,
body.ts-growth .field textarea::placeholder {
  color: #969188;
}

body.ts-growth .form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

body.ts-growth .form-actions .button {
  border: 0;
  cursor: pointer;
}

body.ts-growth .form-actions .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

body.ts-growth .form-note {
  color: var(--ts-muted);
  font-size: 0.66rem;
}

body.ts-growth .form-status {
  display: none;
  margin-top: 1rem;
  border-radius: 9px;
  padding: 0.85rem 1rem;
  font-size: 0.76rem;
  font-weight: 750;
}

body.ts-growth .form-status.is-visible {
  display: block;
}

body.ts-growth .form-status.is-success {
  background: #e7f5ed;
  color: var(--ts-success);
}

body.ts-growth .form-status.is-error {
  background: #fff0ee;
  color: var(--ts-error);
}

body.ts-growth .alternative-contact {
  margin-top: 1.5rem;
  border-top: 1px solid var(--ts-line);
  padding-top: 1.25rem;
  color: var(--ts-muted);
  font-size: 0.75rem;
}

body.ts-growth .alternative-contact a {
  color: var(--ts-ink);
  font-weight: 800;
}

body.ts-growth .site-footer {
  border-top: 1px solid var(--ts-dark-line);
  padding: 4rem 0 2rem;
  background: #0b0b0c;
  color: var(--ts-white);
}

body.ts-growth .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 3rem;
}

body.ts-growth .footer-brand p {
  max-width: 390px;
  margin-top: 1.1rem;
  color: #8f8c85;
  font-size: 0.78rem;
}

body.ts-growth .footer-column strong {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--ts-yellow);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.ts-growth .footer-column nav {
  display: grid;
  gap: 0.55rem;
}

body.ts-growth .footer-column a {
  color: #b2afa7;
  font-size: 0.75rem;
  text-decoration: none;
}

body.ts-growth .footer-column a:hover {
  color: var(--ts-white);
}

body.ts-growth .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  border-top: 1px solid var(--ts-dark-line);
  padding-top: 1.5rem;
  color: #77746e;
  font-size: 0.65rem;
}

body.ts-growth .footer-bottom a {
  color: #a6a39c;
}

body.ts-growth .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

body.ts-growth .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  body.ts-growth .hero-grid,
body.ts-growth .loop-panel,
body.ts-growth .promise-panel,
body.ts-growth .form-layout {
    grid-template-columns: 1fr;
  }

  body.ts-growth .hero-grid {
    min-height: 0;
  }

  body.ts-growth .system-board {
    max-width: 620px;
  }

  body.ts-growth .component {
    grid-template-columns: 70px minmax(220px, 0.7fr) 1fr;
  }

  body.ts-growth .plan-tag {
    grid-column: 2 / -1;
    justify-self: start;
  }

  body.ts-growth .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.ts-growth .promise-mark {
    width: 220px;
  }

  body.ts-growth .form-aside {
    position: static;
  }

  body.ts-growth .footer-grid {
    grid-template-columns: 1fr 0.6fr 0.6fr;
  }
}

@media (max-width: 820px) {
  :root {
    --ts-header-height: 68px;
  }

  body.ts-growth .nav-toggle {
    display: grid;
  }

  body.ts-growth .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 49;
    max-height: calc(100dvh - var(--ts-header-height) - 48px);
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.2rem;
    background: var(--ts-black);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.ts-growth .nav-links.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  body.ts-growth .nav-links > a:not(.button) {
    border-bottom: 1px solid var(--ts-dark-line);
    padding: 1rem 0;
    font-size: 1rem;
  }

  body.ts-growth .nav-links .button {
    margin-top: 1.2rem;
  }

  body.ts-growth .split-heading,
body.ts-growth .faq-layout,
body.ts-growth .cta-panel {
    grid-template-columns: 1fr;
  }

  body.ts-growth .problem-grid,
body.ts-growth .terms-grid {
    grid-template-columns: 1fr;
  }

  body.ts-growth .problem-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--ts-line);
  }

  body.ts-growth .problem-card:last-child {
    border-bottom: 0;
  }

  body.ts-growth .problem-card > span,
body.ts-growth .detail-card > span {
    margin-bottom: 2rem;
  }

  body.ts-growth .component {
    grid-template-columns: 55px 1fr;
  }

  body.ts-growth .component-copy {
    grid-column: 2;
  }

  body.ts-growth .plan-tag {
    grid-column: 2;
  }

  body.ts-growth .plan-grid,
body.ts-growth .detail-grid {
    grid-template-columns: 1fr;
  }

  body.ts-growth .comparison {
    grid-template-columns: 1fr;
  }

  body.ts-growth .comparison-column:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--ts-line);
  }

  body.ts-growth .faq-intro {
    position: static;
  }

  body.ts-growth .inclusion-table {
    overflow-x: auto;
  }

  body.ts-growth .inclusion-row {
    min-width: 640px;
  }

  body.ts-growth .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.ts-growth .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  body.ts-growth .shell,
body.ts-growth .shell-narrow {
    width: min(100% - 1.3rem, var(--ts-shell));
  }

  body.ts-growth h1 {
    font-size: clamp(2.125rem, 8.5vw, 2.625rem);
  }

  body.ts-growth h2 {
    font-size: clamp(2.15rem, 11vw, 3.3rem);
  }

  body.ts-growth .announcement {
    font-size: 0.65rem;
  }

  body.ts-growth .announcement .shell {
    min-height: 40px;
  }

  body.ts-growth .brand {
    font-size: 1rem;
  }

  body.ts-growth .brand img {
    width: 38px;
    height: 38px;
  }

  body.ts-growth .hero-grid {
    padding: 4rem 0 5rem;
  }

  body.ts-growth .hero-actions,
body.ts-growth .hero-actions .button,
body.ts-growth .hero-actions .button-paper,
body.ts-growth .hero-actions .button-outline {
    width: 100%;
  }

  body.ts-growth .system-board {
    transform: none;
  }

  body.ts-growth .board-inputs,
body.ts-growth .loop-diagram,
body.ts-growth .process-grid,
body.ts-growth .source-list,
body.ts-growth .form-grid {
    grid-template-columns: 1fr;
  }

  body.ts-growth .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.ts-growth .proof-grid span:nth-child(2) {
    border-right: 0;
  }

  body.ts-growth .proof-grid span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(16, 16, 18, 0.28);
  }

  body.ts-growth .component {
    grid-template-columns: 42px 1fr;
    gap: 0.9rem;
  }

  body.ts-growth .process-step {
    min-height: 235px;
  }

  body.ts-growth .process-step > span {
    margin-bottom: 2.5rem;
  }

  body.ts-growth .promise-panel,
body.ts-growth .cta-panel,
body.ts-growth .contact-card {
    border-radius: 16px;
  }

  body.ts-growth .promise-mark {
    width: 180px;
  }

  body.ts-growth .delivery-timeline {
    grid-template-columns: 72px 1fr;
  }

  body.ts-growth .delivery-day {
    padding-right: 1rem;
  }

  body.ts-growth .delivery-content {
    padding-left: 1.5rem;
  }

  body.ts-growth .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  body.ts-growth .form-actions .button {
    width: 100%;
  }

  body.ts-growth .footer-grid {
    grid-template-columns: 1fr;
  }

  body.ts-growth .footer-brand {
    grid-column: auto;
  }

  body.ts-growth .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  body.ts-growth *,
body.ts-growth *::before,
body.ts-growth *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  body.ts-growth .reveal {
    opacity: 1;
    transform: none;
  }
}


body.ts-growth .system-board {
  transform: none;
}

body.ts-growth .system-board::before {
  display: none;
}

body.ts-growth .hero-offer {
  overflow: hidden;
  padding: 0;
}

body.ts-growth .offer-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--ts-dark-line);
  padding: 1.3rem 1.4rem;
}

body.ts-growth .offer-card-top span {
  color: var(--ts-yellow);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.ts-growth .offer-card-top small {
  color: #aaa7a0;
  font-size: 0.68rem;
  font-weight: 700;
}

body.ts-growth .offer-card-list {
  padding: 0 1.4rem;
}

body.ts-growth .offer-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--ts-dark-line);
  padding: 1.15rem 0;
}

body.ts-growth .offer-row strong {
  color: var(--ts-white);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.84rem;
}

body.ts-growth .offer-row span {
  color: #aaa7a0;
  font-size: 0.78rem;
  line-height: 1.55;
}

body.ts-growth .offer-card-note {
  margin: 0;
  padding: 1.25rem 1.4rem 1.4rem;
  background: var(--ts-yellow);
  color: var(--ts-black);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.55;
}

body.ts-growth .plain-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

body.ts-growth .plain-story-copy {
  display: grid;
  gap: 1.2rem;
}

body.ts-growth .plain-story-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--ts-muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.7;
}

body.ts-growth .plain-point {
  display: block;
  margin-top: 0.5rem;
  border-left: 4px solid var(--ts-yellow-deep);
  padding: 1rem 0 1rem 1.25rem;
  color: var(--ts-ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.4;
}

body.ts-growth .included-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.65fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

body.ts-growth .included-list {
  border-top: 1px solid var(--ts-dark-line);
}

body.ts-growth .included-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(280px, 1fr);
  gap: 2rem;
  border-bottom: 1px solid var(--ts-dark-line);
  padding: 1.75rem 0;
}

body.ts-growth .included-row h3 {
  margin: 0;
  color: var(--ts-white);
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
}

body.ts-growth .included-row p {
  margin: 0;
  color: #aaa7a0;
  font-size: 0.9rem;
  line-height: 1.65;
}

body.ts-growth .growth-card {
  border-radius: 18px;
  padding: clamp(1.6rem, 3.5vw, 2.3rem);
  background: var(--ts-yellow);
  color: var(--ts-black);
}

body.ts-growth .growth-card .eyebrow {
  color: rgba(16, 16, 18, 0.64);
}

body.ts-growth .growth-card .eyebrow::before {
  background: var(--ts-black);
}

body.ts-growth .growth-card h3 {
  margin-bottom: 1rem;
  color: var(--ts-black);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
}

body.ts-growth .growth-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}

body.ts-growth .growth-card ul {
  display: grid;
  gap: 0;
  margin: 1.4rem 0;
  padding: 0;
  list-style: none;
}

body.ts-growth .growth-card li {
  border-top: 1px solid rgba(16, 16, 18, 0.24);
  padding: 0.75rem 0;
  font-size: 0.8rem;
  font-weight: 750;
}

body.ts-growth .growth-card small {
  color: rgba(16, 16, 18, 0.64);
  font-size: 0.68rem;
  font-weight: 750;
}

body.ts-growth .handoff-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(380px, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

body.ts-growth .handoff-copy {
  display: grid;
  gap: 1rem;
}

body.ts-growth .handoff-copy p {
  max-width: 720px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

body.ts-growth .handoff-copy .small-note {
  color: rgba(16, 16, 18, 0.66);
  font-size: 0.74rem;
  font-weight: 700;
}

body.ts-growth .handoff-copy .text-link {
  justify-self: start;
  color: var(--ts-black);
}

@media (max-width: 1040px) {
  body.ts-growth .plain-story,
  body.ts-growth .included-layout,
  body.ts-growth .handoff-panel {
    grid-template-columns: 1fr;
  }

  body.ts-growth .growth-card {
    max-width: 680px;
  }
}

@media (max-width: 700px) {
  body.ts-growth .offer-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  body.ts-growth .offer-row,
  body.ts-growth .included-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  body.ts-growth .hero-offer {
    border-radius: 16px;
  }
}
