/*
 * Integral color treatment for The Retired Consultant.
 * Loaded by default through integral-preview.js.
 */

@property --trc-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

html.trc-integral-preview {
  --trc-blue: #29b0e5;
  --trc-green: #8fc23e;
}

/* The independent export paints all server-rendered content immediately. */
body.trc-integral-preview [style*="will-change:transform"][style*="opacity:0"] {
  opacity: 1 !important;
  transform: none !important;
}

body.trc-integral-preview .trc-faq-question {
  cursor: pointer;
}

body.trc-integral-preview .trc-faq-question:focus-visible {
  outline: 2px solid var(--trc-blue);
  outline-offset: 4px;
  border-radius: 12px;
}

body.trc-integral-preview .trc-faq-answer {
  width: 100%;
  margin-top: 18px;
}

body.trc-integral-preview .trc-faq-answer[hidden] {
  display: none !important;
}

body.trc-integral-preview .trc-faq-answer p,
body.trc-integral-preview .trc-form-status {
  margin: 0;
  color: #ccc;
  font-family: Inter, "Inter Placeholder", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.trc-integral-preview .trc-form-status:not(:empty) {
  margin-top: 14px;
  color: #f1ca5d;
}

body.trc-integral-preview::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background:
    radial-gradient(circle at 13% 22%, rgba(41, 176, 229, 0.055), transparent 24%),
    radial-gradient(circle at 86% 68%, rgba(143, 194, 62, 0.045), transparent 25%);
  mix-blend-mode: screen;
}

/* Remove the collapsed TRC Layout template-purchase widget in the lower-right corner. */
body.trc-integral-preview .trc-layout-5ork5i-container {
  display: none !important;
}

/* Keep the original icon, but turn the placeholder lockup into the brand preview. */
body.trc-integral-preview a[data-trc-layout-name="Logo--Navigation"] .trc-layout-1fgmi0r {
  overflow: hidden;
  border-radius: 7px !important;
  background: linear-gradient(145deg, var(--trc-blue), var(--trc-green)) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 18px rgba(41, 176, 229, 0.22),
    0 0 25px rgba(143, 194, 62, 0.09);
}

body.trc-integral-preview a[data-trc-layout-name="Logo--Navigation"] .trc-layout-1fgmi0r img {
  transform: scale(0.72);
  filter: brightness(0) invert(1);
}

body.trc-integral-preview a[data-trc-layout-name="Logo--Navigation"] .trc-layout-glstp0 p {
  font-size: 0 !important;
  white-space: nowrap;
}

body.trc-integral-preview a[data-trc-layout-name="Logo--Navigation"] .trc-layout-glstp0 p::after {
  content: "The Retired Consultant";
  display: inline-block;
  font-family: Inter, "Inter Placeholder", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.025em;
  color: transparent;
  background: linear-gradient(96deg, #e8eaf0 0 15%, var(--trc-blue) 52%, var(--trc-green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/*
 * First-paint logo.
 * The exported TRC Layout HTML still contains the template lockup until the
 * existing decorator attaches the final logo nodes. Use the supplied TRC
 * asset for that short SSR-only state so hydration is visually seamless.
 */
body.trc-integral-preview
  a[data-trc-layout-name="Logo--Navigation"]:not(.trc-final-logo-link) {
  width: 204px !important;
  min-width: 204px !important;
  height: 72px !important;
  position: relative;
  overflow: hidden;
}

body.trc-integral-preview
  a[data-trc-layout-name="Logo--Navigation"]:not(.trc-final-logo-link)
  > .trc-layout-1fgmi0r,
body.trc-integral-preview
  a[data-trc-layout-name="Logo--Navigation"]:not(.trc-final-logo-link)
  > .trc-layout-glstp0 {
  display: none !important;
}

body.trc-integral-preview
  a[data-trc-layout-name="Logo--Navigation"]:not(.trc-final-logo-link)::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background: url("/assets/trc/TRC-Logo-v3.svg") left center / contain no-repeat;
}

/* Final supplied TRC logo replaces the temporary preview lockup. */
body.trc-integral-preview a.trc-final-logo-link {
  --trc-logo-width: 204px;
  --trc-logo-height: 72px;
  --trc-mark-size: 54px;
  width: 204px !important;
  min-width: 204px !important;
  height: 72px !important;
  gap: 0 !important;
}

body.trc-integral-preview a.trc-final-logo-link > .trc-layout-1fgmi0r,
body.trc-integral-preview a.trc-final-logo-link > .trc-layout-glstp0 {
  display: none !important;
}

body.trc-integral-preview .trc-final-logo {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: var(--trc-logo-width);
  min-width: var(--trc-logo-width);
  height: var(--trc-logo-height);
  object-fit: contain;
  object-position: left center;
  opacity: 1;
  transform: translateY(-50%) translateX(0) scaleX(1);
  transform-origin: left center;
  transition:
    opacity 180ms ease 120ms,
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.trc-integral-preview .trc-logo-icon {
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: var(--trc-mark-size);
  height: var(--trc-mark-size);
  object-fit: contain;
  opacity: 0;
  transform: translateY(-50%) scale(0.76) rotate(-3deg);
  transform-origin: center;
  transition:
    opacity 160ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.trc-integral-preview .trc-site-header {
  z-index: 10000 !important;
  background: transparent !important;
  border-bottom: 1px solid transparent;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  box-shadow: none;
  isolation: isolate;
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, backdrop-filter 260ms ease;
}

body.trc-integral-preview.trc-page-scrolled .trc-site-header {
  background: transparent !important;
  border-bottom-color: rgba(74, 188, 183, 0.18);
  -webkit-backdrop-filter: blur(18px) saturate(120%) !important;
  backdrop-filter: blur(18px) saturate(120%) !important;
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.34);
}

body.trc-integral-preview a.trc-final-logo-link {
  position: relative;
  overflow: hidden;
  transition:
    width 380ms cubic-bezier(0.22, 1, 0.36, 1),
    min-width 380ms cubic-bezier(0.22, 1, 0.36, 1),
    height 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.trc-integral-preview.trc-page-scrolled a.trc-final-logo-link {
  width: 54px !important;
  min-width: 54px !important;
  height: 54px !important;
}

body.trc-integral-preview.trc-page-scrolled .trc-final-logo {
  opacity: 0;
  transform: translateY(-50%) translateX(-14px) scaleX(0.82);
  transition-delay: 0ms;
}

body.trc-integral-preview.trc-page-scrolled .trc-logo-icon {
  opacity: 1;
  transform: translateY(-50%) scale(1) rotate(0);
  transition-delay: 120ms;
}

/* A faint green/blue pass through the existing monochrome hero gradient. */
body.trc-integral-preview .trc-accent-headline {
  background-image: linear-gradient(
    112deg,
    #e4e5f2 0%,
    #e4e5f2 36%,
    var(--trc-blue) 57%,
    #d8e8e2 73%,
    var(--trc-green) 100%
  ) !important;
  background-size: 220% 100% !important;
  animation: trc-headline-flow 7s ease-in-out infinite alternate;
}

body.trc-integral-preview #section-contact-us .trc-contact-photo {
  opacity: 0.9;
  object-position: center 42% !important;
}

body.trc-integral-preview #section-pain .trc-pain-photo {
  object-position: 42% center !important;
}

/* Homepage copy refresh: honest proof, pain-led help, and no public pricing. */
body.trc-integral-preview [data-trc-layout-name="Section Pricing"],
body.trc-integral-preview .trc-pricing-removed {
  display: none !important;
}

body.trc-integral-preview .trc-hero-proof [data-trc-layout-name="Profile"] {
  display: none !important;
}

body.trc-integral-preview [data-trc-layout-name="Hero Section"] h1 {
  color: rgba(255, 255, 255, 0.96) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.96) !important;
}

body.trc-integral-preview [data-trc-layout-name="Hero Section"] .trc-hero-secondary-label {
  color: rgba(255, 255, 255, 0.94) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.94) !important;
}

body.trc-integral-preview [data-trc-layout-name="Hero Section"] .trc-hero-primary-label {
  color: #161616 !important;
  -webkit-text-fill-color: #161616 !important;
}

body.trc-integral-preview [data-trc-layout-name="Hero Section"] .trc-accent-dot,
body.trc-integral-preview [data-trc-layout-name="Hero Section"] .trc-accent-dot:focus,
body.trc-integral-preview [data-trc-layout-name="Hero Section"] .trc-accent-dot:focus-visible {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

body.trc-integral-preview [data-trc-layout-name="Hero Section"] .trc-hero-primary [data-trc-layout-name="Arrow"],
body.trc-integral-preview [data-trc-layout-name="Hero Section"] .trc-hero-primary [data-trc-layout-name="Arrow"]:focus,
body.trc-integral-preview [data-trc-layout-name="Hero Section"] .trc-hero-primary [data-trc-layout-name="Arrow"]:focus-visible {
  outline: 0 !important;
  box-shadow: none !important;
}

body.trc-integral-preview #hero-video [data-trc-layout-name="Play-Desktop"],
body.trc-integral-preview #hero-video [data-trc-layout-name="Play-Phone"] {
  display: none !important;
}

body.trc-integral-preview #hero-video video {
  pointer-events: none !important;
}

body.trc-integral-preview .trc-client-proof-source {
  display: none !important;
}

body.trc-integral-preview .trc-client-marquee {
  position: relative;
  isolation: isolate;
  width: min(calc(100% - 32px), 1180px) !important;
  margin: 22px auto 0 !important;
  padding: 15px 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% -35%, rgba(255, 255, 255, 0.14), transparent 54%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    inset 0 -1px 0 rgba(255, 255, 255, 0.025),
    0 18px 56px rgba(0, 0, 0, 0.32);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  backdrop-filter: blur(16px) saturate(125%);
}

body.trc-integral-preview .trc-client-marquee::before,
body.trc-integral-preview .trc-client-marquee::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  width: clamp(48px, 8vw, 112px);
  pointer-events: none;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

body.trc-integral-preview .trc-client-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(2, 2, 2, 0.96), rgba(2, 2, 2, 0.54) 48%, transparent);
  -webkit-mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.8) 45%, transparent);
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.8) 45%, transparent);
}

body.trc-integral-preview .trc-client-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(2, 2, 2, 0.96), rgba(2, 2, 2, 0.54) 48%, transparent);
  -webkit-mask-image: linear-gradient(270deg, #000, rgba(0, 0, 0, 0.8) 45%, transparent);
  mask-image: linear-gradient(270deg, #000, rgba(0, 0, 0, 0.8) 45%, transparent);
}

body.trc-integral-preview .trc-client-marquee-row {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

body.trc-integral-preview .trc-client-marquee-row + .trc-client-marquee-row {
  margin-top: 10px;
}

body.trc-integral-preview .trc-client-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: trc-client-marquee-flow 32s linear infinite;
}

body.trc-integral-preview .trc-client-marquee-row-reverse .trc-client-marquee-track {
  animation-direction: reverse;
  animation-duration: 36s;
}

body.trc-integral-preview .trc-client-marquee:hover .trc-client-marquee-track,
body.trc-integral-preview .trc-client-marquee:focus-within .trc-client-marquee-track {
  animation-play-state: paused;
}

body.trc-integral-preview .trc-client-marquee-group {
  display: flex;
  flex: none;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
}

body.trc-integral-preview .trc-client-marquee-pill {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.2);
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

body.trc-integral-preview a.trc-client-marquee-pill:hover,
body.trc-integral-preview a.trc-client-marquee-pill:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.065));
  outline: none;
}

body.trc-integral-preview a.trc-client-marquee-pill:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.17), 0 8px 24px rgba(0, 0, 0, 0.2);
}

body.trc-integral-preview .trc-client-marquee-dot {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.09), 0 0 12px rgba(255, 255, 255, 0.42);
}

@keyframes trc-client-marquee-flow {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 809.98px) {
  body.trc-integral-preview .trc-client-marquee {
    width: calc(100% - 24px) !important;
    margin-top: 16px !important;
    padding-block: 12px !important;
    border-radius: 18px;
  }

  body.trc-integral-preview .trc-client-marquee::before,
  body.trc-integral-preview .trc-client-marquee::after {
    width: 46px;
  }

  body.trc-integral-preview .trc-client-marquee-group {
    gap: 8px;
    padding-right: 8px;
  }

  body.trc-integral-preview .trc-client-marquee-pill {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.trc-integral-preview .trc-client-marquee-track {
    width: 100%;
    animation: none !important;
    transform: none !important;
  }

  body.trc-integral-preview .trc-client-marquee-group {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 12px;
  }

  body.trc-integral-preview .trc-client-marquee-group[aria-hidden="true"] {
    display: none;
  }
}

body.trc-integral-preview .trc-case-proof-grid {
  width: 100% !important;
  max-width: 1180px !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  opacity: 1 !important;
  transform: none !important;
  list-style: none !important;
}

body.trc-integral-preview [data-trc-layout-name="Testimonial Wrapper"],
body.trc-integral-preview [data-trc-layout-name="Testimonial Wrapper"] > [data-trc-layout-name="Testimonial"] {
  width: 100% !important;
  max-width: 1180px !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin-inline: auto !important;
  opacity: 1 !important;
  transform: none !important;
}

body.trc-integral-preview [data-trc-layout-name="Testimonial Wrapper"] > .trc-layout-d09sm5,
body.trc-integral-preview [data-trc-layout-name="Testimonial Wrapper"] > .trc-layout-1my5vfv {
  display: none !important;
}

body.trc-integral-preview #section-contact-us form textarea {
  min-height: 160px !important;
  resize: vertical;
}

body.trc-integral-preview .trc-case-proof-card {
  position: relative;
  min-width: 0 !important;
  width: auto !important;
  min-height: 270px;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  padding: 30px;
  background:
    radial-gradient(circle at 90% 0%, rgba(41, 176, 229, 0.08), transparent 36%),
    radial-gradient(circle at 0% 100%, rgba(143, 194, 62, 0.06), transparent 32%),
    #080808;
  color: #fff;
  opacity: 1 !important;
  transform: none !important;
}

body.trc-integral-preview .trc-case-proof-card > span {
  display: inline-flex;
  border: 1px solid rgba(143, 194, 62, 0.28);
  border-radius: 999px;
  padding: 7px 11px;
  color: #b7d78b;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.trc-integral-preview .trc-case-proof-card h3 {
  margin: 22px 0 12px;
  color: #fff;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

body.trc-integral-preview .trc-case-proof-card p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.65;
}

body.trc-integral-preview .trc-case-proof-card a {
  margin-top: auto;
  padding-top: 24px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

body.trc-integral-preview .trc-case-proof-card a span {
  color: var(--trc-blue);
}

body.trc-integral-preview .trc-contact-proof [data-trc-layout-name^="Profile Wrapper"],
body.trc-integral-preview .trc-contact-proof [data-trc-layout-name="Star Wrapper"] {
  display: none !important;
}

body.trc-integral-preview .trc-contact-review-strip {
  width: fit-content !important;
  max-width: 100% !important;
  min-height: 44px !important;
  height: auto !important;
  display: flex !important;
  flex-flow: row nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  padding: 10px 16px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(0, 0, 0, 0.76) !important;
  overflow: hidden !important;
}

body.trc-integral-preview .trc-contact-review-strip > [data-trc-layout-name="Container"],
body.trc-integral-preview .trc-contact-review-strip > [data-trc-layout-component-type="RichTextContainer"] {
  width: auto !important;
  height: auto !important;
  flex: 0 0 auto !important;
  display: flex !important;
  flex-flow: row nowrap !important;
  align-items: center !important;
  gap: 0 !important;
}

body.trc-integral-preview .trc-contact-review-strip p {
  margin: 0 !important;
  white-space: nowrap !important;
  font-size: clamp(12px, 2.9vw, 15px) !important;
  line-height: 1.2 !important;
}

/* Moving traces only on selected high-value containers. */
body.trc-integral-preview .trc-accent-border,
body.trc-integral-preview .trc-hover-accent-border {
  position: relative !important;
  isolation: isolate;
}

body.trc-integral-preview .trc-accent-border {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.035),
    0 18px 80px rgba(41, 176, 229, 0.025),
    0 18px 90px rgba(143, 194, 62, 0.018) !important;
}

body.trc-integral-preview .trc-accent-border::after,
body.trc-integral-preview .trc-hover-accent-border::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--trc-border-angle),
    transparent 0 18%,
    rgba(41, 176, 229, 0.08) 23%,
    var(--trc-blue) 29%,
    rgba(41, 176, 229, 0.08) 35%,
    transparent 41% 65%,
    rgba(143, 194, 62, 0.07) 71%,
    var(--trc-green) 77%,
    rgba(143, 194, 62, 0.07) 83%,
    transparent 89% 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter:
    drop-shadow(0 0 4px rgba(41, 176, 229, 0.32))
    drop-shadow(0 0 5px rgba(143, 194, 62, 0.18));
  animation: trc-border-orbit 8s linear infinite;
}

body.trc-integral-preview .trc-hover-accent-border::after {
  opacity: 0;
  animation-play-state: paused;
  transition: opacity 240ms ease;
}

@media (hover: hover) and (pointer: fine) {
  body.trc-integral-preview .trc-hover-accent-border:hover::after,
  body.trc-integral-preview .trc-hover-accent-border:focus-within::after {
    opacity: 1;
    animation-play-state: running;
  }
}

@media (hover: none), (pointer: coarse) {
  body.trc-integral-preview .trc-hover-accent-border::after {
    display: block;
    opacity: 1;
    animation-play-state: running;
  }
}

body.trc-integral-preview .trc-accent-border:nth-of-type(even)::after {
  animation-duration: 10s;
  animation-direction: reverse;
}

body.trc-integral-preview .trc-accent-cta {
  filter:
    drop-shadow(0 0 7px rgba(41, 176, 229, 0.17))
    drop-shadow(0 0 10px rgba(143, 194, 62, 0.10));
}

body.trc-integral-preview .trc-accent-dot {
  box-shadow:
    0 0 0 1px rgba(41, 176, 229, 0.26),
    0 0 14px rgba(41, 176, 229, 0.15),
    0 0 20px rgba(143, 194, 62, 0.08) !important;
}

body.trc-integral-preview .trc-site-header .trc-accent-dot {
  box-shadow: none !important;
}

body.trc-integral-preview .trc-shared-footer {
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #000 !important;
  padding: 54px 24px 28px !important;
  color: #777;
  font-size: 14px;
}

body.trc-integral-preview .trc-footer-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(150px, 0.7fr));
  gap: 46px;
}

body.trc-integral-preview .trc-footer-brand img {
  display: block;
  width: 178px;
  height: 68px;
  object-fit: contain;
  object-position: left center;
}

body.trc-integral-preview .trc-footer-brand p {
  max-width: 440px;
  margin: 16px 0 0;
  color: #8d8d8d;
  line-height: 1.6;
}

body.trc-integral-preview .trc-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

body.trc-integral-preview .trc-footer-links strong {
  margin-bottom: 4px;
  color: #eee;
  font-weight: 500;
}

body.trc-integral-preview .trc-footer-links a {
  color: #888;
  text-decoration: none;
  transition: color 180ms ease;
}

body.trc-integral-preview .trc-footer-links a:hover,
body.trc-integral-preview .trc-footer-links a:focus-visible {
  color: #fff;
}

body.trc-integral-preview .trc-footer-bottom {
  width: min(100%, 1180px);
  margin: 44px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  color: #666;
  text-align: center;
}

/* Restore the original intended Steps 01–04 stacked-scroll interaction. */
body.trc-integral-preview [data-trc-layout-name="Section Process"],
body.trc-integral-preview [data-trc-layout-name="Section Process"] [data-trc-layout-name="Max Width"],
body.trc-integral-preview [data-trc-layout-name="Timeline Wrapper"] {
  overflow: visible !important;
}

body.trc-integral-preview .trc-sticky-process-row {
  position: sticky !important;
  top: calc(112px + (var(--trc-stack-index, 0) * 7px)) !important;
  z-index: calc(40 + var(--trc-stack-index, 0)) !important;
  will-change: transform;
}

body.trc-integral-preview .trc-sticky-process-row > [data-trc-layout-name="Progress Bar"] {
  background-color: #000 !important;
}

@keyframes trc-border-orbit {
  to { --trc-border-angle: 360deg; }
}

@keyframes trc-headline-flow {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

@media (max-width: 809.98px) {
  body.trc-integral-preview .trc-case-proof-grid {
    grid-template-columns: 1fr !important;
  }

  body.trc-integral-preview .trc-case-proof-card {
    min-height: 0;
    padding: 24px;
  }

  body.trc-integral-preview .trc-footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  body.trc-integral-preview .trc-footer-bottom {
    margin-top: 34px;
    text-align: left;
  }

  body.trc-integral-preview a.trc-final-logo-link {
    --trc-logo-width: 160px;
    --trc-logo-height: 60px;
    --trc-mark-size: 48px;
    width: 160px !important;
    min-width: 160px !important;
    height: 60px !important;
  }

  body.trc-integral-preview
    a[data-trc-layout-name="Logo--Navigation"]:not(.trc-final-logo-link) {
    width: 160px !important;
    min-width: 160px !important;
    height: 60px !important;
  }

  body.trc-integral-preview.trc-page-scrolled a.trc-final-logo-link {
    width: 48px !important;
    min-width: 48px !important;
    height: 48px !important;
  }

  body.trc-integral-preview.trc-page-scrolled .trc-final-logo {
    opacity: 0;
    transform: translateY(-50%) translateX(-12px) scaleX(0.82);
  }

  body.trc-integral-preview a[data-trc-layout-name="Logo--Navigation"] .trc-layout-glstp0 p::after {
    font-size: 14px;
  }

  body.trc-integral-preview .trc-accent-border::after,
  body.trc-integral-preview .trc-hover-accent-border::after {
    animation-duration: 9s;
  }

  body.trc-integral-preview .trc-sticky-process-row {
    top: calc(78px + (var(--trc-stack-index, 0) * 5px)) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.trc-integral-preview .trc-accent-border::after,
  body.trc-integral-preview .trc-hover-accent-border::after {
    animation: none;
    --trc-border-angle: 40deg;
  }
}
