/* ============================================================
   Adam's Coaching Agency Mentorship — Design Tokens
   Dark luxury aesthetic. Premium, direct, high-pressure sales.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* ---------- COLOR — Foundations ---------- */
  --bg-0: #080B0F;          /* Primary background — near-black blue */
  --bg-1: #0E1218;          /* Elevated surface */
  --bg-2: #141923;          /* Card / modal */
  --bg-3: #1C2230;          /* Hover surface */
  --bg-line: #232938;       /* Hairline divider on dark */

  --fg-1: #F5F2EA;          /* Primary text — warm off-white */
  --fg-2: #B8B2A4;          /* Secondary text — muted bone */
  --fg-3: #6E6A60;          /* Tertiary / metadata */
  --fg-4: #3A3830;          /* Disabled / faint */

  /* ---------- COLOR — Brand Accents ---------- */
  --gold: #C8A84B;          /* Primary accent — CTAs, headlines */
  --gold-hi: #E0C067;       /* Hover/active gold */
  --gold-lo: #8E763A;       /* Pressed gold */
  --gold-soft: #2A2415;     /* Gold tint background */

  --red: #E8593C;           /* Secondary accent — urgency, alerts */
  --red-hi: #FF7050;
  --red-lo: #B0432D;
  --red-soft: #2C150F;

  /* ---------- COLOR — Semantic ---------- */
  --success: #6BAE5A;
  --warning: #E8593C;       /* uses brand red */
  --danger: #E8593C;
  --info: #C8A84B;          /* uses brand gold */

  /* ---------- TYPE — Families ---------- */
  --font-display: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
  --font-body: 'Barlow', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Menlo', monospace;

  /* ---------- TYPE — Scale (1920 design width) ---------- */
  --fs-hero: clamp(72px, 9vw, 168px);
  --fs-h1: clamp(56px, 6vw, 112px);
  --fs-h2: clamp(40px, 4vw, 72px);
  --fs-h3: clamp(28px, 2.4vw, 44px);
  --fs-h4: 24px;
  --fs-eyebrow: 14px;
  --fs-body-lg: 20px;
  --fs-body: 17px;
  --fs-body-sm: 15px;
  --fs-caption: 13px;
  --fs-micro: 11px;

  /* ---------- TYPE — Weights / Spacing ---------- */
  --tracking-display: 0.02em;
  --tracking-eyebrow: 0.24em;
  --tracking-button: 0.18em;
  --tracking-body: 0;

  --leading-display: 0.92;
  --leading-tight: 1.1;
  --leading-body: 1.5;
  --leading-loose: 1.7;

  /* ---------- SPACING ---------- */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* ---------- BORDERS ---------- */
  --br-0: 0;                /* Sharp edges throughout — no rounded corners */
  --hairline: 1px solid var(--bg-line);
  --hairline-gold: 1px solid var(--gold);
  --hairline-fg: 1px solid rgba(245, 242, 234, 0.12);

  /* ---------- SHADOW / GLOW ---------- */
  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 24px 48px -16px rgba(0,0,0,0.6);
  --shadow-cta: 0 0 0 1px rgba(200,168,75,0.4), 0 12px 32px -8px rgba(200,168,75,0.35);
  --glow-gold: 0 0 60px rgba(200,168,75,0.18);
  --glow-red: 0 0 60px rgba(232,89,60,0.22);

  /* ---------- TRANSITIONS ---------- */
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-snap: cubic-bezier(0.4, 0, 0.1, 1);
  --t-fast: 120ms;
  --t-base: 200ms;
  --t-slow: 400ms;
}

/* ============================================================
   SEMANTIC ELEMENT STYLES
   ============================================================ */

html, body {
  background: var(--bg-0);
  color: var(--fg-1);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--leading-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero, h1.hero {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  color: var(--fg-1);
  text-transform: uppercase;
  font-weight: 400;
}

h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}

h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}

h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}

h4 {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  line-height: var(--leading-tight);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
}

p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--leading-body);
  color: var(--fg-2);
  margin: 0 0 1em 0;
  text-wrap: pretty;
}

p.lead {
  font-size: var(--fs-body-lg);
  color: var(--fg-1);
  font-weight: 300;
}

small, .caption {
  font-size: var(--fs-caption);
  color: var(--fg-3);
}

a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base) var(--ease-out), color var(--t-base) var(--ease-out);
}
a:hover { border-bottom-color: var(--gold); }

strong { font-weight: 700; color: var(--fg-1); }
em { font-style: normal; color: var(--gold); }

/* Numerics — used heavily for sales proof */
.numeric {
  font-family: var(--font-display);
  font-feature-settings: "tnum" 1;
  letter-spacing: 0.01em;
}

/* Buttons — sharp, gold, uppercase */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-button);
  border: 0;
  border-radius: var(--br-0);
  cursor: pointer;
  transition: all var(--t-base) var(--ease-out);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg-0);
}
.btn-primary:hover {
  background: var(--gold-hi);
  box-shadow: var(--shadow-cta);
  transform: translateY(-1px);
}
.btn-primary:active {
  background: var(--gold-lo);
  transform: translateY(0);
}
.btn-secondary {
  background: transparent;
  color: var(--fg-1);
  border: 1px solid var(--bg-line);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-ghost {
  background: transparent;
  color: var(--fg-2);
  padding: 12px 8px;
}
.btn-ghost:hover { color: var(--gold); }
.btn-danger {
  background: var(--red);
  color: var(--fg-1);
}
.btn-danger:hover { background: var(--red-hi); }
