/* Brands Logos — Marquee */
.brands {
  overflow: hidden;
  padding: 0 56px 0px;
  background: #f4f6fb;
}

.brands__section-heading {
  margin-bottom: max(3rem, min(1.0356vw + 2.75728rem, 4rem));
}

.brands__inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 28px 0px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.brands__track {
  display: flex;
  width: max-content;
  animation: brandsMarquee 32s linear infinite;
  will-change: transform;
}

.brands__inner:hover .brands__track {
  animation-play-state: paused;
}

.brands__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brands__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
  height: 56px;
}

.brands__logo img {
  display: block;
  height: 100%;
  width: auto;
  max-height: 64px;
  object-fit: contain;
  opacity: 1;
  /* filter: grayscale(1); */
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.brands__logo:hover img {
  opacity: 1;
  filter: grayscale(0);
}

@keyframes brandsMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 860px) {
  .brands {
    padding: 0 24px 40px;
  }

  .brands__logo {
    padding: 0 28px;
    height: 40px;
  }

  .brands__logo img {
    max-height: 30px;
  }

  .brands__track {
    animation-duration: 22s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brands__track {
    animation: none;
  }
}

.arch {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  max-width: 1100px;
  margin-inline: auto;
}

.arch__left {
  display: flex;
  flex-direction: column;
  min-width: 450px;



  .arch__info {
    max-width: 500px;
    height: 100vh;
    display: grid;
    place-items: center;
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    

    h2.header {
      font-size: 42px;
      font-weight: 800;
      letter-spacing: -0.84px;
    }

    p.desc {
      color: rgba(18, 18, 18, 0.8);
      font-size: 18px;
      letter-spacing: -0.54px;
      margin-block: 6px 28px;
      line-height: normal;
      font-family:var(--fi) !important;
    }

    a.link {
      text-decoration: none;
      padding: 16px 18px;
      color: inherit;
      border-radius: 40px;
      display: flex;
      gap: 4px;
      width: fit-content;
      align-items: center;
    }
  }
}

.arch__right {
  flex-shrink: 1;
  height: 100vh;
  width: 100%;
  max-width: 540px;
  /* CSS sticky pins the image column within .arch (the tall left column
     provides the scroll distance). Measurement-free, so it can't float over
     the section above and it survives page navigation / bfcache restores. */
  position: sticky;
  top: 0;
  align-self: flex-start;
  display: flex;
  flex-direction: column;

  .img-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 70%;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    
    
    
    
    
    
    
    

    img {
      /* border: 1px solid red; */
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* Right-align the image inside its column so its right edge is ALWAYS
         flush with the column edge — regardless of how the portrait image
         letterboxes at different viewport heights. This keeps the product
         logo rail (anchored to the same edge) hugging the image on every
         screen size instead of drifting away on taller/shorter screens. */
      object-position: right center !important;
    }
  }
}

/* ---- Product quick-nav: click a dot to jump to a product ---- */
.arch__nav {
  position: absolute;
  right: -225px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 6;
  align-items: end;
  justify-content: end;
}

.arch__nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.arch__nav-ico {
  /* width: 42px; */
  /* height: 42px; */
  border-radius: 13px;
  /* background: #fff; */
  display: grid;
  place-items: center;
  /* flex-shrink: 0; */
  /* border: 1px solid rgba(10, 12, 20, .07); */
  box-shadow: 0 6px 18px -8px rgba(10, 12, 20, .28);
  transition: box-shadow .3s, transform .3s cubic-bezier(.4, 0, .2, 1), border-color .3s;
}

.arch__nav-ico img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.arch__nav-btn:hover .arch__nav-ico {
  transform: translateY(-1px) scale(1.05);
  border-color: rgba(0, 104, 255, .28);
  box-shadow: 0 10px 22px -8px rgba(0, 104, 255, .4);
}

.arch__nav-btn.is-active .arch__nav-ico {
  border-color: #0068ff;
  box-shadow: 0 0 0 3px rgba(0, 104, 255, .18), 0 8px 20px -8px rgba(0, 104, 255, .45);
  transform: scale(1.06);
}

.arch__nav-nm {
  font-family: var(--fh, sans-serif);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: -.01em;
  color: #0a0c14;
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 5px 11px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .3s, transform .3s cubic-bezier(.4, 0, .2, 1), color .3s;
  pointer-events: none;
  box-shadow: 0 6px 16px -6px rgba(10, 12, 20, .25);
}

.arch__nav-btn:hover .arch__nav-nm,
.arch__nav-btn.is-active .arch__nav-nm {
  opacity: 1;
  transform: none;
}

.arch__nav-btn.is-active .arch__nav-nm {
  color: #0068ff;
}

@media (max-width: 900px) {
  .arch {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .arch {
    flex-direction: column;
    gap: 20px;
  }

  .arch__left,
  .arch__right {
    display: contents;
  }

  .arch__right {
    height: auto;
    max-width: 100%;
  }

  .arch__right .img-wrapper {
    position: static;
    transform: none;
    height: 360px;
    width: 100%;
    margin-bottom: 20px;
  }

  .arch__right .img-wrapper img {
    object-fit: cover;
    object-position: right center !important;
  }

  .arch__left .arch__info {
    height: auto;
    padding: 20px 0;
  }

  .arch__info .content {
    max-width: 100%;
    min-width: 0;
  }

  .arch__info .cards {
    grid-template-columns: 1fr;
  }

  .arch__info .btn {
    width: 100%;
    justify-content: center;
  }

  .arch__nav {
    display: none;
  }
}

@media (max-width: 560px) {
  .arch {
    gap: 12px;
  }

  .container {
    padding: 10px;
  }

  .arch__right .img-wrapper {
    border-radius: 10px;
    height: 280px;
  }
}

.wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  width: 100%;
  align-items: center;
  z-index: 2;
}

/* .left {
  max-width: 678px;
} */

.title {
  font-size: clamp(48px, 8.5vw, 60px);
  font-weight: 900;
  /* line-height:.9; */
  /* letter-spacing:-4px; */
  overflow: hidden;
}

.Recoveryline {
  display: block;
  overflow: hidden;
}

.Recoveryline span {
  display: block;
  transform: translateY(100%);
}

.script-wrap {
  overflow: hidden;
  margin-top: 10px;
  display: inline;
}

.script {
  font-family: var(--fi);
  /* font-style: normal; */
  /* font-size: 3vw; */
  /* color: #858585; */
  line-height: 1.5;
  transform: translateY(110%);
  /* font-weight: 400; */
}

.desc {
  margin-top: 25px;
  max-width: 768px;
  font-size: 18px;
  line-height: 1.5;
  color: #666;
  opacity: 1 !important;
  transform: translateY(30px);
  /* font-family:var(--fi) !important; */
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.RecoveryCard {
  border-top: 1px solid rgba(0, 0, 0, .12);
  padding-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  opacity: 0;
  transform: translateX(150px);
}

.num {
  font-size: clamp(48px, 8.5vw, 60px);
  font-weight: 900;
  display: flex;
  align-items: flex-end;
  line-height: 1;
}

.unit {
  font-size: 20px;
  color: #999;
  margin-left: 8px;
  padding-bottom: 8px;
  font-weight: 400;
}

.info {
  text-align: right;
}

.info h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.info p {
  color: #8f8f8f;
  margin-bottom: 0;
}

.compare-section {
  min-height: 80vh;
  padding: 56px 56px 0px;
  position: relative;
}

.section-tag {
  letter-spacing: 4px;
  font-size: 11px;
  color: #999;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hero-heading {
  font-size: clamp(50px, 7vw, 110px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 100px;
}

.hero-heading em {
  font-style: italic;
  font-weight: 400;
  color: #6d6d75;
}

.compare-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.divider-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 0;
  background: #d8d8d8;
  transform: translateX(-50%);
}

.compare-panel {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, .75);
  padding: 35px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .05);
}

.card-label {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.before {
  background: #ffe7e3;
  color: #ca5b4e;
}

.after {
  background: #e9f1ff;
  color: #3274ff;
}

.compare-item {
  display: flex;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  align-items: flex-start;
  transition: .4s ease;
  will-change: transform, opacity;
}

.compare-item:hover {
  padding-left: 20px;
  background: #fff;
  border-radius: 14px;
}

.compare-icon {
  font-size: 18px;
  min-width: 25px;
}

.bad {
  color: #c44;
}

.good {
  color: #4b8f62;
}

.compare-content {
  color: #555;
  line-height: 1.6;
}

.glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 120, 255, .12), transparent);
  top: -200px;
  left: 30%;
  filter: blur(100px);
  z-index: -1;
}

@media(max-width:900px) {
  .compare-wrap {
    grid-template-columns: 1fr;
  }

  .divider-line {
    display: none;
  }

  .hero-heading {
    margin-bottom: 60px;
  }
}

.aihero-section {
  height: 80vh;
  padding: 0 56px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, .04), transparent 35%), linear-gradient(180deg, #000, #050505);
  color: #fff;
}


/* texture */
.aihero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 70px, rgba(255, 255, 255, .02) 71px);
  opacity: .4;
}

/* moving beam */
.aihero-section::after {
  content: "";
  position: absolute;
  left: -30%;
  top: 0;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .03), transparent);
  filter: blur(60px);
  transform: skewX(-20deg);
  animation: aiheroSweep 10s linear infinite;
}

@keyframes aiheroSweep {

  0% {
    left: -30%;
  }

  100% {
    left: 130%;
  }

}

/* .aihero-noise {
  position: absolute;
  inset: 0;
  background: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: .03;
  pointer-events: none;
} */

.aihero-glow {

  position: absolute;

  right: 10%;
  top: 50%;

  width: 650px;
  height: 650px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(255, 255, 255, .05),
      transparent 65%);

  filter: blur(100px);

}


/* layout */

.aihero-wrap {

  /* max-width: 1450px; */

  width: 100%;

  display: grid;

  grid-template-columns: 1fr 1fr;

  /* gap: 130px; */

  position: relative;

  z-index: 5;

  align-items: center;
}


/* left */

.aihero-mini {

  font-size: 11px;

  letter-spacing: 4px;

  color: #7a7a7a;

  margin-bottom: 30px;

}

.aihero-dot {

  width: 8px;
  height: 8px;

  display: inline-block;

  border-radius: 50%;

  background: white;

  margin-right: 12px;

  animation: aiheroPulse 1.5s infinite;

}

@keyframes aiheroPulse {

  100% {

    transform: scale(2);

    opacity: 0;

  }

}

.aihero-title {

  font-size: 88px;
  line-height: .95;
  font-weight: 800;
  margin-bottom: 35px;

}

.aihero-line {

  display: block;
  overflow: hidden;

}

.aihero-line span {

  display: block;

}

/* .aihero-italic {
  font-style: normal;
  font-weight: 500;
} */

.aihero-desc {

  font-size: 18px;
  line-height: 1.7;
  color: #8c8c8c;
font-family: var(--fh);
  max-width: 550px;

  margin-bottom: 40px;

}


.aihero-badges {

  display: flex;
  gap: 15px;
  flex-wrap: wrap;

}

.aihero-badge {

  padding: 10px 14px;

  font-size: 10px;

  letter-spacing: 1.5px;

  border: 1px solid rgba(255, 255, 255, .08);

  background: rgba(255, 255, 255, .02);

  backdrop-filter: blur(30px);

  border-radius: 8px;

  font-weight: 200;
}


/* right */

.aihero-ui {

  transform-style: preserve-3d;

}

.aihero-box {
  border: 1px solid rgba(255, 255, 255, .07);
  background: rgba(255, 255, 255, .02);
  backdrop-filter: blur(40px);
  overflow: hidden;
}

.aihero-item {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  opacity: 0;
  transform: translateY(80px);
}

.aihero-role {
  font-size: 10px;
  letter-spacing: 1px;
  color: #8a8a8a;
  margin-bottom: 5px;
}

.aihero-text {
  font-size: 15px;
  line-height: 1.5;
  color: #d4d4d4;
  font-family: var(--fh);
}

.aihero-green {
  color: #0a58ca;
  font-weight: 600;
}

.aihero-cursor {
  display: inline-block;
  width: 2px;
  height: 28px;
  background: #fff;
  margin-left: 5px;
  animation: aiheroBlink .8s infinite;
}

@keyframes aiheroBlink {
  50% {
    opacity: 0;
  }
}

@media(max-width:991px) {
  .aihero-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .aihero-title {
    font-size: 52px;
  }

  .aihero-desc {
    font-size: 18px;
  }
}


/* Animation */

.animation {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  z-index: 1;
  isolation: isolate;
}

/* Section heading sits absolutely at top-0 of .animation.
   Layer it above the laptop while it's visible; the GSAP master
   timeline fades it up/out as the lid opens. pointer-events:none
   keeps the laptop/widgets clickable through the heading area. */
.animation > h2 {
  z-index: 3;
  pointer-events: none;
  will-change: transform, opacity;
  width: 100%;
  /* text-align: center; */
  margin: 0;
}

/* Keep the AI Agents and Stats sections above the laptop section's pinned overlay */
.aihero-section,
.stats-section {
  position: relative;
  z-index: 2;
}

.widgets {
  position: absolute;
  width: 180px;
  scale: 0;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 6px 20px rgb(0 0 0 / 8%);
  /* filter: drop-shadow(1px 4px 2px #00000026); */
  /* filter: drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff) drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff) drop-shadow(1px 4px 2px #00000026); */
}

.laptop {
  position: relative;
  width: 900px;
  height: 550px;
  perspective: 2500px;
  transform-style: preserve-3d;
}

.screen-cover {
  position: absolute;
  width: 701px;
  height: 500px;
  left: 98px;
  bottom: 113px;
  background: #1a1a1a;
  border-radius: 22px;
  transform-origin: bottom center;
  transform-style: preserve-3d;
  transform: rotateX(-90deg);
  border: 2px solid #444;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .7);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.lid-back {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #cfcfcf, #8f8f8f);
  border-radius: 22px;
  border: 2px solid #9a9a9a;
  box-sizing: border-box;
  transform: rotateY(180deg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, .15);
}

.lid-back::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e8e8e8, #7a7a7a);
  opacity: .35;
}

.screen {
  position: absolute;
  inset: 15px;
  border-radius: 12px;
  overflow: hidden;
  background: #1c1d1c;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  object-position: bottom;
}

.base {
  position: absolute;
  width: 860px;
  height: 28px;
  left: 20px;
  bottom: 45px;
  background: linear-gradient(to bottom,
      #d9d9d9,
      #b5b5b5 40%,
      #7d7d7d);
  border-radius: 0 0 35px 35px;
  /* border:1px solid #8d8d8d; */
  box-shadow:
    0 15px 35px rgba(0, 0, 0, .35),
    inset 0 -3px 8px rgba(255, 255, 255, .4);
}

/* front lip */
.base::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 6px;
  bottom: -1px;
  border-radius: 0 0 12px 12px;
  background: #999;
}

/* keyboard area */
.base::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 2px;
  transform: translateX(-50%);
  width: 92%;
  height: 18px;
  border-radius: 10px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, .4),
      rgba(0, 0, 0, .05));
}


/* ------ TelemetryCard -------------*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #0d6efd;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #16a34a;
  border-radius: 50%;
}

.main {
  margin-bottom: 20px;
}

.label {
  font-size: 14px;
  margin-bottom: 6px;
}

.big {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}

.metrics {
  display: flex;
  gap: 14px;
}

.metric {
  flex: 1;
  padding: 16px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
}

.metric p {
  font-size: 12px;
  margin-bottom: 8px;
}

.metric h3 {
  font-size: 24px;
  margin: 0;
}


.stat-row {
  display: flex;
  gap: 20px;
  margin: 10px 0 10px;
}

.stat .v {
  /* font-family: var(--font-display); */
  font-weight: 500;
  font-size: 24px;
  background: linear-gradient(120deg, var(--pp-blue), #7CA8FF);
}

.stat .k {
  font-size: 12.5px;
  color: var(--pp-mute);
  margin-top: 6px;
  font-family: var(--font-body);
  letter-spacing: .05em;
}

.stat+.stat {
  border-left: 1px solid #ccc;
  padding-left: 34px;
}

@media (max-width: 600px) {
  .stat-row { gap: 12px; flex-wrap: nowrap }
  .stat { min-width: 0; flex: 1 1 0 }
  .stat .v { font-size: clamp(17px, 5vw, 22px); white-space: normal; overflow-wrap: anywhere; line-height: 1.1 }
  .stat .k { font-size: 11px; letter-spacing: .03em }
  .stat+.stat { padding-left: 12px }
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0;
}

.cap {
  border: 1px solid var(--pp-line);
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(180deg, #FBFCFF, #F4F7FE);
  transition: .25s;
  box-shadow: 3px 2px 4px #c4daffb0;
}

.cap:hover {
  transform: translateY(-3px);
  border-color: #C9D6FF;
  box-shadow: 0 18px 30px -20px var(--pp-glow);
}

.cap .ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #3D7BFF, #0B3BD6);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 17px;
}
.cap-bot {
  background: linear-gradient(180deg, #FBFCFF, #fcfef4);
  box-shadow: 3px 2px 4px #59b33254;
}

.cap-cv {
  background: linear-gradient(180deg, #FBFCFF, #fef4fb);
  box-shadow: 3px 2px 4px #ffc4dbb0;
}