/* ════════════════════════════════════════════════════════
   WOLFPACK ASSETS — global stylesheet
   Palette: cool black + electric green (#01ff9f) accent
   ════════════════════════════════════════════════════════ */

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

:root {
  --bg:        #0a0a0a;
  --bg-2:      #131313;
  --bg-3:      #1a1a1a;
  --accent:      #01ff9f;
  --accent-soft: #4dffba;
  --accent-dim:  #00b070;
  --accent-glow: rgba(1, 255, 159, 0.12);
  --text:      #f5f5f5;
  --gray:      #a8a8a8;
  --gray-d:    #4a4a4a;
  --line:      rgba(245, 245, 245, 0.08);
  --line-accent: rgba(1, 255, 159, 0.18);

  --font-sans: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;

  --shadow-soft: 0 30px 80px rgba(0, 0, 0, 0.45);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ───────────────── NAV ───────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.solid {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-brand-mark {
  width: 32px;
  height: 32px;
  display: inline-block;
  flex-shrink: 0;
  object-fit: contain;
}

.footer-brand-mark .nav-brand-mark { width: 36px; height: 36px; }

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

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.78);
  transition: color 0.2s;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}

.nav-cta:hover { background: var(--accent); color: var(--bg); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: transform 0.25s;
}
.nav-toggle span::before { content: ''; transform: translate(-50%, -7px); }
.nav-toggle span::after  { content: ''; transform: translate(-50%, 6px); }

/* ───────────────── BUTTONS ───────────────── */
.btn-primary {
  display: inline-block;
  padding: 17px 42px;
  background: var(--accent);
  color: var(--bg);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  border: 1px solid var(--accent);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(1, 255, 159, 0.18);
}

.btn-ghost {
  display: inline-block;
  padding: 17px 42px;
  border: 1px solid rgba(245, 245, 245, 0.22);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s;
  cursor: pointer;
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ───────────────── LAYOUT ───────────────── */
.section { position: relative; }
.inner    { max-width: 1180px; margin: 0 auto; padding: 140px 56px; }
.inner-sm { max-width: 820px;  margin: 0 auto; padding: 140px 56px; }
.inner-md { max-width: 1000px; margin: 0 auto; padding: 140px 56px; }

.divider { border: none; border-top: 1px solid var(--line); }

/* ───────────────── TYPOGRAPHY ───────────────── */
.label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  padding-left: 24px;
  position: relative;
}

.label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--accent);
}

.h1 {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
}

.h2 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.08;
}

.h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
  color: var(--gray);
  max-width: 640px;
}

.body-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  max-width: 620px;
}

.body-text + .body-text { margin-top: 18px; }

.serif-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.35;
  color: var(--text);
}

.serif-quote em { color: var(--accent); font-style: italic; }

.gold { color: var(--accent); }
.muted { color: var(--gray); }

/* ───────────────── REVEAL ON SCROLL ───────────────── */
.r {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.r.show { opacity: 1; transform: none; }
.r.d1 { transition-delay: 0.08s; }
.r.d2 { transition-delay: 0.16s; }
.r.d3 { transition-delay: 0.24s; }
.r.d4 { transition-delay: 0.32s; }
.r.d5 { transition-delay: 0.40s; }
.r.d6 { transition-delay: 0.48s; }

/* ───────────────── HERO ───────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 180px 56px 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 18% 55%, rgba(1, 255, 159, 0.07) 0%, transparent 65%),
    var(--bg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1, 255, 159, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 255, 159, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 18% 50%, rgba(0,0,0,0.6), transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 18% 50%, rgba(0,0,0,0.6), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(44px, 7.5vw, 96px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}

.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.015em;
}

.hero-sub {
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
  color: var(--gray);
  margin-bottom: 24px;
  max-width: 540px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.55s forwards;
}

.hero-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 48px;
  max-width: 540px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.85s forwards;
}

.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeUp 1.1s ease 0.5s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Soft cyan-green halo behind the wolf to amplify the eye-glow */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 80%;
  background: radial-gradient(ellipse, rgba(1, 255, 159, 0.14) 0%, rgba(1, 255, 159, 0.03) 35%, transparent 65%);
  z-index: 0;
  pointer-events: none;
  filter: blur(12px);
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* ───────────────── QUICK FACTS STRIP ───────────────── */
.quick-facts {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.quick-facts-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.qf {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}

.qf:last-child { border-right: 0; }

.qf-k {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 600;
}

.qf-v {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: -0.005em;
}

/* ───────────────── HOWLING BANNER (full-bleed) ───────────────── */
.howling-banner {
  position: relative;
  height: 60vh;
  min-height: 480px;
  max-height: 720px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.howling-banner picture { display: block; }

.howling-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.howling-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(1, 255, 159, 0.04) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.15) 50%, rgba(10,10,10,0.7) 100%);
  z-index: 1;
}

.howling-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  height: 100%;
  padding: 0 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.howling-content .label { margin-bottom: 28px; }

.howling-content .serif-quote {
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.2;
  font-weight: 400;
}

/* ───────────────── HOWLING SIDE PANEL ───────────────── */
.two-col-img {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col-img.align-start { align-items: start; }

.howling-side-wrap {
  position: relative;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line-accent);
  line-height: 0;
}

.howling-side-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 70%, rgba(1, 255, 159, 0.08) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.howling-side-wrap::after {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 28px; height: 28px;
  border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
}

.howling-side-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Desktop: shift image down so its top aligns with the headline,
   not with the small eyebrow label above it */
@media (min-width: 1025px) {
  .two-col-img .howling-side-wrap {
    margin-top: 56px;
  }
}

/* ───────────────── PAGE HEADER (subpages) ───────────────── */
.page-header {
  padding: 200px 56px 100px;
  background:
    radial-gradient(ellipse 70% 40% at 80% 0%, rgba(1, 255, 159, 0.10) 0%, transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}

.page-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
}

.page-header h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.page-header .lede {
  margin-top: 28px;
}

.page-crumbs {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
}

.page-crumbs a:hover { color: var(--accent); }
.page-crumbs span { color: var(--accent); }

/* ───────────────── 3-CARD GRID ───────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 40px 36px 44px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  position: relative;
}

.card:hover {
  border-color: var(--line-accent);
  background: var(--bg-3);
  transform: translateY(-3px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-accent);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.card-icon svg { width: 24px; height: 24px; }

.card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.card-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--gray);
}

.card-list {
  margin-top: 24px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-list li {
  font-size: 13.5px;
  color: var(--gray);
  padding-left: 18px;
  position: relative;
}

.card-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 1px;
  background: var(--accent);
}

/* ───────────────── TWO-COLUMN ───────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col.align-start { align-items: start; }

.column-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.column-list li {
  font-size: 15.5px;
  color: var(--gray);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}

.column-list li::before {
  content: '◆';
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-size: 10px;
}

/* ───────────────── PRINCIPLES (numbered grid) ───────────────── */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: var(--line);
  border: 1px solid var(--line);
}

.principle {
  background: var(--bg);
  padding: 44px 36px;
  position: relative;
  transition: background 0.3s;
}

.principle:hover { background: var(--bg-2); }

.principle-num {
  font-family: var(--font-serif);
  font-size: 44px;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 18px;
  line-height: 1;
}

.principle-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.principle-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

/* ───────────────── BANDED SECTION ───────────────── */
.banded {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.banded::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(1, 255, 159, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* ───────────────── HOLDING SECTION TABLE ───────────────── */
.spec-table {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.spec-row dt {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  padding-top: 4px;
}

.spec-row dd {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
}

/* ───────────────── PROGRAM BLOCKS ───────────────── */
.program {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.program:last-child { border-bottom: 0; }

.program-meta .h4 { margin-bottom: 18px; }

.program-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
}

.program-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--text);
}

.program-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 28px;
  max-width: 700px;
}

.program-modules-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 600;
}

.program-modules {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 28px;
}

.program-modules li {
  font-size: 14.5px;
  color: var(--gray);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}

.program-modules li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--accent);
}

.program-for {
  font-size: 14.5px;
  color: var(--text);
  padding: 18px 22px;
  border-left: 2px solid var(--accent);
  background: rgba(1, 255, 159, 0.04);
}

.program-for strong {
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.program-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
}

/* ───────────────── PRE-PURCHASE LEGAL STRIP ─────────────────
   Visible reminder of legal policies near each purchase decision.
   Sits directly below the page-header on program pages. */
.legal-note-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 56px;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray);
}

.legal-note-strip a {
  color: var(--text);
  border-bottom: 1px solid var(--line-accent);
  transition: color 0.2s, border-color 0.2s;
}

.legal-note-strip a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

@media (max-width: 720px) {
  .legal-note-strip {
    padding: 16px 20px;
    font-size: 12px;
  }
}

/* ───────────────── COURSE EXTENSIONS (extends .program) ───────────────── */

/* Price badge — bold, accent-coloured pill */
.badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 11px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.badge-price {
  background: var(--accent);
  color: var(--bg);
}

.badge-type,
.badge-prereq {
  border: 1px solid var(--line-accent);
  color: var(--accent);
  background: transparent;
}

.badge-prereq {
  border-color: var(--line);
  color: var(--gray);
}

.program-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.program-price-big {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(48px, 6vw, 76px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
}

.program-price-note {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.program-outcomes,
.program-includes {
  list-style: none;
  margin: 18px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.program-outcomes li,
.program-includes li {
  font-size: 14.5px;
  color: var(--gray);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}

.program-outcomes li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.program-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.program-section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 24px 0 12px;
}

.program-cta {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.program-disclaimer {
  margin-top: 22px;
  padding: 16px 20px;
  border-left: 2px solid var(--gray-d);
  background: rgba(245, 245, 245, 0.02);
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
  line-height: 1.6;
}

/* ───────────────── WOLFPACK LAWS GRID ───────────────── */
.law-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.law-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 30px 28px 28px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
}

.law-card:hover {
  border-color: var(--line-accent);
  background: var(--bg-3);
  transform: translateY(-2px);
}

.law-card-focus {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 700;
}

.law-card-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.005em;
}

.law-card-subtitle {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 18px;
}

.law-card-outcomes {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}

.law-card-outcomes li {
  font-size: 13px;
  color: var(--gray);
  padding: 5px 0 5px 16px;
  position: relative;
  line-height: 1.5;
}

.law-card-outcomes li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--accent);
}

.law-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.law-card-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.law-card-cta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  border-bottom: 1px solid var(--line-accent);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.law-card-cta:hover {
  color: var(--accent-soft);
  border-bottom-color: var(--accent);
}

/* ───────────────── BUNDLE HIGHLIGHT ───────────────── */
.bundle-highlight {
  margin-top: 72px;
  padding: 56px;
  background: linear-gradient(135deg, rgba(1, 255, 159, 0.06) 0%, rgba(1, 255, 159, 0.015) 60%, transparent 100%);
  border: 1px solid var(--line-accent);
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}

.bundle-highlight::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 36px;
  height: 36px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.bundle-highlight::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 36px;
  height: 36px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.bundle-highlight-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}

.bundle-highlight-title {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}

.bundle-highlight-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 22px;
}

.bundle-highlight-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}

.bundle-highlight-list li {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  border: 1px solid var(--line);
  color: var(--gray);
  padding: 6px 12px;
}

.bundle-price-block {
  text-align: center;
}

.bundle-highlight-price {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(56px, 8vw, 96px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.bundle-highlight-price-note {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

/* ───────────────── OVERVIEW PAGE — CATEGORY CARDS ───────────────── */
/* Category grid — used on programs.html overview.
   Goes from 3-up straight to 1-up so phones and tablets see a clean
   single-column stack. */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.category-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 36px 32px 32px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  /* When scrolled to via an anchor (e.g. ?#wolfpack-laws), leave space
     above the card so it doesn't hide behind the fixed nav (~72px). */
  scroll-margin-top: 120px;
}

.category-card:hover {
  border-color: var(--line-accent);
  background: var(--bg-3);
  transform: translateY(-3px);
}

/* Make the entire card clickable via the CTA link overlay.
   Keeps a single <a> in markup (good for a11y + no nested anchors). */
.category-card .category-card-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.category-card .category-card-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.category-card-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 38px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.category-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: -0.005em;
}

.category-card-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 22px;
}

.category-card-courses {
  list-style: none;
  margin: 0 0 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  flex: 1;
}

.category-card-courses li {
  font-size: 13.5px;
  color: var(--gray);
  padding: 9px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.category-card-courses li:last-child {
  border-bottom: 0;
}

.category-card-courses .c-name {
  color: var(--text);
  font-weight: 500;
}

.category-card-courses .c-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.category-card-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  padding: 10px 0 6px;
  border-bottom: 1px solid var(--line-accent);
  transition: color 0.2s, border-color 0.2s;
}

.category-card-cta:hover {
  color: var(--accent-soft);
  border-bottom-color: var(--accent);
}

/* Free Start single-product feature on overview */
.free-feature {
  margin-top: 64px;
  padding: 56px 56px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

/* Wolf Pack membership feature on overview */
.membership-feature {
  margin-top: 32px;
  padding: 56px;
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line-accent);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Responsive for the new grids */
@media (max-width: 1024px) {
  .law-grid { grid-template-columns: repeat(2, 1fr); }
  .bundle-highlight,
  .free-feature,
  .membership-feature {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .law-grid { grid-template-columns: 1fr; }
  .bundle-highlight,
  .free-feature,
  .membership-feature {
    padding: 32px 24px;
  }
}

/* ───────────────── CTA BAND ───────────────── */
.cta-band {
  background: var(--bg);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(1, 255, 159, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band .inner-sm { text-align: center; position: relative; }
.cta-band .h2 { margin-bottom: 24px; }
.cta-band .lede { margin: 0 auto 40px; }

/* ───────────────── DISCLAIMER ───────────────── */
.disclaimer {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 36px 40px;
  margin-top: 48px;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--gray);
}

.disclaimer h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 600;
}

/* ───────────────── CONTACT ───────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info-block {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.contact-info-block:last-child { border-bottom: 0; }

.contact-info-block h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}

.contact-info-block p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
}

.contact-info-block a {
  color: var(--text);
  border-bottom: 1px solid var(--line-accent);
  transition: color 0.2s, border-color 0.2s;
}

.contact-info-block a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* form */
.form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 44px 44px 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: 1px solid var(--line);
  border-bottom-color: rgba(245, 245, 245, 0.18);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 14px 16px;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.6;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(1, 255, 159, 0.03);
}

.form-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%),
                    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: calc(100% - 22px) center, calc(100% - 16px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.form-field select option {
  background: var(--bg-2);
  color: var(--text);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.form-consent input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.form-consent a { color: var(--accent); border-bottom: 1px solid var(--line-accent); }

.form-success {
  display: none;
  border: 1px solid var(--line-accent);
  background: rgba(1, 255, 159, 0.06);
  padding: 28px;
  text-align: center;
  color: var(--text);
}

.form-success.active { display: block; }
.form.hidden          { display: none; }

/* mCaptcha widget wrapper — keeps the captcha aligned with the form */
.form-captcha {
  margin: 4px 0 24px;
  min-height: 78px;
}

/* Honeypot — hidden visually but still in the DOM for bots */
.form-honey {
  position: absolute !important;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success h3 {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}

.form-error {
  display: none;
  font-size: 13px;
  color: #ff7a7a;
  margin-top: 10px;
}

.form-error.active { display: block; }

/* ───────────────── LEGAL PAGES ───────────────── */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 56px 140px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 56px 0 18px;
  color: var(--text);
  letter-spacing: -0.005em;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-content p,
.legal-content li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 22px;
  margin-bottom: 18px;
}

.legal-content li { margin-bottom: 6px; }

.legal-content strong { color: var(--text); font-weight: 600; }

.legal-content a {
  color: var(--accent);
  border-bottom: 1px solid var(--line-accent);
}

.legal-meta {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

/* ───────────────── FOOTER ───────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 80px 56px 32px;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.footer-brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-brand-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 320px;
  margin-bottom: 22px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--accent);
  font-style: italic;
  font-family: var(--font-serif);
}

.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 22px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(245, 245, 245, 0.65);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(245, 245, 245, 0.35);
}

.footer-disclaimer {
  max-width: 1180px;
  margin: 32px auto 0;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.4);
  padding-top: 24px;
}

/* ───────────────── ANIMATIONS ───────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ───────────────── RESPONSIVE ───────────────── */
@media (max-width: 1024px) {
  .nav { padding: 0 32px; }
  .inner, .inner-sm, .inner-md { padding: 100px 32px; }
  .hero { padding: 160px 32px 100px; }
  .page-header { padding: 160px 32px 80px; }
  .legal-content { padding: 60px 32px 120px; }
  footer { padding: 60px 32px 32px; }

  .hero-inner,
  .page-header-inner,
  .two-col,
  .two-col-img,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* On mobile, show image below the text (text leads) */
  .hero-visual { order: 2; }
  .hero-image  { max-width: 380px; }

  .quick-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .qf:nth-child(2) { border-right: 0; }
  .qf:nth-child(1),
  .qf:nth-child(2) { border-bottom: 1px solid var(--line); }

  .howling-banner {
    height: auto;
    min-height: 56vh;
  }
  .howling-content { padding: 80px 32px; }

  .howling-side-wrap { max-width: 320px; }

  .card-grid,
  .principles {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Nav-only breakpoint — show burger earlier so tablets and large phones
   in landscape don't show a cramped full nav. Other layout rules stay
   at the 720px breakpoint below. */
@media (max-width: 900px) {
  .nav { padding: 0 24px; height: 64px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 28px 24px;
    border-bottom: 1px solid var(--line);
    gap: 22px;
  }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
}

@media (max-width: 720px) {
  .nav { padding: 0 20px; }

  .inner, .inner-sm, .inner-md { padding: 80px 20px; }
  .hero { padding: 140px 20px 80px; }
  .page-header { padding: 140px 20px 60px; }
  .legal-content { padding: 40px 20px 100px; }
  footer { padding: 48px 20px 28px; }

  .card-grid,
  .principles {
    grid-template-columns: 1fr;
  }

  .principles { gap: 1px; }

  .quick-facts-grid {
    grid-template-columns: 1fr;
  }
  .qf {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .qf:last-child { border-bottom: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .program {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 56px 0;
  }

  .program-modules {
    grid-template-columns: 1fr;
  }

  .form { padding: 28px 24px 32px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .spec-row { grid-template-columns: 1fr; gap: 6px; }

  .hero-card { padding: 28px 24px; }

  .h1 { font-size: 40px; }
  .hero-title { font-size: 44px; }
}
