/* ===== Trusted Partners Section ===== */
.trusted-partners-section {
  background: #000000;
  position: absolute;
  overflow: hidden;
  margin-left: 0;
  margin-right: 0;
  max-width: 100vw;
  padding-left: 0;
  padding-right: 0;
  min-width: 100vw !important;
  margin-top: 800px;
  padding-top:100px !important;
}
.trusted-partners-section .trusted-partners-cover { background: transparent; }
.trusted-partners-bgtext {
    width: 120vw;
  margin-left: 50%;
  transform: translateX(-50%);
  text-align: center;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #FFF;
  color: transparent;
  font-family: 'Axiom Neue', 'Bebas Neue', sans-serif;
  font-size: 260px;
  font-style: normal;
  font-weight: 400;
  line-height: 180px;
  opacity: .1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.trusted-partners-marquee {
    height: 110px;
    display: block;
    overflow: hidden;
    position: relative;
    /* edge fade */
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}
.trusted-partners-track {
    display: flex;
    gap: 80px;
    align-items: center;
    height: 110px;
    animation: trusted-scroll var(--trusted-speed, 30s) linear infinite;
    will-change: transform;
}
.trusted-partners-track .trusted-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(1) contrast(1);
}
@keyframes trusted-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Pause on hover and respect reduced motion */
.trusted-partners-marquee:hover .trusted-partners-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
    .trusted-partners-track { animation: none; }
}

/* Vertical marquee variant */
.trusted-partners-vertical .trusted-partners-marquee {
    height: 110px;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
            mask-image: linear-gradient(180deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.trusted-partners-vertical .trusted-partners-track {
    flex-direction: column;
    gap: 32px;
    height: auto;
    animation: trusted-scroll-y var(--trusted-speed, 18s) linear infinite;
}
.trusted-partners-vertical .trusted-partners-track .trusted-logo img {
    height: 60px;
}
@keyframes trusted-scroll-y {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}

@media (max-width: 1024px) {
    .trusted-partners-bgtext {
        font-size: 200px;
        line-height: 150px;
    }
}
@media (max-width: 768px) {
    .trusted-partners-section {
        margin-left: 0;
        margin-right: 0;
        padding-left: 24px;
        padding-right: 24px;
    }
    .trusted-partners-bgtext {
        font-size: 150px;
        line-height: 120px;
    }
    .trusted-partners-track { gap: 48px; }
}
@media (max-width: 480px) {
    .trusted-partners-bgtext {
        font-size: 110px;
        line-height: 90px;
    }
    .trusted-partners-track .trusted-logo img { height: 48px; }
}
@font-face {
    font-family: 'Axiom Pro';
    src: url('../fonts/Satoshi-Light.otf') format('otf'),
        url('../fonts/Satoshi-Light.otf') format('otf');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Axiom Pro';
    src: url('../fonts/Satoshi-Regular.otf') format('otf'),
        url('../fonts/Satoshi-Regular.otf') format('otf');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Axiom Pro';
    src: url('../fonts/Satoshi-Medium.otf') format('otf'),
        url('../fonts/Satoshi-Medium.otf') format('otf');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Axiom Pro';
    src: url('../fonts/Satoshi-Bold.otf') format('otf'),
        url('../fonts/Satoshi-Bold.otf') format('otf');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Axiom Neue';
    src: url('../fonts/BebasNeue-Regular.woff') format('woff'),
        url('../fonts/BebasNeue-Regular.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
.header {
  padding: 30px 0;
  position: relative;
  z-index: 1001 !important; /* Ensure header is above hero banner */
  background: transparent !important; /* Remove background that was causing black bar */
}

.header .container-fluid,
.header .header-inner {
  position: relative;
  z-index: 1002;
}

.header, main {
  justify-content: center;
  display: flex;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.1;
    background: #000;
    color: #fff;
    font-family: 'Axiom Pro';
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
}

.wrapper {
    margin: 0 auto;
    overflow: hidden;
}


/* Heading Style */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Axiom Neue';
}

h1 {
  color: #FFF;
  font-size: 10rem;
  font-style: normal;
  font-weight: 400;
  line-height: 10rem;
  letter-spacing: -1.8px;
  text-align: left;
}
h1 span.fontOpaque {
  color: rgba(255, 255, 255, 0.50);
}
h2 {
    font-size: 62px;
    line-height: 1.2;
    font-weight: normal;
}

h3 {
    font-size: 50px;
    line-height: 1.2;
    font-weight: normal;
}

h4 {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 300;
}

h5 {
    font-size: 25px;
    line-height: 1.2;
    font-weight: normal;
}

h6 {
    font-size: 20px;
    line-height: 1.2;
}

p {
    font-family: 'Axiom Pro';
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: 0.50px;
}

strong {
    font-weight: normal;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

span#menu-close {
    font-size: 4rem;
}

.main-menu-popup li a {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    text-decoration: none;
    transition: all .2s;
}

.main-menu-popup li a:hover, .main-menu-popup li.current-menu-item a {
    text-decoration: underline;
}

.main-menu-popup li:not(:last-child) {
    margin-bottom: 1.5rem;
}
.website-logo img {
  width: 160px;
}
header .py-md-3 {
    padding-top: .25rem !important;
    padding-bottom: .2rem !important;
  }

html, body {
  overflow-x: hidden;
}
.header-menu-container {
    display: flex;
    align-items: center;
    gap: 20px;
}
.main-menu {
    display: flex;
    width: 1108px;
    max-width: 100%;
    height: 24px;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}
.main-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: flex-end;
}
.main-menu-list li {
    margin: 0;
}
.main-menu-list a {
    color: #FFF;
    text-align: right;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.more-menu-text, .main-menu-list a {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 37px;
}
.main-menu-list a:hover {
    opacity: 0.8;
}
/* More Menu Button */
.more-menu-button {
    width: 125px;
  height: 50px;
  flex-shrink: 0;
  border: none;
  cursor: pointer !important;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(28px);
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.more-menu-text {
    color: #FFF;
    text-transform: uppercase;
}
.more-menu-button:hover {
    opacity: 0.9;
}
/* Mobile Menu Toggle (hidden on desktop) */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #FFF;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}
.container-fluid {
  margin-left: 3.133em !important;
  margin-right: 3.133em !important;
  max-width: 1570px;
  padding-right: 24px;
  padding-left: 24px;
}
/* Mobile Styles */
@media (max-width: 1024px) {
    .main-menu {
        display: none; /* Hide desktop menu on mobile */
    }
    .more-menu-button {
        display: none; /* Hide More button on mobile */
    }
    .mobile-menu-toggle {
        display: block; /* Show mobile menu toggle */
    }
    .header-menu-container {
        gap: 10px;
    }
}
/* Mobile Menu Overlay - Hidden by default */
#menu-overlay {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 1050;
}

/* Show overlay when active */
#menu-overlay.active {
    display: flex !important;
}
#menu-overlay .main-menu-popup {
    list-style: none;
    padding: 0;
    margin: 0;
}
#menu-overlay .main-menu-popup li {
    margin: 20px 0;
}
#menu-overlay .main-menu-popup a {
    color: #FFF;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}
/* Large Desktop Styles */
@media (min-width: 1400px) {
    .main-menu {
        width: 1108px;
        margin-right: 20px;
    }
}
/* Medium Desktop Styles */
@media (min-width: 1025px) and (max-width: 1399px) {
    .main-menu {
        width: auto;
        flex: 1;
    }
    .main-menu-list {
        gap: 30px;
    }
    .main-menu-list a {
        font-size: 18px;
    }
}
/* Tablet Styles */
 @media (min-width: 768px) and (max-width: 1024px) {
    .main-menu {
        display: none; /* Hide on tablet, use mobile menu */
    }
    .more-menu-button {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
}

/* ========================================
   HERO BANNER STYLES
   ======================================== */

/* Video Background - Full Viewport (lowest layer) - COMPLETELY REMOVED FROM FLOW */
/* Target every possible selector combination */
body > #hero-video-container,
body #hero-video-container,
#hero-video-container,
#hero-video-container.hero-video-background,
.hero-video-background,
div#hero-video-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    min-width: 100vw !important;
    min-height: 100vh !important;
    z-index: -999 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    pointer-events: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    /* Remove from normal flow completely */
    float: none !important;
    clear: both !important;
}

body > #hero-video-container video,
body #hero-video-container video,
#hero-video-container video,
#hero-video-container.hero-video-background video,
.hero-video-background video,
div#hero-video-container video {
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

/* Hero Banner Section - Positioned OVER the video background */
.hero-banner-section,
section.hero-banner-section,
.hero-banner-section.banner-section {
    position: relative !important;
    min-height: 100vh !important;
    height: 100vh !important;
    overflow: visible !important;
    z-index: 1 !important;
    width: 100% !important;
    display: block !important;
    clear: both !important;
    margin-left: 3.133em !important;
    margin-right: 3.133em !important;
    max-width: 1570px;
    padding-right: 24px !important;
    padding-left: 24px !important;
}

/* Ensure main container doesn't interfere */
main .hero-banner-section,
body .hero-banner-section {
    position: relative !important;
}

/* Ensure hero banner is below header */
.banner-section.backbgbox {
    position: relative;
    z-index: 1;
}

/* Pseudo-element for overlay - above video, below content */
.hero-banner-section::before {
    content: '';
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.33) !important;
    z-index: -998 !important; /* Above video (-999), below content (1) */
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
}
/* Critical Video Background Styles - Inline for immediate application */
#hero-video-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -999 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
}
#hero-video-container video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}
.hero-banner-section {
    position: relative !important;
    min-height: 100vh !important;
    z-index: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}
.hero-banner-section::before {
    content: '';
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.33) !important;
    z-index: -998 !important;
    pointer-events: none !important;
}
/* Banner Left - H1 Section */
/* Removed legacy banner-left rule to avoid conflicts with hero-content-row */
/* .banner-left {
    position: absolute;
    bottom: 180px;
} */

/* Removed legacy banner-left children */
/* .banner-left * { }
.banner-left .banner-caption { } */

/* Removed legacy bottom-section layout in favor of hero-content-row */
/* .banner-bottom-section.hero-bottom-section {
    box-sizing: border-box;
    position: absolute;
    right: 0;
    bottom: 50px !important;
    left: 0;
    display: flex;
    justify-content: flex-end;
    padding: 0 32px;
    padding-bottom: 0;
    column-gap: 34px;
    z-index: 2;
    pointer-events: none;
}
.banner-bottom-section.hero-bottom-section * { }
.hero-bottom-inner { }
.hero-bottom-item { } */

/* Circular Logo */
.hero-circular-logo {
  flex-shrink: 0;
  visibility: visible !important;
  opacity: 1 !important;
}

.rotating-icon-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rotating-icon.axiom-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    z-index: 2;
    position: relative;
}

/* Circular Text SVG */
.circular-text-wrapper {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.circular-text {
    width: 100%;
    height: 100%;
    animation: rotateText 20s linear infinite;
    transform-origin: center center;
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.circular-text text {
    font-family: 'Axiom Pro', sans-serif;
    font-weight: 700;
    font-size: 16px;
    fill: #FFFFFF;
}

/* Animated H1 Heading - Full Width */
.hero-heading-section.banner-caption {
    min-width: 100% !important;
    width: 100%;
    display: block;
    position: relative;
    max-height:308px;
}

.hero-animated-heading {
    /* Inherit base h1 styles from style.css */
    color: #FFF !important;
    font-size: 9.25rem !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 10rem !important;
    letter-spacing: -1.8px !important;
    text-align: left !important;
    margin: 0;
    font-family: 'Axiom Neue', sans-serif;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-animated-heading .animation-text {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-animated-heading .animation-text.up {
    /* Animation handled by inline style delay */
    will-change: transform, opacity;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Critical Video Background Styles - Inline for immediate application */
#hero-video-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -999 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
}
#hero-video-container video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}
.hero-banner-section {
    position: relative !important;
    min-height: 100vh !important;
    z-index: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}
.hero-banner-section::before {
    content: '';
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.33) !important;
    z-index: -998 !important;
    pointer-events: none !important;
}

/* New unified bottom-anchored content row */
.hero-content-row {
    position: absolute;
    bottom: 250px;
    width: calc(100% - 3%);
    display: flex;
    align-items: flex-end;
    gap: 60px;
}
/* Allow H1 to flow naturally, side content sits next to it */
.hero-content-row .hero-heading-section {
    flex: 1 1 auto;
    min-width: 0;
}
/* Refinement: lock hero-side width and absolute position per request */
.hero-side {
  display: flex;
  max-width: 444px;
  left: 58.5vw;
  position: absolute;
  gap: 15px;
}

/* Ensure circular block sizing is consistent */
.hero-side .rotating-icon-wrapper { width: 200px; height: 200px; position: relative; }
.hero-side .axiom-logo { width: 80px; height: 80px; object-fit: contain; position: relative; z-index: 2; }
.hero-side .circular-text { width: 100%; height: 100%; animation: rotateText 20s linear infinite; transform-origin: center; }
/* Paragraph Text Styles */
.hero-description-text {
  font-family: 'Axiom Pro', sans-serif;
  font-size: 20px;
  color: #FFFFFF;
  text-align: left;
  margin: 0;
  font-weight: 500;
  max-width: 400px;
  align-content: center;
}

/* Responsive Styles */
@media (min-width: 1200px) {
    .hero-bottom-item {
        width: auto;
    }
}

@media (max-width: 1400px) {
    .hero-animated-heading {
        font-size: 8rem !important;
        line-height: 8rem !important;
    }
    
    .banner-left {
        bottom: 300px; /* Adjust for smaller bottom section */
    }
}

/* Smooth scaling around common laptop widths */
@media (max-width: 1366px) {
    .hero-animated-heading {
        font-size: 8.75rem !important;
        line-height: 9rem !important;
        letter-spacing: -1.6px !important;
    }
    .hero-side { left: 57.5vw; }
}

@media (max-width: 1280px) {
    .hero-animated-heading {
        font-size: 8.25rem !important;
        line-height: 8.5rem !important;
        letter-spacing: -1.4px !important;
    }
    .hero-side { left: 57vw; }
}

/* Large tablet breakpoint: reduce heading, nudge side to keep visible */
@media (max-width: 1200px) {
    .hero-animated-heading {
        font-size: 7rem !important;
        line-height: 7rem !important;
        letter-spacing: -1.2px !important;
    }
    .hero-side { left: 56vw; }
}

/* Pre-stack fine tune before tablet layout switch */
@media (max-width: 1100px) {
    .hero-animated-heading {
        font-size: 6rem !important;
        line-height: 6.25rem !important;
        letter-spacing: -1.1px !important;
    }
    .hero-side { left: 55vw; }
}

@media (max-width: 1024px) {
    .hero-animated-heading {
        font-size: 5rem !important;
        line-height: 5rem !important;
        text-align: left !important;
        width: 100%;
    }
    /* Stack hero content to keep side visible */
    .hero-content-row {
        left: 0;
        right: 0;
        width: auto;
        padding: 0 24px;
        bottom: 200px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        box-sizing: border-box;
    }
    .hero-side {
        position: static;
        left: auto;
        max-width: 100%;
    }
    .hero-text-section { max-width: 100%; }
    .hero-description-text { text-align: left; max-width: 100%; }
}

/* Compact tablets and phablets */
@media (max-width: 900px) {
    .hero-animated-heading {
        font-size: 4rem !important;
        line-height: 4.25rem !important;
        letter-spacing: -1px !important;
    }
}

@media (max-width: 768px) {
    .hero-banner-section {
        min-height: auto;
    }
    .hero-animated-heading {
        font-size: 3rem !important;
        line-height: 3rem !important;
        text-align: left !important;
    }
    .hero-content-row { position: relative; bottom: auto; padding: 24px; gap: 20px; }
    .hero-side { position: static; left: auto; }
    
    .rotating-icon-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .rotating-icon.axiom-logo {
        width: 60px;
        height: 60px;
    }
    
    .circular-text-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .hero-description-text {
        font-size: 20px;
        line-height: 28px;
    }
}

/* Phones */
@media (max-width: 640px) {
    .hero-animated-heading {
        font-size: 2.75rem !important;
        line-height: 3rem !important;
        letter-spacing: -0.8px !important;
    }
}

@media (max-width: 480px) {
    .hero-animated-heading {
        font-size: 2.25rem !important;
        line-height: 2.5rem !important;
        letter-spacing: -0.6px !important;
    }
}
.hero-content-row .hero-heading-section {
    flex: 1 1 auto;
    min-width: 0;
}
.hero-content-row .hero-heading-section { 
  flex: 0 1 calc(100% - 444px - 60px); /* total - side width - row gap */
  min-width: 0; 
}
.rotating-icon-wrapper {
  width: 200px;
  height: 200px;
}

/* Hero side sizes */
.hero-text-section {
  display: contents;
  width: auto;
  
}
.hero-side .circular-text-wrapper { position: absolute;width: 130px;height: 130px;left: 50%;transform: translate(-50%, -50%);}
.hero-side .axiom-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}
.hero-side .rotating-icon-wrapper {
  width: 150px;
  height: 150px;
  position: relative;
}
/* Scope everything so it won't affect other parts of the page */
  .tp-slider {
      --tp-speed: 28s;
      --tp-gap: 80px;
      background:#000;
      color:#fff;
      position:relative;
      overflow:hidden;
      padding:40px 0;
  }
  .tp-slider__bgtext {
    position:absolute; inset:0 auto auto 50%; transform:translateX(-50%);
    width:120vw; text-align:center; color:transparent; opacity:.08; pointer-events:none; user-select:none;
    -webkit-text-stroke:2px #fff; font-family:"Bebas Neue", "Axiom Neue", sans-serif; font-size:260px; line-height:180px; white-space:nowrap;
  }
  .tp-slider__viewport {
    position:relative; height:110px; overflow:hidden;
    -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 64px,#000 calc(100% - 64px),transparent 100%);
            mask-image:linear-gradient(90deg,transparent 0,#000 64px,#000 calc(100% - 64px),transparent 100%);
  }
  .tp-slider__track {
    display:flex; align-items:center; gap:var(--tp-gap); height:110px;
    animation:tp-scroll var(--tp-speed) linear infinite; will-change:transform;
  }
  .tp-slider__logo { height:60px; width:auto; object-fit:contain; filter:brightness(1) contrast(1); }
  .tp-slider__viewport:hover .tp-slider__track { animation-play-state:paused; }
  @keyframes tp-scroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }

  /* Responsive tweaks */
  @media (max-width: 768px){
    .tp-slider__bgtext{ font-size:150px; line-height:120px; }
    .tp-slider__logo{ height:48px; }
  }
  @media (max-width: 480px){
    .tp-slider__bgtext{ font-size:110px; line-height:90px; }
  }
  @media (prefers-reduced-motion: reduce){
    .tp-slider__track{ animation:none; }
  }