/* ── HIPACE SHARED STYLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0b0b0b;
  --orange: #ff5500;
  --white: #f5f3ef;
  --gray: #1a1a1a;
  --gray2: #2a2a2a;
  --muted: #666;
  --display: 'Bebas Neue', sans-serif;
  --body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  background: rgba(11,11,11,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-logo img { height: 26px; display: block; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--white); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; opacity: 0.6;
  transition: opacity 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.active { color: var(--orange); }
.nav-cta {
  background: var(--orange) !important; color: var(--black) !important;
  padding: 10px 22px; opacity: 1 !important;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #ff7733 !important; }

/* ── PAGE HEADER ── */
.page-hero {
  padding: 140px 48px 80px;
  border-bottom: 1px solid var(--gray2);
}
.page-eyebrow {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); font-weight: 600; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.page-eyebrow::before {
  content: ''; display: block; width: 32px; height: 2px; background: var(--orange);
}
.page-title {
  font-family: var(--display);
  font-size: clamp(60px, 8vw, 120px);
  line-height: 0.92; color: var(--white);
}
.page-title span { color: var(--orange); }
.page-sub {
  margin-top: 24px; font-size: 18px; font-weight: 300;
  line-height: 1.7; color: rgba(245,243,239,0.55);
  max-width: 560px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--orange); color: var(--black);
  padding: 14px 32px; font-family: var(--body);
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; border: none; cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #ff7733; transform: translateY(-2px); }
.btn-ghost {
  display: inline-block;
  color: var(--white); background: transparent;
  padding: 14px 32px; font-family: var(--body);
  font-size: 13px; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; border: 1px solid rgba(245,243,239,0.2);
  cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--gray2);
  padding: 40px 48px;
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
}
.footer-logo img { height: 28px; display: block; }
.footer-links { display: flex; gap: 32px; }
.footer-links a {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: var(--muted); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── DIFFICULTY BADGES ── */
.badge {
  display: inline-block;
  padding: 4px 12px; font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 600; border-radius: 2px;
}
.badge-beginner { background: rgba(80,200,120,0.15); color: #50c878; }
.badge-intermediate { background: rgba(255,165,0,0.15); color: #ffa500; }
.badge-advanced { background: rgba(255,85,0,0.15); color: #ff5500; }
.badge-all { background: rgba(255,255,255,0.1); color: var(--white); }
