/* ═══════════════════════════════════════════════════════
   HUMERLY — SHARED STYLESHEET v1.0
   Used by: pricing.html, and any future Humerly pages
   ═══════════════════════════════════════════════════════ */

/* ═══════ RESET & BASE ═══════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; min-height: 100%; }
body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body > footer { flex-shrink: 0; margin-top: auto; min-height: 360px; }
@media (max-width: 640px) { body > footer { min-height: 480px; } }
::selection { background: #F7D794; color: #192A56; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; }
.bg-cream a:not([class]), .bg-warm a:not([class]) { color: #d4af37; text-decoration: underline; }
.bg-cream a:not([class]):hover, .bg-warm a:not([class]):hover { color: #c49a38; }

/* ═══════ DESIGN TOKENS ═══════ */
:root {
  --navy:        #192A56;
  --navy-deep:   #0F1B3D;
  --navy-mid:    #1E3163;
  --champagne:   #F7D794;
  --champ-dim:   #C9A84C;
  --rose:        #EDA6A3;
  --pearl:       #FCFBFB;
  --cream:       #FBF8F1;
  --warm:        #F5F0E8;
  --emerald:     #4ade80;
  --emerald-drk: #16a34a;
  --gold:        #d4af37;
  --page-dark:   #0F1B3D;
  --card-dark:   #0a1628;
  --border-dark: #1e2d42;

  --ff-display: 'Cormorant Garamond', serif;
  --ff-body:    'Space Grotesk', sans-serif;
  --ff-mono:    'JetBrains Mono', monospace;

  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.15);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.25);
  --shadow-lg:  0 20px 48px rgba(0,0,0,0.35);

  /* ─── Semantic tokens (mapped to core values) ─── */
  --bg-primary: var(--navy-deep);
  --bg-secondary: var(--page-dark);
  --bg-card: var(--card-dark);
  --text-primary: var(--pearl);
  --text-secondary: rgba(252, 251, 251, 0.72);
  --text-muted: rgba(252, 251, 251, 0.45);
  --text-accent: var(--gold);
  --color-gold-light: #e4bf47;
  --color-gold-muted: rgba(212, 175, 55, 0.15);
  --border-subtle: var(--border-dark);
  --border-gold: rgba(212, 175, 55, 0.3);

  /* ─── Semantic font aliases ─── */
  --font-display: var(--ff-display);
  --font-body: var(--ff-body);
  --font-mono: var(--ff-mono);

  /* ─── Spacing scale ─── */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* ─── Text size scale ─── */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  /* ─── Weight scale ─── */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* ─── Line height ─── */
  --leading-tight: 1.2;
  --leading-snug: 1.4;
  --leading-normal: 1.7;
  --leading-relaxed: 1.8;

  /* ─── Transitions ─── */
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;

  /* ─── Layout ─── */
  --container-narrow: 800px;
  --container-max: 1200px;

  /* ─── Additional radius ─── */
  --radius-sm: 4px;
  --radius-md: 8px;
}

/* ═══════ TYPOGRAPHY ═══════ */
.font-display  { font-family: var(--ff-display); }
.font-mono     { font-family: var(--ff-mono); }
.font-bold     { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium   { font-weight: 500; }

.text-xs   { font-size: 0.8125rem; line-height: 1.6; }
.text-sm   { font-size: 0.9375rem; line-height: 1.6; }
.text-base { font-size: 1rem; }
.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.text-2xl  { font-size: 1.5rem; }
.text-3xl  { font-size: 1.875rem; }
.text-4xl  { font-size: 2.25rem; }

.leading-relaxed { line-height: 1.75; }
.leading-tight   { line-height: 1.1; }
.tracking-tight  { letter-spacing: -0.02em; }
.tracking-wide   { letter-spacing: 0.05em; }
.tracking-wider  { letter-spacing: 0.08em; }
.tracking-widest { letter-spacing: 0.12em; }
.uppercase       { text-transform: uppercase; }
.text-center     { text-align: center; }
.whitespace-nowrap { white-space: nowrap; }

/* ═══════ COLOUR HELPERS ═══════ */
.text-pearl    { color: var(--pearl); }
.text-navy     { color: var(--navy); }
.text-champagne{ color: var(--champagne); }
.text-champ-dim{ color: var(--champ-dim); }
.text-rose     { color: var(--rose); }
.text-emerald  { color: var(--emerald); }
.text-gold     { color: var(--gold); }
.text-muted    { color: rgba(252,251,251,0.55); }

/* ═══════ LAYOUT UTILITIES ═══════ */
.container    { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 44rem; margin: 0 auto; padding: 0 1.5rem; }
.container-md { max-width: 60rem; margin: 0 auto; padding: 0 1.5rem; }
.grid         { display: grid; }
.section      { padding: 5rem 0; }
.section-lg   { padding: 6rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } .section-lg { padding: 8rem 0; } }

.flex         { display: flex; }
.flex-col     { flex-direction: column; }
.flex-wrap    { flex-wrap: wrap; }
.flex-shrink-0{ flex-shrink: 0; }
.inline-flex  { display: inline-flex; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1  { gap: 0.25rem; }
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-5  { gap: 1.25rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }
.w-full { width: 100%; }
.relative { position: relative; }
.hidden   { display: none; }
.overflow-hidden { overflow: hidden; }

/* ═══════ SECTION LABEL ═══════ */
.slbl { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.slbl::before, .slbl::after { content: ''; width: 18px; height: 1px; }
.slbl-gold { color: var(--champ-dim); }
.slbl-gold::before, .slbl-gold::after { background: rgba(201,168,76,0.35); }
.slbl-muted { color: rgba(252,251,251,0.35); }
.slbl-muted::before, .slbl-muted::after { background: rgba(252,251,251,0.12); }

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-green {
  background: var(--emerald);
  color: #060C17;
}
.btn-green:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(74,222,128,0.28);
}

.btn-gold {
  background: var(--champagne);
  color: var(--navy);
}
.btn-gold:hover {
  background: #f5ca5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(247,215,148,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--pearl);
  border: 1.5px solid rgba(255,255,255,0.18);
}
.btn-outline:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--champagne);
  border: 1.5px solid rgba(247,215,148,0.3);
}
.btn-outline-gold:hover {
  border-color: var(--champagne);
  background: rgba(247,215,148,0.06);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* ═══════ NAV ═══════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.3s;
}

.nav-dark {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11,15,26,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-light {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(251,248,241,0.92);
  border-bottom: 1px solid rgba(25,42,86,0.07);
}

.nav-blur {
  background: #0F1B3D;
}

.cta-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.75rem;
  background: var(--champagne);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.nav-links a.cta-gold { color: var(--navy); }
.cta-gold:hover,
.nav-links a.cta-gold:hover {
  background: #f0c96a;
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212,175,55,0.22);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9375rem;
  color: rgba(252,251,251,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover  { color: var(--champagne); }
.nav-links a.active { color: var(--champagne); font-weight: 600; }

/* Login button outline style on navy header background.
   Venkat 2026-04-25 BUG-140: gold outline default, filled-gold hover.
   Higher specificity than .nav-links a above so cascade wins on color. */
.nav-links a.nav-login-btn,
.nav-mobile a.nav-login-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.nav-links a.nav-login-btn:hover,
.nav-links a.nav-login-btn:focus-visible,
.nav-mobile a.nav-login-btn:hover,
.nav-mobile a.nav-login-btn:focus-visible {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.nav-mobile a.nav-login-btn {
  display: block;
  text-align: center;
  margin: 0.5rem 0;
}

.nav-cta {
  font-size: 0.875rem;
  padding: 0.5rem 1.125rem;
}

.nav-mobile {
  display: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(8,12,22,0.97);
  padding: 0.75rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.nav-mobile.active { display: block; }

.nav-mobile a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(252,251,251,0.75);
  padding: 0.75rem 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}

.nav-mobile a:last-child { border-bottom: none; padding-top: 1rem; }
.nav-mobile a:hover { color: var(--champagne); }

/* Gold CTA in mobile drawer — navy text on champagne (spec: contrast on gold) */
.nav-mobile a.cta-gold {
  color: var(--navy) !important;
  font-weight: 600;
}
.nav-mobile a.cta-gold:hover {
  color: var(--navy) !important;
  background: #f0c96a;
}

.nav-burger {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(252,251,251,0.7);
  padding: 4px;
}

@media (min-width: 960px) {
  .nav-links  { display: flex; }
  .nav-burger { display: none; }
}

/* NAV DROPDOWNS */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9375rem;
  color: rgba(252,251,251,0.75);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--ff-body);
  padding: 0;
  transition: color 0.2s;
  line-height: 1;
}

.nav-dropdown-trigger:hover,
.nav-dropdown.open .nav-dropdown-trigger,
.nav-dropdown-trigger.active {
  color: var(--champagne);
}

.nav-dropdown-chevron {
  font-size: 0.625rem;
  opacity: 0.6;
  transition: transform 0.2s;
  display: inline-block;
}

.nav-dropdown.open .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #162347;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 6px 0;
  min-width: 170px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 60;
  visibility: hidden;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #162347;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px 0 0 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 16px;
  font-size: 0.875rem;
  color: rgba(252,251,251,0.7);
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(247,215,148,0.08);
  color: var(--champagne);
}

.nav-dropdown-menu a.active {
  color: var(--champagne);
  font-weight: 600;
}

/* ═══════ FOOTER ═══════ */
.footer {
  background: #050810;
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand { max-width: 220px; }

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 0.875rem;
}

.footer-heading {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(252,251,251,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.875rem;
}

.footer-link {
  display: block;
  font-size: 0.8125rem;
  color: rgba(252,251,251,0.52);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--champagne); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-copy {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  color: rgba(252,251,251,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ═══════ FAQ ═══════ */
.faq-list { max-width: 44rem; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-q {
  padding: 1.125rem 0;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--pearl);
  transition: color 0.2s;
  user-select: none;
}

.faq-q:hover { color: var(--champagne); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(252,251,251,0.62);
}

.faq-item.open .faq-a   { max-height: 500px; padding-bottom: 1.25rem; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }

.faq-arrow {
  font-size: 1.375rem;
  transition: transform 0.3s;
  color: var(--champ-dim);
  flex-shrink: 0;
  line-height: 1;
}

/* ═══════ SCROLL REVEAL ═══════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══════ ANIMATIONS ═══════ */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse 2.2s ease-in-out infinite;
}

/* ═══════ WHATSAPP FLOAT ═══════ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.38);
  z-index: 100;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

@media (max-width: 768px) {
  .wa-float {
    width: 50px;
    height: 50px;
    bottom: 1rem;
    right: 1rem;
  }
}

/* ═══════ DARK PAGE BASE ═══════ */
.page-dark {
  background: var(--page-dark);
  color: var(--pearl);
  min-height: 100vh;
}

/* ═══════ AUDIT CTA BANNER ═══════ */
.audit-banner {
  background: linear-gradient(135deg, rgba(247,215,148,0.05) 0%, rgba(74,222,128,0.04) 100%);
  border: 1.5px solid rgba(247,215,148,0.12);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .audit-banner { flex-direction: row; text-align: left; }
}

.audit-banner-body { flex: 1; }

.audit-banner h3 {
  font-family: var(--ff-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--pearl);
  margin-bottom: 0.375rem;
}

.audit-banner p {
  font-size: 0.9375rem;
  color: rgba(252,251,251,0.55);
  line-height: 1.6;
}

/* ═══════ FORMULA NOTE ═══════ */
.formula-note {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(252,251,251,0.03);
  border-left: 3px solid rgba(247,215,148,0.25);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.875rem;
  color: rgba(252,251,251,0.5);
  line-height: 1.65;
}

.formula-note strong { color: rgba(252,251,251,0.75); }

/* ═══════ LAST UPDATED ═══════ */
.last-updated {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(252,251,251,0.28);
  text-align: center;
  padding: 1.5rem 0 0.5rem;
}

/* ═══════ CONTENT HERO ═══════ */
.content-hero {
  padding: 9rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.content-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse at center top, rgba(247,215,148,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.content-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--pearl);
  margin-bottom: 1rem;
}

.content-hero p {
  font-size: 1.0625rem;
  color: rgba(252,251,251,0.6);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════ CONTENT SECTION ═══════ */
.content-section {
  padding: 4rem 0;
}

.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--pearl);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: 0.9375rem;
  color: rgba(252,251,251,0.5);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

/* ═══════ CHECK CARDS ═══════ */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-card {
  background: var(--card-dark);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: border-color 0.25s, transform 0.25s;
}

.check-card:hover {
  border-color: rgba(247,215,148,0.2);
  transform: translateX(4px);
}

.check-num {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--champ-dim);
  background: rgba(247,215,148,0.07);
  border: 1px solid rgba(247,215,148,0.15);
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  flex-shrink: 0;
  margin-top: 2px;
  min-width: 2rem;
  text-align: center;
}

.check-body { flex: 1; }

.check-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--pearl);
  margin-bottom: 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.check-tag {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(252,251,251,0.06);
  color: rgba(252,251,251,0.45);
  border: 1px solid rgba(255,255,255,0.07);
}

.check-desc {
  font-size: 0.875rem;
  color: rgba(252,251,251,0.6);
  line-height: 1.7;
}

/* ═══════ FORMULA CARD ═══════ */
.formula-card {
  background: var(--card-dark);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.formula-header {
  padding: 1.25rem 1.75rem;
  background: rgba(247,215,148,0.04);
  border-bottom: 1px solid rgba(247,215,148,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.formula-title {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--champ-dim);
}

.formula-range {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: rgba(252,251,251,0.35);
  letter-spacing: 0.06em;
}

.formula-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}

.formula-row:last-child { border-bottom: none; }
.formula-row:hover { background: rgba(255,255,255,0.02); }

.formula-label {
  font-size: 0.875rem;
  color: rgba(252,251,251,0.65);
  flex: 1;
}

.formula-pts {
  font-family: var(--ff-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--champagne);
  white-space: nowrap;
  min-width: 5rem;
  text-align: right;
}

.formula-bar-wrap {
  width: 7rem;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.formula-bar {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--champ-dim), var(--champagne));
}

.formula-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.75rem;
  background: rgba(247,215,148,0.05);
  border-top: 1.5px solid rgba(247,215,148,0.1);
}

.formula-total-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(252,251,251,0.45);
}

.formula-total-val {
  font-family: var(--ff-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--champagne);
}

/* ═══════ ALSO CHECK GRID ═══════ */
.also-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .also-check-grid { grid-template-columns: 1fr; }
}

.also-check-item {
  background: var(--card-dark);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(252,251,251,0.7);
  transition: border-color 0.2s;
}

.also-check-item:hover { border-color: rgba(74,222,128,0.2); }

.also-check-icon {
  width: 2rem; height: 2rem;
  border-radius: 0.5rem;
  background: rgba(74,222,128,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ═══════ TRANSPARENCY BOX ═══════ */
.transparency-box {
  background: rgba(237,166,163,0.04);
  border: 1.5px solid rgba(237,166,163,0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
}

.transparency-box .intro {
  font-size: 0.9375rem;
  color: rgba(252,251,251,0.6);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* ═══════ METHOD LIST ═══════ */
.method-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.method-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(252,251,251,0.7);
  line-height: 1.65;
}

.li-icon {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.875rem;
  font-weight: 700;
}

.li-icon.cross { color: var(--rose); }
.li-icon.check { color: var(--emerald); }

/* ═══════ CONFIDENCE CARDS ═══════ */
.confidence-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .confidence-grid { grid-template-columns: repeat(3, 1fr); }
}

.confidence-card {
  background: var(--card-dark);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.confidence-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.confidence-card.high::before   { background: var(--emerald); }
.confidence-card.medium::before { background: var(--champagne); }
.confidence-card.low::before    { background: var(--rose); }

.confidence-level {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.confidence-card.high   .confidence-level { color: var(--emerald); }
.confidence-card.medium .confidence-level { color: var(--champagne); }
.confidence-card.low    .confidence-level { color: var(--rose); }

.confidence-desc {
  font-size: 0.875rem;
  color: rgba(252,251,251,0.62);
  line-height: 1.7;
}
