:root {
/* BASE */
--bg-dark: #0F1115;
--bg-panel:#171A21; 
/* --bg-dark: #0F1115;
--bg-panel: #171A21;  */
--text-primary: #F5F6F8;
 --text-muted: #D8D3D0;

  /* Dual accent instead of one — more advanced/modern than cult.fit */
  --accent-1: #d8234a;   /* warm gold — pops against red */
--accent-2:   #ffffff;   /* electric teal — kept, already contrasts well */
  --gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 96px;

  --radius-sm: 8px;
  --radius-lg: 24px;

  --font-main: 'Poppins', sans-serif;
}

h1 { font-size: clamp(32px, 6vw, 72px); font-weight: 800; line-height: 1.05; }
h2 { font-size: clamp(24px, 4vw, 44px); font-weight: 700; line-height: 1.15; }
p  { font-size: clamp(15px, 1.5vw, 18px); color: var(--text-muted); line-height: 1.6; }
.glass-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
   -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-1);
}

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}
.blob-1 { background: var(--accent-1); top: -100px; left: -100px; }
.blob-2 { background: var(--accent-2); bottom: -100px; right: -100px; }


body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-main);
  margin: 0;
  overflow-x: hidden; /* so blobs don't cause horizontal scroll */
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  backdrop-filter: none;
  border-bottom: none;
  background: linear-gradient(0deg,rgba(255,255,255,0.0) 10%,rgba(0,0,0,0.8) 90%)
  
}
.nav-container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-weight: 800;
  font-size: 20px;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.5px;
}
  .logo-img {
  height: 50px;
  width: auto;
  
}


/* Mobile: hide links by default */
.nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-panel);
  flex-direction: column;
  padding: var(--space-sm);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-links.open { display: flex; }
.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  padding: var(--space-xs) 0;
  font-size: 15px;
}

.nav-actions { display: flex; align-items: center; gap: var(--space-sm); }

.btn-primary {
  background: var(--gradient);
  color: #0F1115;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 14px;
  display: none; /* shown on desktop only, see media query */
}


/* ------------------------------------------------------------ */
/* Services nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: var(--space-xs) 0;
  width: 100%;
  text-align: left;
}
.nav-dropdown-caret {
  font-size: 10px;
  transition: transform 0.25s ease;
  display: inline-block;
}
.nav-dropdown.open .nav-dropdown-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  flex-direction: column;
}
.nav-dropdown.open .nav-dropdown-menu { display: flex; }

.nav-dropdown-menu a {
  padding: 8px 0 8px 16px;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-dropdown-menu a:hover { color: var(--text-primary); }

@media (min-width: 1024px) {
  .nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 12px;
    background: var(--bg-panel);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 8px;
    min-width: 220px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
    z-index: 10;
  }
  .nav-dropdown-menu a {
    padding: 8px 12px;
    border-radius: 6px;
    white-space: nowrap;
  }
  .nav-dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: var(--text-primary); }
}



.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
}

/* Desktop */
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    position: static;
     flex-direction: row;  /*newwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww */
    background: none;
    border: none;
    padding: 0;
    gap: var(--space-md);
  }
  .btn-primary { display: inline-block; }
  .hamburger { display: none; }
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:  center;
  text-align: center;
  overflow: hidden;
   padding-top: 0px;     
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  padding-bottom: var(--space-xl);
  gap: var(--space-xs);
   will-change: opacity, transform;
}
.hero-content {
align-self: center;

/* padding-top: 520px;     */
  z-index: 1;
  max-width: 720px;
  
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: var(--space-sm);
}

.hero-tag-top {
  display: inline-block;
  position: relative;
  margin: 200px auto var(--space-md);
  z-index: 2;
}
.hero h1 {
  color: var(--text-primary);
  margin: var(--space-sm) 0;
  font-size: clamp(18px, 2.2vw, 26px);  /* much smaller — was inheriting huge h1 size */
  font-weight: 600;
  line-height: 1.4;
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto var(--space-md);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  justify-content: center; /* 👈 add this line */
  width: 100%;
}

.btn-secondary {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s ease;
}
.btn-secondary:hover { border-color: var(--accent-2); }

/* Desktop: buttons side by side */
@media (min-width: 768px) {
  .hero-actions { flex-direction: row; }
}

/* Reposition blobs relative to hero */
.hero .blob-1 { top: -50px; left: -50px; }
.hero .blob-2 { bottom: -100px; right: -50px; }

.plans {
  position: relative;
   min-height: 100vh;   /* Increase this */
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}



.plans-video-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  margin-bottom: calc(-100vh - var(--space-xl));
  z-index: 0;
}
.plans-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plans-video-overlay {
  position: absolute;
  inset: 0;
    /* background: linear-gradient(
      to bottom,
      rgba(227,58,52,0.75) 0%,
      rgba(15,17,21,0.85) 100%
    ); */
}

.plans-inner {
  display: block;
  max-width: 1280px;
  margin: 0 auto;
}


.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}
.section-header h2 { margin: var(--space-xs) 0; }

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}



.plan-card {
  text-align: left;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, border-color 0.3s ease;
}

.plan-card::before {   /* newwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww */
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.plan-card:hover::before {
  opacity: 1;
}

.plan-icon {
  font-size: 32px;
  margin-bottom: var(--space-sm);
}

.plan-card h3 {
  color: var(--text-primary);
  font-size: 20px;
  margin: 0 0 var(--space-xs);
}

.plan-card.featured {
  border-color: var(--accent-1);
  background: rgba(255,107,53,0.06);
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: var(--space-sm);
  background: var(--gradient);
  color: #0F1115;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
  .plans-grid { grid-template-columns: 1fr 1fr; }
}

/* Desktop: 4 columns */
@media (min-width: 1024px) {
  .plans-grid { grid-template-columns: repeat(4, 1fr); }
}
/* ,......................................................................................HOW IT WORK */
/* ================================
   LENIS STYLE HOW IT WORKS
================================ */

/* .how-it-works{
    position:relative;
    padding:120px 80px;
} */


.how-it-works{
    position: relative;
    padding:120px 80px;
    overflow:hidden;
    isolation:isolate;
}



/* ================= VIDEO ================= */

.how-video-wrap{
    position:absolute; 
    inset:0;
    z-index:0;
    overflow:hidden;
    pointer-events:none;
}

.how-video{
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.35;
}

.how-video-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(15,17,21,.35),
        rgba(15,17,21,.55)
    );
}




.how-it-works-inner{
    position:relative;
    z-index:2;

    width:min(1400px,92vw);
    margin:auto;

    display:grid;
    grid-template-columns:45% 55%;
    gap:100px;
}

/* LEFT SIDE */

.how-sticky{
    position:relative;
    top:120px;
    align-self:start;
    text-align:left;
    max-width:420px;
    padding-left: 28px;
    border-left: 3px solid var(--accent-1);
    z-index:5;
}

/* RIGHT SIDE */

.steps{
    display:flex;
    flex-direction:column;
    gap:0;
}

.step{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;

    padding-left:40px;
    /* border-left:1px solid rgba(255,255,255,.08); */
}

.step-number{
    font-size:72px;
    font-weight:800;
    color:#ff3b30;
    margin-bottom:15px;
}

.step h3{
    font-size:32px;
    margin-bottom:20px;
}

.step p{
    font-size:20px;
    max-width:500px;
    line-height:1.8;
}

/* Mobile */

@media(max-width: 480px){

    .how-it-works-inner{
        display:block;
    }

    .how-sticky{
        position:relative;
        top:0;
        margin-bottom:80px;
    }

    .step{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

}

/* ............................. */
.stats {
  background: var(--bg-panel);
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg) var(--space-md);
  text-align: center;
}

.stat-number {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;  
  background-clip: text;
  color: transparent;
  margin: 0 0 var(--space-xs);
}

.stat p {
  font-size: 14px;
  margin: 0;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
/* ...................................................... */

/* ...................................................... */

.team {
  position: relative;
  padding: var(--space-xl) var(--space-md);
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

/* Ambient animated glow behind the whole section */
.team::before {
  content: '';
  position: absolute;
  inset: -10%;
  z-index: -1;
  background:
    radial-gradient(420px circle at 15% 20%, rgba(216,35,74,0.16), transparent 60%),
    radial-gradient(480px circle at 85% 80%, rgba(255,255,255,0.06), transparent 60%);
  animation: teamGlowDrift 14s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes teamGlowDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(3%, -4%) scale(1.08); }
  100% { transform: translate(-4%, 3%) scale(1); }
}

.team .section-header .hero-tag {
  animation: teamTagPulse 2.4s ease-in-out infinite;
}

@keyframes teamTagPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(216,35,74,0.35); }
  50% { box-shadow: 0 0 0 6px rgba(216,35,74,0); }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg) var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 640px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 901px) {
  .team-grid { grid-template-columns: repeat(5, 1fr); }
}

.team-card {
  --rx: 0deg;
  --ry: 0deg;
  --float-delay: 0s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Floating circular photo with 3D tilt + spinning gradient ring */
.team-photo-wrap {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: var(--space-sm);
  perspective: 800px;
  animation: teamFloat 4.5s ease-in-out infinite;
  animation-delay: var(--float-delay);
}

@keyframes teamFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.team-photo-inner {
  width: 100%;
  height: 100%;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 0.25s ease;
  transform-style: preserve-3d;
}

/* Spinning conic-gradient ring behind the photo */
.team-photo-inner::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--accent-1), var(--accent-2), var(--accent-1));
  opacity: 0.45;
  filter: blur(1px);
  animation: teamSpin 5s linear infinite;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.team-card:hover .team-photo-inner::before {
  opacity: 1;
  filter: blur(2px);
}

@keyframes teamSpin {
  to { transform: rotate(360deg); }
}

.team-photo {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-panel);
  border: 3px solid var(--bg-dark);
  z-index: 1;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: box-shadow 0.3s ease;
}

.team-card:hover .team-photo {
  box-shadow: 0 14px 34px rgba(216,35,74,0.35);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.18) rotate(3deg);
}

/* Diagonal shine sweep across the photo on hover */
.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-140%);
  transition: transform 0.7s ease;
}

.team-card:hover .team-photo::after {
  transform: translateX(140%);
}

.team-name {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.team-name::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--gradient);
  transition: width 0.35s ease, left 0.35s ease;
}

.team-card:hover .team-name::after {
  width: 100%;
  left: 0;
}

.team-role {
  font-size: 13px;
  color: var(--accent-1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.team-card:hover .team-role {
  color: var(--accent-2);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .team::before,
  .team .section-header .hero-tag,
  .team-photo-wrap,
  .team-photo-inner::before {
    animation: none !important;
  }
}

/* ...................................................... */

.partners {
  padding: var(--space-lg) 0;
  text-align: center;
}

.partners-label {
  color: var(--text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  width: max-content;
  animation: scroll-left 25s linear infinite;
}

.marquee-track img {
  height: 64px;
  width: auto;
  opacity: 1;
  filter: none;
  transition: transform 0.3s ease;
}

.marquee-track img:hover {
  transform: scale(1.08);
}

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

/* .................................................. */
.footer {
  background: var(--bg-panel);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-xl) var(--space-md) var(--space-md);
}

.footer-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  text-align: center;
}




.footer-brand p {
  max-width: 320px;
  margin: var(--space-sm) auto;
  font-size: 14px;
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
}
.footer-socials a {
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 999px;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.footer-socials a:hover {
  border-color: var(--accent-2);
  color: var(--text-primary);
}

.footer-links h4 {
  color: var(--text-primary);
  font-size: 14px;
  margin: 0 0 var(--space-sm);
}
.footer-links a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: var(--space-xs);
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--accent-1); }

.footer-bottom {
  max-width: 1280px;
  margin: var(--space-lg) auto 0;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  margin: 0;
}

/* Tablet: 2-column layout */
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* Desktop: 4-column layout */
@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}



@media (max-width: 900px) {
  .how-it-works-inner {
    display: block;
  }
  .how-sticky {
    position: relative;
    top: 0;
    margin-bottom: var(--space-xl);
  }
  .steps {
    display: block;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }
}


/* .............................................................. */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.05);
  transition: transform 0.4s ease-out;
  will-change: transform;
  filter: saturate(1.15) contrast(1.08) brightness(0.95) sepia(0.08);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    to bottom,
    rgba(227,58,52,0.55) 0%,
    rgba(227,58,52,0.5) 50%,
    rgba(227,58,52,0.75) 100%
  ); */
  mix-blend-mode: multiply;
  z-index: 0;
}
/* ....................... */
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.5) 100%
  );
  z-index: 0;
  pointer-events: none;
}
/* ................................ */
.hero-logo-overlay {
  position: relative;
  top: 10px;              /* distance from top of hero — adjust to taste */
  left: 50%;

  transform: translateX(-50%) scale(0.9);
  width: 100vw;            /* full viewport width, ignores parent's max-width */
  max-width: none;
  z-index: 0;
  opacity: 0;
  margin-top: -200px;  /* RIBBON LOGO UP AND DOWN ADJUST */
  transition: opacity 1.1s ease, transform 1.1s ease;
  pointer-events: none;
}
.hero-logo-overlay.visible {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
/* .................................... */
.sound-toggle {
  position: absolute;
  top: 100px;     /* was: bottom */
  right: var(--space-md);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-primary);
  font-size: 18px;
  cursor: pointer;
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.sound-toggle:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--accent-2);
}
/* .............................. animation */

.scroll-indicator {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-muted);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
/* ........................................................... */

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

/* ........................................... */
.account-icon {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.account-icon:hover { border-color: var(--accent-2); }




.plans, .how-it-works { position: relative; overflow: hidden; }
.plans .blob-1, .how-it-works .blob-1 { top: -80px; left: -100px; opacity: 0.2; }
.plans .blob-2, .how-it-works .blob-2 { bottom: -80px; right: -100px; opacity: 0.15; }

.plan-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.plan-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}
.plan-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-2);
  font-weight: 700;
}

.reveal-up,
.plan-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-up.in-view,
.plan-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}







/* ==========================
   HOW IT WORKS AURORA
========================== */

.how-it-works::before{
    content:"";
    position:absolute;
    inset:-20%;
    z-index:-2;

    background:
    radial-gradient(circle at 20%   30%,
    rgba(216,35,35,.18),
    transparent 45%),

    radial-gradient(circle at 80% 60%,
    rgba(255,255,255,.08),
    transparent 40%),

    radial-gradient(circle at 50% 100%,
    rgba(216,35,35,.15),
    transparent 45%);

    filter:blur(80px);
    animation:auroraMove 18s ease-in-out infinite alternate;
}

.how-it-works::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;

    background:
    radial-gradient(circle at center,
    transparent 0%,
    rgba(15,17,21,.15) 70%,
    rgba(15,17,21,.6) 100%);
}

/* Mobile */
@media (max-width: 767px) { 
 .hero-logo-overlay {
  width: 100vw;
  margin-top: -85px;
  transform: translateX(-50%) scale(1.1);
}

.hero-logo-overlay.visible {
  transform: translateX(-50%) scale(1.1);
}
 
  .logo-img { 
    height: 25px; 
    width: auto; 
  } 

  .hero-actions .btn-primary {
    display: inline-block;
  }

}

@media (max-width: 767px){

  .how-it-works{
      padding:80px 24px;
  }

  .how-it-works-inner{
      display:block;
      width:100%;
  }

  .how-sticky{
      max-width:100%;
      padding-left:18px;
      margin-bottom:50px;
  }

  .step{
      min-height:70vh;
      padding-left:0;
      text-align:center;
      align-items:center;
  }

  .step p{
      max-width:320px;
      margin:auto;
  }

  .step-number{
      font-size:56px;
  }

  .step h3{
      font-size:34px;
  }

}



/* ...................... */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}
/* .......................... */




.services-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 90px var(--space-md) var(--space-md);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

html.services-modal-locked,
body.services-modal-locked {
  overflow: hidden;
  height: 100%;
  overscroll-behavior: none;
}


.services-overlay.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease;
}
.services-overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 8, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.services-mega-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  background: rgba(15, 17, 23, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset, 0 40px 100px -30px rgba(0,0,0,0.8), 0 0 80px -20px rgba(216,35,35,0.15);
  padding: clamp(24px, 3.5vw, 44px);
  transform: translateY(28px) scale(0.96);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.5s ease;
}
.services-overlay.open .services-mega-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.services-overlay-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease;
  z-index: 2;
}
.services-overlay-close:hover { border-color: var(--accent-1); color: var(--text-primary); }

.services-mega-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: var(--space-md);
  /* text-align: center; */
 padding-left: -50px;   /* More space on the left */
  padding-right: 200px;  /* More space on the right */
}
@media (max-width: 699px) {
  .services-mega-top {
    flex-direction: column;
    align-items: center;
  }
  .services-mega-trust {
    transform: translateX(-12px);
    
  }
}
.services-mega-head { max-width: 640px; margin: 0 auto; }
.services-mega-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-1);
  margin-bottom: 10px;
}
.services-mega-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0 0 8px;
}
.services-mega-accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.services-mega-sub { font-size: 14px; margin: 0; color: var(--text-muted); }

.services-mega-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 8px 16px;
  white-space: nowrap;
  flex-shrink: 0;
  padding-left: -200px;   /* More space on the left */
  padding-right: -200px;  /* More space on the right */

}
.services-mega-trust svg { color: var(--accent-1); flex-shrink: 0; }
.services-mega-trust strong { color: var(--text-primary); }

.services-mega-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}
@media (min-width: 700px) { .services-mega-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .services-mega-grid { grid-template-columns: repeat(4, 1fr); } }

.services-mega-card {
  --card-glow: var(--accent-1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 22px 20px;
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(24px);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease,
              opacity 0.5s ease, translate 0.5s ease;
}
.services-overlay.open .services-mega-card {
  opacity: 1;
  transform: translateY(0);
}
.services-mega-grid .services-mega-card:nth-child(1) { transition-delay: 0.05s; }
.services-mega-grid .services-mega-card:nth-child(2) { transition-delay: 0.12s; }
.services-mega-grid .services-mega-card:nth-child(3) { transition-delay: 0.19s; }
.services-mega-grid .services-mega-card:nth-child(4) { transition-delay: 0.26s; }

.services-mega-card[data-glow="pink"]   { --card-glow: #d8234a; }
.services-mega-card[data-glow="cyan"]   { --card-glow: #22d3ee; }
.services-mega-card[data-glow="purple"] { --card-glow: #9b5cff; }
.services-mega-card[data-glow="orange"] { --card-glow: #ff8a3d; }

.services-mega-card:hover {
  border-color: var(--card-glow);
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -20px var(--card-glow);
}

.services-mega-num {
  position: absolute;
  top: 16px;
  left: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--card-glow);
  background: color-mix(in srgb, var(--card-glow) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--card-glow) 40%, transparent);
  border-radius: 8px;
  padding: 3px 9px;
}

.services-mega-icon-wrap {
  position: relative;
  width: 100%;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
}
.services-mega-icon-floor {
  position: absolute;
  bottom: 14px;
  width: 100px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, var(--card-glow) 0%, transparent 72%);
  filter: blur(4px);
  opacity: 0.55;
}
.services-mega-icon {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 18px color-mix(in srgb, var(--card-glow) 55%, transparent));
  transition: transform 0.3s ease;
}
.services-mega-card:hover .services-mega-icon { transform: translateY(-4px) scale(1.08); }

.services-mega-card-headrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.services-mega-card-headrow h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
.services-mega-badge {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--card-glow);
  background: color-mix(in srgb, var(--card-glow) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--card-glow) 35%, transparent);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}

.services-mega-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

.services-mega-features {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.services-mega-features li {
  position: relative;
  padding-left: 24px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.services-mega-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -1px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--card-glow);
  color: #0F1115;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-mega-explore {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-primary);
  border: 1px solid color-mix(in srgb, var(--card-glow) 45%, transparent);
  border-radius: 999px;
  padding: 8px 16px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.services-mega-explore svg { transition: transform 0.25s ease; }
.services-mega-card:hover .services-mega-explore {
  background: var(--card-glow);
  color: #0F1115;
}
.services-mega-card:hover .services-mega-explore svg { transform: translateX(3px); }

.services-mega-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: var(--space-md) 0;
}
.services-mega-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}
@media (min-width: 700px) { .services-mega-footer { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .services-mega-footer { grid-template-columns: repeat(4, 1fr); } }
.services-mega-foot-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.services-mega-foot-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
}
.services-mega-foot-text {
  display: flex;
  flex-direction: column; 
  font-size: 12px;
  color: var(--text-muted);
}
.services-mega-foot-text strong {
  font-size: 13.5px;
  color: var(--text-primary);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .services-overlay, .services-mega-panel, .services-mega-card,
  .services-mega-icon, .services-mega-explore, .services-mega-explore svg {
    transition: none !important;
  }
}







.services-overlay {
  padding: 60px var(--space-md) var(--space-md);   /* was 90px top */
}

.services-mega-icon-wrap {
  height: 68px;   /* was 108px — biggest single space saver, ×4 cards */
  margin-top: 0;  /* was 6px */
}

.services-mega-top {
  padding-bottom: var(--space-sm);   /* was var(--space-md) */
  margin-bottom: var(--space-sm);   /* was var(--space-md) */
}

.services-mega-divider {
  margin: var(--space-sm) 0;   /* was var(--space-md) 0 */
}

.services-mega-card {
  padding: 18px 18px;   /* was 22px 20px */
}






.business-booster-page{
    position:relative;
    height:100vh;
    width:100%;
    overflow:hidden;
    background:#000;
}

.business-content{
    min-height:120vh;
    background:#050505;
    position:relative;
    margin-top:-120px;
    z-index:5;
}

.glass-panel{

    position:sticky;
    top:0;

    width:100%;
    height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        to top,
        rgba(5,5,5,.96),
        rgba(5,5,5,.55),
        rgba(5,5,5,0)
    );

    backdrop-filter:blur(12px);

    border:none;
    border-radius:0;

    transform:none;
    opacity:1;
}

.content-wrapper{

    min-height:600px;

}




.content-layer{
    position:relative;
    z-index:5;

    width:min(1300px,90%);
    margin:0 auto;

    padding:140px 0;
}

.hero-copy{

    max-width:720px;
    margin:0 auto 100px;

    text-align:center;
}

.section-tag{

    display:inline-block;

    padding:8px 18px;

    border-radius:100px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    color:#ff4d6d;

    font-size:.85rem;

    letter-spacing:2px;

    margin-bottom:24px;
}

.hero-copy h2{

    font-size:clamp(3rem,6vw,5rem);

    line-height:1;

    color:white;

    margin-bottom:30px;
}

.hero-copy p{

    color:#9b9b9b;

    font-size:1.15rem;

    line-height:1.8;
}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.feature-card{

    padding:40px;

    border-radius:28px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.08);

    transition:.45s;
}

.feature-card:hover{

    transform:translateY(-12px);

    border-color:#d8234a;

    box-shadow:0 20px 60px rgba(216,35,74,.25);
}

.feature-icon{

    width:60px;
    height:60px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#d8234a;

    color:white;

    margin-bottom:25px;

    font-weight:bold;
}

.feature-card h3{

    color:white;

    margin-bottom:18px;

    font-size:1.5rem;
}

.feature-card p{

    color:#9f9f9f;

    line-height:1.8;
}

/* workout+ */
/* ------------------------------------------------------------ */
/* Scroll Reveal */

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}


/* ------------------------------------------------------------ */
/* Workout Showcase */

.workout-showcase {
  padding: var(--space-xl) var(--space-md);
  max-width: 1280px;
  margin: 0 auto;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}


/* ------------------------------------------------------------ */
/* Showcase Media */

.showcase-image-box {
  aspect-ratio: 4 / 3;

  border-radius: var(--radius-lg);

  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.15);

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.showcase-video {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  border-radius: var(--radius-lg);
}


/* ------------------------------------------------------------ */
/* Showcase Text */

.showcase-copy h2 {
  margin: var(--space-xs) 0;
}

.showcase-copy p {
  margin: 0;
}

.showcase-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-top: var(--space-md);
}

@property --border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.showcase-actions .btn-primary,
.showcase-actions .btn-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--text-primary);
    isolation: isolate;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.showcase-actions .btn-primary::before,
.showcase-actions .btn-secondary::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--border-angle), transparent 0%, var(--accent-1) 15%, transparent 30%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.showcase-actions .btn-primary:hover,
.showcase-actions .btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
}

.showcase-actions .btn-primary:hover::before,
.showcase-actions .btn-secondary:hover::before {
  opacity: 1;
  animation: border-spin 2.2s linear infinite;
}

.showcase-actions .btn-primary,
.showcase-actions .btn-secondary {
  background: #D2042D;
  border-color: #D2042D;
  color: #ffffff;
}

.showcase-actions .btn-primary:hover,
.showcase-actions .btn-secondary:hover {
  background: #B8022A;
  border-color: #B8022A;
}

@keyframes border-spin {
  to {
    --border-angle: 360deg;
  }
}

@media (min-width: 480px) {
  .showcase-actions {
    flex-direction: row;
    align-items: center;
  }
}

/* ------------------------------------------------------------ */
/* Desktop */

@media (min-width: 900px) {

  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

}


/* ------------------------------------------------------------ */
/* Mobile */

@media (max-width: 600px) {

  .workout-showcase {
    padding: var(--space-lg) var(--space-md);
  }

  .showcase-grid {
    gap: var(--space-sm);
  }

  .showcase-image-box {
    aspect-ratio: 16 / 7;
  }

}



/* =============================================================
   ADVERTISE WITH US — combined offers section on the homepage
   (Media Offerings / Software Ads / In-Gym Product Sampling)
   Compact strip layout, sits right after the Sales Kiosk
   features block. Uses the --skx-* tokens (from sales-kiosk.css,
   already loaded on this page) so it matches the section above it.
   ============================================================= */
.dmo-section {
  padding: 90px var(--space-md, 24px);
  background: var(--skx-bg-2);
}
@media (max-width: 760px) { .dmo-section { padding: 64px 18px; } }

.dmo-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dmo-strip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 28px 18px 18px;
  border-radius: var(--skx-radius-lg);
  background: linear-gradient(160deg, rgba(240,246,255,0.05), rgba(240,246,255,0.015));
  border: 1px solid var(--skx-border);
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.dmo-strip::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(58,160,255,0), rgba(58,160,255,0.35), rgba(58,160,255,0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.dmo-strip:hover {
  border-color: rgba(58,160,255,0.35);
  box-shadow: var(--skx-glow-blue);
  transform: translateY(-3px);
}
.dmo-strip:hover::before { opacity: 1; }

.dmo-strip-media {
  position: relative;
  flex-shrink: 0;
  width: 168px;
  aspect-ratio: 4 / 3;
  border-radius: var(--skx-radius-md);
  overflow: hidden;
  border: 1px solid var(--skx-border);
  background: var(--skx-panel);
  box-shadow: 0 16px 32px -18px rgba(0,0,0,0.65);
}
.dmo-strip-media img,
.dmo-strip-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--skx-ease);
}
.dmo-strip:hover .dmo-strip-media img,
.dmo-strip:hover .dmo-strip-media video { transform: scale(1.08); }

.dmo-strip-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5,7,12,0.55) 100%);
  pointer-events: none;
}

.dmo-media-badge {
  position: absolute;
  bottom: 10px; right: 10px;
  z-index: 1;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--skx-accent), var(--skx-accent-4));
  color: var(--skx-ink);
  box-shadow: 0 6px 18px -4px rgba(58,160,255,0.65);
}

@media (max-width: 760px) {
  .dmo-strip-media { width: 120px; }
}
@media (max-width: 560px) {
  .dmo-strip { flex-wrap: wrap; padding: 16px; gap: 16px; }
  .dmo-strip-media { width: 100%; aspect-ratio: 16 / 9; }
}

.dmo-strip-divider {
  flex-shrink: 0;
  align-self: stretch;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--skx-border-soft) 20%, var(--skx-border-soft) 80%, transparent);
}
@media (max-width: 560px) { .dmo-strip-divider { display: none; } }

.dmo-strip-body { flex: 1; min-width: 0; }

.dmo-card-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--skx-mono);
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--skx-accent-soft);
  margin-bottom: 6px;
}
.dmo-card-tag::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--skx-accent);
  box-shadow: 0 0 6px rgba(58,160,255,0.7);
}

.dmo-strip-body h3 {
  font-family: var(--skx-display);
  font-size: 20px;
  color: var(--skx-text);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.dmo-strip-body p {
  color: var(--skx-text-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  max-width: 46ch;
}

.dmo-strip-price {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(58,160,255,0.35);
}
.dmo-strip-price strong {
  font-family: var(--skx-display);
  font-size: 20px;
  font-weight: 600;
  color: #3AA0FF;
  white-space: nowrap;
  line-height: 1;
}
.dmo-strip-price span {
  font-family: var(--skx-font);
  font-size: 11px;
  font-weight: 500;
  color: var(--skx-text-muted);
  white-space: nowrap;
}

@media (max-width: 560px) {
  .dmo-strip-price {
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
    width: 100%;
    justify-content: space-between;
  }
}
/* ============================================================
   WHY IT WORKS — HERO HEAD (badge + heading + kiosk screenshot)
   Added alongside the existing .skx-features-grid cards.
   ============================================================ */

.why-head{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.why-head-copy{
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.why-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.why-badge-dot{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-1);
  box-shadow: 0 0 10px var(--accent-1);
}

.why-head-copy h2{
  margin: 0 0 20px;
}

.why-head-copy p{
  margin: 0;
  max-width: 480px;
}

/* ---- Visual: kiosk device with real screenshot ---- */

.why-head-visual{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 24px;
}

.why-glow{
  position: absolute;
  width: 420px;
  height: 420px;
  right: 10%;
  top: -60px;
  background: radial-gradient(circle, var(--accent-1) 0%, transparent 70%);
  opacity: 0.28;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}

.kiosk-device{
  position: relative;
  z-index: 2;
  width: min(300px, 78vw);
  transition: transform 0.5s ease;
}

.why-head-visual:hover .kiosk-device{
  transform: translateY(-6px);
}

.kiosk-screen{
  position: relative;
  border-radius: 26px;
  border: 6px solid #1a1d24;
  background: #0b0d11;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.05),
    0 0 60px rgba(216,35,74,0.15);
  aspect-ratio: 960 / 1536;
}

.kiosk-screen img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.kiosk-stand{
  width: 10px;
  height: 46px;
  margin: 0 auto;
  background: linear-gradient(180deg, #1a1d24, #0b0d11);
  border-radius: 0 0 4px 4px;
}

.kiosk-base{
  width: 130px;
  height: 14px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent-1), transparent);
  opacity: 0.85;
  filter: blur(1px);
  box-shadow: 0 0 24px 4px var(--accent-1);
}

/* ---- Responsive ---- */

/* Text column keeps the default fade-up (.reveal-up).
   The kiosk screen instead swipes in from the right. */
#features .why-head-visual.reveal-up{
  transform: translateX(90px) !important;
}
#features .why-head-visual.reveal-up.in-view{
  transform: translateX(0) !important;
}

@media (max-width: 900px){
  .why-head{
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
   #features .why-head-visual.reveal-up{
    transform: translateY(28px) !important;
  }
  #features .why-head-visual.reveal-up.in-view{
    transform: translateY(0) !important;
  }
  .why-head-copy{
    max-width: 100%;
    margin: 0 auto;
  }
  .why-head-copy p{ margin: 0 auto; }
  .why-head-visual{ padding-top: 0; }
  .why-glow{ right: 50%; transform: translateX(50%); top: -20px; }
}

@media (max-width: 480px){
  .kiosk-device{ width: min(230px, 70vw); }
  .kiosk-screen{ border-radius: 20px; border-width: 5px; }
}
/* ============================================================
   GOS SHOWCASE — background match to Solution section
   Dark maroon base + subtle red radial glow behind laptop/phone.

   IMPORTANT: both gradients use background-attachment: fixed with
   the EXACT same position/stops. .launch-showcase is 550vh tall, so
   a gradient positioned relative to ITS OWN box (the old approach)
   only looks "lit" near that box's vertical center — by the time
   you scroll to the bottom of it (where .solution begins), the glow
   had already faded back to flat #0c0508. Meanwhile .solution's
   gradient was centered near ITS OWN top, so it started bright again
   right away. Same base color, very different glow intensity right
   at the join — that mismatch is what reads as a hard line.
   Anchoring both to the viewport instead means whatever pixel is on
   screen at the exact handoff moment is identical on both sides, so
   there's nothing to see a seam between — it reads as one page. */
/* The device showcase and solution content live inside this single
   parent section, so the background cannot break between them. */
section.gos-section#showcase {
  background-color: #0c0508 !important;
  background-image: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(210, 4, 45, 0.28), transparent 62%) !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  background-position: center center !important;
}
section.gos-section#showcase .showcase-glow {
  background: radial-gradient(circle, rgba(210, 4, 45, 0.45), rgba(210, 4, 45, 0.12) 45%, transparent 70%) !important;
}

/* Fallback for browsers/contexts where a fixed background inside a
   transformed/perspective ancestor (.showcase-pin has perspective)
   doesn't render as fixed — Chrome and Firefox both handle this fine
   in practice, but if it ever doesn't, both sections still share the
   identical flat #0c0508 base color so there's no color jump either way. */
@supports not (background-attachment: fixed) {
  section.gos-section#showcase {
    background-attachment: scroll !important;
  }
}

/* GSAP ScrollTrigger's pin-spacer for .launch-showcase can leave a
   sub-pixel gap right where it hands off to .solution below it. That
   gap shows the page's default body background (--bg-dark, a
   blue-black) instead of page content, which reads as a hard line
   between the two maroon sections. Matching the body color here
   makes any such seam invisible instead of trying to chase the
   gap itself. */
body {
  background-color: #0c0508 !important;
}


/* ============================================================
   TESTIMONIAL SECTION
   LEFT = THUMBNAILS
   RIGHT = MAIN VIDEO
   ============================================================ */

.testimonials {
    width: min(1280px, 92vw);
    margin: 0 auto;

    padding: 110px 0;

    display: grid;

    /* LEFT + RIGHT */
    grid-template-columns: 540px 400px;

    column-gap: 70px;

    align-items: center;
    justify-content: center;
}


/* ============================================================
   LEFT SIDE
   ============================================================ */

.testimonial-left {
    width: 540px;
}

.testimonial-tag {
    display: inline-block;

    color: #d8234a;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 15px;
}

.testimonial-left h2 {
    margin: 0 0 42px;

    color: #f5f6f8;

    font-size: 40px;

    line-height: 1.04;
    font-weight: 800;
}


/* ============================================================
   THUMBNAILS
   ============================================================ */

.testimonial-grid {
    width: 450px;

    display: grid;

    grid-template-columns:
        repeat(3, 135px);

    gap: 14px;
}


/* Individual card */

.testimonial-thumb {
    position: relative;

    width: 135px;
    height: 240px;

    padding: 0;

    border: 2px solid transparent;

    border-radius: 20px;

    overflow: hidden;

    background: #17191e;

    cursor: pointer;

    transition:
        transform .3s ease,
        border-color .3s ease;
}

.testimonial-thumb:hover {
    transform: translateY(-5px);
}

.testimonial-thumb.active {
    border-color: #d8234a;
}


/* Thumbnail video */

.testimonial-thumb video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* ============================================================
   PLAY ICON
   ============================================================ */

.testimonial-play {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(216, 35, 74, .4);
    /* border: 2px solid rgba(216, 35, 74, .95); */

    color: #fff;

    font-size: 20px;

    padding-left: 2px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .4);

    pointer-events: none;

    transition: transform .25s ease, background .25s ease;
}

.testimonial-thumb:hover .testimonial-play {
    transform:
        translate(-50%, -50%)
        scale(1.12);
}


/* ============================================================
   RIGHT SIDE — MAIN VIDEO
   ============================================================ */

.testimonial-main {
    grid-column: 2;
    grid-row: 1;

    width: 400px;

    position: relative;
    transform: translateY(-10px);
}


/* Glow */

.testimonial-main::before {
    content: "";

    position: absolute;

    inset: -25px;

    background:
        radial-gradient(
            circle,
            rgba(216, 35, 74, .18),
            transparent 65%
        );

    filter: blur(30px);

    z-index: -1;
}


/* Main video */

.testimonial-main video {
    display: block;
align-self: flex-start;
    width: 400px;
    height: 615px;
margin-top: -10%;
    object-fit: cover;

    border-radius: 38px;

    background: #252525;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .45);
        
}



/* ============================================================
   DESKTOP FORCE
   ============================================================ */

@media (min-width: 1051px) {

    .testimonials {
        grid-template-columns: 540px 400px !important;

        display: grid !important;

        align-items: center;
    }

    .testimonial-left {
        grid-column: 1;
        grid-row: 1;
    }

    .testimonial-main {
        grid-column: 2 !important;
        grid-row: 1 !important;

        display: block !important;
    }

}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1050px) and (min-width: 601px) {

    .testimonials {
        grid-template-columns: 1fr 360px;

        column-gap: 35px;
    }

    .testimonial-left {
        width: 100%;
    }

    .testimonial-grid {
        width: 100%;

        grid-template-columns:
            repeat(3, minmax(90px, 125px));
    }

    .testimonial-thumb {
        width: 100%;
        height: auto;

        aspect-ratio: 9 / 16;
    }

    .testimonial-main {
        width: 360px;
    }

    .testimonial-main video {
        width: 360px;
        height: 640px;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 600px) {

    .testimonials {
        width: 90vw;

        display: flex;
        flex-direction: column;

        padding: 80px 0;

        gap: 18px;
    }

    .testimonial-left {
        width: 100%;
    }

    .testimonial-left h2 {
        font-size: 36px;
    }

    .testimonial-grid {
        width: 100%;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 9px;
    }

    .testimonial-thumb {
        width: 100%;
        height: auto;

        aspect-ratio: 9 / 16;

        border-radius: 14px;
    }

    .testimonial-play {
        width: 36px;
        height: 36px;

        font-size: 13px;
    }

    .testimonial-main {
        width: 75vw;
    }

    .testimonial-main video {
        width: 75vw;
        height: auto;

        aspect-ratio: 9 / 16;

        border-radius: 28px;
    }

}

@media (min-width: 1051px) {
    .testimonial-main {
        transform: translateY(40px);
    }
}


/* ============================================================
   MOBILE SWIPE SLIDER
   Hidden by default (desktop + tablet) — only shown under 600px,
   where it replaces the 6-video grid and the single main video.
   ============================================================ */

.testimonial-mobile-slider {
    display: none;
}

@media (max-width: 600px) {

    /* hide the desktop grid + single main video on mobile */
    .testimonial-grid,
    .testimonial-main {
        display: none !important;
    }

    .testimonial-mobile-slider {
        display: block;

        width: 100%;
        margin-top: 6px;
    }

    .testimonial-slide-track {
        display: flex;

        width: 100%;

        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        gap: 16px;

        padding-bottom: 4px;

        /* hide scrollbar */
        scrollbar-width: none;
    }

    .testimonial-slide-track::-webkit-scrollbar {
        display: none;
    }

    .testimonial-slide {
        flex: 0 0 80vw;

        scroll-snap-align: center;
    }

    .testimonial-slide video {
        display: block;

        width: 100%;
        height: auto;

        aspect-ratio: 9 / 16;

        object-fit: cover;

        border-radius: 28px;

        background: #252525;

        box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
    }

    .testimonial-dots {
        display: flex;
        align-items: center;
        justify-content: center;

        gap: 8px;

        margin-top: 18px;
    }

    .testimonial-dot {
        width: 7px;
        height: 7px;

        border-radius: 50%;

        background: rgba(245, 246, 248, .3);

        transition: background .25s ease, transform .25s ease;
    }

    .testimonial-dot.active {
        background: #d8234a;
        transform: scale(1.3);
    }

}

/* ══════════════════════════════════════════════════════════════
   BOOK A DEMO POPUP — Max Animation
   ══════════════════════════════════════════════════════════════ */

.demo-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    visibility: hidden;
    opacity: 0;
    transition: background 0.4s ease, visibility 0s 0.4s, opacity 0.4s ease;
    backdrop-filter: blur(0px);
}

.demo-popup-overlay.active {
    visibility: visible;
    opacity: 1;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    transition: background 0.4s ease, visibility 0s 0s, opacity 0.4s ease;
}

.demo-popup-box {
    position: relative;
    width: 90%;
    max-width: 460px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 24px;
    padding: 40px 32px 32px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    border: 1px solid rgba(216, 35, 74, 0.3);
    box-shadow: 0 0 60px rgba(216, 35, 74, 0.2), 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.3) rotate(-10deg) translateY(100px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.demo-popup-overlay.active .demo-popup-box {
    transform: scale(1) rotate(0deg) translateY(0);
    opacity: 1;
}

.demo-popup-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(216, 35, 74, 0.15), transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: popupGlowSpin 4s linear infinite;
    pointer-events: none;
}

@keyframes popupGlowSpin {
    to { transform: rotate(360deg); }
}

.demo-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    cursor: pointer;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.demo-popup-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.demo-popup-content {
    position: relative;
    z-index: 1;
}

.demo-popup-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d8234a, #ff6b35);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(216, 35, 74, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px 4px rgba(216, 35, 74, 0.3); }
}

.demo-popup-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 12px;
}

.demo-popup-title .accent {
    background: linear-gradient(135deg, #d8234a, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-popup-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 20px;
    line-height: 1.5;
}

.demo-popup-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.demo-popup-perks li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    padding: 6px 0;
    opacity: 0;
    transform: translateX(-20px);
    animation: perkSlideIn 0.5s ease forwards;
}

.demo-popup-overlay.active .demo-popup-perks li:nth-child(1) { animation-delay: 0.3s; }
.demo-popup-overlay.active .demo-popup-perks li:nth-child(2) { animation-delay: 0.45s; }
.demo-popup-overlay.active .demo-popup-perks li:nth-child(3) { animation-delay: 0.6s; }

@keyframes perkSlideIn {
    to { opacity: 1; transform: translateX(0); }
}

.demo-popup-btn {
    display: inline-block;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #d8234a, #ff6b35);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: btnPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}

@keyframes btnPopIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.demo-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(216, 35, 74, 0.4);
}

.demo-popup-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    animation: btnShimmer 2s ease-in-out infinite 1s;
}

@keyframes btnShimmer {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

.demo-popup-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin: 16px 0 0;
}

@media (max-width: 480px) {
    .demo-popup-box {
        padding: 32px 20px 24px;
        border-radius: 20px;
    }
    .demo-popup-title {
        font-size: 22px;
    }
    .demo-popup-desc {
        font-size: 14px;
    }
}