/* ==========================================================================
   HYBRID FITNESS — Design System v2
   Palette: Ink black / Electric blue / Steel blue / Off white
   Display: Outfit (rounded geometric) | Body: Inter | Accent: Space Mono
   Signature: soft rounded cards, glow shadows, floating image collage
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Inter:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root{
  --ink:        #05070a;
  --panel:      #0e131b;
  --panel-2:    #151d29;
  --line:       #232e3d;
  --blue:       #2f9bff;
  --blue-2:     #7fc4ff;
  --blue-dim:   #123a5e;
  --white:      #f3f6fa;
  --grey:       #96a1b3;
  --grey-dim:   #5c6577;
  --danger:     #ff5c5c;

  --display: 'Outfit', 'Inter', sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'Space Mono', 'Courier New', monospace;

  --container: 1220px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;
  --ease: cubic-bezier(.16,.84,.44,1);

  --shadow-sm: 0 10px 26px -14px rgba(0,0,0,.6);
  --shadow-md: 0 24px 54px -22px rgba(0,0,0,.65);
  --shadow-glow: 0 0 0 1px rgba(47,155,255,.28), 0 24px 54px -20px rgba(47,155,255,.4);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--ink);
  color:var(--white);
  font-family:var(--body);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family:var(--display); font-weight:700; letter-spacing:-.01em; line-height:1.08; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }

.container{ max-width:var(--container); margin:0 auto; padding:0 28px; }
@media (max-width:480px){ .container{ padding:0 18px; } }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; scroll-behavior:auto !important; }
}

:focus-visible{ outline:2px solid var(--blue-2); outline-offset:3px; border-radius:4px; }

/* ---------- background grid + floating blobs ---------- */
.grid-bg{
  position:fixed; inset:0; z-index:0; pointer-events:none;
  background-image:
    radial-gradient(rgba(47,155,255,.06) 1px, transparent 1px);
  background-size:28px 28px;
  mask-image:radial-gradient(ellipse 80% 50% at 50% 0%, black 15%, transparent 72%);
}
.blob{
  position:absolute; border-radius:50%; filter:blur(70px); pointer-events:none; z-index:0;
  animation:blobFloat 14s ease-in-out infinite;
}
@keyframes blobFloat{
  0%,100%{ transform:translate(0,0) scale(1); }
  33%{ transform:translate(24px,-18px) scale(1.08); }
  66%{ transform:translate(-18px,14px) scale(.96); }
}

/* ---------- eyebrow / tag ---------- */
.tag{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--mono); font-size:11.5px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--blue-2); background:rgba(47,155,255,.1); border:1px solid rgba(47,155,255,.25);
  padding:7px 16px 7px 12px; border-radius:var(--r-pill);
}
.tag::before{ content:''; width:6px; height:6px; border-radius:50%; background:var(--blue-2); box-shadow:0 0 0 3px rgba(127,196,255,.2); }

/* ==========================================================================
   NAV — floating rounded glass bar
   ========================================================================== */
.nav{
  position:fixed; top:18px; left:0; right:0; z-index:100;
  display:flex; justify-content:center;
  transition:top .3s var(--ease);
}
.nav-inner{
  max-width:var(--container); width:calc(100% - 36px); margin:0 auto; padding:0 14px 0 20px;
  height:70px; display:flex; align-items:center; justify-content:space-between;
  background:rgba(13,18,26,.72);
  backdrop-filter:blur(18px) saturate(1.4);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r-pill);
  box-shadow:var(--shadow-sm);
  transition:box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.nav.scrolled .nav-inner{ box-shadow:var(--shadow-md); border-color:rgba(47,155,255,.25); }

.brand{ display:flex; align-items:center; gap:10px; }
.brand-mark{
  height:42px; display:block;
  filter:drop-shadow(0 4px 14px rgba(47,155,255,.5));
  transition:transform .35s var(--ease);
}
.brand:hover .brand-mark{ transform:rotate(-8deg) scale(1.08); }
.brand-text{ font-family:var(--display); font-weight:800; font-size:18px; line-height:1; letter-spacing:-.01em; }
.brand-text span{ color:var(--blue-2); display:block; font-size:18px; }

.nav-links{ display:flex; align-items:center; gap:6px; }
.nav-links a{
  font-size:13.5px; font-weight:600; color:var(--grey); position:relative;
  padding:9px 15px; border-radius:var(--r-pill);
  transition:color .25s var(--ease), background .25s var(--ease);
}
.nav-links a:hover{ color:var(--white); background:rgba(255,255,255,.06); }
.nav-links a.active{ color:#04101f; background:var(--blue-2); }

.nav-cta{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--display); font-weight:700; font-size:13.5px;
  padding:12px 22px; border-radius:var(--r-pill); background:var(--blue); color:#04101f;
  box-shadow:0 10px 24px -8px rgba(47,155,255,.65);
  transition:all .3s var(--ease);
}
.nav-cta:hover{ background:var(--blue-2); transform:translateY(-2px) scale(1.03); box-shadow:0 14px 30px -8px rgba(47,155,255,.85); }

.nav-toggle{
  display:none; background:none; border:0; color:var(--white); font-size:24px;
  width:40px; height:40px; align-items:center; justify-content:center; border-radius:var(--r-sm);
}
.nav-toggle:hover{ background:rgba(255,255,255,.08); }

@media (max-width: 900px){
  .nav-inner{ width:calc(100% - 24px); padding:0 10px 0 18px; }
  .nav-links{
    position:fixed; top:96px; left:12px; right:12px; max-height:calc(100vh - 116px); overflow-y:auto;
    background:rgba(13,18,26,.97); backdrop-filter:blur(20px);
    display:flex; flex-direction:column; justify-content:flex-start; align-items:stretch;
    padding:16px; gap:6px; transform:translateY(-16px) scale(.98); opacity:0; pointer-events:none;
    transition:all .35s var(--ease); border-radius:var(--r-lg); border:1px solid rgba(255,255,255,.08);
    box-shadow:var(--shadow-md);
  }
  .nav-links.open{ transform:translateY(0) scale(1); opacity:1; pointer-events:auto; }
  .nav-links a{ display:block; font-size:16px; padding:14px 16px; }
  .nav-cta{ display:none; }
  .nav-toggle{ display:flex; }
}
@media (max-width:380px){
  .nav-inner{ padding:0 8px 0 14px; height:64px; }
  .brand-mark{ height:42px; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn{
  position:relative; display:inline-flex; align-items:center; gap:10px;
  font-family:var(--display); font-weight:700; font-size:14.5px;
  padding:15px 28px; border-radius:var(--r-pill); border:1px solid transparent;
  transition:all .3s var(--ease); white-space:nowrap; overflow:hidden;
}
.btn-primary{ background:var(--blue); color:#04101f; }
.btn-primary::before{
  content:''; position:absolute; inset:0; border-radius:inherit;
  background:linear-gradient(120deg, transparent 30%, rgba(255,255,255,.5) 50%, transparent 70%);
  background-size:250% 100%; background-position:150% 0; transition:background-position .6s var(--ease);
}
.btn-primary:hover::before{ background-position:-50% 0; }
.btn-primary:hover{ background:var(--blue-2); transform:translateY(-2px) scale(1.02); box-shadow:0 16px 34px -10px rgba(47,155,255,.6); }
.btn-outline{ border-color:var(--line); color:var(--white); background:rgba(255,255,255,.02); }
.btn-outline:hover{ border-color:var(--blue); color:var(--blue-2); background:rgba(47,155,255,.08); transform:translateY(-2px); }
.btn-arrow{ transition:transform .3s var(--ease); }
.btn:hover .btn-arrow{ transform:translateX(4px); }

/* ==========================================================================
   HERO — full-bleed background image slider
   ========================================================================== */
.hero{
  position:relative; min-height:94vh; overflow:hidden;
  display:flex; align-items:center;
}
.hero-slide{
  position:absolute; inset:0; background-size:cover; background-position:center 32%;
  opacity:0; transform:scale(1.06); transition:opacity 1.2s var(--ease), transform 6s linear;
  z-index:0;
}
.hero-slide.active{ opacity:1; transform:scale(1); z-index:1; }
.hero-slide::after{
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(100deg, rgba(4,6,9,.97) 0%, rgba(4,6,9,.94) 40%, rgba(4,6,9,.62) 58%, rgba(4,6,9,.15) 78%, rgba(4,6,9,.4) 100%),
    linear-gradient(0deg, rgba(4,6,9,.85) 0%, rgba(4,6,9,.1) 30%, rgba(4,6,9,.05) 60%, rgba(4,6,9,.55) 100%);
}

.hero-curve{ position:absolute; inset:0; z-index:2; width:100%; height:100%; pointer-events:none; }
.hero-curve path{ filter:drop-shadow(0 0 10px rgba(47,155,255,.65)); }
@media (max-width:1150px){ .hero-curve{ display:none; } }

.hero-content{ position:relative; z-index:3; padding:150px 0 90px; width:100%; }
.hero-slide-text{
  display:none;
}
.hero-slide-text.active{ display:block; }
.hero-eyebrow{ margin-bottom:22px; opacity:0; animation:fadeUp .7s var(--ease) .1s forwards; }
.hero h1{
  font-size:clamp(38px,6.2vw,74px); line-height:1.04; max-width:620px;
}
.hero h1 .line{ display:block; opacity:0; transform:translateY(30px); animation:riseIn .8s var(--ease) forwards; }
.hero h1 .line:nth-child(1){ animation-delay:.05s; }
.hero h1 .line:nth-child(2){ animation-delay:.18s; color:var(--blue-2); }

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

.hero-sub{
  margin:24px 0 36px; max-width:480px; color:var(--grey); font-size:16px; line-height:1.7;
  opacity:0; animation:fadeUp .8s var(--ease) .32s forwards;
}
.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; opacity:0; animation:fadeUp .8s var(--ease) .46s forwards; }
@keyframes fadeUp{ from{ opacity:0; transform:translateY(16px);} to{ opacity:1; transform:translateY(0);} }

.hero-stats{
  display:flex; gap:14px; margin-top:56px; flex-wrap:wrap;
  opacity:0; animation:fadeUp .8s var(--ease) .8s forwards;
}
.hero-stats > div{
  background:rgba(13,18,26,.55); backdrop-filter:blur(10px); border:1px solid rgba(255,255,255,.12); border-radius:var(--r-md);
  padding:16px 22px; transition:all .3s var(--ease);
}
.hero-stats > div:hover{ border-color:var(--blue-dim); background:rgba(47,155,255,.14); transform:translateY(-3px); }
.stat-num{ font-family:var(--display); font-weight:800; font-size:28px; color:var(--white); }
.stat-num span{ color:var(--blue-2); }
.stat-label{ font-family:var(--body); font-size:11.5px; font-weight:600; color:var(--grey); text-transform:uppercase; letter-spacing:.06em; margin-top:2px; }

/* ---- slider controls ---- */
.hero-dots{
  position:absolute; z-index:4; left:50%; bottom:34px; transform:translateX(-50%);
  display:flex; gap:10px;
}
.hero-dot{
  width:34px; height:5px; border-radius:var(--r-pill); background:rgba(255,255,255,.25);
  border:none; padding:0; cursor:pointer; overflow:hidden; position:relative; transition:background .3s var(--ease);
}
.hero-dot::after{
  content:''; position:absolute; inset:0; background:var(--blue-2); border-radius:inherit;
  transform:scaleX(0); transform-origin:left;
}
.hero-dot.active{ background:rgba(255,255,255,.4); }
.hero-dot.active::after{ animation:dotProgress 5.5s linear forwards; }
@keyframes dotProgress{ from{ transform:scaleX(0);} to{ transform:scaleX(1);} }

.hero-arrow{
  position:absolute; z-index:4; top:50%; transform:translateY(-50%);
  width:48px; height:48px; border-radius:50%; background:rgba(13,18,26,.55); backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.15); color:var(--white); font-size:20px;
  display:flex; align-items:center; justify-content:center; transition:all .3s var(--ease);
}
.hero-arrow:hover{ background:var(--blue); color:#04101f; border-color:var(--blue); }
.hero-arrow.prev{ left:24px; }
.hero-arrow.next{ right:24px; }
@media (max-width:760px){ .hero-arrow{ display:none; } }

@media (max-width:760px){
  .hero{ min-height:640px; }
  .hero-content{ padding:118px 0 60px; }
  .hero-dots{ bottom:22px; }
}
@media (max-width:560px){
  .hero-stats{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
  .hero-stats > div:last-child{ grid-column:1 / -1; }
}
@media (max-width:480px){
  .hero-cta, .cta-actions{ flex-direction:column; align-items:stretch; }
  .hero-cta .btn, .cta-actions .btn{ justify-content:center; width:100%; }
}

/* ==========================================================================
   BRUSH HEADLINE + TRUST STRIP
   ========================================================================== */
.brush-section{
  position:relative; padding:70px 0 60px; text-align:center; overflow:hidden;
}
.brush-bar{
  display:inline-block; background:var(--white); color:var(--ink);
  font-family:var(--display); font-weight:800; font-size:clamp(16px,2.2vw,24px);
  padding:12px 32px; border-radius:var(--r-pill);
  box-shadow:var(--shadow-sm);
  opacity:0; animation:fadeUp .7s var(--ease) .05s forwards;
}
.brush-headline{
  margin:24px 0 0; font-size:clamp(38px,7vw,76px); line-height:1;
  opacity:0; animation:fadeUp .8s var(--ease) .2s forwards;
}
.brush-headline .accent{ color:var(--blue-2); }
.swipe-underline{
  width:120px; height:6px; margin:24px auto 0; border-radius:var(--r-pill);
  position:relative; overflow:hidden; background:rgba(47,155,255,.15);
}
.swipe-underline::before{
  content:''; position:absolute; inset:0; background:linear-gradient(90deg, var(--blue), var(--blue-2)); border-radius:inherit;
  transform:scaleX(0); transform-origin:left; animation:swipeIn 1s var(--ease) .6s forwards;
}
@keyframes swipeIn{ to{ transform:scaleX(1); } }

.trust-strip{
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
  margin-top:52px;
}
@media (max-width:900px){ .trust-strip{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .trust-strip{ grid-template-columns:1fr; } }
.trust-item{
  display:flex; align-items:center; gap:14px; padding:20px; text-align:left;
  background:rgba(255,255,255,.03); border:1px solid var(--line); border-radius:var(--r-md);
  transition:all .3s var(--ease);
}
.trust-item:hover{ transform:translateY(-4px); border-color:var(--blue-dim); background:rgba(47,155,255,.06); box-shadow:var(--shadow-sm); }
.trust-badge{
  flex-shrink:0; width:44px; height:44px; border-radius:var(--r-sm);
  background:radial-gradient(circle at 32% 28%, var(--blue-2), var(--blue) 60%, var(--blue-dim));
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 0 4px rgba(47,155,255,.12);
}
.trust-badge svg{ width:20px; height:20px; color:#04101f; }
.trust-text{ line-height:1.3; }
.trust-text .t1{ font-family:var(--body); font-size:10.5px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--grey); }
.trust-text .t2{ font-family:var(--display); font-weight:700; font-size:14.5px; color:var(--white); margin-top:2px; }

/* ==========================================================================
   MARQUEE — scrolling pill chips
   ========================================================================== */
.marquee{ overflow:hidden; padding:26px 0; }
.marquee-track{ display:flex; gap:14px; width:max-content; animation:scroll 32s linear infinite; }
.marquee-track span{
  font-family:var(--display); font-weight:600; font-size:13.5px; color:var(--grey);
  white-space:nowrap; background:var(--panel); border:1px solid var(--line);
  padding:11px 22px; border-radius:var(--r-pill);
}
.marquee-track span b{ color:var(--blue-2); font-weight:700; }
@keyframes scroll{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section{ padding:110px 0; position:relative; z-index:1; }
.section-tight{ padding:80px 0; }
.section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:30px; margin-bottom:56px; flex-wrap:wrap; }
.section-head h2{ font-size:clamp(30px,4vw,48px); line-height:1.08; max-width:640px; }
.section-head h2 em{ font-style:normal; color:var(--blue-2); }
.section-desc{ max-width:340px; color:var(--grey); font-size:14.5px; line-height:1.7; }

.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }

/* ==========================================================================
   CATEGORY CARDS
   ========================================================================== */
.cat-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
.cat-card{
  background:var(--panel); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:30px 24px; position:relative; overflow:hidden; min-height:220px;
  display:flex; flex-direction:column; justify-content:space-between;
  transition:all .35s var(--ease);
}
.cat-card:hover{ background:var(--panel-2); border-color:var(--blue-dim); transform:translateY(-6px); box-shadow:var(--shadow-md); }
.cat-card::before{
  content:attr(data-index); position:absolute; top:18px; right:20px;
  font-family:var(--mono); font-size:11px; color:var(--grey-dim);
}
.cat-icon-wrap{
  width:52px; height:52px; border-radius:var(--r-sm); background:rgba(47,155,255,.1);
  display:flex; align-items:center; justify-content:center; transition:all .35s var(--ease);
}
.cat-card:hover .cat-icon-wrap{ background:var(--blue); }
.cat-icon{ width:26px; height:26px; color:var(--blue-2); transition:color .35s var(--ease); }
.cat-card:hover .cat-icon{ color:#04101f; }
.cat-card h3{ font-size:20px; margin-top:20px; line-height:1.1; font-weight:700; }
.cat-count{ font-family:var(--body); font-weight:600; font-size:11.5px; color:var(--grey); letter-spacing:.03em; margin-top:8px; }
.cat-link{ font-family:var(--display); font-weight:600; font-size:12.5px; color:var(--grey); margin-top:20px; display:inline-flex; align-items:center; gap:6px; transition:color .25s var(--ease), gap .25s var(--ease); }
.cat-card:hover .cat-link{ color:var(--blue-2); gap:10px; }

@media (max-width: 1000px){ .cat-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width: 560px){ .cat-grid{ grid-template-columns:1fr; } }

/* ==========================================================================
   PRODUCT CARDS
   ========================================================================== */
.product-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
@media (max-width:1100px){ .product-grid{ grid-template-columns:repeat(3,1fr);} }
@media (max-width:760px){ .product-grid{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:480px){ .product-grid{ grid-template-columns:1fr;} }

.pcard{
  position:relative; background:var(--panel); border:1px solid var(--line); border-radius:var(--r-lg);
  overflow:hidden; transition:all .35s var(--ease); cursor:pointer;
}
.pcard:hover{ border-color:var(--blue-dim); transform:translateY(-6px); box-shadow:var(--shadow-md); }
.pcard-media{ position:relative; aspect-ratio:1/0.82; overflow:hidden; background:#fff; }
.pcard-media img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.pcard:hover .pcard-media img{ transform:scale(1.08); }
.pcard-tag{
  position:absolute; top:12px; left:12px; background:rgba(13,18,26,.85); backdrop-filter:blur(6px); color:var(--blue-2);
  font-family:var(--display); font-weight:600; font-size:10.5px; text-transform:uppercase;
  padding:5px 12px; border-radius:var(--r-pill);
}
.pcard-body{ padding:18px 18px 20px; }
.pcard-body h4{ font-size:16px; line-height:1.2; margin-bottom:8px; font-weight:700; }
.pcard-spec{ font-family:var(--mono); font-size:11px; color:var(--grey); line-height:1.6; height:36px; overflow:hidden; }
.pcard-foot{ display:flex; justify-content:space-between; align-items:center; margin-top:14px; }
.pcard-view{ font-family:var(--display); font-weight:600; font-size:11.5px; color:var(--blue-2); display:flex; align-items:center; gap:6px; }
.corner{ display:none; }

/* ==========================================================================
   FILTER BAR
   ========================================================================== */
.filter-bar{
  display:flex; gap:14px; flex-wrap:wrap; align-items:center; justify-content:space-between;
  padding:16px; margin-bottom:44px; position:sticky; top:100px; z-index:40;
  background:rgba(13,18,26,.85); backdrop-filter:blur(14px);
  border:1px solid var(--line); border-radius:var(--r-lg); box-shadow:var(--shadow-sm);
}
.filter-pills{ display:flex; gap:8px; flex-wrap:wrap; }
.pill{
  font-family:var(--display); font-weight:600; font-size:13px;
  padding:9px 18px; border:1px solid var(--line); color:var(--grey); border-radius:var(--r-pill);
  transition:all .25s var(--ease); background:transparent;
}
.pill:hover{ color:var(--white); border-color:var(--grey); }
.pill.active{ background:var(--blue); color:#04101f; border-color:var(--blue); }

.search-wrap{ position:relative; }
.search-input{
  background:var(--panel-2); border:1px solid var(--line); color:var(--white); border-radius:var(--r-pill);
  font-family:var(--body); font-size:13.5px; padding:11px 16px 11px 40px; width:220px;
  transition:border-color .25s var(--ease), width .3s var(--ease);
}
.search-input:focus{ outline:none; border-color:var(--blue); width:260px; }
.search-icon{ position:absolute; left:15px; top:50%; transform:translateY(-50%); color:var(--grey); width:15px; height:15px; }

.result-count{ font-family:var(--body); font-weight:600; font-size:12.5px; color:var(--grey-dim); margin:-24px 4px 30px; }
.empty-state{ text-align:center; padding:80px 20px; color:var(--grey); font-family:var(--body); font-size:14px; }

/* ==========================================================================
   MODAL / LIGHTBOX
   ========================================================================== */
.modal-overlay{
  position:fixed; inset:0; background:rgba(4,6,9,.82); backdrop-filter:blur(10px);
  z-index:200; display:flex; align-items:center; justify-content:center; padding:24px;
  opacity:0; pointer-events:none; transition:opacity .3s var(--ease);
}
.modal-overlay.open{ opacity:1; pointer-events:auto; }
.modal{
  background:var(--panel); border:1px solid rgba(255,255,255,.1); max-width:760px; width:100%;
  max-height:88vh; overflow:auto; display:grid; grid-template-columns:1fr 1fr;
  border-radius:var(--r-xl); box-shadow:var(--shadow-md);
  transform:scale(.92) translateY(10px); transition:transform .35s var(--ease); position:relative;
}
.modal-overlay.open .modal{ transform:scale(1) translateY(0); }
.modal-media{ background:#fff; display:flex; align-items:center; justify-content:center; padding:22px; }
.modal-media img{ width:100%; height:100%; object-fit:contain; border-radius:var(--r-md); }
.modal-body{ padding:34px 30px; }
.modal-close{
  position:absolute; top:16px; right:16px; width:36px; height:36px; background:rgba(13,18,26,.9);
  border:1px solid rgba(255,255,255,.12); color:var(--white); font-size:17px; z-index:5; border-radius:50%;
  display:flex; align-items:center; justify-content:center; transition:all .25s var(--ease);
}
.modal-close:hover{ border-color:var(--blue); color:var(--blue-2); transform:rotate(90deg); }
.modal-body h3{ font-size:24px; margin-bottom:6px; font-weight:700; }
.modal-specs{ margin-top:20px; padding-top:18px; border-top:1px solid var(--line); display:flex; flex-direction:column; gap:10px; }
.modal-specs .row{ display:flex; justify-content:space-between; gap:14px; font-family:var(--mono); font-size:12.5px; color:var(--grey); padding-bottom:9px; border-bottom:1px dashed var(--line); }
.modal-specs .row span:last-child{ color:var(--white); text-align:right; }
@media (max-width:640px){ .modal{ grid-template-columns:1fr; border-radius:var(--r-lg); } .modal-media{ aspect-ratio:1/.8; } }

/* ==========================================================================
   ABOUT / SPLIT SECTIONS
   ========================================================================== */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
@media (max-width:900px){ .split{ grid-template-columns:1fr; gap:40px; } }
.split-media{ position:relative; border-radius:var(--r-xl); overflow:hidden; box-shadow:var(--shadow-md); border:1px solid rgba(255,255,255,.08); }
.split-media img{ width:100%; }
.about-list{ margin-top:28px; display:flex; flex-direction:column; gap:12px; }
.about-list li{
  display:flex; gap:16px; padding:18px 20px; align-items:flex-start;
  background:rgba(255,255,255,.02); border:1px solid var(--line); border-radius:var(--r-md);
  transition:all .3s var(--ease);
}
.about-list li:hover{ border-color:var(--blue-dim); background:rgba(47,155,255,.05); transform:translateX(4px); }
.about-num{ font-family:var(--mono); color:var(--blue-2); font-size:13px; padding-top:2px; }
.about-txt h4{ font-size:16px; margin-bottom:6px; font-family:var(--body); font-weight:700; }
.about-txt p{ color:var(--grey); font-size:13.5px; line-height:1.6; }

/* ==========================================================================
   FEATURES
   ========================================================================== */
.feat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
@media (max-width:900px){ .feat-grid{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .feat-grid{ grid-template-columns:1fr;} }
.feat-card{
  background:var(--panel); border:1px solid var(--line); border-radius:var(--r-lg); padding:30px 26px;
  transition:all .3s var(--ease);
}
.feat-card:hover{ transform:translateY(-6px); border-color:var(--blue-dim); box-shadow:var(--shadow-sm); }
.feat-icon-wrap{
  width:48px; height:48px; border-radius:var(--r-sm); background:rgba(47,155,255,.1);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px; transition:background .3s var(--ease);
}
.feat-card:hover .feat-icon-wrap{ background:var(--blue); }
.feat-icon{ width:24px; height:24px; color:var(--blue-2); transition:color .3s var(--ease); }
.feat-card:hover .feat-icon{ color:#04101f; }
.feat-card h4{ font-size:16px; font-family:var(--body); font-weight:700; margin-bottom:8px; }
.feat-card p{ font-size:13px; color:var(--grey); line-height:1.6; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner{ padding:40px 0; position:relative; }
.cta-banner-card{
  position:relative; overflow:hidden; text-align:center; padding:80px 40px;
  border-radius:var(--r-xl); border:1px solid rgba(47,155,255,.25);
  background:linear-gradient(160deg, var(--panel-2), var(--panel));
}
.cta-banner-card::before{
  content:''; position:absolute; inset:0;
  background:linear-gradient(120deg, transparent 40%, rgba(47,155,255,.16) 50%, transparent 60%);
  background-size:220% 220%; animation:sheen 7s linear infinite;
}
@keyframes sheen{ 0%{ background-position:200% 0; } 100%{ background-position:-20% 0; } }
.cta-banner h2{ font-size:clamp(28px,5vw,52px); position:relative; z-index:2; }
.cta-banner p{ color:var(--grey); margin:16px auto 32px; max-width:440px; position:relative; z-index:2; }
.cta-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; position:relative; z-index:2; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer{ padding:70px 0 30px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:50px; }
@media (max-width:800px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .footer-grid{ grid-template-columns:1fr; } }
.footer h5{ font-family:var(--display); font-weight:700; font-size:12.5px; letter-spacing:.05em; text-transform:uppercase; color:var(--grey); margin-bottom:18px; }
.footer-links{ display:flex; flex-direction:column; gap:12px; }
.footer-links a{ font-size:14px; color:var(--grey); transition:color .2s var(--ease); }
.footer-links a:hover{ color:var(--blue-2); }
.footer-about{ color:var(--grey); font-size:13.5px; line-height:1.7; max-width:300px; margin-top:14px; }
.footer-bottom{
  margin-top:60px; padding-top:24px; border-top:1px solid var(--line);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px;
  font-family:var(--body); font-size:12px; color:var(--grey-dim);
}
.gst-chip{ border:1px solid var(--line); padding:7px 14px; color:var(--grey); border-radius:var(--r-pill); }

/* ==========================================================================
   PAGE HEADER (inner pages)
   ========================================================================== */
.page-head{
  padding:150px 0 60px; position:relative; overflow:hidden;
}
.page-head .blob{ width:420px; height:420px; top:-160px; left:-140px; background:radial-gradient(circle, rgba(47,155,255,.22), transparent 68%); }
.breadcrumb{ font-family:var(--body); font-weight:600; font-size:12.5px; color:var(--grey-dim); margin-bottom:18px; }
.breadcrumb span{ color:var(--blue-2); }
.page-head h1{ font-size:clamp(36px,6vw,62px); position:relative; z-index:2; }
.page-head p{ color:var(--grey); max-width:520px; margin-top:20px; font-size:15px; line-height:1.7; position:relative; z-index:2; }

/* ==========================================================================
   ACCESSORIES PAGE
   ========================================================================== */
.acc-chip-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:10px; }
@media (max-width:900px){ .acc-chip-grid{ grid-template-columns:repeat(3,1fr);} }
@media (max-width:520px){ .acc-chip-grid{ grid-template-columns:repeat(2,1fr);} }
.acc-chip{
  background:var(--panel); border:1px solid var(--line); border-radius:var(--r-md);
  padding:20px 14px; text-align:center; font-size:12.5px;
  font-family:var(--body); font-weight:600; color:var(--grey);
  display:flex; align-items:center; justify-content:center; min-height:76px;
  transition:all .25s var(--ease);
}
.acc-chip:hover{ background:rgba(47,155,255,.08); border-color:var(--blue-dim); color:var(--blue-2); transform:translateY(-3px); }

.sheet-gallery{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-top:70px; }
@media (max-width:760px){ .sheet-gallery{ grid-template-columns:1fr; } }
.sheet-item{ border-radius:var(--r-lg); overflow:hidden; cursor:zoom-in; position:relative; border:1px solid var(--line); transition:all .3s var(--ease); }
.sheet-item:hover{ border-color:var(--blue-dim); box-shadow:var(--shadow-md); transform:translateY(-4px); }
.sheet-item img{ width:100%; transition:transform .5s var(--ease); }
.sheet-item:hover img{ transform:scale(1.03); }
.sheet-label{ position:absolute; bottom:0; left:0; right:0; background:linear-gradient(0deg, rgba(5,7,10,.9), transparent); padding:18px; font-family:var(--display); font-weight:600; font-size:12px; text-transform:uppercase; letter-spacing:.04em; color:var(--blue-2); }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:60px; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }
.info-card{
  border:1px solid var(--line); border-radius:var(--r-md); padding:22px; display:flex; gap:16px;
  margin-bottom:14px; background:var(--panel); transition:all .3s var(--ease);
}
.info-card:hover{ border-color:var(--blue-dim); transform:translateX(4px); }
.info-icon{ width:20px; height:20px; color:var(--blue-2); flex-shrink:0; margin-top:2px; }
.info-card h4{ font-size:12.5px; text-transform:uppercase; letter-spacing:.05em; font-family:var(--display); font-weight:600; color:var(--grey); margin-bottom:8px; }
.info-card p{ font-size:15px; line-height:1.6; }
.info-card a{ color:var(--white); transition:color .2s; }
.info-card a:hover{ color:var(--blue-2); }

.form-field{ margin-bottom:20px; }
.form-field label{ display:block; font-family:var(--display); font-weight:600; font-size:12px; letter-spacing:.03em; color:var(--grey); margin-bottom:8px; }
.form-field input, .form-field select, .form-field textarea{
  width:100%; background:var(--panel); border:1px solid var(--line); color:var(--white); border-radius:var(--r-md);
  padding:14px 18px; font-family:var(--body); font-size:14px; transition:all .25s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{ outline:none; border-color:var(--blue); box-shadow:0 0 0 3px rgba(47,155,255,.15); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:520px){ .form-row{ grid-template-columns:1fr; } }
.form-note{ font-size:12px; color:var(--grey-dim); margin-top:14px; }
.toast{
  position:fixed; bottom:28px; right:28px; background:var(--blue); color:#04101f; border-radius:var(--r-md);
  padding:16px 22px; font-family:var(--display); font-weight:700; font-size:13.5px;
  transform:translateY(140%); transition:transform .4s var(--ease); z-index:300; max-width:280px;
  box-shadow:var(--shadow-md);
}
.toast.show{ transform:translateY(0); }

.map-block{ border:1px solid var(--line); border-radius:var(--r-lg); aspect-ratio:16/9; background:var(--panel); position:relative; overflow:hidden; }
.map-block iframe{ width:100%; height:100%; border:0; filter:grayscale(.4) invert(.9) contrast(.9); }

/* ==========================================================================
   MEMBERSHIP PLANS (home teaser + timing cards)
   ========================================================================== */
.plans-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:900px){ .plans-grid{ grid-template-columns:1fr; max-width:420px; margin:0 auto; } }
.plan-card{
  position:relative; background:var(--panel); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:34px 28px; display:flex; flex-direction:column;
  transition:all .3s var(--ease);
}
.plan-card:hover{ border-color:var(--blue-dim); transform:translateY(-6px); box-shadow:var(--shadow-sm); }
.plan-card.featured{ border-color:var(--blue); box-shadow:var(--shadow-glow); }
.plan-ribbon{
  position:absolute; top:18px; right:18px; background:var(--blue); color:#04101f;
  font-family:var(--display); font-weight:700; font-size:10.5px; text-transform:uppercase;
  padding:6px 14px; border-radius:var(--r-pill);
}
.plan-name{ font-family:var(--display); font-weight:600; font-size:13px; letter-spacing:.02em; color:var(--grey); }
.plan-price{ font-family:var(--display); font-weight:800; font-size:42px; color:var(--white); margin-top:14px; line-height:1; }
.plan-price span{ font-family:var(--body); font-weight:600; font-size:13px; color:var(--grey); }
.plan-desc{ color:var(--grey); font-size:13px; margin-top:10px; line-height:1.6; }
.plan-feats{ margin:26px 0; display:flex; flex-direction:column; gap:13px; flex:1; }
.plan-feats li{ display:flex; gap:10px; align-items:flex-start; font-size:13.5px; color:var(--white); }
.plan-feats li svg{ width:16px; height:16px; color:var(--blue-2); flex-shrink:0; margin-top:2px; }
.plan-card .btn{ width:100%; justify-content:center; }

.timing-wrap{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:760px){ .timing-wrap{ grid-template-columns:1fr; } }
.timing-col{ background:var(--panel); border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; transition:all .3s var(--ease); }
.timing-col:hover{ border-color:var(--blue-dim); }
.timing-col-head{ padding:18px 22px; border-bottom:1px solid var(--line); display:flex; align-items:center; gap:10px; background:rgba(47,155,255,.04); }
.timing-col-head svg{ width:18px; height:18px; color:var(--blue-2); }
.timing-col-head span{ font-family:var(--display); font-weight:600; font-size:12.5px; color:var(--grey); }
.timing-row{
  display:flex; justify-content:space-between; padding:15px 22px; border-bottom:1px solid var(--line);
  font-size:13.5px;
}
.timing-row:last-child{ border-bottom:none; }
.timing-day{ color:var(--white); font-weight:600; }
.timing-hrs{ font-family:var(--mono); font-size:12.5px; color:var(--blue-2); }
.timing-row.off .timing-hrs{ color:var(--grey-dim); }

/* ==========================================================================
   TIMINGS & PLANS — dedicated page
   ========================================================================== */
.tp-infobar{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:56px; }
.tp-infobar.tp-infobar-single{ grid-template-columns:1fr; max-width:480px; margin-left:auto; margin-right:auto; }
.tp-infobar.tp-infobar-single .tp-info-item{ text-align:left; justify-content:center; }
@media (max-width:700px){ .tp-infobar{ grid-template-columns:1fr; } }
.tp-info-item{
  background:var(--panel); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:28px 30px; display:flex; align-items:flex-start; gap:18px; transition:all .3s var(--ease);
}
.tp-info-item:hover{ border-color:var(--blue-dim); transform:translateY(-3px); }
.icon-circle{
  flex-shrink:0; width:50px; height:50px; border-radius:var(--r-sm);
  background:radial-gradient(circle at 32% 28%, #ffe27a, #f5b400 65%, #c98d00);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 0 5px rgba(245,180,0,.12);
}
.icon-circle.blue{ background:radial-gradient(circle at 32% 28%, var(--blue-2), var(--blue) 65%, var(--blue-dim)); box-shadow:0 0 0 5px rgba(47,155,255,.14); }
.icon-circle svg{ width:24px; height:24px; color:#1a1200; }
.icon-circle.blue svg{ color:#04101f; }
.tp-info-item h4{ font-family:var(--display); font-weight:700; font-size:16px; margin-bottom:8px; }
.tp-info-item p{ font-size:14px; color:var(--grey); line-height:1.7; }
.tp-info-item p b{ color:var(--white); font-weight:700; }

.tp-plans{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
@media (max-width:1000px){ .tp-plans{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .tp-plans{ grid-template-columns:1fr; max-width:400px; margin:0 auto; } }

.tp-card{
  position:relative; background:var(--panel); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:40px 26px 30px; text-align:center; display:flex; flex-direction:column;
  transition:all .3s var(--ease);
}
.tp-card:hover{ transform:translateY(-6px); border-color:var(--blue-dim); box-shadow:var(--shadow-sm); }
.tp-card.popular{ border-color:var(--blue); box-shadow:var(--shadow-glow); }
.tp-ribbon{
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:linear-gradient(90deg,#ff4d7d,#ff2f6b); color:#fff;
  font-family:var(--display); font-weight:700; font-size:10.5px; text-transform:uppercase;
  padding:7px 18px; border-radius:var(--r-pill); white-space:nowrap;
  box-shadow:0 8px 18px -6px rgba(255,45,100,.6);
}
.tp-plan-name{ font-family:var(--display); font-weight:700; font-size:17px; color:var(--white); }
.tp-price{ font-family:var(--display); font-weight:800; font-size:38px; color:var(--blue-2); margin-top:14px; }
.tp-price span{ font-family:var(--body); font-weight:600; font-size:13px; color:var(--grey); }
.tp-feats{ margin:26px 0; display:flex; flex-direction:column; gap:14px; text-align:left; flex:1; }
.tp-feats li{ display:flex; gap:10px; align-items:flex-start; font-size:13.5px; color:var(--white); }
.tp-feats li svg{ width:16px; height:16px; color:var(--blue-2); flex-shrink:0; margin-top:2px; }
.btn-pill-outline{
  display:block; text-align:center; padding:13px 20px; border:1px solid var(--blue);
  color:var(--blue-2); border-radius:var(--r-pill); font-family:var(--display); font-weight:700; font-size:14px;
  transition:all .25s var(--ease);
}
.btn-pill-outline:hover{ background:var(--blue); color:#04101f; transform:translateY(-2px); }
.btn-diagonal{
  display:block; text-align:center; padding:15px 20px; background:var(--blue); color:#04101f;
  font-family:var(--display); font-weight:700; font-size:14px; border-radius:var(--r-pill);
  transition:all .25s var(--ease); box-shadow:0 10px 24px -8px rgba(47,155,255,.6);
}
.btn-diagonal:hover{ background:var(--blue-2); transform:translateY(-2px); }

.mt-0{ margin-top:0 !important; }

/* ==========================================================================
   RESPONSIVE FINE-TUNING
   ========================================================================== */
@media (max-width:760px){
  .section{ padding:80px 0; }
  .section-tight{ padding:60px 0; }
}
@media (max-width:520px){
  .section{ padding:64px 0; }
  .section-tight{ padding:50px 0; }
  .btn{ padding:13px 22px; font-size:13.5px; }
  .hero-stats{ gap:10px; }
  .hero-stats > div{ padding:12px 16px; }
  .stat-num{ font-size:22px; }
  .cta-banner-card{ padding:56px 22px; }
  .filter-bar{ flex-direction:column; align-items:stretch; }
  .search-wrap, .search-input{ width:100%; }
  .search-input:focus{ width:100%; }
  .tp-price, .plan-price{ font-size:32px; }
}
@media (max-width:380px){
  .brand-text, .brand-text span{ font-size:16px; }
  .hero-dots{ bottom:20px; }
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float{
  position:fixed;
  bottom:25px;
  right:25px;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:center;
  width:60px;
  height:60px;
  background:#25D366;
  border-radius:50%;
  box-shadow:0 8px 24px -6px rgba(37,211,102,.5);
  transition:all .3s var(--ease);
}
.whatsapp-float:hover{
  transform:translateY(-4px) scale(1.05);
  box-shadow:0 12px 32px -8px rgba(37,211,102,.6);
}
.whatsapp-float svg{
  width:32px;
  height:32px;
  fill:#fff;
}
@media (max-width:520px){
  .whatsapp-float{
    width:52px;
    height:52px;
    bottom:20px;
    right:20px;
  }
  .whatsapp-float svg{
    width:28px;
    height:28px;
  }
}
