/* Strive Fitness — simple, fast, no fuss */

:root{
  --bg: #070A0F;          /* deeper, cleaner background */
  --panel: #0F1624;
  --panel-2: #0B1220;
  --text: #F4F7FF;
  --muted: #B9C4D8;

  /* STRIVE-style blues */
  --accent: #00A8FF;      /* cyan-blue */
  --accent-2: #1E5BFF;    /* deeper blue */
  --accent-3: #8FE9FF;    /* highlight */

  --border: rgba(255,255,255,0.10);
  --shadow: 0 14px 34px rgba(0,0,0,0.45);

  --radius: 18px;
  --max: 1120px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(900px 520px at 18% 0%, rgba(0,168,255,0.18), transparent 55%),
    radial-gradient(740px 520px at 82% 8%, rgba(30,91,255,0.14), transparent 55%),
    radial-gradient(640px 480px at 60% 60%, rgba(143,233,255,0.06), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  max-width: var(--max);
  padding: 0 18px;
  margin: 0 auto;
}

.muted{ color: var(--muted); }
code{
  background: rgba(255,255,255,0.08);
  padding: 2px 6px;
  border-radius: 8px;
}

/* ====== HEADER ====== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7,10,15,0.78);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

/* TEXT LOGO */
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand-mark{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -1px;
  color: #071018;
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  box-shadow:
    0 10px 22px rgba(0,0,0,0.45),
    0 0 22px rgba(0,168,255,0.20);
  border: 1px solid rgba(255,255,255,0.12);
}
.brand-word{
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}
.brand-strive{
  font-weight: 950;
  font-size: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--accent-3), var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.45));
}
.brand-fitness{
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(244,247,255,0.86);
}

/* NAV */
.nav{
  display: none;
  gap: 14px;
  color: var(--muted);
}
.nav a{ font-size: 14px; opacity: 0.95; }
.nav a:hover{ opacity: 1; }

.header-cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ====== BUTTONS ====== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 650;
  font-size: 14px;
  text-decoration: none !important;
  transition: transform 0.08s ease, opacity 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: rgba(255,255,255,0.14);
  box-shadow:
    0 10px 22px rgba(0,0,0,0.35),
    0 0 26px rgba(0,168,255,0.18);
}
.btn-primary:hover{
  opacity: 0.98;
  box-shadow:
    0 12px 26px rgba(0,0,0,0.38),
    0 0 34px rgba(0,168,255,0.28);
}

.btn-ghost{
  background: rgba(255,255,255,0.06);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.09); }

/* ====== HERO ====== */
.hero{
  padding: 46px 0 22px;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}
.eyebrow{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
h1{
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.6px;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 58ch;
}
.hero-buttons{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-points{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
}
.point{
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
}
.point-title{
  font-weight: 700;
  margin-bottom: 2px;
}
.point-text{ color: var(--muted); }

.media-card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 280px;
}
.media-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ====== WIDE IMAGE SECTIONS ====== */
.image-wide{
  padding: 14px 0 12px;
}
.image-wide--tight{
  padding: 0 0 12px;
}
.image-wide img{
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* ====== SECTIONS ====== */
.section{
  padding: 32px 0;
}
.section-alt{
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head{
  margin-bottom: 14px;
}
.section-head h2{
  margin: 0 0 6px;
  font-size: 26px;
  letter-spacing: -0.3px;
}
.section-cta{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ====== CARDS / PANELS ====== */
.cards{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 16px;
  box-shadow: var(--shadow);
}
.card-title{
  margin: 0 0 8px;
  font-size: 18px;
}
.card p{ margin: 0 0 10px; color: var(--muted); }

.link{
  color: #fff;
  font-weight: 650;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.link:hover{ text-decoration: underline !important; }

.grid-2{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}
.grid-3{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}
.panel{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel-2);
  padding: 16px;
}
.panel h3{
  margin: 0 0 8px;
  font-size: 18px;
}
.panel p{ margin: 0; color: var(--muted); }

.bullets, .steps{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li, .steps li{ margin: 6px 0; }

.note{
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
}

.contact-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* ====== FOOTER ====== */
.site-footer{
  border-top: 1px solid var(--border);
  padding: 18px 0 28px;
}
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-links{
  display: flex;
  gap: 14px;
  color: var(--muted);
}

/* ====== RESPONSIVE ====== */
@media (min-width: 860px){
  .nav{ display: inline-flex; }
  .hero-grid{
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }
  .hero-points{
    grid-template-columns: repeat(3, 1fr);
  }
  .cards{
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-2{
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3{
    grid-template-columns: repeat(3, 1fr);
  }
}
