/* =========================================================
   LogicPod — Product Detail Page (product-specific styles only)
   Base reset, header, footer, fonts and shared .hero__btn* are
   provided by ./styles.css (the homepage stylesheet). Only the
   product-page sections live here.
   ========================================================= */

/* ---- Tokens used on this page (safe to redeclare) ---- */
:root {
  --lw-graphite: #171a1d;
  --lw-hairline: #d8dee5;
  --lw-accent: #1f6fae;
  --lw-accent-hover: #155a8a;
  --lw-muted: #6b7280;
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Ghost variant only used on this page */
.lp-hero__btn--ghost {
  background: transparent;
  color: var(--lw-graphite);
  border: 1px solid rgba(23, 26, 29, 0.25);
}
.lp-hero__btn--ghost:hover {
  background: rgba(23, 26, 29, 0.04);
  border-color: rgba(23, 26, 29, 0.55);
}

/* =========================================================
   Hero
   ========================================================= */
.lp-hero {
  position: relative;
  background: #fff;
  /* background-image: url(../assets/product-detail/hero-bg-2.png); */
  background-position: center;
  background-size: cover;
    color: var(--lw-graphite);

  min-height: 88vh;
  display: flex;
  align-items: center;
  /* padding: clamp(72px, 10vh, 120px) 0 clamp(48px, 6vh, 80px); */
}
.lp-hero__inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .lp-hero__inner {
    padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .lp-hero__inner {
    padding: 0 32px;
  }
}
.lp-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
@media (min-width: 1024px) {
  .lp-hero__grid {
    grid-template-columns: 45fr 55fr;
    gap: clamp(48px, 6vw, 96px);
  }
}
.lp-hero__content {
  opacity: 0;
  transform: translateY(16px);
  animation: lpHeroIn 700ms ease 80ms forwards;
}
.lp-hero__eyebrow {
  margin: 0 0 24px;
  color: var(--lw-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lp-hero__title {
  margin: 0 0 28px;
  color: var(--lw-graphite);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.lp-hero__lede {
  margin: 0 0 40px;
  max-width: 560px;
  color: #4b5563;
  color: #000000;
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.7;
}
.lp-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 640px) {
  .lp-hero__actions {
    flex-direction: row;
    gap: 16px;
  }
}
.lp-hero__visual {
  margin: 0;
  width: 100%;
  aspect-ratio: 6/5;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: lpHeroIn 900ms ease 200ms forwards;
}
.lp-hero__image {
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
  filter: drop-shadow(0 40px 50px rgba(23, 26, 29, 0.12));
}
.lp-hero__specs {
  /* margin: clamp(56px, 8vw, 96px) 0 0; */
  padding: 24px 0 0;
  list-style: none;
  border-top: 1px solid var(--lw-hairline);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
}
@media (min-width: 768px) {
  .lp-hero__specs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
}
.lp-hero__specs li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--lw-graphite);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lp-hero__spec-index {
  color: var(--lw-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
}
@media (max-width: 1023px) {
  .lp-hero__content {
    order: 1;
  }
  .lp-hero__visual {
    order: 2;
    aspect-ratio: 5/4;
  }
}
@keyframes lpHeroIn {
  to {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   Overview
   ========================================================= */
.lp-overview {
  background: #fff;
  color: var(--lw-graphite);
  padding: 72px 0;
}
@media (min-width: 768px) {
  .lp-overview {
    padding: 60px 0;
  }
}
@media (min-width: 1024px) {
  .lp-overview {
    padding: 70px 0;
  }
}
.lp-overview__inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .lp-overview__inner {
    padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .lp-overview__inner {
    padding: 0 32px;
  }
}
.lp-overview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}
@media (min-width: 1024px) {
  .lp-overview__grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(56px, 6vw, 96px);
  }
}
.lp-overview__content {
  /* max-width: 560px; */
}
.lp-overview__eyebrow {
  margin: 0 0 28px;
  color: var(--lw-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lp-overview__title {
  margin: 0 0 28px;
  color: var(--lw-graphite);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.lp-overview__lede {
  margin: 0;
  max-width: 520px;
  color: #000000;
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.7;
}
.lp-overview__visual {
  margin: 0 0 0 auto;
  width: 100%;
  /* max-width: 560px; */
  aspect-ratio: 1/1;
}
.lp-overview__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}
@media (max-width: 1023px) {
  .lp-overview__visual {
    margin: 0 auto;
  }
}

/* =========================================================
   Product Experience
   ========================================================= */
.lp-exp {
  background: #fff;
  color: var(--lw-graphite);
  padding: 72px 0;
}
@media (min-width: 768px) {
  .lp-exp {
    padding: 96px 0;
  }
}
@media (min-width: 1024px) {
  .lp-exp {
    padding: 35px 0;
  }
}
.lp-exp__inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .lp-exp__inner {
    padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .lp-exp__inner {
    padding: 0 32px;
  }
}
.lp-exp__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .lp-exp__header {
    grid-template-columns: 1fr 460px;
    gap: 48px;
    align-items: baseline;
  }
}
.lp-exp__eyebrow {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.lp-exp__num {
  color: var(--lw-graphite);
  font-size: 14px;
  font-weight: 500;
}
.lp-exp__divider {
  display: block;
  width: 1px;
  height: 48px;
  background: var(--lw-hairline);
}
.lp-exp__kicker {
  color: var(--lw-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.5;
}
.lp-exp__title {
  margin: 0;
  color: var(--lw-graphite);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.lp-exp__lede {
  margin: 0;
  color: #000000;
  font-size: clamp(15px, 1.1vw, 16px);
  line-height: 1.7;
  max-width: 460px;
}

.lp-exp__stage {
  position: relative;
  background-color: #f5f5f3;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  border-radius: clamp(16px, 1.6vw, 24px);
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  min-height: 480px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .lp-exp__stage {
    grid-template-columns: 200px 1fr 200px;
    gap: 32px;
    align-items: center;
    /* min-height: 640px; */
  }
}

.lp-exp__nav {
  align-self: center;
}
.lp-exp__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 8px;
  overflow-x: auto;
  position: relative;
}
@media (min-width: 1024px) {
  .lp-exp__nav ul {
    flex-direction: column;
    gap: 28px;
    overflow: visible;
  }
  .lp-exp__nav ul::before {
    content: "";
    position: absolute;
    left: 9%;
    top: 15px;
    bottom: 12px;
    width: 1px;
    background: #d6d4ce;
  }
}
.lp-exp__navitem {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  color: #9ca1a6;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.7;
  transition:
    opacity 200ms ease,
    color 200ms ease;
  white-space: nowrap;
}
.lp-exp__navitem:hover {
  opacity: 0.95;
  color: #3f464d;
}
.lp-exp__navitem.is-active {
  opacity: 1;
  color: #17191c;
}
.lp-exp__dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid #bfc2c6;
  background: white;
  transition:
    background 200ms ease,
    border-color 200ms ease;
  flex-shrink: 0;
  z-index: 1;
}
.lp-exp__navitem.is-active .lp-exp__dot {
  background: #17191c;
  border-color: #17191c;
}

.lp-exp__image {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.lp-exp__image:active {
  cursor: grabbing;
}
.lp-exp__img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  max-height: 540px;
  object-fit: contain;
  animation: lpFade 420ms ease;
  pointer-events: none;
  -webkit-user-drag: none;
}
@keyframes lpFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.lp-exp__cue {
  display: none;
  text-align: center;
  align-self: center;
}
@media (min-width: 1024px) {
  .lp-exp__cue {
    display: block;
  }
}
.lp-exp__cuepad {
  position: relative;
  width: 140px;
  height: 60px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  color: #9ca1a6;
}
.lp-exp__arrow {
  position: absolute;
  font-size: 14px;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
}
.lp-exp__arrow--left {
  left: 0;
}
.lp-exp__arrow--right {
  right: 0;
}
.lp-exp__cursor {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: #17191c;
  box-shadow: 0 12px 30px -18px rgba(23, 26, 29, 0.35);
}
.lp-exp__cuetitle {
  margin: 0 0 6px;
  color: #17191c;
  font-size: 14px;
  font-weight: 600;
}
.lp-exp__cuesub {
  margin: 0;
  color: #9ca1a6;
  font-size: 12px;
  line-height: 1.55;
}

.lp-exp__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(24px, 3vw, 36px);
}
.lp-exp__dotbtn {
  appearance: none;
  border: 0;
  padding: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d6d4ce;
  cursor: pointer;
  transition:
    background 200ms ease,
    transform 200ms ease;
}
.lp-exp__dotbtn:hover {
  background: #9ca1a6;
}
.lp-exp__dotbtn.is-active {
  background: #17191c;
  transform: scale(1.15);
}

/* =========================================================
   Why LogicPod
   ========================================================= */
.lp-why {
  background: #fff;
  padding: 6% clamp(20px, 5vw, 56px) 30px ;
}
@media (min-width: 768px) {
  .lp-why {
    padding: 60px clamp(20px, 5vw, 56px)30px;
  }
}
@media (min-width: 1024px) {
  .lp-why {
    padding: 70px clamp(20px, 5vw, 56px) 35px;
  }
}
.lp-why__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (min-width: 1024px) {
  .lp-why__inner {
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
  }
}
.lp-why__media {
  border-radius: clamp(20px, 2.2vw, 28px);
  overflow: hidden;
  background: #f5f5f3;
  /* aspect-ratio: 5/6; */
  position: sticky;
  top: 100px;
}
.lp-why__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-why__content {
  max-width: 600px;
}
.lp-why__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lw-muted);
  margin-bottom: 24px;
}
.lp-why__eyebrowsq {
  width: 7px;
  height: 7px;
  background: var(--lw-graphite);
  display: inline-block;
}
.lp-why__heading {
  font-weight: 600;
  color: var(--lw-graphite);
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 clamp(36px, 4vw, 36px);
  max-width: 560px;
}
.lp-why__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-why__item {
  padding: 22px 0 26px;
  border-top: 1px solid var(--lw-hairline);
}
.lp-why__item:last-child {
  border-bottom: 1px solid #f1f1f1;;
}
.lp-why__title {
  margin: 0 0 10px;
  color: var(--lw-graphite);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.lp-why__body {
  margin: 0;
  color: #2b3038;
  font-size: 16px;
  line-height: 1.7;
  max-width: 460px;
}

/* =========================================================
   Spaces It Fits (slider)
   ========================================================= */
.lp-spaces {
  background: #fff;
  color: var(--lw-graphite);
}
.lp-spaces__inner {
  padding: 60px clamp(24px, 6vw, 96px) 30px;
  max-width: 1600px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .lp-spaces__inner {
    padding: 70px clamp(24px, 6vw, 96px)35px;
  }
}
@media (min-width: 1024px) {
  .lp-spaces__inner {
    padding: 70px clamp(24px, 6vw, 96px) 35px;
  }
}
.lp-spaces__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(20px, 5vw, 30px);
  flex-wrap: wrap;
}
.lp-spaces__intro {
  max-width: 560px;
}
.lp-spaces__heading {
  font-weight: 600;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--lw-graphite);
  margin: 0 0 20px;
}
.lp-spaces__lede {
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.7;
  color: #000000;
  max-width: 560px;
  margin: 0;
}
.lp-spaces__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lp-spaces__btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid var(--lw-hairline);
  background: transparent;
  color: var(--lw-graphite);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 200ms ease,
    color 200ms ease,
    opacity 200ms ease;
}
.lp-spaces__btn:hover:not(:disabled) {
  background: #f3f4f6;
}
.lp-spaces__btn--filled {
  background: var(--lw-accent);
  color: #fff;
  border-color: var(--lw-accent);
}
.lp-spaces__btn--filled:hover:not(:disabled) {
  background: var(--lw-accent-hover);
  border-color: var(--lw-accent-hover);
}
.lp-spaces__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.lp-spaces__counter {
  font-size: 16px;
  margin-left: 12px;
  color: var(--lw-graphite);
}
.lp-spaces__counter-sep,
.lp-spaces__counter-total {
  color: var(--lw-muted);
}
.lp-spaces__viewport {
  overflow: hidden;
  margin: 0 -8px;
  padding: 12px 8px 32px;
}
.lp-spaces__track {
  display: flex;
  gap: 24px;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.lp-spaces__card {
  flex: 0 0 66%;
  /* min-height: 560px; */
  background: #fff;
  border: 1px solid var(--lw-hairline);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 12px 32px -16px rgba(23, 26, 29, 0.1);
  transition:
    box-shadow 300ms ease,
    transform 300ms ease;
    background: linear-gradient(145deg, #ffffff 0%, #e7e7e733 35%, #eaeaea26 70%, #f0f0f0 100%);
/* background: linear-gradient(
  145deg,
  #ffffff 0%,
  #f7f7f5 30%,
  #f0f0ed 65%,
  #e8e8e5 100%
); */
height: auto;


}
/* Swiper integration — no visual change */
#lpSpacesTrack {
  overflow: visible;   /* let cards bleed into viewport as before */
}

.lp-spaces__viewport {
  overflow: hidden;    /* Swiper clips here instead */
}
.lp-spaces__content {
  padding: clamp(40px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.lp-spaces__num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lw-muted);
}
.lp-spaces__title {
  font-weight: 600;
  font-size: clamp(28px, 2.6vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--lw-graphite);
  margin: 0 0 28px;
}
.lp-spaces__divider {
  height: 1px;
  background: var(--lw-hairline);
  margin-bottom: 28px;
  max-width: 320px;
}
.lp-spaces__body {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  color: #2b3038;
  margin: 0;
  max-width: 360px;
}
.lp-spaces__footer {
  font-size: 15px;
  line-height: 1.6;
  color: var(--lw-graphite);
  margin: 0;
  max-width: 320px;
}
.lp-spaces__media {
  position: relative;
  overflow: hidden;
}
.lp-spaces__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-spaces__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(32px, 4vw, 56px);
}
.lp-spaces__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d6d6d2;
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    background 200ms ease,
    transform 200ms ease;
}
.lp-spaces__dot.is-active {
  background: var(--lw-graphite);
  transform: scale(1.15);
}
@media (max-width: 1024px) {
  .lp-spaces__card {
    flex-basis: 92%;
    min-height: 520px;
  }
  .lp-spaces__track {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .lp-spaces__header {
    flex-direction: column;
  }
  .lp-spaces__card {
    flex-basis: 100%;
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .lp-spaces__media {
    aspect-ratio: unset;
    order: -1;
  }
  .lp-spaces__content {
    padding: 18px;
    gap: 0px;
  }
  .lp-spaces__title,
  .lp-spaces__divider
  {
    margin-bottom: 12px;
  }
  .lp-spaces__btn
  {
    width: 34px;
    height: 34px;
  }

}

/* =========================================================
   Technical Specs
   ========================================================= */
.lp-specs {
  background: #fff;
  padding: 0px 0 40;
}
@media (min-width: 768px) {
  .lp-specs {
    padding: 96px 0;
  }
}
@media (min-width: 1024px) {
  .lp-specs {
    padding: 70px 0;
  }
}
.lp-specs__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.lp-specs__header {
  margin-bottom: clamp(16px, 7vw, 36px);
}
.lp-specs__heading {
  font-weight: 600;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--lw-graphite);
  margin: 0 0 20px;
}
.lp-specs__sub {
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.7;
  color: #000000;
  margin: 0;
  max-width: 560px;
}
.lp-specs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.lp-specs__media {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  height: 100%;
}
.lp-specs__media img {
  width: 100%;
  height: auto;
  max-width: 640px;
  object-fit: contain;
  position: sticky;
  top: 80px;
}
.lp-specs__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(24px, 3vw, 48px);
  row-gap: 0;
}
.lp-specs__item {
  padding: clamp(22px, 2.4vw, 32px) 0;
  border-top: 1px solid var(--lw-hairline);
}
.lp-specs__item[data-index="0"],
.lp-specs__item[data-index="1"] {
  border-top: none;
  padding-top: 0;
}
.lp-specs__num {
  font-size: 13px;
  font-weight: 600;
  color: var(--lw-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lp-specs__label {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  color: var(--lw-graphite);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  line-height: 1.25;
}
.lp-specs__value {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  color:#2b3038;
}
@media (max-width: 1024px) {
  .lp-specs__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .lp-specs__media img {
    max-width: 560px;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .lp-specs__list {
    grid-template-columns: 1fr;
  }
  .lp-specs__item {
    border-top: 1px solid var(--lw-hairline);
    padding: 22px 0;
  }
  .lp-specs__item[data-index="0"] {
    border-top: none;
    padding-top: 0;
  }
  .lp-specs__item[data-index="1"] {
    border-top: 1px solid var(--lw-hairline);
    padding-top: 22px;
  }
}

/* =========================================================
   Final CTA
   ========================================================= */
.lp-cta {
  background: #fff;
  padding: 0px 0 40px;
}
@media (min-width: 768px) {
  .lp-cta {
    padding: 0px 0 60;
  }
}
@media (min-width: 1024px) {
  .lp-cta {
    padding:70px 0 70px;
  }
}
.lp-cta__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(12px, 6vw, 32px);
}
.lp-cta__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
}
.lp-cta__headline {
  font-weight: 600;
  font-size: clamp(40px, 5.4vw, 72px);
  font-size: clamp(40px, 5.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--lw-graphite);
  margin: 0;
  text-align: center;
}
/* .lp-cta__headline--left {
  text-align: left;
}
.lp-cta__headline--right {
  text-align: right;
} */
.lp-cta__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(220px, 32vw, 420px);
}
.lp-cta__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.lp-cta__copy {
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.7;
  color: #000000;
  text-align: center;
  max-width: 640px;
  margin: clamp(18px, 6vw, 20px) auto 0;
}
.lp-cta__actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 4vw, 48px);
}
@media (max-width: 900px) {
  .lp-cta__row {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .lp-cta__headline--left,
  .lp-cta__headline--right {
    text-align: center;
  }
  .lp-cta__media {
    width: min(70vw, 320px);
    margin: 0 auto;
    order: 0;
  }
  .lp-cta__headline--left {
    order: -1;
  }
  .lp-cta__headline--right {
    order: 1;
  }
}

/* ==========================================================================
   PRODUCT DETAIL — RESPONSIVE (desktop ≥1200px unchanged)
   Shared across all product detail pages via this stylesheet.
   Heading sizes match home: .section-title 28px / hero title 34px on mobile.
   Breakpoints from 1199px downward.
   ========================================================================== */

@media (max-width: 1199px) {
  .lp-hero {
    min-height: 0;
    padding: 72px 0 48px;
  }

  .lp-hero__title {
    font-size: clamp(40px, 5vw, 64px);
  }

  .lp-overview,
  .lp-exp {
    padding: 56px 0;
  }

  .lp-why {
    padding: 56px clamp(20px, 4vw, 40px) 40px;
  }

  .lp-spaces__inner {
    padding: 56px 24px 40px;
  }

  .lp-cta {
    padding: 56px 0;
  }

  .lp-exp__stage {
    min-height: 420px;
    padding: 28px;
  }

  .lp-why__media {
    position: static;
  }
}

@media (max-width: 991px) {
  .lp-hero {
    padding: 64px 0 40px;
  }

  .lp-hero__inner,
  .lp-overview__inner,
  .lp-exp__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lp-hero__grid {
    gap: 32px;
  }

  .lp-hero__title {
    font-size: clamp(36px, 6vw, 48px);
    margin-bottom: 20px;
    line-height: 1.15;
  }

  .lp-hero__eyebrow {
    margin-bottom: 16px;
  }

  .lp-hero__lede {
    margin-bottom: 28px;
    font-size: 15px;
    max-width: none;
  }

  .lp-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .lp-hero__actions .hero__btn,
  .lp-hero__actions .lp-hero__btn--ghost {
    width: 100%;
  }

  .lp-hero__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
  }

  .lp-hero__specs li {
    font-size: 11px;
    letter-spacing: 0.12em;
    gap: 8px;
  }

  .section-title,
  .lp-overview__title,
  .lp-exp__title,
  .lp-why__heading,
  .lp-spaces__heading,
  .lp-specs__heading,
  .lp-cta__headline {
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.15;
  }

  .lp-overview,
  .lp-exp {
    padding: 48px 0;
  }

  .lp-overview__grid {
    gap: 32px;
  }

  .lp-overview__eyebrow {
    margin-bottom: 16px;
  }

  .lp-overview__title {
    margin-bottom: 16px;
  }

  .lp-overview__lede {
    max-width: none;
    font-size: 15px;
  }

  .lp-exp__header {
    gap: 16px;
    margin-bottom: 28px;
  }

  .lp-exp__lede {
    max-width: none;
    font-size: 15px;
  }

  /* Experience stage: views above-left, image centered, no drag cue */
  .lp-exp__stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 0;
    padding: 24px 16px 28px;
    border-radius: 16px;
    gap: 20px;
  }

  .lp-exp__nav {
    order: 1;
    align-self: flex-start;
    width: auto;
    max-width: 100%;
    margin-left: 4px;
  }

  .lp-exp__nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    overflow: visible;
    padding-bottom: 0;
  }

  .lp-exp__nav ul::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: #d6d4ce;
  }

  .lp-exp__navitem {
    padding: 4px 8px;
    font-size: 14px;
    gap: 12px;
  }

  .lp-exp__image {
    order: 2;
    width: 100%;
    min-height: 240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lp-exp__img {
    max-height: 360px;
    margin: 0 auto;
  }

  .lp-exp__cue {
    display: none !important;
  }

  .lp-exp__dots {
    margin-top: 20px;
  }

  .lp-why {
    padding: 48px 20px 32px;
  }

  .lp-why__inner {
    gap: 32px;
  }

  .lp-why__media {
    border-radius: 16px;
    aspect-ratio: 4 / 5;
  }

  .lp-why__content {
    max-width: none;
  }

  .lp-why__heading {
    margin-bottom: 24px;
    max-width: none;
  }

  .lp-why__body {
    max-width: none;
    font-size: 15px;
  }

  .lp-spaces__inner {
    padding: 48px 20px 32px;
  }

  .lp-spaces__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
  }

  .lp-spaces__intro {
    max-width: none;
  }

  .lp-spaces__lede {
    max-width: none;
    font-size: 15px;
  }

  .lp-spaces__nav {
    align-self: flex-end;
  }

  .lp-specs {
    padding: 48px 0;
  }

  .lp-specs__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lp-specs__header {
    text-align: left;
    margin-bottom: 28px;
  }

  .lp-specs__sub {
    max-width: none;
  }

  .lp-cta {
    padding: 48px 0;
  }

  .lp-cta__copy {
    font-size: 15px;
    max-width: none;
    padding: 0 8px;
  }

  .lp-cta__actions {
    margin-top: 24px;
    padding: 0 20px;
  }

  .lp-cta__actions .hero__btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .lp-hero {
    padding: 56px 0 36px;
  }

  .lp-hero__title {
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .lp-hero__eyebrow,
  .lp-overview__eyebrow {
    font-size: 12px;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
  }

  .lp-hero__lede {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .lp-hero__visual {
    aspect-ratio: 1 / 1;
  }

  .lp-hero__specs {
    padding-top: 20px;
    gap: 14px 12px;
  }

  .section-title,
  .lp-overview__title,
  .lp-exp__title,
  .lp-why__heading,
  .lp-spaces__heading,
  .lp-specs__heading,
  .lp-cta__headline {
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }

  .lp-overview,
  .lp-exp {
    padding: 40px 0;
  }

  .lp-overview__grid,
  .lp-why__inner {
    gap: 24px;
  }

  .lp-overview__title,
  .lp-exp__title {
    margin-bottom: 14px;
  }

  .lp-overview__lede,
  .lp-exp__lede,
  .lp-spaces__lede,
  .lp-why__body,
  .lp-cta__copy {
    font-size: 14px;
    line-height: 1.65;
  }

  .lp-exp__header {
    margin-bottom: 20px;
  }

  .lp-exp__stage {
    padding: 20px 14px 24px;
    border-radius: 14px;
    gap: 16px;
  }

  .lp-exp__nav {
    margin-left: 0;
  }

  .lp-exp__nav ul {
    gap: 12px;
    flex-direction: row;
    overflow:auto;
  }

  .lp-exp__navitem {
    font-size: 13px;
    padding: 2px 6px;
    gap: 10px;
  }

  .lp-exp__dot {
    width: 10px;
    height: 10px;
  }

  .lp-exp__image {
    min-height: 200px;
  }

  .lp-exp__img {
    max-height: 280px;
  }

  .lp-exp__cue {
    display: none !important;
  }

  .lp-why {
    padding: 40px 16px 28px;
  }

  .lp-why__heading {
    margin-bottom: 20px;
  }

  .lp-why__item {
    padding: 18px 0 20px;
  }

  .lp-why__title {
    font-size: 18px;
  }

  .lp-spaces__inner {
    padding: 40px 16px 28px;
  }

  .lp-spaces__heading {
    margin-bottom: 14px;
  }

  .lp-specs {
    padding: 40px 0;
  }

  .lp-specs__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lp-cta {
    padding: 40px 0;
  }

  .lp-cta__media {
    width: min(80vw, 280px);
  }

  .lp-cta__actions {
    padding: 0 16px;
  }
  .lp-exp__header {
    gap: 0px;
  }
}

@media (max-width: 576px) {
  .lp-hero {
    padding: 48px 0 32px;
  }

  .lp-hero__inner,
  .lp-overview__inner,
  .lp-exp__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lp-hero__title {
    font-size: 34px;
  }

  .section-title,
  .lp-overview__title,
  .lp-exp__title,
  .lp-why__heading,
  .lp-spaces__heading,
  .lp-specs__heading,
  .lp-cta__headline {
    font-size: 28px;
  }

  .lp-hero__specs {
    grid-template-columns: 1fr 1fr;
  }

  .lp-hero__specs li span:last-child {
    line-height: 1.35;
  }

  .lp-overview,
  .lp-exp,
  .lp-specs {
    padding: 32px 0;
  }

  .lp-why {
    padding: 32px 16px 24px;
  }

  .lp-spaces__inner {
    padding: 32px 16px 24px;
  }

  .lp-exp__stage {
    padding: 16px 12px 20px;
    border-radius: 12px;
  }

  .lp-exp__img {
    max-height: 240px;
  }

  .lp-exp__cue {
    display: none !important;
  }

  .lp-why__media {
    border-radius: 12px;
  }

  .lp-cta {
    padding: 32px 0;
  }

  .lp-cta__row {
    gap: 20px;
  }

  .lp-cta__actions .hero__btn {
    height: 48px;
    font-size: 14px;
  }
   .lp-cta__headline br{
    display: none;
   }
}

@media (max-width: 360px) {
  .lp-hero__title {
    font-size: 30px;
  }

  .section-title,
  .lp-overview__title,
  .lp-exp__title,
  .lp-why__heading,
  .lp-spaces__heading,
  .lp-specs__heading,
  .lp-cta__headline {
    font-size: 26px;
  }

  .lp-hero__specs {
    grid-template-columns: 1fr;
  }

  .lp-cta__media {
    width: min(85vw, 240px);
  }
}
