/* PBG Fitness — Aurora theme */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

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

html, body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0f;
  color: #f5f5f7;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Aurora background mesh */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 15%, rgba(255, 77, 141, 0.28), transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 25%, rgba(168, 85, 247, 0.30), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(30, 27, 75, 0.85), transparent 70%),
    linear-gradient(180deg, #0a0a0f 0%, #0a0a0f 100%);
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent 80%);
}

main, .page-shell, .legal-shell, .site-header, .site-footer { position: relative; z-index: 1; }

/* ============ LANDING ============ */
.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.landing-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
}

.hero {
  max-width: 880px;
  width: 100%;
  text-align: center;
}

.brand-mark {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff4d8d 0%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 36px;
  display: inline-block;
}

.hero h1 {
  font-weight: 700;
  font-size: clamp(2.1rem, 5.5vw, 3.85rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero h1 .accent {
  background: linear-gradient(135deg, #ff4d8d 0%, #a855f7 50%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .subhead {
  font-weight: 400;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: #c7c7d1;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.launch-statement {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 500;
  color: #d4d4dc;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 20px;
  border-radius: 999px;
  margin-bottom: 48px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Email capture */
.capture {
  max-width: 540px;
  margin: 0 auto;
}

.capture-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #e8e8ee;
  margin-bottom: 14px;
}

.capture-form {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 6px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.capture-form:focus-within {
  border-color: rgba(168, 85, 247, 0.55);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.15);
}

.capture-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font: inherit;
  font-size: 1rem;
  padding: 12px 18px;
  min-width: 0;
}

.capture-form input[type="email"]::placeholder {
  color: #8a8a96;
}

.capture-form button {
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 0.98rem;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4d8d 0%, #a855f7 100%);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}

.capture-form button:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 10px 28px rgba(168, 85, 247, 0.5);
}

.capture-form button:active { transform: translateY(0); }

.capture-note {
  font-size: 0.8rem;
  color: #8a8a96;
  margin-top: 14px;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 40px 24px 36px;
  color: #9a9aa6;
  font-size: 0.86rem;
}

.legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 18px;
}

.legal-links a {
  color: #c7c7d1;
  text-decoration: none;
  transition: color 0.15s ease;
}

.legal-links a:hover { color: #ffffff; }

.footer-tag { color: #8a8a96; }
.footer-tag a {
  color: #c7c7d1;
  text-decoration: none;
  border-bottom: 1px solid rgba(199, 199, 209, 0.3);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer-tag a:hover { color: #ffffff; border-bottom-color: #ffffff; }

/* ============ LEGAL PAGES ============ */
.site-header {
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wordmark {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, #ff4d8d 0%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-shell {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.legal-shell h1 {
  font-weight: 700;
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  line-height: 1.18;
  margin-bottom: 14px;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.legal-shell .meta {
  color: #9a9aa6;
  font-size: 0.92rem;
  margin-bottom: 40px;
}

.legal-shell h2 {
  font-weight: 600;
  font-size: 1.45rem;
  margin: 44px 0 14px;
  color: #ffffff;
}

.legal-shell h3 {
  font-weight: 500;
  font-size: 1.12rem;
  margin: 28px 0 10px;
  color: #e8e8ee;
}

.legal-shell p {
  color: #c7c7d1;
  font-weight: 400;
  margin-bottom: 16px;
  font-size: 1rem;
}

.legal-shell strong { color: #ffffff; font-weight: 600; }

.legal-shell ul, .legal-shell ol {
  color: #c7c7d1;
  margin: 0 0 18px 22px;
  padding-left: 6px;
}

.legal-shell li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-shell a {
  color: #ff8ab3;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 138, 179, 0.35);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.legal-shell a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.legal-shell .closing {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #9a9aa6;
  font-size: 0.92rem;
}

@media (max-width: 600px) {
  .landing-main { padding: 56px 18px 48px; }
  .capture-form { flex-direction: column; padding: 8px; gap: 6px; border-radius: 24px; }
  .capture-form input[type="email"] { padding: 14px 18px; }
  .capture-form button { padding: 14px 22px; border-radius: 18px; }
  .legal-shell { padding: 40px 18px 60px; }
  .legal-links { gap: 6px 16px; font-size: 0.84rem; }
  .site-header { padding: 22px 18px; }
}
