/* Motion + craft — Lax Tech homepage */

:root {
  --lt-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --lt-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --lt-gutter: clamp(1.5rem, 5.5vw, 5rem);
  --lt-brand: #3475ba;
  --lt-ink: #0a0a0a;
  --lt-canvas: #ffffff;
  --lt-elev: #f7f7f8;
  --lt-paper: #fafafa;
  --lt-fg: #0a0a0a;
  --lt-muted: #6b7280;
  --lt-line: rgba(10, 10, 10, 0.08);
  --lt-line-strong: rgba(10, 10, 10, 0.12);
  --lt-header: rgba(255, 255, 255, 0.65);
  --lt-header-scrolled: rgba(255, 255, 255, 0.92);
  --lt-nav: rgba(10, 10, 10, 0.58);
  --lt-nav-hover: rgba(10, 10, 10, 0.045);
  --lt-grid: rgba(10, 10, 10, 0.016);
  --lt-social-bg: #fff;
  --lt-brand-soft: #f3f7fb;
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
  background: var(--lt-canvas);
  transition: background-color 0.45s var(--lt-ease), color 0.45s var(--lt-ease);
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
  background: var(--lt-canvas);
  color: var(--lt-fg);
}

::selection {
  background: rgba(52, 117, 186, 0.16);
  color: var(--lt-fg);
}

:focus-visible {
  outline: 2px solid var(--lt-brand);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

.lt-skip {
  position: absolute;
  left: var(--lt-gutter);
  top: -5rem;
  z-index: 100;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--lt-fg);
  color: var(--lt-canvas);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: top 0.25s var(--lt-ease);
}

.lt-skip:focus {
  top: 1rem;
  outline: 2px solid var(--lt-brand);
  outline-offset: 3px;
}

.tp-section-title,
.tp-section-title-sm,
.tp-section-title-xs,
.ab-title-xs,
.section-title,
.tp-slider-exp-title {
  text-wrap: balance;
}

.size-text,
.ab-inner-content p,
.tp-testimonial-item__text p {
  text-wrap: pretty;
}

.container.mx-auto,
.container-fluid.mx-auto,
#header-sticky.tp-header-area {
  padding-left: var(--lt-gutter) !important;
  padding-right: var(--lt-gutter) !important;
}

/* —— Grid / outlines —— */
.lt-grid {
  background-image:
    linear-gradient(var(--lt-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--lt-grid) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 65% at 72% 32%, #000 18%, transparent 72%);
  animation: lt-grid-drift 48s linear infinite;
}

@keyframes lt-grid-drift {
  from { background-position: 0 0; }
  to { background-position: 72px 72px; }
}

.lt-outline {
  color: transparent;
  -webkit-text-stroke: 1.15px rgba(10, 10, 10, 0.55);
  transition:
    color 0.55s var(--lt-ease),
    -webkit-text-stroke 0.55s var(--lt-ease);
}

.lt-outline:hover,
.group:hover .lt-outline {
  color: currentColor;
  -webkit-text-stroke: 0px transparent;
}

.cta-effect-img {
  transform: translateY(6px);
  opacity: 0.1;
  transition: transform 0.55s var(--lt-ease), opacity 0.55s var(--lt-ease);
}

.cta-item:hover .cta-effect-img {
  transform: translateY(0);
  opacity: 0.22;
}

/* —— Marquee —— */
.lt-marquee {
  display: flex;
  width: max-content;
  animation: lt-marquee 36s linear infinite;
}

.lt-marquee-rtl {
  animation-direction: reverse;
  animation-duration: 42s;
}

.tp-marque-area {
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.tp-marque-area:hover .lt-marquee {
  animation-play-state: paused;
}

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

.lt-hide-scroll {
  scrollbar-width: none;
}
.lt-hide-scroll::-webkit-scrollbar {
  display: none;
}

.tp-case-wrapper {
  mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 18px), transparent);
}

/* —— Preloader —— */
#preloader {
  transition:
    opacity 0.7s var(--lt-ease),
    visibility 0.7s var(--lt-ease);
}

#preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lt-atom {
  --lt-atom-size: 72px;
  --lt-atom-dot: 6px;
  position: relative;
  width: var(--lt-atom-size);
  height: var(--lt-atom-size);
  color: var(--lt-brand);
  transition: transform 0.55s var(--lt-ease), opacity 0.55s var(--lt-ease);
}

.lt-atom__nucleus,
.lt-atom__orbit,
.lt-atom__path,
.lt-atom__electron {
  position: absolute;
  border-radius: 50%;
}

.lt-atom__nucleus {
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 11px;
  height: 11px;
  margin: -5.5px 0 0 -5.5px;
  background: currentColor;
}

.lt-atom__orbit {
  inset: 0;
  border: 1px solid currentColor;
  opacity: 0.38;
}

.lt-atom__path {
  inset: 0;
  animation: lt-atom-orbit linear infinite;
}

.lt-atom__path--a {
  animation-duration: 2.1s;
}

.lt-atom__path--b {
  animation-duration: 3.5s;
  animation-name: lt-atom-orbit-b;
}

.lt-atom__electron {
  top: calc(var(--lt-atom-dot) / -2);
  left: 50%;
  width: var(--lt-atom-dot);
  height: var(--lt-atom-dot);
  margin-left: calc(var(--lt-atom-dot) / -2);
  background: currentColor;
}

#preloader.is-done .lt-atom {
  transform: scale(0.86);
  opacity: 0;
}

#preloader.is-done .lt-atom__path {
  animation: none;
}

@keyframes lt-atom-orbit {
  to { transform: rotate(360deg); }
}

@keyframes lt-atom-orbit-b {
  from { transform: rotate(180deg); }
  to { transform: rotate(540deg); }
}

/* —— Drawer / overlay —— */
.lt-drawer {
  transform: translateX(100%);
  transition: transform 0.52s var(--lt-ease);
}

.lt-drawer.is-open {
  transform: translateX(0);
}

.lt-overlay {
  backdrop-filter: blur(0px);
  transition: opacity 0.4s var(--lt-ease), backdrop-filter 0.4s var(--lt-ease);
}

.lt-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(6px);
}

.lt-drawer .mobile-menu a,
.lt-drawer .tpoffcanvas__info,
.lt-drawer .tpoffcanvas__social {
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.45s var(--lt-ease), transform 0.45s var(--lt-ease);
}

.lt-drawer.is-open .mobile-menu a,
.lt-drawer.is-open .tpoffcanvas__info,
.lt-drawer.is-open .tpoffcanvas__social {
  opacity: 1;
  transform: none;
}

.lt-drawer.is-open .mobile-menu a:nth-child(1) { transition-delay: 0.08s; }
.lt-drawer.is-open .mobile-menu a:nth-child(2) { transition-delay: 0.12s; }
.lt-drawer.is-open .mobile-menu a:nth-child(3) { transition-delay: 0.16s; }
.lt-drawer.is-open .mobile-menu a:nth-child(4) { transition-delay: 0.2s; }
.lt-drawer.is-open .mobile-menu a:nth-child(5) { transition-delay: 0.24s; }
.lt-drawer.is-open .mobile-menu a:nth-child(6) { transition-delay: 0.28s; }
.lt-drawer.is-open .tpoffcanvas__info { transition-delay: 0.32s; }
.lt-drawer.is-open .tpoffcanvas__social { transition-delay: 0.42s; }

.lt-drawer .mobile-menu a,
.close-btn,
.tpoffcanvas__info-icon a,
.social-icon a {
  transition: background-color 0.3s var(--lt-ease), color 0.3s var(--lt-ease), transform 0.3s var(--lt-ease);
}

.lt-drawer .mobile-menu a:hover {
  transform: translateX(3px);
}

.close-btn:hover,
.tpoffcanvas__info-icon a:hover,
.social-icon a:hover {
  transform: scale(1.04);
}

/* —— Header —— */
.lt-header-shell {
  background-color: var(--lt-header);
  border-color: var(--lt-line);
  transition:
    background-color 0.4s var(--lt-ease),
    border-color 0.4s var(--lt-ease),
    box-shadow 0.4s var(--lt-ease);
}

#header-sticky.lt-scrolled > .lt-header-shell {
  background-color: var(--lt-header-scrolled);
  border-color: var(--lt-line-strong);
  box-shadow: 0 12px 40px rgba(10, 10, 10, 0.06);
}

.lt-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--lt-nav);
  white-space: nowrap;
  transition: color 0.25s var(--lt-ease), background-color 0.25s var(--lt-ease);
}

.lt-nav-link:hover {
  color: var(--lt-fg);
  background: var(--lt-nav-hover);
}

.lt-nav-link[aria-current="page"] {
  color: var(--lt-fg);
  background: var(--lt-nav-hover);
}

.lt-nav-cta {
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  background: var(--lt-brand);
  white-space: nowrap;
  transition: background-color 0.25s var(--lt-ease), transform 0.25s var(--lt-ease);
}

.lt-nav-cta:hover {
  background: #2b63a0;
  color: #fff;
}

.lt-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 36px;
  width: 36px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--lt-line);
  border-radius: 999px;
  background: var(--lt-social-bg);
  font-size: 0;
  font-weight: 600;
  color: var(--lt-fg);
  transition: width 0.35s var(--lt-ease), padding 0.35s var(--lt-ease), border-color 0.3s var(--lt-ease), background-color 0.3s var(--lt-ease);
}

.lt-social img {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.lt-social span {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: 0.01em;
  transition: max-width 0.35s var(--lt-ease), opacity 0.25s var(--lt-ease), margin 0.35s var(--lt-ease);
}

.lt-social:hover {
  width: auto;
  padding: 0 12px 0 10px;
  border-color: var(--lt-line-strong);
}

.lt-social:hover span {
  max-width: 90px;
  opacity: 1;
  margin-left: 6px;
}

.tp-menu-bar {
  transition: background-color 0.3s var(--lt-ease);
}

.tp-menu-bar:hover {
  background-color: var(--lt-brand);
}

@media (max-width: 1279px) {
  .lt-nav-link,
  .lt-nav-cta {
    padding-left: 0.62rem;
    padding-right: 0.62rem;
    font-size: 12.5px;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .lt-nav-link,
  .lt-nav-cta {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 12px;
  }
}

.lt-legal h2 {
  margin-top: 0.35em;
  color: var(--lt-fg);
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.lt-legal h2:first-child {
  margin-top: 0;
}

.lt-legal a {
  color: var(--lt-fg);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lt-legal a:hover {
  color: var(--lt-brand);
}

.lt-legal-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lt-form-status a {
  color: inherit;
}

/* —— Buttons —— */
.tp-btn,
.tp-btn-secondaire {
  position: relative;
  letter-spacing: 0.01em;
  transition:
    background-color 0.3s var(--lt-ease),
    color 0.3s var(--lt-ease),
    border-color 0.3s var(--lt-ease),
    transform 0.25s var(--lt-ease);
}

.tp-btn:hover {
  transform: translateY(-1px);
}

.tp-btn:active,
.tp-btn-secondaire:active {
  transform: scale(0.985);
}

.tp-case-nav-btn,
.footer-scroll button,
.scroll-top {
  transition: border-color 0.3s var(--lt-ease), color 0.3s var(--lt-ease), background-color 0.3s var(--lt-ease), opacity 0.4s var(--lt-ease);
}

.tp-case-nav-btn:hover {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}

.tp-service-item {
  transition: border-color 0.35s var(--lt-ease);
}

.tp-service-item .tp-service-sm-title a,
.tp-service-item .tp-service-item__icon {
  transition: color 0.35s var(--lt-ease);
}

.tp-service-item .tp-service-item__button-link a span {
  display: inline-flex;
  transition: transform 0.35s var(--lt-ease);
}

.tp-service-item:hover .tp-service-sm-title a,
.tp-service-item:hover .tp-service-item__icon {
  color: var(--lt-brand);
}

.tp-service-item:hover .tp-service-item__button-link a span {
  transform: translateX(5px);
}

.tp-case-item__thumb img {
  transition: transform 0.8s var(--lt-ease);
}

.tp-case-item:hover .tp-case-item__thumb img {
  transform: scale(1.045);
}

.tp-footer-widget__list a {
  transition: color 0.25s var(--lt-ease);
}

.lt-drawer .tp-info-wrapper.mb-20 {
  margin-bottom: 1.15rem;
}

.scroll-top:hover {
  border-color: var(--lt-brand);
  color: var(--lt-brand);
}

/* —— Scroll reveals —— */
.lt-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--lt-ease), transform 0.8s var(--lt-ease);
  transition-delay: var(--d, 0ms);
}

.lt-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* —— Hero entrance —— */
.tp-hero .tp-section-subtitle,
.tp-hero .size-text,
.tp-hero__wrapper,
.lt-hero-line {
  opacity: 0;
}

.lt-hero-line {
  display: block;
  transform: translateY(28px);
}

body.is-ready .lt-hero-line {
  animation: lt-rise 1s var(--lt-ease-out) forwards;
}

body.is-ready .lt-hero-line:nth-child(1) { animation-delay: 0.1s; }
body.is-ready .lt-hero-line:nth-child(2) { animation-delay: 0.2s; }
body.is-ready .lt-hero-line:nth-child(3) { animation-delay: 0.3s; }
body.is-ready .lt-hero-line:nth-child(4) { animation-delay: 0.4s; }

body.is-ready .tp-hero .tp-section-subtitle,
body.is-ready .size-text,
body.is-ready .tp-hero__wrapper {
  animation: lt-rise 0.85s var(--lt-ease-out) forwards;
}

body.is-ready .tp-hero .tp-section-subtitle { animation-delay: 0.04s; }
body.is-ready .size-text { animation-delay: 0.5s; }
body.is-ready .tp-hero__wrapper { animation-delay: 0.6s; }

body.is-ready .tp-hero__thumb3 {
  animation: lt-rise-scale 1.05s var(--lt-ease-out) 0.16s both;
}

@keyframes lt-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@keyframes lt-rise-scale {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: none; }
}

.review-wrapper,
.review-wrapper-2 {
  box-shadow: 0 10px 30px rgba(10, 10, 10, 0.06);
}

.review-wrapper {
  animation: lt-float 5.2s ease-in-out infinite;
}

.review-wrapper-2 {
  animation: lt-float 6s ease-in-out infinite reverse;
}

.tp-hero__thumb3-shape-1 {
  animation: lt-orbit 11s ease-in-out infinite;
}

.tp-hero__thumb3-shape-2 {
  animation: lt-orbit 13s ease-in-out infinite reverse;
}

.tp-hero-blue-shape {
  animation: lt-pulse 10s ease-in-out infinite;
}

@keyframes lt-float {
  0%, 100% { transform: translate(-24px, 0); }
  50% { transform: translate(-24px, -8px); }
}

@keyframes lt-orbit {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(6px, -8px); }
}

@keyframes lt-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.service-item-three:hover .tp-service-sm-title a,
.tp-service-item:hover .tp-service-sm-title a {
  color: var(--lt-brand);
}

.tp-service-sm-title a,
.tp-exp-sm-title {
  transition: color 0.3s var(--lt-ease);
}

.logo-container img {
  transition: transform 0.5s var(--lt-ease), opacity 0.5s var(--lt-ease), filter 0.5s var(--lt-ease);
}

.logo-container:hover img {
  transform: scale(1.03);
}

.tp-service-item__button-link a,
.tp-link a {
  transition: color 0.3s var(--lt-ease), transform 0.3s var(--lt-ease);
}

.tp-service-item:hover .tp-service-item__button-link a,
.tp-slider-exp-item:hover .tp-link a {
  transform: translateX(3px);
}

.tp-case-item__thumb {
  isolation: isolate;
}

.tp-case-item__thumb img {
  transition: transform 0.8s var(--lt-ease), filter 0.5s var(--lt-ease);
}

.tp-case-item:hover .tp-case-item__thumb img {
  transform: scale(1.035);
}

.tp-circle-text {
  transition: opacity 0.45s var(--lt-ease);
}

.tp-circle-text a {
  transform: scale(0.92);
  font-weight: 600;
  letter-spacing: -0.02em;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.45s var(--lt-ease);
}

.tp-case-item:hover .tp-circle-text a {
  transform: scale(1);
}

.tp-footer-widget__list a {
  transition: color 0.25s var(--lt-ease);
}

.tp-footer-widget__list a:hover {
  color: #fff;
}

.marque-item span {
  letter-spacing: -0.045em;
}

.tp-testimonial-item__ratting {
  letter-spacing: 0.14em;
  opacity: 0.38;
  font-size: 10px;
}

.tp-hero__thumb3 > img {
  box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.04);
}

.tp-testimonial-item__info-img img,
.tp-slider-exprience__img img {
  box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.06);
}

/* —— Inner pages —— */
.lt-page-hero {
  padding-top: 1.25rem;
  padding-bottom: 3.25rem;
}

.lt-input,
.lt-textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--lt-line-strong);
  background: transparent;
  padding: 0.85rem 0;
  font-size: 0.95rem;
  color: inherit;
  outline: none;
  transition: border-color 0.3s var(--lt-ease);
}

.lt-textarea {
  min-height: 8rem;
  resize: vertical;
}

.lt-input:focus,
.lt-textarea:focus {
  border-color: var(--lt-brand);
}

.counter-item h4 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
}

/* —— Lax IA Lab —— */
.lt-ai {
  --mx: 72%;
  --my: 38%;
}

.lt-ai-glow {
  background:
    radial-gradient(720px circle at var(--mx) var(--my), rgba(52, 117, 186, 0.28), transparent 46%),
    radial-gradient(520px circle at 12% 88%, rgba(52, 117, 186, 0.1), transparent 48%);
  transition: background 0.45s linear;
}

.lt-ai-grid {
  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: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, #000 10%, transparent 72%);
  animation: lt-grid-drift 42s linear infinite;
}

.lt-ai-live {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5aa8ea;
  box-shadow: 0 0 0 0 rgba(90, 168, 234, 0.7);
  animation: lt-ai-ping 2.2s ease-out infinite;
}

@keyframes lt-ai-ping {
  0% { box-shadow: 0 0 0 0 rgba(90, 168, 234, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(90, 168, 234, 0); }
  100% { box-shadow: 0 0 0 0 rgba(90, 168, 234, 0); }
}

.lt-ai-copy .lt-ai-kicker,
.lt-ai-copy h2,
.lt-ai-copy > p,
.lt-ai-cap,
.lt-ai-cta {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.85s var(--lt-ease), transform 0.85s var(--lt-ease);
}

.lt-ai.is-in .lt-ai-copy .lt-ai-kicker { opacity: 1; transform: none; transition-delay: 0.05s; }
.lt-ai.is-in .lt-ai-copy h2 { opacity: 1; transform: none; transition-delay: 0.14s; }
.lt-ai.is-in .lt-ai-copy > p { opacity: 1; transform: none; transition-delay: 0.24s; }
.lt-ai.is-in .lt-ai-cap:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.32s; }
.lt-ai.is-in .lt-ai-cap:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.4s; }
.lt-ai.is-in .lt-ai-cap:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.48s; }
.lt-ai.is-in .lt-ai-cta { opacity: 1; transform: none; transition-delay: 0.56s; }

.lt-ai-cta {
  transition:
    opacity 0.85s var(--lt-ease),
    transform 0.85s var(--lt-ease),
    background-color 0.3s var(--lt-ease),
    color 0.3s var(--lt-ease);
}

.lt-ai-cta:hover {
  background: #3475ba;
  color: #fff;
}

.lt-ai-cta-arrow {
  transition: transform 0.35s var(--lt-ease), background-color 0.3s var(--lt-ease);
}

.lt-ai-cta:hover .lt-ai-cta-arrow {
  transform: translateX(3px);
  background: #fff;
  color: #0a0a0a;
}

.lt-ai-orbit {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 1.1s var(--lt-ease), transform 1.1s var(--lt-ease);
}

.lt-ai.is-in .lt-ai-orbit {
  opacity: 1;
  transform: none;
  transition-delay: 0.18s;
}

.lt-ai-ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lt-ai-ring--mid {
  inset: 20%;
  border-style: dashed;
  border-color: rgba(52, 117, 186, 0.38);
  animation: lt-spin 28s linear infinite;
}

.lt-ai-scan {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: conic-gradient(from 200deg, transparent 0 72%, rgba(52, 117, 186, 0.28) 88%, transparent 100%);
  mask-image: radial-gradient(farthest-side, transparent 66%, #000 67%);
  animation: lt-spin 5.4s linear infinite;
}

.lt-ai-spin {
  position: absolute;
  inset: 8%;
  animation: lt-spin 16s linear infinite;
}

.lt-ai-spin--fast {
  inset: 20%;
  animation-duration: 9s;
  animation-direction: reverse;
}

.lt-ai-node {
  position: absolute;
  top: 0;
  left: 50%;
  width: 11px;
  height: 11px;
  margin-left: -5.5px;
  border-radius: 50%;
  background: #6eb3f0;
  box-shadow: 0 0 0 4px rgba(52, 117, 186, 0.18), 0 0 18px rgba(90, 168, 234, 0.85);
}

.lt-ai-node--opp {
  top: auto;
  bottom: 0;
}

.lt-ai-node--sm {
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08), 0 0 12px rgba(255, 255, 255, 0.45);
}

.lt-ai-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86px;
  height: 86px;
  margin: -43px 0 0 -43px;
  object-fit: contain;
  animation: lt-spin 12s linear infinite;
  filter: drop-shadow(0 0 28px rgba(52, 117, 186, 0.55));
}

.lt-ai-term {
  position: absolute;
  right: 0;
  bottom: 6%;
  width: min(260px, 78%);
  padding: 14px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--lt-ease), transform 0.8s var(--lt-ease);
}

.lt-ai.is-in .lt-ai-term {
  opacity: 1;
  transform: none;
  transition-delay: 0.5s;
}

.lt-ai-term__bar {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lt-ai-term__bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.lt-ai-term__bar span:nth-child(1) { background: #ff5f57; }
.lt-ai-term__bar span:nth-child(2) { background: #febc2e; }
.lt-ai-term__bar span:nth-child(3) { background: #28c840; }

.lt-ai-term__bar em {
  margin-left: 6px;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.38);
}

.lt-ai-prompt {
  color: #6eb3f0;
  margin-right: 6px;
}

.lt-ai-term__line {
  opacity: 0;
  transform: translateY(6px);
}

.lt-ai.is-in .lt-ai-term__line {
  animation: lt-ai-line 0.55s var(--lt-ease) forwards;
}

.lt-ai.is-in .lt-ai-term__line[data-n="1"] { animation-delay: 0.7s; }
.lt-ai.is-in .lt-ai-term__line[data-n="2"] { animation-delay: 1.05s; }
.lt-ai.is-in .lt-ai-term__line[data-n="3"] { animation-delay: 1.4s; }
.lt-ai.is-in .lt-ai-term__line[data-n="4"] { animation-delay: 1.75s; }

@keyframes lt-ai-line {
  to { opacity: 1; transform: none; }
}

.lt-ai-term__ok b {
  font-weight: 600;
  color: #7ddea0;
}

.lt-ai-swap {
  display: inline-block;
  min-width: 4.2em;
  color: #fff;
  transition: opacity 0.28s var(--lt-ease), transform 0.28s var(--lt-ease);
}

.lt-ai-swap.is-out {
  opacity: 0;
  transform: translateY(6px);
}

.lt-ai-ticker {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.lt-ai-ticker .lt-marquee {
  padding: 14px 0;
  animation-duration: 28s;
}

.lt-ai-ticker .lt-marquee span {
  display: inline-block;
  padding: 0 1.6rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.lt-ai-ticker .lt-marquee span::before {
  content: "●";
  margin-right: 1.6rem;
  font-size: 7px;
  color: #3475ba;
  vertical-align: middle;
}

.lt-ai-ticker:hover .lt-marquee {
  animation-play-state: paused;
}

@media (max-width: 640px) {
  .lt-ai-core {
    width: 72px;
    height: 72px;
    margin: -36px 0 0 -36px;
  }

  .lt-ai-term {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .lt-reveal,
  .lt-hero-line,
  .tp-section-subtitle,
  .size-text,
  .tp-hero__wrapper,
  .tp-hero__thumb3,
  .lt-atom,
  .lt-atom__path,
  .lt-ai-copy .lt-ai-kicker,
  .lt-ai-copy h2,
  .lt-ai-copy > p,
  .lt-ai-cap,
  .lt-ai-cta,
  .lt-ai-orbit,
  .lt-ai-term,
  .lt-ai-term__line {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* —— Theme toggle + logos —— */
.lt-logo {
  position: relative;
}

.lt-logo--dark {
  display: none;
}

html[data-theme="dark"] .lt-logo--light {
  display: none;
}

html[data-theme="dark"] .lt-logo--dark {
  display: block;
}

.lt-theme {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--lt-line);
  border-radius: 999px;
  background: var(--lt-social-bg);
  color: var(--lt-fg);
  cursor: pointer;
  overflow: hidden;
  transition:
    background-color 0.3s var(--lt-ease),
    border-color 0.3s var(--lt-ease),
    color 0.3s var(--lt-ease),
    transform 0.25s var(--lt-ease);
}

@media (min-width: 1024px) {
  .lt-theme {
    width: 36px;
    height: 36px;
  }
}

.lt-theme:hover {
  border-color: var(--lt-line-strong);
  transform: scale(1.04);
}

.lt-theme:active {
  transform: scale(0.96);
}

.lt-theme i {
  position: absolute;
  font-size: 13px;
  line-height: 1;
  transition: opacity 0.35s var(--lt-ease), transform 0.45s var(--lt-ease);
}

.lt-theme__sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.lt-theme__moon {
  opacity: 0;
  transform: rotate(-40deg) scale(0.5);
}

html[data-theme="dark"] .lt-theme__sun {
  opacity: 0;
  transform: rotate(40deg) scale(0.5);
}

html[data-theme="dark"] .lt-theme__moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* —— Dark mode —— */
html[data-theme="dark"] {
  --lt-canvas: #08080a;
  --lt-elev: #121216;
  --lt-paper: #0e0e11;
  --lt-fg: #f2f2f4;
  --lt-muted: #9a9aa6;
  --lt-line: rgba(255, 255, 255, 0.08);
  --lt-line-strong: rgba(255, 255, 255, 0.14);
  --lt-header: rgba(12, 12, 15, 0.58);
  --lt-header-scrolled: rgba(12, 12, 15, 0.9);
  --lt-nav: rgba(242, 242, 244, 0.58);
  --lt-nav-hover: rgba(255, 255, 255, 0.06);
  --lt-grid: rgba(255, 255, 255, 0.035);
  --lt-social-bg: rgba(255, 255, 255, 0.05);
  --lt-brand-soft: rgba(52, 117, 186, 0.14);
  color-scheme: dark;
  scrollbar-color: #2c2c34 #08080a;
}

html[data-theme="dark"] ::selection {
  background: rgba(52, 117, 186, 0.38);
  color: #fff;
}

html[data-theme="dark"] .lt-outline {
  -webkit-text-stroke-color: rgba(242, 242, 244, 0.5);
}

html[data-theme="dark"] .lt-header-shell {
  background-color: var(--lt-header) !important;
  border-color: var(--lt-line) !important;
}

html[data-theme="dark"] #header-sticky.lt-scrolled > .lt-header-shell {
  background-color: var(--lt-header-scrolled) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.38);
}

html[data-theme="dark"] .text-ink\/25 {
  color: rgba(242, 242, 244, 0.25) !important;
}

html[data-theme="dark"] .text-ink\/35 {
  color: rgba(242, 242, 244, 0.35) !important;
}

html[data-theme="dark"] body.bg-white,
html[data-theme="dark"] main.bg-white,
html[data-theme="dark"] #preloader.bg-white {
  background-color: var(--lt-canvas) !important;
}

html[data-theme="dark"] .text-ink {
  color: var(--lt-fg) !important;
}

html[data-theme="dark"] .text-ink\/80,
html[data-theme="dark"] .text-ink\/75 {
  color: rgba(242, 242, 244, 0.78) !important;
}

html[data-theme="dark"] .text-ink\/30 {
  color: rgba(242, 242, 244, 0.3) !important;
}

html[data-theme="dark"] .hover\:text-ink:hover {
  color: var(--lt-fg) !important;
}

html[data-theme="dark"] .text-muted {
  color: var(--lt-muted) !important;
}

html[data-theme="dark"] .bg-paper {
  background-color: var(--lt-paper) !important;
}

html[data-theme="dark"] .bg-brand-soft {
  background-color: var(--lt-brand-soft) !important;
}

html[data-theme="dark"] .bg-\[\#f7f7f8\],
html[data-theme="dark"] .tp-case-item__thumb {
  background-color: var(--lt-elev) !important;
}

html[data-theme="dark"] .scroll-top {
  background-color: var(--lt-elev) !important;
  border-color: var(--lt-line) !important;
  color: var(--lt-fg) !important;
}

html[data-theme="dark"] .tp-case-nav-btn {
  border-color: var(--lt-line) !important;
  color: var(--lt-fg) !important;
  background: transparent !important;
}

html[data-theme="dark"] .tp-case-nav-btn:hover {
  background: #fff !important;
  color: #0a0a0a !important;
  border-color: #fff !important;
}

html[data-theme="dark"] .tp-btn-secondaire {
  border-color: var(--lt-line-strong) !important;
  color: var(--lt-fg) !important;
}

html[data-theme="dark"] .tp-btn-secondaire:hover {
  background: #fff !important;
  border-color: #fff !important;
  color: #0a0a0a !important;
}

html[data-theme="dark"] .tp-menu-bar {
  background: #f2f2f4;
  color: #0a0a0a;
}

html[data-theme="dark"] .tp-menu-bar:hover {
  background: var(--lt-brand);
  color: #fff;
}

html[data-theme="dark"] .border-black\/10,
html[data-theme="dark"] .border-black\/\[0\.06\],
html[data-theme="dark"] .border-black\/\[0\.08\],
html[data-theme="dark"] .border-black\/\[0\.04\] {
  border-color: var(--lt-line) !important;
}

html[data-theme="dark"] .hover\:border-ink:hover,
html[data-theme="dark"] .hover\:border-black\/10:hover {
  border-color: var(--lt-fg) !important;
}

html[data-theme="dark"] .hover\:bg-ink:hover {
  background-color: #fff !important;
  color: #0a0a0a !important;
}

html[data-theme="dark"] .bg-white\/85,
html[data-theme="dark"] .review-wrapper,
html[data-theme="dark"] .review-wrapper-2 {
  background-color: rgba(18, 18, 22, 0.82) !important;
  color: var(--lt-fg);
}

html[data-theme="dark"] .shadow-lift {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24), 0 16px 40px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .tp-hero__thumb3 > img,
html[data-theme="dark"] .tp-testimonial-item__info-img img,
html[data-theme="dark"] .tp-slider-exprience__img img {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .lt-ai {
  background: #0b1018;
  box-shadow: inset 0 1px 0 rgba(90, 168, 234, 0.22);
}

html[data-theme="dark"] .lt-ai-cta {
  background: #fff !important;
  color: #0a0a0a !important;
}

html[data-theme="dark"] .lt-ai-cta:hover {
  background: var(--lt-brand) !important;
  color: #fff !important;
}

html[data-theme="dark"] .tp-footer-area.bg-ink {
  background-color: #050506 !important;
}

html[data-theme="dark"] .lt-page-hero.bg-ink {
  background-color: #0a0c12 !important;
}

html[data-theme="dark"] .partner-logo-item img {
  filter: brightness(1.25) grayscale(1);
  opacity: 0.72;
}

html[data-theme="dark"] .partner-logo-item:hover img,
html[data-theme="dark"] .logo-container:hover img {
  filter: none;
  opacity: 1;
}

html[data-theme="dark"] .lt-social img {
  filter: invert(1) brightness(1.15);
}

html[data-theme="dark"] .marque-slider-active,
html[data-theme="dark"] .marque-slider-active-2 {
  color: rgba(242, 242, 244, 0.72) !important;
  border-color: var(--lt-line) !important;
}

html[data-theme="dark"] .bg-white:not(.lt-ai-cta):not(.lt-header-shell) {
  background-color: var(--lt-elev);
}

html[data-theme="dark"] #preloader.bg-white,
html[data-theme="dark"] body.bg-white,
html[data-theme="dark"] main.bg-white {
  background-color: var(--lt-canvas) !important;
}

html[data-theme="dark"] .lt-atom {
  color: #5aa8ea;
}

html[data-theme="dark"] .lt-atom__orbit {
  opacity: 0.5;
}

html[data-theme="dark"] .rounded-\[28px\].bg-white,
html[data-theme="dark"] .rounded-\[32px\].bg-white {
  background-color: var(--lt-elev) !important;
  border: 1px solid var(--lt-line);
}

html[data-theme="dark"] .lt-price-row {
  border-color: var(--lt-line);
}

html[data-theme="dark"] .lt-input::placeholder,
html[data-theme="dark"] .lt-textarea::placeholder {
  color: rgba(242, 242, 244, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .lt-theme i,
  .lt-theme {
    transition: none !important;
  }
}

.lt-faq__item {
  border-top: 1px solid var(--lt-line, rgba(10, 10, 10, 0.08));
  padding: 1.15rem 0;
}

.lt-faq__item:last-child {
  border-bottom: 1px solid var(--lt-line, rgba(10, 10, 10, 0.08));
}

.lt-faq__item summary {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  list-style: none;
}

.lt-faq__item summary::-webkit-details-marker {
  display: none;
}

.lt-faq__item summary::after {
  color: var(--lt-muted, #6b7280);
  content: "+";
  float: right;
  font-weight: 400;
}

.lt-faq__item[open] summary::after {
  content: "–";
}

.lt-faq__item p {
  color: var(--lt-muted, #6b7280);
  line-height: 1.75;
  margin-top: 0.75rem;
  max-width: 62ch;
}

html[data-theme="dark"] .lt-faq {
  border-color: var(--lt-line);
}

html[data-theme="dark"] .lt-faq__item,
html[data-theme="dark"] .lt-faq__item:last-child {
  border-color: var(--lt-line);
}
