:root {
  --bg-black: #0D0D0D;
  --bg-dark-1: #141414;
  --bg-dark-2: #1C1C1C;
  --color-blue: #0A66FF;
  --color-blue-hover: #0052D4;
  --color-orange: #E8501E;
  --color-white: #FFFFFF;
  --color-gray: #8E9299;
  --color-border: #262626;
  --radius-sharp: 4px;
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-black);
  color: var(--color-white);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Punchy Gym Header */
.wf-header {
  background: var(--bg-black);
  border-bottom: 2px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.wf-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.wf-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wf-badge-square {
  width: 42px;
  height: 42px;
  background: #181818;
  border: 1px solid var(--color-blue);
  border-radius: var(--radius-sharp);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--color-white);
}

.wf-badge-square span {
  color: var(--color-blue);
}

.wf-brand-text {
  display: flex;
  flex-direction: column;
}

.wf-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.wf-title strong {
  color: var(--color-blue);
}

.wf-tag {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--color-gray);
  text-transform: uppercase;
  font-weight: 700;
}

.wf-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.wf-nav-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gray);
  transition: color 0.15s ease;
}

.wf-nav-links a:hover, .wf-nav-links a.active {
  color: var(--color-blue);
}

/* Punchy Buttons (Sharp 4px corners) */
.btn-blue {
  background: var(--color-blue);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 11px 22px;
  border-radius: var(--radius-sharp);
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-blue:hover {
  background: var(--color-blue-hover);
  transform: translateY(-1px);
}

.btn-orange-offer {
  background: var(--color-orange);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 11px 22px;
  border-radius: var(--radius-sharp);
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-orange-offer:hover {
  background: #d44314;
}

.btn-outline-sharp {
  border: 1px solid #333333;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 11px 22px;
  border-radius: var(--radius-sharp);
  background: transparent;
  transition: all 0.15s ease;
}

.btn-outline-sharp:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
}

/* Current Offers Strip (Dynamic Promo Banner) */
.offers-ticker {
  background: var(--color-orange);
  color: #FFFFFF;
  padding: 10px 0;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.offers-ticker-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Hero Section */
.wf-hero {
  padding: 70px 0 60px;
  background: radial-gradient(circle at 80% 20%, rgba(10, 102, 255, 0.18), transparent 50%), #0D0D0D;
  border-bottom: 2px solid var(--color-border);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10, 102, 255, 0.15);
  border: 1px solid rgba(10, 102, 255, 0.4);
  color: var(--color-blue);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-sharp);
  margin-bottom: 16px;
}

.wf-hero-title {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.wf-hero-title span {
  color: var(--color-blue);
}

.wf-hero-sub {
  font-size: 17px;
  color: var(--color-gray);
  max-width: 580px;
  margin-bottom: 28px;
}

.wf-hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Stat strip */
.wf-stats-bar {
  background: var(--bg-dark-1);
  border-bottom: 2px solid var(--color-border);
  padding: 20px 0;
}

.wf-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.stat-box h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: var(--color-white);
}

.stat-box h3 span {
  color: var(--color-blue);
}

.stat-box p {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gray);
}

/* Sharp Cards Section */
.wf-section {
  padding: 60px 0;
}

.wf-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.wf-section-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.wf-section-title span {
  color: var(--color-blue);
}

.sharp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.sharp-card {
  background: var(--bg-dark-1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sharp);
  padding: 22px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.sharp-card:hover {
  border-color: var(--color-blue);
  transform: translateY(-2px);
}

.trainer-tag {
  font-size: 11px;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--color-blue);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sharp-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.sharp-card p {
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.5;
}

/* Placeholder Box */
.wf-placeholder {
  display: inline-block;
  background: rgba(232, 80, 30, 0.12);
  border: 1px dashed var(--color-orange);
  color: var(--color-orange);
  padding: 4px 8px;
  border-radius: var(--radius-sharp);
  font-size: 11px;
  font-weight: 700;
}

/* Facilities list */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.facility-item {
  background: var(--bg-dark-2);
  border-left: 3px solid var(--color-blue);
  padding: 16px;
  border-radius: var(--radius-sharp);
}

.facility-item h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}

.facility-item p {
  font-size: 12px;
  color: var(--color-gray);
}

/* Footer */
.wf-footer {
  background: #080808;
  border-top: 2px solid var(--color-border);
  padding: 50px 0 24px;
  font-size: 13px;
}

.wf-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.wf-footer-col h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--color-blue);
}

.wf-footer-col p {
  color: var(--color-gray);
  line-height: 1.6;
}

.wf-footer-bottom {
  text-align: center;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  color: #555555;
  font-size: 11px;
}

/* Fast Motion Animation */
.punch-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}

.punch-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .wf-nav-links { display: none; }
  .wf-stats-grid { grid-template-columns: 1fr 1fr; }
  .wf-hero-title { font-size: 38px; }
  .wf-footer-grid { grid-template-columns: 1fr; }
}
