/* ============================================================
   TACTICAL BODY CALCULATOR — style.css
   Palette matched to Military Calisthenics cover:
   Black bg · Yellow accent · White text
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Roboto+Mono:wght@400;700&family=Barlow+Condensed:wght@300;400;600&display=swap');

:root {
  --bg-primary:      #080808;
  --bg-secondary:    #0f0f0f;
  --bg-card:         #141414;
  --bg-input:        #0c0c0c;
  --color-text:      #ffffff;
  --color-muted:     #888888;
  --color-disclaimer:#555555;
  --color-yellow:    #d4b800;
  --color-yellow-bright: #f0d000;
  --color-yellow-border: rgba(212, 184, 0, 0.4);
  --color-orange:    #c4622d;
  --color-orange-bright: #d4722d;
  --font-heading:    'Oswald', sans-serif;
  --font-mono:       'Roboto Mono', monospace;
  --font-body:       'Barlow Condensed', sans-serif;
  --border-sharp:    1px solid rgba(212, 184, 0, 0.3);
  --border-sharp-bright: 1px solid rgba(212, 184, 0, 0.6);
  --shadow-card:     none;
}

/* ============================================================
   LIGHT MODE TOKEN OVERRIDES
   ============================================================ */
body.light-mode {
  --bg-primary:      #f5f0e8;
  --bg-secondary:    #ffffff;
  --bg-card:         #ffffff;
  --bg-input:        #f0ece4;
  --color-text:      #1a1a1a;
  --color-muted:     #666666;
  --color-disclaimer:#999999;
  --color-yellow-border: rgba(212, 184, 0, 0.5);
  --border-sharp:    1px solid rgba(0, 0, 0, 0.14);
  --border-sharp-bright: 1px solid rgba(212, 184, 0, 0.7);
  --shadow-card:     0 2px 12px rgba(0, 0, 0, 0.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-primary);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   THEME TOGGLE
   ============================================================ */
.theme-toggle-bar {
  display: flex;
  justify-content: flex-end;
  padding: 10px 20px 0;
}

.theme-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(212, 184, 0, 0.35);
  cursor: pointer;
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: border-color 0.2s, color 0.2s;
  border-radius: 0;
}

.theme-toggle:hover {
  border-color: var(--color-yellow);
  color: var(--color-yellow);
}

.theme-icon { font-size: 13px; line-height: 1; }
.theme-divider { opacity: 0.4; }

/* Active state highlights */
body:not(.light-mode) .theme-label--dark,
body:not(.light-mode) .theme-icon--dark {
  color: var(--color-yellow);
  font-weight: 700;
}

body.light-mode .theme-label--light,
body.light-mode .theme-icon--light {
  color: var(--color-yellow);
  font-weight: 700;
}

/* Light mode: card & form shadows */
body.light-mode .form-section,
body.light-mode .result-card {
  box-shadow: var(--shadow-card);
}

/* Light mode: field labels → dark */
body.light-mode label {
  color: #1a1a1a;
}

/* Light mode: section labels stay yellow but slightly darker */
body.light-mode .section-label {
  color: var(--color-yellow);
}

/* Light mode: inputs & selects */
body.light-mode input[type="number"],
body.light-mode select {
  background: #f9f6f0;
  border-color: rgba(0, 0, 0, 0.2);
  color: #1a1a1a;
}

body.light-mode input[type="number"]:focus,
body.light-mode select:focus {
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 1px rgba(212, 184, 0, 0.3);
}

body.light-mode input[type="number"]::placeholder {
  color: #aaaaaa;
  opacity: 1;
}

/* Light mode: select dropdown options */
body.light-mode select option {
  background: #ffffff;
  color: #1a1a1a;
}

/* Light mode: radio options */
body.light-mode .radio-option {
  background: #f0ece4;
  border-color: rgba(0, 0, 0, 0.18);
}
body.light-mode .radio-option span {
  color: #1a1a1a;
}
body.light-mode .radio-option:hover {
  background: rgba(212, 184, 0, 0.1);
  border-color: var(--color-yellow);
}
body.light-mode .radio-option:has(input:checked) {
  background: rgba(212, 184, 0, 0.14);
  border-color: var(--color-yellow);
}
body.light-mode .radio-option:has(input:checked) span {
  color: #5a4e00;
}

/* Light mode: unit toggle */
body.light-mode .unit-btn {
  background: #e8e4dc;
  border-color: rgba(0, 0, 0, 0.18);
  color: #666;
}
body.light-mode .unit-btn:hover {
  border-color: var(--color-yellow);
  color: #1a1a1a;
}

/* Light mode: unit hint */
body.light-mode .unit-hint { color: var(--color-muted); }

/* Light mode: lock overlay */
body.light-mode .lock-overlay {
  background: rgba(245, 240, 232, 0.75);
}
body.light-mode .lock-text { color: #5a4e00; }

/* Light mode: result value & sub text */
body.light-mode .result-value { color: #1a1a1a; }
body.light-mode .result-sub { color: #666; }
body.light-mode .bmi-number { color: #1a1a1a; }

/* Light mode: btn-primary inverts to dark */
body.light-mode .btn-primary {
  background: #1a1a1a;
  color: var(--color-yellow);
  border-top-color: var(--color-yellow);
}
body.light-mode .btn-primary:hover {
  background: #2a2a2a;
  letter-spacing: 0.28em;
}

/* Light mode: unlock btn */
body.light-mode .btn-unlock {
  background: #1a1a1a;
  color: var(--color-yellow);
  border-top-color: var(--color-yellow);
}
body.light-mode .btn-unlock:hover {
  background: #2a2a2a;
  letter-spacing: 0.22em;
}

/* Light mode: footer disclaimer */
body.light-mode footer {
  border-top-color: rgba(212, 184, 0, 0.4);
}

/* Light mode: text-shadow off (light bg) */
body.light-mode .site-title { text-shadow: none; }

/* ============================================================
   HEADER — title
   ============================================================ */
header {
  background: var(--bg-secondary);
  border-bottom: 3px solid var(--color-yellow);
  position: relative;
  overflow: hidden;
}

/* Title block — standalone (no cover image) */
.header-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 44px 20px 36px;
}

.header-text--standalone {
  padding: 44px 20px 36px;
}

.header-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--color-yellow);
  opacity: 0.8;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.site-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(26px, 5.5vw, 50px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.9);
}

.site-title span {
  color: var(--color-yellow);
}

.site-subtitle {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--color-muted);
  margin-top: 10px;
  text-transform: uppercase;
}

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--color-yellow);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: var(--border-sharp);
}

/* ============================================================
   FORM
   ============================================================ */
.form-section {
  background: var(--bg-secondary);
  border: var(--border-sharp);
  margin: 28px auto;
  padding: 32px;
}

fieldset { border: none; }

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

@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-section { padding: 20px; }
}

.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-group.full-width { grid-column: 1 / -1; }

.label-with-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--color-yellow);
  text-transform: uppercase;
}

/* ============================================================
   UNIT TOGGLE
   ============================================================ */
.unit-toggle { display: flex; gap: 2px; }

.unit-btn {
  background: var(--bg-input);
  border: 1px solid rgba(212, 184, 0, 0.3);
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  padding: 3px 8px;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  text-transform: uppercase;
}

.unit-btn:hover { border-color: var(--color-yellow); color: var(--color-text); }

.unit-btn.active {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: #000;
  font-weight: 700;
}

.unit-hint {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-muted);
  letter-spacing: 0.1em;
  display: none;
}

/* ============================================================
   INPUTS & SELECTS
   ============================================================ */
input[type="number"],
select {
  background: var(--bg-input);
  border: 1px solid rgba(212, 184, 0, 0.4);
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: 15px;
  padding: 10px 14px;
  width: 100%;
  border-radius: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s;
}

input[type="number"]:focus,
select:focus {
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 1px rgba(212, 184, 0, 0.25);
}

input[type="number"]::placeholder { color: var(--color-muted); opacity: 0.45; }
select option { background: #111; color: var(--color-text); }

/* Radio */
.radio-group { display: flex; gap: 12px; }

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex: 1;
  background: var(--bg-input);
  border: 1px solid rgba(212, 184, 0, 0.3);
  padding: 10px 14px;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}

.radio-option:hover {
  border-color: var(--color-yellow);
  background: rgba(212, 184, 0, 0.05);
}

.radio-option input[type="radio"] {
  width: 14px; height: 14px;
  accent-color: var(--color-yellow);
  cursor: pointer; flex-shrink: 0;
}

.radio-option span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--color-text);
  text-transform: uppercase;
}

.radio-option:has(input:checked) {
  border-color: var(--color-yellow);
  background: rgba(212, 184, 0, 0.08);
}
.radio-option:has(input:checked) span { color: var(--color-yellow); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: block;
  width: 100%;
  background: var(--color-yellow);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 24px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  margin-top: 28px;
  transition: background 0.2s, letter-spacing 0.2s;
  border-top: 2px solid rgba(240, 208, 0, 0.5);
}

.btn-primary:hover {
  background: var(--color-yellow-bright);
  letter-spacing: 0.28em;
}

.btn-unlock {
  display: block;
  width: 100%;
  background: var(--color-yellow);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 24px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s, letter-spacing 0.2s;
  border-top: 2px solid rgba(240, 208, 0, 0.5);
}

.btn-unlock:hover {
  background: var(--color-yellow-bright);
  letter-spacing: 0.22em;
}

/* ============================================================
   RESULTS SECTION
   ============================================================ */
#results-section {
  display: none;
  max-width: 820px;
  margin: 0 auto 32px;
}

#results-section.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}

@media (max-width: 560px) {
  .results-grid { grid-template-columns: 1fr; }
}

.result-card {
  background: var(--bg-secondary);
  border: var(--border-sharp);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: attr(data-label);
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--color-yellow);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.result-card .result-value {
  font-family: var(--font-mono);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.result-card .result-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-top: 6px;
  text-transform: uppercase;
}

/* BMI card — full width */
.result-bmi {
  grid-column: 1 / -1;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .result-bmi { flex-direction: column; align-items: flex-start; gap: 16px; }
}

.result-bmi::before { content: "// BMI ASSESSMENT //"; }

.bmi-number-block { flex-shrink: 0; }

.bmi-number {
  font-family: var(--font-mono);
  font-size: 64px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.bmi-category-label {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}

.bmi-bar-block { flex: 1; min-width: 200px; }

.bmi-bar-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.bmi-bar-track {
  height: 12px;
  background: linear-gradient(
    to right,
    #4a90d9 0%, #4a90d9 24%,
    #4a9c3f 24%, #4a9c3f 52%,
    #c4622d 52%, #c4622d 76%,
    #a62020 76%, #a62020 100%
  );
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
}

.bmi-bar-indicator {
  position: absolute;
  top: -5px;
  width: 3px;
  height: 22px;
  background: var(--color-yellow);
  transform: translateX(-50%);
  transition: left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 8px rgba(212, 184, 0, 0.9);
}

.bmi-bar-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}
.bmi-bar-ticks span { font-family: var(--font-mono); font-size: 9px; color: var(--color-muted); }

/* ============================================================
   LOCKED CARDS
   ============================================================ */
.result-locked { position: relative; cursor: pointer; }

.result-locked .locked-value,
.result-locked .result-sub {
  filter: blur(7px);
  user-select: none;
  pointer-events: none;
  opacity: 0.5;
}

.lock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
  cursor: pointer;
}

.result-locked:hover .lock-overlay { background: rgba(8, 8, 8, 0.35); }

.lock-icon {
  font-size: 22px;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(212, 184, 0, 0.7));
}

.lock-text {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-yellow);
  text-align: center;
  line-height: 1.4;
  text-shadow: 0 0 8px rgba(212, 184, 0, 0.5);
}

/* ============================================================
   MODAL
   ============================================================ */
#modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#modal-overlay.modal-visible { opacity: 1; }

#modal-overlay.modal-visible .modal-box {
  transform: translateY(0);
  opacity: 1;
}

.modal-box {
  background: var(--bg-secondary);
  border: 1px solid rgba(212, 184, 0, 0.5);
  border-top: 3px solid var(--color-yellow);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.35s ease;
}

.modal-header {
  background: linear-gradient(135deg, #111100, #0d0d00);
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(212, 184, 0, 0.3);
  position: relative;
}

.modal-header::before {
  content: "\26A0  CLASSIFIED ACCESS \26A0";
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--color-yellow);
  margin-bottom: 10px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1.15;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 1px solid rgba(212, 184, 0, 0.3);
  color: var(--color-muted);
  font-size: 18px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, border-color 0.2s;
}
.modal-close:hover { color: var(--color-text); border-color: var(--color-yellow); }

.modal-body { padding: 24px; }

/* Aggressive copy block */
.modal-copy-block { margin-bottom: 22px; }

.modal-alert-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--color-yellow);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(212, 184, 0, 0.35);
  background: rgba(212, 184, 0, 0.06);
  display: inline-block;
}

.modal-hook {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: 10px;
}

.modal-sub-hook {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 14px;
  line-height: 1.3;
}
.modal-sub-hook strong { color: var(--color-text); }

.modal-body-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.65;
}
.modal-body-text strong { color: var(--color-text); font-weight: 600; }

/* Calorie block */
.modal-calorie-block {
  background: rgba(0,0,0,0.4);
  border: var(--border-sharp);
  padding: 16px 20px;
  margin-bottom: 20px;
}

.modal-calorie-block .block-title {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--color-yellow);
  text-transform: uppercase;
  margin-bottom: 12px;
  border-bottom: var(--border-sharp);
  padding-bottom: 6px;
}

.calorie-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(212, 184, 0, 0.1);
}
.calorie-row:last-child { border-bottom: none; }

.calorie-row .cal-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  text-transform: uppercase;
}

.calorie-row .cal-value {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}

.calorie-row.highlight-yellow .cal-value { color: var(--color-yellow); }
.calorie-row.highlight-orange .cal-value { color: var(--color-orange); }

/* Review */
.review-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(212, 184, 0, 0.04);
  border-left: 3px solid var(--color-yellow);
  padding: 14px 16px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2600, #1a1800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-yellow);
  flex-shrink: 0;
  border: 1px solid rgba(212, 184, 0, 0.35);
}

.review-content .reviewer-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 4px;
}

.review-content .stars {
  color: var(--color-yellow);
  font-size: 12px;
  margin-bottom: 6px;
}

.review-content .review-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.5;
  font-style: italic;
}

/* Modal CTAs */
.modal-cta {
  text-align: center;
  border-top: var(--border-sharp);
  padding-top: 20px;
}

.btn-cta-primary {
  display: block;
  width: 100%;
  background: var(--color-yellow);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 24px;
  border: none;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, letter-spacing 0.2s;
  border-top: 2px solid rgba(240, 208, 0, 0.5);
}
.btn-cta-primary:hover { background: var(--color-yellow-bright); letter-spacing: 0.22em; }

.modal-alt {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-orange);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 28px;
  border: 1px solid var(--color-orange);
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s, color 0.2s;
}
.btn-cta-secondary:hover { background: var(--color-orange); color: #fff; }

/* ============================================================
   MEDICAL DISCLAIMER
   ============================================================ */
.disclaimer-footer {
  border-top: 2px solid rgba(212, 184, 0, 0.25);
  padding: 32px 20px 40px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.disclaimer-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--color-yellow);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.disclaimer-text {
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.7;
  color: var(--color-disclaimer);
  letter-spacing: 0.02em;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

main { padding: 0 0 20px; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(212, 184, 0, 0.4); }
::-webkit-scrollbar-thumb:hover { background: var(--color-yellow); }
