:root{
  --bg:#0b0d12;
  --panel:#121622;
  --text:#f3f4f6;
  --muted:#b8c0cc;

  /* FitBossElite Gold */
  --gold:#d4af37;
  --gold2:#f2d27a;
  --goldDark:#8a6b10;

  --border:rgba(255,255,255,.12);
  --shadow: 0 12px 30px rgba(0,0,0,.45);
  --radius:18px;
  --max:1100px;
  --pad:22px;
  --pad2:34px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  background: radial-gradient(900px 600px at 80% -10%, rgba(212,175,55,.18), transparent 55%),
              radial-gradient(900px 600px at 20% 0%, rgba(255,255,255,.06), transparent 55%),
              radial-gradient(1200px 700px at 75% -10%, rgba(255,255,255,.08), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 var(--pad);}
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,13,18,.75);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:800; letter-spacing:.5px;
}
.logo{
  width:36px;height:36px;border-radius:12px;
  border:1px solid rgba(212,175,55,.35);
  background: linear-gradient(135deg, rgba(212,175,55,.55), rgba(255,255,255,.06));
  box-shadow: var(--shadow);
}
.nav-links{display:flex; gap:16px; align-items:center; flex-wrap:wrap}
.nav-links a{padding:8px 10px; border-radius:12px; color:var(--muted)}
.nav-links a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.nav-links a[aria-current="page"]{background:rgba(255,255,255,.06); color:var(--text)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px; border-radius:14px;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #0b0d12;
  border:1px solid rgba(212,175,55,.45);
  font-weight:900;
  box-shadow: 0 10px 22px rgba(0,0,0,.40);
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px); filter: brightness(1.03)}
.btn.secondary{
  background: rgba(255,255,255,.02);
  color:var(--text);
  border:1px solid rgba(212,175,55,.22);
  box-shadow:none;
}
.btn.secondary:hover{background: rgba(212,175,55,.06)}
.hero{padding:72px 0 34px;}
.grid{display:grid; grid-template-columns: 1.15fr .85fr; gap:26px;}
@media (max-width: 960px){.grid{grid-template-columns:1fr}}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px; border:1px solid rgba(212,175,55,.18); border-radius:999px;
  color:var(--muted);
  background: rgba(212,175,55,.05);
  flex-wrap:wrap;
}
.h1{
  font-size: clamp(34px, 4.2vw, 54px);
  line-height:1.05;
  letter-spacing:-.6px;
  margin:14px 0 12px;
}
.lead{color:var(--muted); font-size: 18px; margin:0 0 18px}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 10px}
.card{
  background: rgba(18,22,34,.75);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card.pad{padding: var(--pad2)}
.small{color:var(--muted); font-size:14px}
.section{padding:40px 0}
.h2{font-size: clamp(24px, 2.6vw, 34px); margin:0 0 10px}
.h3{font-size:18px; margin:0 0 6px}
.cols3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px;}
@media (max-width: 960px){.cols3{grid-template-columns:1fr}}
.pill{
  display:inline-flex; align-items:center;
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(212,175,55,.18);
  background: rgba(212,175,55,.06);
  color: var(--gold2);
  font-size:13px; gap:8px;
}
.list{margin:10px 0 0; padding:0 0 0 18px; color:var(--muted)}
.list li{margin:8px 0}
.hr{height:1px; background:var(--border); margin:22px 0}
.quote{font-size:16px; color:var(--text); margin:0;}
.footer{padding:34px 0; border-top: 1px solid var(--border); color:var(--muted);}
.frow{display:flex; align-items:flex-start; justify-content:space-between; gap:18px; flex-wrap:wrap}
.input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--text);
  outline:none;
}
textarea{min-height:110px; resize:vertical}
.formgrid{display:grid; grid-template-columns: 1fr 1fr; gap:12px;}
@media (max-width: 720px){.formgrid{grid-template-columns:1fr}}
label{display:block; font-size:13px; color:var(--muted); margin:0 0 6px}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px; border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size:13px;
}
.notice{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-size:14px;
}
kbd{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background: rgba(255,255,255,.06);
  border:1px solid var(--border);
  border-bottom-color: rgba(255,255,255,.20);
  padding:2px 6px;
  border-radius:8px;
  color:var(--text);
  font-size: 12px;
}

/* Gold headline accent */
.h1, .h2{background: linear-gradient(180deg, var(--text), rgba(242,210,122,.92)); -webkit-background-clip:text; background-clip:text; color: transparent;}
