/* LENIS SMOOTH SCROLL BASE STYLES */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

:root {
  /* Fonts */
  --font-sans: Season-Sans, sans-serif;

  --font-serif: "Season-serif", serif;
  --font-mono: "IBM Plex Mono", monospace;

  /* Colors from code.html */
  --color-primary: #115860;
  --color-on-primary: #ffffff;
  --color-primary-container: #1c1b1b;
  --color-on-primary-container: #858383;
  --color-secondary: #ee0000;
  --color-on-secondary: #ffffff;
  --color-secondary-container: #fdaa8d;
  --color-on-secondary-container: #783c27;
  --color-tertiary: #000000;
  --color-on-tertiary: #ffffff;
  --color-tertiary-container: #1c1c19;
  --color-on-tertiary-container: #858480;
  --color-error: #ba1a1a;
  --color-on-error: #ffffff;
  --color-error-container: #ffdad6;
  --color-on-error-container: #93000a;
  --color-background: #fbf9f9;
  --color-on-background: #1b1c1c;
  --color-surface: #fbf9f9;
  --color-on-surface: #1b1c1c;
  --color-surface-variant: #e4e2e2;
  --color-on-surface-variant: #444748;
  --color-outline: #747878;
  --color-outline-variant: #c4c7c7;
  --color-surface-dim: #dbdad9;
  --color-surface-bright: #fbf9f9;
  --color-surface-container-lowest: #ffffff;
  --color-surface-container-low: #f5f3f3;
  --color-surface-container: #efeded;
  --color-surface-container-high: #e9e8e7;
  --color-surface-container-highest: #e4e2e2;
  --color-surface-tint: #5f5e5e;
  --color-inverse-surface: #303031;
  --color-inverse-on-surface: #f2f0f0;
  --color-inverse-primary: #c8c6c5;
  --color-primary-fixed: #e5e2e1;
  --color-primary-fixed-dim: #c8c6c5;
  --color-on-primary-fixed: #1c1b1b;
  --color-on-primary-fixed-variant: #474646;
  --color-secondary-fixed: #ffdbcf;
  --color-secondary-fixed-dim: #ffb59c;
  --color-on-secondary-fixed: #390c00;
  --color-on-secondary-fixed-variant: #703621;
  --color-tertiary-fixed: #e5e2dd;
  --color-tertiary-fixed-dim: #c9c6c2;
  --color-on-tertiary-fixed: #1c1c19;
  --color-on-tertiary-fixed-variant: #474743;

  /* Legacy variables - mapped to new palette */
  --base-color-brand--hull-white: var(--color-surface-container-lowest);
  --base-color-neutral--white: #ffffff;
  --base-color-neutral--anchor-black: var(--color-primary);
  --base-color-brand--cargo-khaki: #e1e8ed73;

  --background-color--background-primary: var(--color-background);
  --background-color--background-khaki: var(--color-surface-container-low);
  --background-color--background-alternate: var(--color-primary);

  --text-color--text-primary: var(--color-on-background);
  --text-color--text-secondary: var(--color-on-surface-variant);
  --text-color--text-alternate: var(--color-on-primary);

  --border-color--border-primary: var(--color-outline-variant);

  --_numbers---max-width: 100rem;
  --bg-ground: var(--color-surface-container-low);
}

/* Design System Utilities */
.bg-primary {
  background-color: var(--color-primary) !important;
}

.bg-secondary {
  background-color: var(--color-secondary) !important;
}

.bg-tertiary {
  background-color: var(--color-tertiary) !important;
}

.bg-surface {
  background-color: var(--color-surface) !important;
}

.bg-background {
  background-color: var(--color-background) !important;
}

.bg-error {
  background-color: var(--color-error) !important;
}

.bg-primary-container {
  background-color: var(--color-primary-container) !important;
}

.bg-secondary-container {
  background-color: var(--color-secondary-container) !important;
}

.bg-tertiary-container {
  background-color: var(--color-tertiary-container) !important;
}

.bg-error-container {
  background-color: var(--color-error-container) !important;
}

.bg-secondary-fixed {
  background-color: var(--color-secondary-fixed) !important;
}

.bg-secondary-fixed-dim {
  background-color: var(--color-secondary-fixed-dim) !important;
}

.bg-tertiary-fixed {
  background-color: var(--color-tertiary-fixed) !important;
}

.bg-tertiary-fixed-dim {
  background-color: var(--color-tertiary-fixed-dim) !important;
}

.bg-surface-variant {
  background-color: var(--color-surface-variant) !important;
}

.bg-surface-dim {
  background-color: var(--color-surface-dim) !important;
}

.bg-surface-bright {
  background-color: var(--color-surface-bright) !important;
}

.bg-surface-container-lowest {
  background-color: var(--color-surface-container-lowest) !important;
}

.bg-surface-container-low {
  background-color: var(--color-surface-container-low) !important;
}

.bg-surface-container {
  background-color: var(--color-surface-container) !important;
}

.bg-surface-container-high {
  background-color: var(--color-surface-container-high) !important;
}

.bg-surface-container-highest {
  background-color: var(--color-surface-container-highest) !important;
}

.text-primary {
  color: var(--color-primary) !important;
}

.text-on-primary {
  color: var(--color-on-primary) !important;
}

.text-secondary {
  color: var(--color-secondary) !important;
}

.text-on-secondary {
  color: var(--color-on-secondary) !important;
}

.text-tertiary {
  color: var(--color-tertiary) !important;
}

.text-on-tertiary {
  color: var(--color-on-tertiary) !important;
}

.text-on-surface {
  color: var(--color-on-surface) !important;
}

.text-on-surface-variant {
  color: var(--color-on-surface-variant) !important;
}

.text-on-background {
  color: var(--color-on-background) !important;
}

.text-on-primary-container {
  color: var(--color-on-primary-container) !important;
}

.text-on-secondary-container {
  color: var(--color-on-secondary-container) !important;
}

.text-on-tertiary-container {
  color: var(--color-on-tertiary-container) !important;
}

.text-on-secondary-fixed-variant,
.text-secondary-fixed-variant {
  color: var(--color-on-secondary-fixed-variant) !important;
}

.text-on-tertiary-fixed-variant,
.text-tertiary-fixed-variant {
  color: var(--color-on-tertiary-fixed-variant) !important;
}

.text-on-tertiary-fixed {
  color: var(--color-on-tertiary-fixed) !important;
}

.text-on-secondary-fixed {
  color: var(--color-on-secondary-fixed) !important;
}

.text-secondary-fixed {
  color: var(--color-secondary-fixed) !important;
}

.text-secondary-fixed-dim {
  color: var(--color-secondary-fixed-dim) !important;
}

.text-on-error {
  color: var(--color-on-error) !important;
}

.text-on-error-container {
  color: var(--color-on-error-container) !important;
}

.bg-outline-variant {
  background-color: var(--color-outline-variant) !important;
}

.border-outline-variant {
  border-color: var(--color-outline-variant) !important;
}

.border-secondary {
  border-color: var(--color-secondary) !important;
}

.border-outline {
  border-color: var(--color-outline) !important;
}

/* ============================================
   SPACING UTILITIES (from tailwind.css @theme)
   ============================================ */
.py-section-gap {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.px-margin-page {
  padding-left: 4rem;
  padding-right: 4rem;
}

.px-margin-mobile {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.gap-stack-lg {
  gap: 3rem;
}

.gap-stack-md {
  gap: 1.5rem;
}

.gap-stack-sm {
  gap: 0.5rem;
}

/* ============================================
   TYPOGRAPHY UTILITIES (from tailwind.css @layer)
   ============================================ */
.font-headline-xl {
  font-family: var(--font-sans);
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.font-headline-lg {
  font-family: var(--font-sans);
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: normal;
}

.font-headline-md {
  font-family: var(--font-sans);
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.font-body-lg {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.6;
}

.font-body-md {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
}

.font-label-caps {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  padding: 4px 12px;
  background-color: rgba(255, 255, 255, 0.325);
  border-radius: 400px;
  border: solid 1px rgba(159, 159, 159, 0.453);


  display: inline-flex;

  align-items: center;

  justify-content: center;

  line-height: 1;
}

footer .font-label-caps {
  background-color: transparent;
  padding: 0px !important;
  border: none !important;
}

.font-serif {
  font-family: var(--font-serif);
}

/* Font-size only utilities (for use with text-*) */


.text-headline-lg {
  font-size: 48px;
}

.text-headline-md {
  font-size: 32px;
}

.text-body-lg {
  font-size: 18px;
}

.text-body-md {
  font-size: 16px;
}

.text-label-caps {
  font-size: 12px;
  letter-spacing: 0.1em;
}

/* Mobile responsive typography */
@media (max-width: 768px) {
  .font-headline-xl {
    font-size: 40px;
  }

  .font-headline-lg {
    font-size: 32px;
  }

  .font-headline-md {
    font-size: 24px;
  }

  .text-headline-xl {
    font-size: 40px;
  }

  .text-headline-lg {
    font-size: 32px;
  }

  .text-headline-md {
    font-size: 24px;
  }

  .text-headline-sm {
    font-size: 20px;
  }

  .py-section-gap {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .px-margin-page {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

body {
  background-color: var(--color-background);
  color: var(--color-on-background);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

/* Headings */

h2,
h3,
h4,
.heading-style-h2,
.heading-style-h3,
.heading-style-h5 {
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
}

h1,
.heading-style-h1 {
  font-size: 5.5rem;
  line-height: 1.1;

  font-family: var(--font-serif);
}

.heading-style-display {
  font-size: 6.5rem;
  line-height: 90%;
}

h2,
.heading-style-h2 {
  font-size: 3.5rem;
  line-height: 1;
}

h3,
.heading-style-h3 {
  font-size: 2.5rem;
  line-height: 1.1;
}

h5,
.heading-style-h5 {
  font-size: 1.5rem;
  line-height: 1.1;
}

p {
  color: var(--color-on-surface-variant);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
}

.bg-khaki {
  background-color: var(--background-color--background-khaki);
}

/* Global Layout Structures */
.page-wrapper {
  z-index: 8;
  background-color: var(--background-color--background-primary);
  max-width: 100%;
}

.main-wrapper {
  background-color: var(--background-color--background-primary);
}

.container-large {
  max-width: var(--_numbers---max-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

.section-padding {
  padding-top: 10.25rem;
  padding-bottom: 10.25rem;
}

.section-padding-small {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-small {
  margin-bottom: 1.5rem;
}

.margin-bottom.margin-xsmall {
  margin-bottom: 1rem;
}

.margin-bottom.margin-xxlarge {
  margin-bottom: 5rem;
}

/* Navigation */
.navbar_component {
  z-index: 999;
  background-color: var(--background-color--background-primary);
  border-bottom: 1px solid rgba(217, 217, 217, 0.3);
  height: 3.5rem;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
}

.navbar_link {
  color: var(--color-on-surface);
  opacity: 0.7;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.navbar_link:hover {
  opacity: 1;
  color: var(--color-primary);
}

/* Components */
.button {
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.button:hover {
  background-color: var(--color-on-background);
  opacity: 0.9;
}

.talk-to-ai-agent-button {
  z-index: 990;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  background-color: rgba(174, 174, 174, 0.2);
  border-radius: 0.5rem;
  padding: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.home-header_background-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  padding: 0px 1rem;
  height: calc(100vh - 4.5rem);
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sections */
.section_operating-model {
  background-color: var(--background-color--background-khaki);
}

.ai-workers_tab-list-item {
  border-top: 1px solid #ededed;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
}

.text-style-tagline {
  opacity: 0.6;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.95em;
  font-weight: 600;
  font-family: var(--font-mono);
}

.text-style-book {
  font-family: inherit;
  font-weight: 400;
}

.cta_card {
  background-color: var(--background-color--background-khaki);
  border-radius: 3.5rem;
  padding: 9rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Section specific layouts */
.horizontal_header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.horizontal-header_content {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  gap: 4rem;
  align-items: start;
}

.ai-workers_image-wrapper {
  border-radius: 3.5rem;
  overflow: hidden;
  margin-top: 5rem;
}

.large-img {
  width: 100%;
  height: auto;
}

.testimonial-grid_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}

.gsap-slider__item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background-color:
    /* var(--background-color--background-alternate);*/
    #5b673f;
  color: var(--text-color--text-alternate);
  padding: 3rem;
  min-height: 24rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slider_item-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.slide-item-inner-logo {
  position: relative;
  z-index: 2;
  height: 2rem;
  margin-bottom: 2rem;
}

.slide-item-inner-quote-wrapper {
  position: relative;
  z-index: 2;
}

.reliability_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.reliability_list-item {
  background-color: #f5f5f5;
  border-radius: 2.5rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 25rem;
  position: relative;
  overflow: hidden;
}

.reliability_list-item.is-wide {
  grid-column: span 1;
}

.reliability_card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reliability_card-content-wrapper {
  position: relative;
  z-index: 2;
}

.layout237_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.layout237_item-icon-wrapper {
  width: 3rem;
  height: 3rem;
  background: var(--background-color--background-khaki);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spacer-xxlarge {
  height: 8rem;
}

.hero .navik-cta-btn {
  padding: 0.6rem 20px;
  position: relative;
  top: -4px;
}

/* Footer */
.footer_link {
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  display: block;
  padding: 0.5rem 0;
}

.footer_link:hover {
  opacity: 1;
}

.footer3_link-list-header {
  opacity: 0.5;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.desktop-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4rem;
  place-items: center;
  width: 100%;
}

.logo-column {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
}

.navik-header .logo img {
  width: auto;
  max-width: inherit;
  max-height: 20px;
}

.navik-menu ul ul li>a {
  font-style: normal !important;
  font-family: "Season-Sans";
  margin-left: 0px !important;
}

/* prevent header height expansion from affecting CTA */
.navik-header-container {
  position: relative;
  border: 1px solid whitesmoke;
}

/* desktop CTA */
.navik-cta-wrapper {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.burger-menu {
  position: absolute;
  top: 1rem;
}

.navik-cta-btn {
  padding: 4px 20px;
  border-radius: 6px;
  background: black;
  color: white;
  font-size: 12px;
  letter-spacing: -0.8px;
}

.cta_card .navik-cta-btn,
.subheader .navik-cta-btn {
  padding: 0.6rem 20px;
  position: relative;
  top: -4px;
}

.sub-tagline {
  font-family: Gilda Display;
  font-size: 36px;
  line-height: 1;
  margin: 2rem 0rem;
}

.navik-menu ul li>a {
  text-transform: none !important;
  letter-spacing: -0.5px;
  color: #8c8c8c !important;
}

.navik-header {
  margin-top: 0px;
  position: fixed;
  width: 100%;
}

th {
  font-family: Gilda Display;
  font-weight: normal !important;
}

table.comparison-table {
  font-size: 12px;
  font-weight: 300 !important;
}

ul.list {
  font-size: 16px;
  line-height: 1.5;
  margin-left: 30px;
  list-style: disclosure-closed;
  margin-top: 1.5rem;
  font-weight: 300;
}

.section_features h3 {
  font-size: 2rem !important;
  margin-bottom: 10px;
}

/** Dashboard Animations **/

/* Vanilla CSS for animations to prevent breaking Tailwind's global styles */
@keyframes growUp {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

@keyframes fluctuate {

  0%,
  100% {
    transform: scaleY(1);
  }

  33% {
    transform: scaleY(0.95);
  }

  66% {
    transform: scaleY(1.05);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-grow {
  animation: growUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transform-origin: bottom;
}

.animate-fluctuate {
  animation: fluctuate 3s ease-in-out infinite;
  transform-origin: bottom;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-entry {
  animation: fadeIn 0.8s ease-out forwards;
}

/* =================================================================
   FIXED DASHBOARD SCALING - WORKS WITH GSAP SCROLLTRIGGER
   ================================================================= */

/* Dashboard wrapper - simple container, no positioning tricks */
.dashboard-scale-wrapper {
  width: 100%;
  max-width: 1440px;
  /* Match your design width */
  margin: 0 auto;
  position: relative;
  /* Let JavaScript handle the height dynamically */
  min-height: 800px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Dashboard content - scaled by JavaScript, not CSS */
.dashboard-content-container {
  width: 1440px;
  /* Fixed design width */
  position: relative;
  /* NOT absolute - this was breaking ScrollTrigger */
  /* Transform applied by JavaScript */
  transform-origin: top center;
  will-change: transform;
  /* Performance optimization */
}

/* CRITICAL: Remove all absolute positioning and padding-bottom hacks
   These conflict with GSAP's scroll calculations */

/* Mobile responsive fallback */
@media (max-width: 640px) {
  .dashboard-scale-wrapper {
    min-height: 600px;
  }

  .dashboard-content-container {
    width: 100%;
    transform: none !important;
    /* Disable scaling on very small screens */
  }
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .dashboard-scale-wrapper {
    min-height: 700px;
  }
}

/* =================================================================
   GSAP REVEAL PREPARATION
   ================================================================= */

/* Ensure rows are ready for GSAP to animate */
.gsap-reveal-row {
  opacity: 0;
  /* Will be animated by GSAP */
  will-change: opacity, transform;
}

.gsap-reveal-hero {
  opacity: 0;
  /* Will be animated by GSAP */
  will-change: opacity;
}

/* Smooth transitions for all dashboard elements */
.dashboard-content-container * {
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.dashboard-2 .card {
  background-color: white;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.05);
}

.dashboard-2 .chart-container {
  position: relative;
  height: 260px;
}

.pulse-replaces-section {
  z-index: 5;
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-primary);
  width: 100%;
  height: 100vh;
  position: relative;
  border-top: 1px solid var(--border-color--border-primary);
  border-bottom: 1px solid var(--border-color--border-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-replaces-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-center-wrapper {
  position: relative;
  z-index: 20;
  text-align: center;
}

.pulse-connectors-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  opacity: 0.6;
}

.pulse-replaces-heading {
  font-family: "Gilda Display";
  font-weight: 400;
  letter-spacing: -0.02em;
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--text-color--text-primary);
  margin: 0;
}

.pulse-final-text-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  z-index: 50;
}

.pulse-hands-display {
  position: relative;
  width: 800px;
  height: 450px;
  margin-bottom: -120px;
  /* Bring text closer to hands */
  pointer-events: none;
}

.pulse-hands-mask {
  position: absolute;
  inset: 0;
  /* Very large mask to allow for movement */
  mask-image: radial-gradient(circle at center, black 50%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at center,
      black 50%,
      transparent 85%);
}

.pulse-hands-inner-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      transparent 30%,
      rgba(255, 255, 255, 0.2) 60%,
      transparent 90%);
  z-index: 10;
}

.hand-robo,
.hand-human {
  position: absolute;
  top: 50%;
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(100, 180, 255, 0.4));
  z-index: 5;
}

.hand-robo {
  right: 50%;
  transform: translateY(-50%);
  object-position: right center;
}

.hand-human {
  left: 50%;
  transform: translateY(-50%);
  object-position: left center;
}

/* Mobile Responsiveness for Pulse Replaces */
@media (max-width: 768px) {
  .pulse-replaces-heading {
    font-size: 2.2rem;
    padding: 0 1.5rem;
  }

  .pulse-hands-display {
    width: 100vw;
    height: 260px;
    margin-bottom: -60px;
  }

  .pulse-hands-mask {
    mask-image: radial-gradient(circle at center, black 60%, transparent 95%);
    -webkit-mask-image: radial-gradient(circle at center,
        black 60%,
        transparent 95%);
  }

  .hand-robo,
  .hand-human {
    height: 80%;
  }

  .pulse-final-text-centered .gradient-text-pulse {
    font-size: 1.8rem;
    padding: 0 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
  }

  .pulse-floating-item {
    width: 120px;
  }

  .pulse-image-box {
    width: 120px;
    height: 120px;
  }

  .lava-btn-wrap {
    min-width: 110px;
    height: 38px;
    margin-top: 0.8rem;
  }

  .lava-text {
    font-size: 0.7rem;
    padding: 0 0.8rem;
  }
}

.pulse-final-text-centered .gradient-text-pulse {
  font-family: "Gilda Display";
  font-size: 4rem;
  line-height: 1;
}

.pulse-floating-items {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pulse-floating-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 250px;
  z-index: 10;
}

.pulse-image-box {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pulse-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lava-btn-wrap {
  position: relative;
  width: auto;
  min-width: 200px;
  height: 58px;
  margin-top: 1.5rem;
  z-index: 1;
  isolation: isolate;
}

.lava-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  pointer-events: none;
}

.glass-overlay {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  /* Moved from parent filter */
}

.glass-sheen {
  position: absolute;
  top: 1px;
  left: 10%;
  right: 10%;
  height: 40%;
  border-radius: 999px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 3;
}

.lava-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Google Sans Flex", sans-serif;
  font-size: 0.9rem;
  font-weight: 400 !important;
  color: rgba(50, 50, 70, 0.9);
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  padding: 0 1.5rem;
  z-index: 10;
  transform: translateZ(0);
}

.pulse-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.is-wiggling .pulse-item-inner {
  animation: wiggle 6s ease-in-out infinite;
}

/* Randomized Wiggle Patterns */
.pulse-floating-item:nth-child(1) .pulse-item-inner {
  animation-duration: 5.5s;
  animation-delay: -0.5s;
}

.pulse-floating-item:nth-child(2) .pulse-item-inner {
  animation-duration: 6.8s;
  animation-delay: -1.2s;
}

.pulse-floating-item:nth-child(3) .pulse-item-inner {
  animation-duration: 4.9s;
  animation-delay: -3.5s;
}

.pulse-floating-item:nth-child(4) .pulse-item-inner {
  animation-duration: 7.2s;
  animation-delay: -2.1s;
}

.pulse-floating-item:nth-child(5) .pulse-item-inner {
  animation-duration: 5.8s;
  animation-delay: -4.8s;
}

.pulse-floating-item:nth-child(6) .pulse-item-inner {
  animation-duration: 6.4s;
  animation-delay: -1.9s;
}

@keyframes wiggle {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(5px, -5px) rotate(1deg);
  }

  50% {
    transform: translate(-5px, 5px) rotate(-1deg);
  }

  75% {
    transform: translate(5px, 5px) rotate(0.5deg);
  }
}

@media (max-width: 767px) {
  .pulse-replaces-heading {
    font-size: 2.5rem;
  }

  .pulse-image-box {
    width: 180px;
    height: 180px;
  }

  .pulse-floating-item {
    width: 180px;
  }
}

.pulse-dots {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  transform: rotate(0deg);
  transform-origin: center;
  will-change: transform;
  animation: rotate-dots 20s infinite linear;
}

@keyframes rotate-dots {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.logo-slider-container {
  mask-image: linear-gradient(to bottom,
      transparent,
      black 15%,
      black 85%,
      transparent);
  -webkit-mask-image: linear-gradient(to bottom,
      transparent,
      black 15%,
      black 85%,
      transparent);
}

/* Glass Glare Effect */
.glare-effect {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.glare-effect::after {
  content: "";
  position: absolute;
  top: 0;
  left: -200%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.02) 40%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0.02) 60%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: glare-move 16s infinite ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.glare-effect>* {
  position: relative;
  z-index: 2;
}

@keyframes glare-move {
  0% {
    left: -200%;
  }

  25% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

.glare-delay-1::after {
  animation-delay: 0s;
}

.glare-delay-2::after {
  animation-delay: 1.5s;
}

.glare-delay-3::after {
  animation-delay: 3s;
}

.glare-delay-4::after {
  animation-delay: 4.5s;
}

.intro-subtitle,
.hero-subtitle {
  font-family: Inter;
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 1.2 !important;
}

p {
  font-family: "Season-Sans";
}

.it-boxes {
  border: solid 1px lightgray !important;
}

.gbc-news-detail h3 {
  font-size: 2rem !important;
  margin-bottom: 1rem !important;
  margin-top: 2rem !important;
  font-family: 'Season-Serif' !important;
}

.gbc-news-detail p {
  margin-bottom: 0.8rem !important;
}

.gbc-news-detail p:last-of-type {
  margin-bottom: 2rem !important;
}


.gbc-news-detail ul {
  font-size: 16px;
  line-height: 1.5;
  margin-left: 30px;
  list-style: disclosure-closed;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.text-headline-sm {
  font-size: 20px;
}