/* ==========================================================================
   Zahir Khan | Elite Personal Fitness Coach
   Custom styles (works alongside Tailwind Play CDN utilities)
   ========================================================================== */

:root {
  --zk-black: #050505;
  --zk-dark: #121212;
  --zk-gray: #1e1e1e;
  --zk-green: #ccff00;
  --zk-muted: #9ca3af;
  --zk-muted-soft: rgba(156, 163, 175, 0.82);
  --zk-white-soft: rgba(255, 255, 255, 0.92);
  --zk-border-whisper: rgba(255, 255, 255, 0.04);
  --zk-green-whisper: rgba(204, 255, 0, 0.55);
  --zk-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --zk-ease-in-out: cubic-bezier(0.45, 0, 0.15, 1);
  --wa-green: #075e54;
  --wa-green-hover: #128c7e;
}

html { scroll-behavior: smooth; scroll-padding-top: calc(4.5rem + env(safe-area-inset-top, 0px)); color-scheme: dark; }
body {
  background-color: var(--zk-black);
  color: #fff;
  overflow-x: hidden;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.font-heading { font-family: Poppins, system-ui, -apple-system, sans-serif; }
@media (max-width: 1023px) { body { padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px)); } }
body.menu-open { overflow: hidden; touch-action: none; }
::selection { background-color: var(--zk-green); color: var(--zk-black); }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--zk-green);
  color: var(--zk-black);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0.25rem;
}
.skip-link:focus {
  top: 1rem;
}

@media (max-width: 1023px) {
  .hero-cinematic .stat-card.glass-panel,
  .hero-cinematic .hero-stat {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed; top: 0; left: 0; width: 0%; height: 2px;
  background-color: var(--zk-green); z-index: 9999;
  box-shadow: 0 0 6px rgba(204, 255, 0, 0.35);
  transition: width 0.15s var(--zk-ease-out);
}

/* Glassmorphism */
.glass-panel {
  background: rgba(14, 14, 14, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--zk-border-whisper);
}

/* Text Effects */
.text-outline {
  -webkit-text-stroke: 1.5px var(--zk-green);
  text-stroke: 1.5px var(--zk-green);
  color: transparent;
}
.text-shadow-hero { text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6); }

/* Interactive Cards */
.hover-card { transition: transform 0.4s var(--zk-ease-out), border-color 0.4s ease, box-shadow 0.4s ease; }
.hover-card:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 255, 0, 0.25);
  box-shadow: 0 8px 24px -12px rgba(204, 255, 0, 0.1);
}
@media (hover: none) {
  .hover-card:active { transform: translateY(-2px); }
  .pkg-card:active { transform: scale(0.99); }
}

/* Feature list — clean left accent, no decorative icons */
.feature-item {
  padding-left: 1rem;
  border-left: 2px solid rgba(204, 255, 0, 0.35);
  transition: border-color 0.25s ease;
}
.feature-item + .feature-item { margin-top: 1.25rem; }
.feature-item:hover { border-left-color: var(--zk-green); }

/* Touch-friendly form fields (prevents iOS zoom on focus) */
.form-field,
input[type="text"], input[type="number"], input[type="email"], select, textarea {
  font-size: 16px;
  min-height: 3rem;
}
@media (min-width: 768px) {
  .form-field,
  input[type="text"], input[type="number"], input[type="email"], select, textarea {
    font-size: inherit;
    min-height: auto;
  }
}
select.form-field { min-height: 3.25rem; }

/* Override browser autofill — keep dark theme */
.form-field:-webkit-autofill,
.form-field:-webkit-autofill:hover,
.form-field:-webkit-autofill:focus,
.contact-form__input:-webkit-autofill,
.contact-form__input:-webkit-autofill:hover,
.contact-form__input:-webkit-autofill:focus,
.method-bmi__input:-webkit-autofill,
.method-bmi__input:-webkit-autofill:hover,
.method-bmi__input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  caret-color: #fff;
  box-shadow: 0 0 0 1000px #121212 inset;
  -webkit-box-shadow: 0 0 0 1000px #121212 inset;
  transition: background-color 99999s ease-out 0s;
}

select.form-field,
select.contact-form__input {
  color-scheme: dark;
}
select.form-field option,
select.contact-form__input option {
  background: #121212;
  color: #fff;
}

/* Section headings — readability on narrow screens */
.section-head h2,
.text-balance { text-wrap: balance; }

/* Sliders */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.snap-slider { scroll-snap-type: x mandatory; }
.snap-item { scroll-snap-align: start; }

/* Lightbox */
#lightbox {
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
#lightbox.active { opacity: 1; visibility: visible; }

/* Reveal — subtle on desktop; always visible on mobile for smoother scanning */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.75s var(--zk-ease-out), transform 0.75s var(--zk-ease-out);
}
@media (max-width: 1023px) {
  html.js-anim .reveal:not(.active),
  html.js-anim .reveal.active,
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
@media (min-width: 1024px) {
  html.js-anim .reveal:not(.active) { opacity: 0; transform: translateY(18px); }
  html.js-anim .reveal.active { opacity: 1; transform: translateY(0); }
}
.delay-100 { transition-delay: 80ms; }
.delay-200 { transition-delay: 160ms; }
.delay-300 { transition-delay: 240ms; }

/* FAQ */
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }

/* Animated trust marquee */
.marquee { display: flex; overflow: hidden; user-select: none; gap: 0; -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; flex-shrink: 0; align-items: center; gap: 3rem; padding-right: 3rem; animation: marquee 36s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* Nav active link */
.nav-link.is-active { color: var(--zk-green); }

/* Touch targets & safe areas */
.tap-target { min-width: 44px; min-height: 44px; }
.safe-bottom { padding-bottom: max(0.625rem, env(safe-area-inset-bottom, 0px)); }

/* Sticky mobile CTA bar — solid, no backdrop-filter */
.mobile-cta-bar {
  background: var(--zk-dark);
  border-top: 1px solid rgba(204, 255, 0, 0.25);
  transform: translateY(0);
  will-change: transform;
}
.mobile-cta-bar.menu-hidden { transform: translateY(120%); pointer-events: none; }
.mobile-cta-bar__ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Navbar — lighter glass on mobile for performance */
.nav-root { position: relative; }
@media (max-width: 1023px) {
  #navbar.glass-panel {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(5, 5, 5, 0.97);
  }
}

/* Mobile menu toggle icons — explicit, high-specificity show/hide so this can't
   lose a tie-break against icons.css's ".icon{display:inline-block}" (both are
   single-class selectors loaded later in the cascade; a bare ".hidden" utility
   was silently losing that fight, leaving both icons visible at once). */
#mobile-menu-btn .menu-icon-open,
#mobile-menu-btn .menu-icon-close { transition: opacity 0.2s ease; }
#mobile-menu-btn .menu-icon-close { display: none; }
#mobile-menu-btn[aria-expanded="true"] .menu-icon-open { display: none; }
#mobile-menu-btn[aria-expanded="true"] .menu-icon-close { display: block; }

/* Mobile menu panel */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: calc(100dvh - 4.5rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--zk-black);
  border-bottom: 1px solid rgba(204, 255, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 1rem 1.25rem 1.5rem;
  gap: 0.25rem;
}
.mobile-menu__link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu__link:active { color: var(--zk-green); }
.mobile-menu__link.is-active { color: var(--zk-green); }
.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 0.5rem;
}
.mobile-menu__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.875rem 1.25rem;
  border-radius: 0.25rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.mobile-menu__btn:active { transform: scale(0.98); opacity: 0.9; }
.mobile-menu__btn--ig {
  background: var(--zk-black);
  border: 1px solid rgba(204, 255, 0, 0.4);
  color: var(--zk-green);
}
.mobile-menu__btn--wa {
  background: var(--zk-green);
  color: var(--zk-black);
}

/* Mobile menu backdrop */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.mobile-menu-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Stat cards — semantic value text (not headings) */
.stat-card__value { margin: 0; line-height: 1.1; }

/* WhatsApp buttons — WCAG AA contrast (white on #075E54) */
.btn-wa-solid {
  background: var(--wa-green);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-wa-solid:hover {
  background: var(--wa-green-hover);
  color: #fff;
}

/* Developer credit — underline visible without relying on color alone */
.dev-credit {
  position: relative;
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: rgba(204, 255, 0, 0.55);
  text-underline-offset: 3px;
}
.dev-credit::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--zk-green);
  box-shadow: 0 0 8px var(--zk-green);
  transition: width 0.35s ease;
}
.dev-credit:hover::after {
  width: 100%;
}

/* Buttons */
.btn-neon { box-shadow: 0 0 16px rgba(204, 255, 0, 0.18); }
.btn-neon:hover { box-shadow: 0 4px 28px rgba(204, 255, 0, 0.28); }

/* ── Vivid images: subtle at rest, full color on hover / touch ── */
.img-color {
  filter: saturate(0.55) brightness(0.82);
  transition: filter 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.group:hover .img-color,
.img-color:hover,
.img-wrap:active .img-color {
  filter: saturate(1.15) brightness(1.05);
}
.img-vivid,
.transform-card .img-color,
#clients-scroll .img-color,
#results .img-color,
#instagram .img-color.img-color {
  filter: saturate(1) brightness(1);
}
@media (hover: none) {
  .img-vivid,
  .transform-card .img-color,
  #clients-scroll .img-color,
  #results .img-color {
    filter: saturate(1.05) brightness(1.02);
  }
}

/* Instagram tile */
.ig-tile { position: relative; overflow: hidden; border-radius: 0.5rem; }
.ig-tile::after {
  content: ''; position: absolute; inset: 0; border: 1px solid transparent;
  border-radius: 0.5rem; transition: border-color 0.35s var(--zk-ease-out); pointer-events: none;
}
.ig-tile:hover::after, .ig-tile:active::after { border-color: rgba(204, 255, 0, 0.35); }
.ig-tile .ig-badge {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  padding: 0.35rem 0.6rem; border-radius: 9999px;
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--zk-green); opacity: 0; transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.ig-tile:hover .ig-badge, .ig-tile:active .ig-badge { opacity: 1; transform: translateY(0); }

/* Mid-scroll CTA strips */
.cta-strip {
  background: linear-gradient(135deg, rgba(204,255,0,0.12) 0%, rgba(204,255,0,0.03) 50%, transparent 100%);
  border-top: 1px solid rgba(204,255,0,0.15);
  border-bottom: 1px solid rgba(204,255,0,0.15);
}
.cta-strip--dark {
  background: linear-gradient(135deg, rgba(204,255,0,0.08) 0%, rgba(18,18,18,0.9) 100%);
}

/* Section glow accents */
.glow-green { position: relative; }
.glow-green::before {
  content: ''; position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(204,255,0,0.06) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* Instagram gradient CTA block */
.ig-cta-block {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 40%, #111809 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative; overflow: hidden;
}
.ig-cta-block::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(204,255,0,0.06), transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(204,255,0,0.03), transparent 50%);
  pointer-events: none;
}

/* Nav Instagram pill — solid bg prevents hero glare bleeding through */
.nav-ig {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 2.25rem;
  min-height: 2.25rem;
  padding: 0.45rem 0.65rem;
  border-radius: 9999px;
  background: var(--zk-black);
  border: 1px solid rgba(204, 255, 0, 0.45);
  color: var(--zk-green);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.nav-ig__text { display: none; }
.nav-ig:hover {
  background: var(--zk-green);
  color: var(--zk-black);
  border-color: var(--zk-green);
  box-shadow: 0 0 16px rgba(204, 255, 0, 0.35);
}

/* Floating IG button */
.float-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 4px 20px rgba(220, 39, 67, 0.4);
}
.float-ig:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(220, 39, 67, 0.55); }

/* Stat cards pulse on hover */
.stat-card { transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; }
.stat-card:hover { border-color: rgba(204,255,0,0.4); box-shadow: 0 0 30px rgba(204,255,0,0.12); transform: translateY(-4px); }

/* Quote highlight */
.quote-card {
  background: linear-gradient(135deg, rgba(204,255,0,0.08), rgba(18,18,18,0.95));
  border-left: 3px solid var(--zk-green);
}

/* Editorial narrative chapters — subsections within a merged section, not full-page breaks */
.story-chapter {
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: none;
  position: relative;
}
.story-chapter:not(.story-chapter--first)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05) 20%, rgba(255, 255, 255, 0.05) 80%, transparent);
}
.story-chapter--first {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.story-chapter__label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--zk-green);
}
.story-chapter__title {
  margin: 0;
  font-family: Poppins, system-ui, sans-serif;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  text-wrap: balance;
}
.story-chapter__lead {
  margin: 0.75rem 0 0;
  max-width: 42rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--zk-muted);
}
@media (min-width: 1024px) {
  .story-chapter { margin-top: 4.5rem; padding-top: 4.5rem; }
}

/* ============================================================
   EDITORIAL — Meet Zahir Khan (one story, not stacked sections)
   ============================================================ */
.editorial-zahir__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(50% 40% at 88% 12%, rgba(204, 255, 0, 0.05), transparent 72%),
    radial-gradient(45% 35% at 8% 85%, rgba(204, 255, 0, 0.025), transparent 68%);
}

.editorial-zahir__masthead {
  max-width: 52rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.editorial-zahir__masthead .section-num {
  margin-bottom: -0.75rem;
  text-align: left;
}
.editorial-zahir__kicker {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.7;
}
.editorial-zahir__title {
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #fff;
  text-wrap: balance;
}
.editorial-zahir__title-accent { color: var(--zk-green); }

.editorial-zahir__spread {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .editorial-zahir__spread {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(2rem, 4vw, 4.5rem);
  }
  .editorial-zahir__figure {
    position: sticky;
    top: calc(5.5rem + env(safe-area-inset-top, 0px));
  }
}
.editorial-zahir__photo {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.94) contrast(1.02);
}
.editorial-zahir__lede {
  margin: 0 0 1.5rem;
  font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
  line-height: 1.8;
  color: var(--zk-white-soft);
  font-weight: 400;
}
.editorial-zahir__body {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--zk-muted-soft);
}
.editorial-zahir__pullquote {
  margin: clamp(1.75rem, 3vw, 2.25rem) 0 0;
  padding: 0;
  border: none;
}
.editorial-zahir__pullquote p {
  margin: 0;
  font-family: Poppins, system-ui, sans-serif;
  font-size: clamp(1.0625rem, 2.4vw, 1.3125rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}
.editorial-zahir__pullquote p::before {
  content: '\201C';
  margin-right: 0.1em;
  color: var(--zk-green);
  font-style: normal;
}
.editorial-zahir__pullquote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--zk-green);
}

/* Arc — timeline → credentials → trust → follow, one continuous band */
.editorial-zahir__arc {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: none;
  position: relative;
}
.editorial-zahir__arc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07) 18%, rgba(255, 255, 255, 0.07) 82%, transparent);
}

.editorial-timeline {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 0.25rem;
}
@media (min-width: 1024px) {
  .editorial-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    overflow: visible;
    cursor: default;
    padding-top: 2.5rem;
    position: relative;
  }
  .editorial-timeline::before {
    content: '';
    position: absolute;
    top: 0.65rem;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(204, 255, 0, 0.28), rgba(204, 255, 0, 0.28), transparent);
  }
}
.editorial-milestone { position: relative; }
@media (min-width: 1024px) {
  .editorial-milestone::before {
    content: '';
    position: absolute;
    top: -2.15rem;
    left: 0;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--zk-muted);
    box-shadow: 0 0 0 3px var(--zk-dark);
  }
  .editorial-milestone--highlight::before {
    background: var(--zk-green);
    box-shadow: 0 0 0 3px var(--zk-dark), 0 0 12px rgba(204, 255, 0, 0.45);
  }
}
.editorial-milestone__year {
  display: block;
  font-family: Poppins, system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.5rem;
}
.editorial-milestone--highlight .editorial-milestone__year { color: var(--zk-green); }
.editorial-milestone__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--zk-muted-soft);
}
.editorial-milestone--highlight .editorial-milestone__text { color: rgba(255, 255, 255, 0.82); }

.editorial-creds {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 1.5rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .editorial-creds {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem 2.5rem;
  }
}
.editorial-cred__title {
  display: block;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.35;
}
.editorial-cred__sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--zk-muted-soft);
}

.editorial-zahir__trust {
  margin-top: 3rem;
  margin-left: -1rem;
  margin-right: -1rem;
  padding: 1rem 0;
  opacity: 0.65;
}
@media (min-width: 1024px) {
  .editorial-zahir__trust { margin-left: 0; margin-right: 0; }
}
.editorial-zahir__footer { margin-top: 1.25rem; text-align: center; }
.editorial-zahir__follow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zk-muted);
  transition: color 0.2s ease;
}
.editorial-zahir__follow:hover { color: var(--zk-green); }
.editorial-zahir__follow .icon { width: 1rem; height: 1rem; flex-shrink: 0; }

/* ============================================================
   EDITORIAL — Training & Nutrition (premium method story)
   ============================================================ */
.editorial-method__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(48% 42% at 92% 18%, rgba(204, 255, 0, 0.05), transparent 70%),
    radial-gradient(40% 38% at 6% 78%, rgba(204, 255, 0, 0.025), transparent 65%);
}
.editorial-method__masthead {
  max-width: 52rem;
  margin-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
}
.editorial-method__masthead .section-num {
  margin-bottom: -0.75rem;
  text-align: left;
}
.editorial-method__kicker {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.7;
}
.editorial-method__title {
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #fff;
  text-wrap: balance;
}
.editorial-method__title-accent { color: var(--zk-green); }

/* Single narrative flow — Image → Headline (above) → Sentence → Pillars → CTA.
   One story, one eye path. Nothing else competes with the CTA. */
.method-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: start;
}
@media (min-width: 640px) {
  .method-story {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(2rem, 5vw, 4.5rem);
  }
}
.method-story__figure {
  margin: 0;
  max-width: 15rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .method-story__figure {
    max-width: none;
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .method-story__figure {
    position: sticky;
    top: 6rem;
  }
}
.editorial-method__frame {
  position: relative;
  overflow: hidden;
  border-radius: 0.125rem;
  border: none;
  box-shadow: 0 32px 64px -28px rgba(0, 0, 0, 0.75);
  aspect-ratio: 4 / 5;
}
.editorial-method__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 5, 5, 0.45) 100%);
}
.editorial-method__photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.9) contrast(1.03);
}

.method-story__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.editorial-method__lede {
  margin: 0 0 clamp(2rem, 4vw, 2.75rem);
  max-width: 34rem;
  font-size: clamp(1.125rem, 2.4vw, 1.375rem);
  line-height: 1.6;
  color: var(--zk-white-soft);
  font-weight: 400;
  text-wrap: balance;
}

/* Three pillars — one clean row, equal weight, no numbers competing with the CTA */
.method-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 0 0 clamp(2.25rem, 4.5vw, 3rem);
  padding: 0;
  list-style: none;
  width: 100%;
}
@media (min-width: 900px) {
  .method-pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.75rem; }
}
.method-pillar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  background: transparent;
  border: none;
  border-top: 2px solid rgba(204, 255, 0, 0.5);
  padding-top: 0.875rem;
}
.method-pillar__num { display: none; }
.method-pillar__title {
  display: block;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.35;
}
.method-pillar__text {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--zk-muted-soft);
}

/* Single, unmistakable CTA */
.editorial-method__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  padding: 1rem 2rem;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zk-black);
  background: var(--zk-green);
  border-radius: 0.25rem;
  transition: background 0.25s var(--zk-ease-out), transform 0.25s var(--zk-ease-out), box-shadow 0.25s var(--zk-ease-out);
  box-shadow: 0 0 32px rgba(204, 255, 0, 0.15);
}
.editorial-method__btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px -8px rgba(204, 255, 0, 0.35);
}
.editorial-method__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.editorial-method__btn .icon { width: 0.875rem; height: 0.875rem; }

/* Services tag list — quiet, secondary, sits below the CTA (not competing above it) */
.editorial-services {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  margin: 0 0 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
  list-style: none;
}
.editorial-services__item {
  font-family: Poppins, system-ui, sans-serif;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.35;
}
.editorial-services__sep {
  flex-shrink: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.method-bmi {
  width: 100%;
  max-width: 26rem;
}
.method-bmi__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s var(--zk-ease-out);
}
.method-bmi__toggle::-webkit-details-marker { display: none; }
.method-bmi__toggle .icon {
  width: 0.625rem;
  height: 0.625rem;
  transition: transform 0.25s var(--zk-ease-out);
}
.method-bmi__toggle:hover { color: rgba(255, 255, 255, 0.75); }
.method-bmi__toggle:focus-visible {
  outline: 2px solid var(--zk-green);
  outline-offset: 3px;
  border-radius: 2px;
}
.method-bmi[open] .method-bmi__toggle .icon { transform: rotate(180deg); }
.method-bmi[open] .method-bmi__toggle { color: rgba(255, 255, 255, 0.75); }
.method-bmi__panel {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.method-bmi__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.5rem;
}
.method-bmi__field {
  flex: 1 1 5rem;
  min-width: 5rem;
}
.method-bmi__field-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.method-bmi__input {
  width: 100%;
  padding: 0.5rem 0.625rem;
  font-size: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  outline: none;
  transition: border-color 0.25s var(--zk-ease-out);
}
@media (min-width: 768px) {
  .method-bmi__input { font-size: 0.8125rem; }
}
.method-bmi__input:focus { border-bottom-color: rgba(204, 255, 0, 0.5); }
.method-bmi__btn {
  flex: 0 0 auto;
  padding: 0.5rem 0;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: color 0.25s var(--zk-ease-out), border-color 0.25s var(--zk-ease-out);
  min-height: 2.375rem;
}
.method-bmi__btn:hover {
  color: var(--zk-green);
  border-bottom-color: rgba(204, 255, 0, 0.4);
  background: transparent;
}
.method-bmi__result {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
  margin-top: 0.625rem;
}
.method-bmi__result.hidden { display: none; }
.method-bmi__result-label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zk-muted);
}
.method-bmi__result-value {
  font-family: Poppins, system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--zk-green);
}
.method-bmi__result-cat {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
}

/* Contact — schedule within contact panel */
.contact-schedule {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-schedule__block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.35rem 1.25rem;
  padding: 0.7rem 0;
}
.contact-schedule__block + .contact-schedule__block {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-schedule__days {
  font-family: Poppins, system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  flex: 1 1 8rem;
}
.contact-schedule__block--accent .contact-schedule__days { color: var(--zk-green); }
.contact-schedule__slots {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: flex-end;
  text-align: right;
  flex: 0 1 auto;
}
.contact-schedule__slot {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--zk-muted-soft);
}
.contact-schedule__slot:first-child { color: rgba(255, 255, 255, 0.78); }
.contact-schedule__block--accent .contact-schedule__slot { color: rgba(255, 255, 255, 0.45); font-style: italic; }

/* Horizontal scroll — mobile swipe + drag; desktop uses grid */
.h-scroll-wrap { position: relative; }
.h-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  cursor: grab;
  user-select: none;
}
.h-scroll.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}
.snap-item { scroll-snap-align: start; scroll-snap-stop: always; }
.h-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.h-scroll-hint::before,
.h-scroll-hint::after {
  content: "";
  width: 1.25rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}
@media (min-width: 1024px) {
  .h-scroll-hint { display: none; }
}

/* Pagination dots — subtle, replaces prev/next buttons on touch carousels */
.h-scroll-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}
.h-scroll-dots__dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
}
.h-scroll-dots__dot.is-active {
  background: var(--zk-green);
  width: 1.1rem;
  border-radius: 9999px;
}

/* ============================================================
   HERO — cinematic, proof-forward, mobile-first
   ============================================================ */
.hero-cinematic {
  isolation: isolate;
  min-height: calc(100svh - 4.25rem);
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
}
@supports not (min-height: 100svh) {
  .hero-cinematic { min-height: calc(100vh - 4.25rem); }
}
.hero-inner { padding-top: 0.5rem; padding-bottom: 0.5rem; }

/* Layout: mobile = head / visual / rest ; desktop = 2 columns */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "head" "visual" "rest";
  gap: 1.25rem;
  align-items: start;
}
.hero-head   { grid-area: head; }
.hero-visual { grid-area: visual; }
.hero-rest   { grid-area: rest; }

/* ---- background layers ---- */
.hero-aurora {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(42% 55% at 15% 28%, rgba(204, 255, 0, 0.1), transparent 72%),
    radial-gradient(45% 50% at 88% 18%, rgba(120, 160, 0, 0.1), transparent 74%);
}
.hero-noise {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- eyebrow row: badge + rating ---- */
.hero-eyebrow-row {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.55rem 0.9rem; margin-bottom: 0.9rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.8rem; border-radius: 9999px;
  border: 1px solid rgba(204, 255, 0, 0.3);
  background: rgba(204, 255, 0, 0.08);
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--zk-green); line-height: 1;
}
.hero-badge__dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: var(--zk-green); flex-shrink: 0; }
/* Star rating is a desktop-only trust signal — on mobile it competes with the badge for the same beat of attention */
.hero-rating { display: none; align-items: center; gap: 0.45rem; font-size: 0.72rem; color: #d1d5db; white-space: nowrap; }
@media (min-width: 1024px) { .hero-rating { display: inline-flex; } }
.hero-rating__stars { color: var(--zk-green); letter-spacing: 0.08em; font-size: 0.82rem; text-shadow: 0 0 12px rgba(204, 255, 0, 0.45); }
.hero-rating__text strong { color: #fff; font-weight: 800; }

/* ---- eyebrow line ---- */
.hero-eyebrow {
  margin: 0 0 0.7rem; font-family: Poppins, system-ui, sans-serif;
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--zk-green);
}

/* ---- kinetic headline ---- */
.hero-headline {
  margin: 0; font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.02em; line-height: 0.98;
  font-size: clamp(2.5rem, 11.5vw, 3.5rem);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}
.hero-line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.hero-line__inner { display: inline-block; will-change: transform; }
.hero-headline-accent { color: var(--zk-green); }

/* ---- subtext ---- */
.hero-subtext {
  margin: 0 0 1.35rem; max-width: 34rem;
  font-size: 1rem; line-height: 1.65; color: var(--zk-muted-soft);
}

/* ---- actions ---- */
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; margin-bottom: 1.5rem; }
.hero-actions .hero-cta { width: 100%; max-width: 22rem; }
.hero-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: 54px; padding: 0 1.4rem; border-radius: 0.5rem;
  font-family: Poppins, system-ui, sans-serif; font-weight: 800;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; text-align: center;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.hero-cta .icon { width: 1.15em; height: 1.15em; }
.hero-cta--wa { background: var(--zk-green); color: var(--zk-black); box-shadow: 0 8px 24px -6px rgba(204, 255, 0, 0.35); }
.hero-cta--wa:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 12px 32px -6px rgba(204, 255, 0, 0.45); }
.hero-cta--ghost { background: rgba(255, 255, 255, 0.03); color: #fff; border: 1px solid rgba(255, 255, 255, 0.14); }
.hero-cta--ghost:hover { border-color: rgba(204, 255, 0, 0.45); color: var(--zk-green); transform: translateY(-1px); }

/* Secondary hero action — a quiet text link, not a second competing button.
   One primary call-to-action reads as confident; two same-weight buttons read as indecisive. */
.hero-cta-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  align-self: center;
  font-family: Poppins, system-ui, sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  padding: 0.5rem 0.25rem;
  transition: color 0.2s ease, gap 0.2s ease;
}
.hero-cta-link .icon { width: 0.9em; height: 0.9em; transition: transform 0.2s ease; }
.hero-cta-link:hover { color: var(--zk-green); gap: 0.6rem; }
.hero-cta-link:hover .icon { transform: translateX(2px); }

/* ---- social proof ---- */
.hero-social { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.4rem; }
.hero-avatars { display: inline-flex; }
.hero-avatar {
  width: 2.25rem; height: 2.25rem; border-radius: 9999px;
  object-fit: cover; object-position: top;
  border: 2px solid var(--zk-black); box-shadow: 0 0 0 1px rgba(204, 255, 0, 0.45);
  margin-left: -0.6rem;
}
.hero-avatars picture:first-child .hero-avatar { margin-left: 0; }
.hero-social__text { margin: 0; font-size: 0.8rem; color: #d1d5db; font-weight: 500; }

/* ---- stats ---- */
/* The full stat grid is a desktop-only flourish — on mobile a single quiet trust line (above) carries
   the same proof without turning the first screen into a dashboard. */
.hero-stats { display: none; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.55rem; }
@media (min-width: 1024px) { .hero-stats { display: grid; } }
.hero-stat {
  background: rgba(18, 18, 18, 0.9); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem; padding: 0.75rem 0.5rem; text-align: center;
}
.hero-stat__value { margin: 0 0 0.15rem; font-weight: 900; line-height: 1.05; font-size: 1.5rem; }
.hero-stat__suffix { font-family: Poppins, system-ui, sans-serif; font-weight: 900; font-size: 1.05rem; }
.hero-stat__label { margin: 0; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--zk-muted); line-height: 1.25; }

/* ---- visual: portrait + floating proof ---- */
.hero-visual { display: flex; align-items: center; justify-content: center; padding: 0.75rem 0.5rem 1rem; }
.hero-portrait { position: relative; width: 100%; max-width: 15rem; }
.hero-portrait__img {
  position: relative; z-index: 2; width: 100%; aspect-ratio: 3 / 4;
  object-fit: cover; object-position: top; border-radius: 1rem;
  box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.7);
}
.hero-portrait-glow {
  position: absolute; inset: -16% -12% -8%; z-index: 0;
  background: radial-gradient(ellipse at 50% 42%, rgba(204, 255, 0, 0.28), transparent 62%);
  filter: blur(6px);
}
.hero-portrait-ring {
  position: absolute; inset: -6px; z-index: 1; border-radius: 1.25rem; padding: 2px;
  background: linear-gradient(150deg, rgba(204, 255, 0, 0.85), rgba(204, 255, 0, 0) 45%, rgba(204, 255, 0, 0.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.hero-float {
  position: absolute; z-index: 3;
  background: rgba(10, 10, 10, 0.82); border: 1px solid rgba(204, 255, 0, 0.28);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.7);
}
/* The floating "years coaching" badge is a desktop-only accent — on mobile a single proof card
   (the real transformation photo) is the stronger, less cluttered focal point. */
.hero-float--stat {
  display: none;
  top: 0.5rem; right: -0.6rem;
  flex-direction: column; align-items: center; gap: 0.05rem;
  padding: 0.5rem 0.6rem; border-radius: 0.75rem; text-align: center;
}
@media (min-width: 1024px) { .hero-float--stat { display: flex; } }
.hero-float__num { font-family: Poppins, system-ui, sans-serif; font-weight: 900; font-size: 1.25rem; color: var(--zk-green); line-height: 1; }
.hero-float__plus { font-size: 0.8em; }
.hero-float__label { font-size: 0.45rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #cbd5e1; line-height: 1.15; }
.hero-float--proof {
  margin: 0; bottom: -0.75rem; left: -0.75rem; width: 8.25rem;
  border-radius: 0.85rem; padding: 0.4rem; overflow: hidden;
}
.hero-proof__tag { display: block; font-size: 0.5rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--zk-green); margin-bottom: 0.3rem; padding: 0 0.15rem; }
.hero-proof__img { display: block; width: 100%; height: 6rem; object-fit: cover; object-position: center 18%; border-radius: 0.55rem; }
.hero-proof__caption { display: flex; align-items: baseline; justify-content: space-between; gap: 0.3rem; padding: 0.35rem 0.2rem 0.1rem; }
.hero-proof__caption-label { font-size: 0.5rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--zk-muted); }
.hero-proof__caption-value { font-family: Poppins, system-ui, sans-serif; font-weight: 900; font-size: 0.8rem; color: #fff; }

/* ---- entrance — a deliberate 3-beat reveal, not a cascade of pop-ins ----
   Beat 1: eyebrow/badge settle in.
   Beat 2: headline rises (its own timing, tied to reading rhythm).
   Beat 3: portrait resolves alongside the rest of the copy — one arrival,
   not five separate ones — so the page feels composed rather than assembled. */
.hero-enter { opacity: 1; }
.hero-float { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  html.preloader-done .hero-enter { opacity: 0; animation: heroEnter 0.85s cubic-bezier(0.16, 1, 0.3, 1) both; }
  html.preloader-done .hero-enter--1 { animation-delay: 0.05s; }
  html.preloader-done .hero-enter--3 { animation-delay: 0.42s; }

  html.preloader-done .hero-line__inner { transform: translateY(105%); animation: heroLineUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both; }
  html.preloader-done .hero-line:nth-child(2) .hero-line__inner { animation-delay: 0.28s; }

  html.preloader-done .hero-portrait__img { animation: heroPortraitIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both; }
  html.preloader-done .hero-portrait-ring { opacity: 0; animation: heroFade 0.8s ease 0.55s both; }
  html.preloader-done .hero-float { opacity: 0; animation: heroFloatIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both; }

  /* CSS-only failsafe if preloader.js is blocked: auto-lift overlay, then hero can still show */
  html:not(.preloader-done) .zk-preloader { animation: zkPreloaderAutoOut 0.75s cubic-bezier(0.76, 0, 0.24, 1) 0.9s forwards; }
  html:not(.preloader-done) .zk-preloader.is-out { animation: none; }
}
@keyframes zkPreloaderAutoOut {
  to { transform: translateY(-100%); opacity: 0; visibility: hidden; pointer-events: none; }
}
@keyframes heroEnter { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes heroLineUp { from { transform: translateY(105%); } to { transform: none; } }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroPortraitIn { from { opacity: 0; clip-path: inset(0 0 100% 0); transform: scale(1.03); } to { opacity: 1; clip-path: inset(0 0 0 0); transform: none; } }
@keyframes heroFloatIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ============================================================
   PRELOADER — cinematic brand reveal (every page load)
   ============================================================ */
.zk-preloader {
  position: fixed; inset: 0; z-index: 100000;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(120% 120% at 50% 38%, #0d0d0d 0%, #050505 62%);
  overflow: hidden;
  transition: transform 0.75s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.55s ease, visibility 0.55s;
}
.zk-preloader.is-out {
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.zk-preloader__bg {
  position: absolute; inset: -20%; pointer-events: none;
  background:
    radial-gradient(40% 40% at 30% 34%, rgba(204, 255, 0, 0.14), transparent 70%),
    radial-gradient(46% 46% at 72% 66%, rgba(120, 160, 0, 0.16), transparent 72%);
}
.zk-preloader__inner { position: relative; z-index: 2; text-align: center; padding: 1.5rem; }
.zk-preloader__logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 4.5rem; height: 4.5rem; margin-bottom: 1.1rem; border-radius: 1rem;
  border: 1px solid rgba(204, 255, 0, 0.3); background: rgba(204, 255, 0, 0.08);
  color: var(--zk-green); box-shadow: 0 0 45px rgba(204, 255, 0, 0.25);
}
.zk-preloader__logo .icon { width: 2.25rem; height: 2.25rem; fill: currentColor; }
.zk-preloader__name {
  margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.35ch;
  font-family: Poppins, system-ui, sans-serif; font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.75rem, 12vw, 5rem); line-height: 0.95; letter-spacing: 0.01em; color: #fff;
}
.zk-preloader__word { display: inline-block; }
.zk-preloader__word--accent { color: var(--zk-green); text-shadow: 0 0 30px rgba(204, 255, 0, 0.4); }
.zk-preloader__line {
  display: block; width: min(15rem, 66vw); height: 3px; margin: 1.05rem auto 0;
  background: linear-gradient(90deg, transparent, var(--zk-green), transparent);
  transform: scaleX(0); transform-origin: center;
}
.zk-preloader__tag {
  display: block; margin-top: 0.95rem; font-family: Poppins, system-ui, sans-serif;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--zk-muted); opacity: 0;
}
html.preloader-active, html.preloader-active body { overflow: hidden; }

/* Timed to resolve just before the 900ms dismissal — a complete, unhurried
   beat rather than an animation that gets cut off mid-motion. */
@media (prefers-reduced-motion: no-preference) {
  .zk-preloader__bg { animation: zkPreloaderBg 3s ease-in-out infinite alternate; }
  .zk-preloader__logo { animation: zkPreloaderPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.02s both; }
  .zk-preloader__word { opacity: 0; transform: translateY(0.5em); animation: zkPreloaderWord 0.45s cubic-bezier(0.16, 1, 0.3, 1) both; }
  .zk-preloader__word:nth-child(1) { animation-delay: 0.16s; }
  .zk-preloader__word:nth-child(2) { animation-delay: 0.26s; }
  .zk-preloader__line { animation: zkPreloaderLine 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both; }
  .zk-preloader__tag { animation: zkPreloaderFade 0.4s ease 0.6s both; }
}
@keyframes zkPreloaderPop { from { opacity: 0; transform: scale(0.55); } to { opacity: 1; transform: scale(1); } }
@keyframes zkPreloaderWord { to { opacity: 1; transform: none; } }
@keyframes zkPreloaderLine { to { transform: scaleX(1); } }
@keyframes zkPreloaderFade { to { opacity: 1; } }
@keyframes zkPreloaderBg { from { transform: translate3d(-2%, -1%, 0); } to { transform: translate3d(2%, 1%, 0); } }

/* ---- small phones ---- */
@media (min-width: 400px) {
  .hero-portrait { max-width: 16rem; }
}

/* ---- >=640: roomier ---- */
@media (min-width: 640px) {
  .hero-headline { font-size: clamp(3rem, 8.5vw, 4.25rem); }
  .hero-subtext { font-size: 1.1rem; }
  .hero-actions { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; gap: 0.5rem 1.5rem; }
  .hero-actions .hero-cta { width: auto; max-width: none; flex: 0 1 auto; }
  .hero-portrait { max-width: 18rem; }
  .hero-float--stat { top: 0.75rem; right: -1rem; padding: 0.6rem 0.8rem; }
  .hero-float__num { font-size: 1.5rem; }
  .hero-float--proof { width: 10rem; bottom: -1rem; left: -1.25rem; }
  .hero-proof__img { height: 7.5rem; }
  .hero-proof__caption-value { font-size: 0.9rem; }
  .hero-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.75rem; }
  .hero-stat__value { font-size: 1.65rem; }
  .hero-stat__label { font-size: 0.6rem; }
}

/* ---- >=1024: cinematic two-column ---- */
@media (min-width: 1024px) {
  .hero-cinematic { min-height: 100vh; padding-top: 5rem; padding-bottom: 0; }
  .hero-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-areas: "head visual" "rest visual";
    column-gap: 3.5rem; row-gap: 1rem; align-items: center;
  }
  .hero-head { align-self: end; }
  .hero-rest { align-self: start; }
  .hero-visual { grid-row: 1 / span 2; align-self: center; padding: 0; }
  .hero-eyebrow-row { margin-bottom: 1.1rem; }
  .hero-headline { font-size: clamp(3.5rem, 5vw, 6rem); line-height: 0.94; }
  .hero-headline-accent {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--zk-green);
    text-stroke: 1.5px var(--zk-green);
  }
  .hero-subtext { font-size: 1.2rem; border-left: 2px solid rgba(204, 255, 0, 0.6); padding-left: 1.15rem; line-height: 1.65; }
  .hero-portrait { max-width: 25rem; }
  .hero-float--stat { top: 1.25rem; right: -1.75rem; padding: 0.8rem 1rem; border-radius: 1rem; }
  .hero-float__num { font-size: 1.9rem; }
  .hero-float__label { font-size: 0.55rem; }
  .hero-float--proof { bottom: -1.5rem; left: -2.25rem; width: 12.5rem; padding: 0.55rem; border-radius: 1rem; }
  .hero-proof__tag { font-size: 0.56rem; }
  .hero-proof__img { height: 9.5rem; }
  .hero-proof__caption-value { font-size: 1.05rem; }
  .hero-stat { padding: 1.15rem 0.75rem; border-radius: 1rem; transition: border-color 0.25s ease, transform 0.25s ease; }
  .hero-stat:hover { border-color: rgba(204, 255, 0, 0.35); transform: translateY(-4px); }
  .hero-stat__value { font-size: 2.1rem; }
  .hero-stat__suffix { font-size: 1.35rem; }
  .hero-stat__label { font-size: 0.66rem; letter-spacing: 0.12em; }
}

.hero-bg__img {
  opacity: 0.45;
  object-position: 72% 15%;
  filter: brightness(1.02);
}
.hero-scrim-left {
  background: linear-gradient(to right,
    rgba(5, 5, 5, 0.95) 0%,
    rgba(5, 5, 5, 0.82) 38%,
    rgba(5, 5, 5, 0.35) 58%,
    transparent 72%);
}
.hero-scrim-bottom {
  background: linear-gradient(to top,
    rgba(5, 5, 5, 0.85) 0%,
    transparent 35%);
}
.hero-portrait__img {
  filter: none !important;
  opacity: 1 !important;
}
@media (max-width: 1023px) {
  .hero-bg__img { opacity: 0.28; object-position: center 15%; }
  .hero-scrim-left {
    background: linear-gradient(to bottom,
      rgba(5, 5, 5, 0.92) 0%,
      rgba(5, 5, 5, 0.78) 42%,
      rgba(5, 5, 5, 0.55) 68%,
      rgba(5, 5, 5, 0.35) 100%);
  }
  .hero-scrim-bottom {
    background: linear-gradient(to top,
      rgba(5, 5, 5, 0.95) 0%,
      rgba(5, 5, 5, 0.4) 45%,
      transparent 100%);
  }
}

/* Accessibility: visible focus */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--zk-green); outline-offset: 2px; border-radius: 2px;
}

/* Ken/Client quote pulse dot */
.live-dot { box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.7); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(204, 255, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(204, 255, 0, 0); }
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--zk-black); }
::-webkit-scrollbar-thumb { background: var(--zk-gray); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--zk-green); }

/* ============================================================
   POLISH — spacing, rhythm, restraint (structure unchanged)
   ============================================================ */
#packages.border-y,
#feed.border-y {
  border-color: rgba(255, 255, 255, 0.03);
}

#contact .glass-panel.border-t-4 {
  border-top-width: 2px;
  border-top-color: rgba(204, 255, 0, 0.55);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.55);
}

.contact-info__schedule {
  border-top-color: rgba(255, 255, 255, 0.04) !important;
}

/* Contact — compact 2-column, black + white (+ green CTA only) */
.section-contact {
  background: var(--zk-dark);
  --contact-fg: rgba(255, 255, 255, 0.72);
  --contact-fg-soft: rgba(255, 255, 255, 0.48);
  --contact-line: rgba(255, 255, 255, 0.16);
}

.contact-scene {
  max-width: 56rem;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1.12fr 1fr;
    gap: 2.5rem 3rem;
    align-items: start;
  }
}

/* Left: finale */
.contact-finale {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.contact-finale__headline {
  margin: 0 0 0.875rem;
  max-width: 18rem;
  font-size: clamp(1.875rem, 4.5vw, 2.625rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: #fff;
  text-wrap: balance;
}
@media (min-width: 1024px) {
  .contact-finale__headline { max-width: 20rem; }
}
.contact-finale__lead {
  margin: 0 0 1.375rem;
  max-width: 22rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--contact-fg);
}
.contact-finale__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 20rem;
  min-height: 3.25rem;
  padding: 0 1.5rem;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zk-black);
  background: var(--zk-green);
  border-radius: 0.25rem;
  transition: background 0.25s var(--zk-ease-out), transform 0.25s var(--zk-ease-out);
}
@media (min-width: 1024px) {
  .contact-finale__cta { width: auto; min-width: 16rem; }
}
.contact-finale__cta .icon { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }
.contact-finale__cta:hover { background: #fff; transform: translateY(-2px); }
.contact-finale__cta:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.contact-meta {
  list-style: none;
  margin: 1.125rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  width: 100%;
  max-width: 22rem;
}
.contact-meta li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.contact-meta__icon {
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.2rem;
  color: var(--contact-fg-soft);
}
.contact-meta__text {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--contact-fg-soft);
  text-decoration: none;
}
a.contact-meta__text:hover { color: #fff; }
.contact-meta__link { text-decoration: underline; text-underline-offset: 0.15em; }

/* Right: form */
.contact-form-col {
  padding-top: 0;
}
@media (min-width: 1024px) {
  .contact-form-col {
    padding-top: 0.25rem;
    border-left: 1px solid var(--contact-line);
    padding-left: 2.5rem;
  }
}
.contact-form__kicker {
  margin: 0 0 0.875rem;
  font-size: 0.8125rem;
  color: var(--contact-fg-soft);
}
.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem 0.75rem;
}
.contact-form__field--full { grid-column: 1 / -1; }
.contact-form__label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--contact-fg-soft);
}
.contact-form__input {
  display: block;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.625rem 0.75rem;
  font-size: 16px;
  line-height: 1.35;
  color: #fff;
  background: transparent;
  border: 1px solid var(--contact-line);
  border-radius: 0.375rem;
  outline: none;
  transition: border-color 0.2s var(--zk-ease-out), background 0.2s var(--zk-ease-out);
}
@media (min-width: 768px) {
  .contact-form__input {
    font-size: 0.875rem;
    min-height: 2.625rem;
  }
}
.contact-form__input--area {
  min-height: 4.5rem;
  resize: vertical;
  padding-top: 0.625rem;
}
.contact-form__input::placeholder { color: var(--contact-fg-soft); opacity: 1; }
.contact-form__input:hover { border-color: rgba(255, 255, 255, 0.28); }
.contact-form__input:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.03);
}
select.contact-form__input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23ffffff' fill-opacity='0.48' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  padding-right: 2rem;
}
.contact-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1rem;
  min-height: 2.875rem;
  padding: 0 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.2s var(--zk-ease-out), border-color 0.2s var(--zk-ease-out), transform 0.2s var(--zk-ease-out);
}
@media (min-width: 768px) {
  .contact-form__submit { width: auto; }
}
.contact-form__submit .icon {
  width: 0.8125rem;
  height: 0.8125rem;
  transition: transform 0.2s var(--zk-ease-out);
}
.contact-form__submit:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}
.contact-form__submit:hover .icon { transform: translateX(3px); }
.contact-form__submit:active { transform: scale(0.98); }
.contact-form__submit:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  border-radius: 0.375rem;
}

.contact-map {
  width: 100%;
  height: 5.5rem;
  margin-top: 1rem;
  border-radius: 0.375rem;
  overflow: hidden;
  border: 1px solid var(--contact-line);
  opacity: 0.55;
  transition: opacity 0.25s var(--zk-ease-out);
}
.contact-map:hover { opacity: 0.75; }
.contact-map:focus-within { opacity: 0.9; outline: 1px solid #fff; outline-offset: 1px; }
.contact-map iframe { opacity: 1; }

@media (max-width: 539px) {
  .contact-form__grid { grid-template-columns: 1fr; }
  .contact-finale { align-items: stretch; text-align: left; }
  .contact-finale__cta { max-width: none; }
}

.section-head h2 {
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.section-head .text-zk-green,
.section-head span.text-xs {
  letter-spacing: 0.2em;
  opacity: 0.85;
}

.h-scroll-dots__dot {
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.35s var(--zk-ease-out), width 0.35s var(--zk-ease-out);
}
.h-scroll-dots__dot.is-active {
  background: rgba(204, 255, 0, 0.85);
  width: 1rem;
}

.editorial-zahir__follow {
  transition: color 0.3s var(--zk-ease-out), letter-spacing 0.3s var(--zk-ease-out);
}
.editorial-zahir__follow:hover {
  color: var(--zk-green);
  letter-spacing: 0.1em;
}

.editorial-zahir__spread {
  gap: clamp(2.25rem, 4.5vw, 4rem);
}

@media (min-width: 1024px) {
  .editorial-zahir__figure {
    top: calc(6rem + env(safe-area-inset-top, 0px));
  }
  .method-pillar { opacity: 0.92; }
  .method-pillar:hover { opacity: 1; }
}

footer.bg-zk-black {
  border-top-width: 1px;
  border-top-color: rgba(204, 255, 0, 0.35);
}

.faq-answer { transition: max-height 0.45s var(--zk-ease-in-out); }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js-anim .reveal:not(.active) { opacity: 1 !important; transform: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee__track { animation: none !important; }
  .live-dot, .animate-pulse { animation: none !important; }
  .hero-bg__img { animation: none !important; }
  .hero-enter { opacity: 1 !important; transform: none !important; }
  .pkg-featured { animation: none !important; }
  .hero-scroll-hint__icon { animation: none !important; }
  * { scroll-behavior: auto !important; }
}
