/* ==========================================================================

/* ---------- 0. Box sizing & reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* ---------- 1. Fonts (Monograf) ---------- */
/* Place MonografText-Regular.woff2 and MonografText-Bold.woff2 inside ./fonts/ */
@font-face {
  font-family: "Monograf Text";
  src: url("fonts/MonografText-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Monograf Text";
  src: url("fonts/MonografText-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- 2. Theme colors & base ---------- */
:root{
  --bg: #000; /* black background usage where needed */
  --surface: #ffffff; /* white surfaces */
  --text: #111111; /* primary body text (dark) */
  --muted: #6b6b6b;
  --electric: #00BEFF; /* electric blue */
  --electric-dark: #008fb3; /* darker shade for hover */
  --glow: rgba(0,190,255,0.12);
  --glow-strong: rgba(0,190,255,0.18);
  --container-max: 1400px;
  --radius: 12px;
}

/* Base typography */
body {
  font-family: "Monograf Text", "Helvetica Neue", Arial, sans-serif;
  background: var(--surface); /* main background is white surface (content) */
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
}

/* Accessibility helper */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* ---------- 3. Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
}

/* Basic section spacing */
section {
  padding-top: 72px;
  padding-bottom: 72px;
}

/* Headings */
h1, h2, h3, h4 {
  margin: 0 0 12px 0;
  font-family: "Monograf Text", "Helvetica Neue", sans-serif;
  color: var(--text);
}
h1 { font-weight: 700; font-size: 32px; line-height: 1.05; }
h2 { font-weight: 700; font-size: 28px; }
h3 { font-weight: 700; font-size: 18px; }
p { margin: 0 0 1rem 0; color: var(--muted); }

/* Buttons base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 10px;
  padding: 12px 20px;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  font-family: inherit;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  -webkit-tap-highlight-color: transparent;
}

/* Button variants */
.btn-primary {
  background: var(--electric);
  color: #000; /* black text for readability on electric blue */
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--electric-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--glow);
  outline: none;
}

.btn-outline {
  background: transparent;
  color: var(--electric);
  border: 2px solid var(--electric);
}
.btn-outline:hover,
.btn-outline:focus {
  background: var(--electric);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--glow);
  outline: none;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 10px 14px;
  border-radius: 8px;
}

/* Slight blue glow on hover for cards/buttons/tabs */
.glow-hover:hover,
.user-card:hover,
.how-tab:hover,
.btn-primary:hover,
.card-cta:hover {
  box-shadow: 0 8px 30px var(--glow);
}

/* Stronger (still subtle) glow */
.glow-strong:hover,
.user-card:focus-within,
.btn-primary:focus {
  box-shadow: 0 12px 36px var(--glow-strong);
}

/* ---------- 4. Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(0,0,0,0.85);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  font-weight: 700;
  color: var(--electric);
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 0.4px;
}

/* nav */
.main-nav { margin-left: auto; }
.nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px;
}
.header-actions {
  display: flex;
  gap: 10px;
  margin-left: 18px;
}


/* NAV glow "How It Works", "Why", and "Early Access" sections
/* Subtle Glow Effect on Nav Items (How It Works, Why, Early Access) */
.nav-list li a {
  position: relative; /* Ensures we can control the shadow properly */
  color: var(--white); /* Ensure text color is the primary color */
  text-decoration: none;
  font-weight: 600;
  padding: 8px;
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth transition */
}

/* Add a subtle glow effect */
.nav-list li a:hover,
.nav-list li a:focus {
  color: var(--electric); /* Change text color when hovered */
  text-shadow: 0 0 10px rgba(0, 190, 255, 0.5); /* Light glow effect */
 
}

/* Active link glow */
.nav-list li a.active {
  color: var(--electric); /* Same color as hover */
  text-shadow: 0 0 15px rgba(0, 190, 255, 0.7); /* Stronger glow */
  
}





/* NAV new logo on nav
/* Base styling */
/* Logo hover effect */
.brand-logo {
  height: 40px; /* default height for desktop */
  width: auto;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease; /* smooth animation */
}

.brand-logo:hover {
  transform: scale(1.02); /* subtle grow */
  filter: drop-shadow(0 1px 4px rgba(0, 190, 255, 0.3)); /* optional soft glow */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .brand-logo {
    height: 30px;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    height: 25px;
  }
}




/* ---------- 5. HERO (FULL-VIEWPORT) ---------- */
.hero.full-viewport {
  position: relative;
  width: 100%;
  height: 100vh; /* full viewport */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

/* hero background image (img element scaled to cover) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1) contrast(1);
  transform-origin: center center;
}

/* overlay for contrast */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

/* content sits above background */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 12px;
  max-width: 1100px;
}

/* hero text sizes */
.hero-eyebrow {
  font-size: clamp(3.5rem, 6vw + 1rem, 10rem);
  font-weight: 400;
  color: var(--electric);
  margin-bottom: 8px;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.03;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 700;
  text-shadow: 0 6px 20px rgba(0,0,0,0.6);
}
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 22px;
}

/* hero CTA layout */
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* subtle scroll hint */
.hero-scroll-hint {
  margin-top: 18px;
  color: rgba(255,255,255,0.85);
  font-size: 22px;
  opacity: 0.9;
}

/* ---------- 6. USER TYPE CARDS ---------- */
.user-type-section { background: #000; color: #fff; padding-top: 60px; padding-bottom: 60px; }
.user-type-section .section-title { color: var(--electric); text-align: center; font-size: 28px; margin-bottom: 28px; }

.user-type-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;
}
.user-card {
  background: #0b0b0b;
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: transform .22s ease, box-shadow .22s ease;
}
.user-card .card-title { font-size: 18px; color: #fff; margin-bottom: 8px; }
.user-card .card-desc { color: rgba(255,255,255,0.75); margin-bottom: 18px; }
.user-card .card-cta { background: var(--electric); color: #000; border-radius: 8px; padding: 10px 16px; }

/* hover glow */
.user-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px var(--glow); }

/* ---------- 7. HOW IT WORKS (BIG TABS) ---------- */
.how-it-works { background: #fff; color: var(--text); padding-top: 80px; padding-bottom: 80px; }
.how-it-works .section-title { text-align: center; color: #000; margin-bottom: 24px; }

.how-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

/* Tab button — large and readable */
.how-tab {
  padding: 14px 28px;
  border-radius: 12px;
  border: 2px solid rgba(0,0,0,0.06);
  background: #f8f8f8;
  color: #000;
  font-weight: 700;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
  min-width: 170px;
  text-align: center;
}

/* Active tab uses electric blue bg with BLACK text to ensure readability */
.how-tab--active {
  background: var(--electric);
  color: #000;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 12px 36px rgba(0,190,255,0.08);
}
.how-tab:hover { transform: translateY(-4px); box-shadow: 0 10px 30px var(--glow); }

/* Panels */
.how-panels { max-width: 1200px; margin: 0 auto; }
.how-panel { display: none; padding-top: 12px; }
.how-panel--active { display: block; }

/* grid for steps */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.how-step {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.04);
}
.step-title { color: var(--electric); font-weight: 700; margin-bottom: 8px; }
.step-desc { color: #333; }

/* ---------- 8. WHY & BENEFITS ---------- */
.why-gymwrks { background: #000; color: #fff; }
.why-gymwrks .section-title { color: var(--electric); text-align: center; margin-bottom: 20px; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.benefit-card {
  background: #0b0b0b;
  border-radius: 10px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.04);
}
.benefit-title { color: var(--electric); font-weight: 700; margin-bottom: 8px; }
.benefit-desc { color: rgba(255,255,255,0.8); }

/* ---------- 9. TESTIMONIALS ---------- */
.testimonials { background: #fff; color: #111; }
.testimonials .testimonials-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.testimonial {
  background: #f9f9f9;
  padding: 22px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.04);
}
.testimonial blockquote { font-style: italic; color: #333; margin: 0 0 8px 0; }
.testimonial figcaption { color: var(--electric); font-weight: 700; }

/* ---------- 10. EARLY ACCESS (FORM) ---------- */
.early-access { background: #000; color: #fff; text-align: center; }
.early-access .lead { color: rgba(255,255,255,0.9); margin-bottom: 18px; }
.early-form {
  display: flex; gap: 12px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 18px;
}
.early-form input[type="email"],
.early-form select {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  background: #111;
  color: #fff;
  min-width: 220px;
}
.early-form button { min-width: 160px; }

/* ---------- 10. EARLY ACCESS glow ---------- */
.early-access .section-title {
  color: #fff;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.08);
}

/* ---------- 10. EARLY ACCESS button pulse ---------- */
.early-access .btn-primary {
  background: var(--electric);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 190, 255, 0.15);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.early-access .btn-primary:hover {
  box-shadow: 0 0 30px rgba(0, 190, 255, 0.3);
  transform: translateY(-3px);
}



/* Subtle Glow Effect social media */
.sociallink {
  position: relative; /* Ensures we can control the shadow properly */
  color: var(--white); /* Ensure text color is the primary color */
  text-decoration: none;
  font-weight: 600;
  padding: 8px;
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth transition */
}

/* Add a subtle glow effect */
.sociallink :hover,
.sociallink :focus {
  color: var(--electric); /* Change text color when hovered */
  text-shadow: 0 0 10px rgba(0, 190, 255, 0.5); /* Light glow effect */
 
}



/* -----------------------------------------------------
FOOTER
----------------------------------------------------- */

.footer {

    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    color: #fff;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
    opacity: 0.9;
    z-index: 999;
}

/* Double-heartbeat "dak dak" animation */
.footer .heart {
    color: #ff6b6b;               /* pastel red */
    font-size: 1.2em;
    margin: 0 4px;
    display: inline-block;
    animation: heartbeat 1.4s ease-in-out infinite;
}

@keyframes heartbeat {
  0%   { transform: scale(1); }
  20%  { transform: scale(1.25); }
  35%  { transform: scale(1); }
  50%  { transform: scale(1.25); } /* second beat */
  70%  { transform: scale(1); }
  100% { transform: scale(1); }
}

/* Agency neon link */
.footer .agency {
    color: #ffdede; /* pastel blush */
    font-weight: 600;
    text-decoration: none;
    text-shadow: 0 0 4px #ff9f9f, 0 0 8px #ff9f9f;
    display: inline-block;
    transition: transform 0.25s ease-in-out, text-shadow 0.25s ease-in-out;
}

/* Hover glow + scale for agency link */
.footer .agency:hover {
    transform: scale(1.15);
    text-shadow: 
        0 0 6px #ffb5b5,
        0 0 12px #ffb5b5,
        0 0 20px #ffb5b5;
}


/* fineprint */
.fineprint { color: rgba(255,255,255,0.65); margin-top: 12px; }

/* ---------- 11. FOOTER ---------- */
.site-footer { background: #111; color: rgba(255,255,255,0.9); padding-top: 48px; padding-bottom: 48px; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; align-items: start; }
.footer-brand .brand { color: var(--electric); font-weight: 700; font-size: 20px; text-decoration: none; display: inline-block; margin-bottom: 8px; }
.footer-links nav a { display: block; color: rgba(255,255,255,0.9); text-decoration: none; margin-bottom: 8px; font-weight: 600; }
.footer-social a { display: inline-block; margin-right: 12px; color: rgba(255,255,255,0.9); text-decoration: none; font-weight: 600; }
.footer-copy { margin-top: 18px; color: rgba(255,255,255,0.6); }

/* ---------- 12. Responsive adjustments ---------- */
@media (max-width: 1100px) {
  .how-grid, .benefits-grid, .testimonials .testimonials-list { grid-template-columns: repeat(2, 1fr); }
  .user-type-cards { grid-template-columns: repeat(2, minmax(220px,1fr)); }
}

@media (max-width: 768px) {
  /* smaller heading sizes */
  h1 { font-size: 20px; }
  .hero-title { font-size: 28px; }
  .hero-lead { font-size: 1rem; }

  /* stack content */
  .header-inner { gap: 10px; padding-left: 4%; padding-right: 4%; }
  .nav-list { display: none; } /* hide nav on mobile for now — you can add hamburger later */

  .user-type-cards, .how-grid, .benefits-grid, .testimonials .testimonials-list {
    grid-template-columns: 1fr;
  }

  .how-tabs { gap: 10px; flex-direction: column; align-items: center; }
  .how-tab { width: min(92%, 380px); }

  .hero.full-viewport { height: 78vh; } /* keep hero tall but leave room on mobile */

  section { padding-top: 40px; padding-bottom: 40px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 12px; }
}

/* ---------- 13. Small utilities ---------- */
.text-center { text-align: center; }
.mb-8 { margin-bottom: 2rem; }
