/* ============================================
   ELITE CREDIT — DESIGN SYSTEM v3
   Sage & Gold · Calming, premium, trustworthy
   Fraunces (display) · Manrope (body) · JetBrains Mono (technical)
   ============================================ */

:root {
  /* Sage & cream base */
  --bg: #eef0e8;
  --bg-soft: #e6e9dc;
  --bg-card: #f5f6ef;
  --bg-deep: #dde2cf;
  --bg-darker: #c8cfb7;

  /* Charcoal sage ink */
  --ink: #2c3527;
  --ink-soft: #4d574a;
  --ink-mute: #717c6b;
  --ink-faint: #9ba491;

  /* Lines */
  --line: #d4dac3;
  --line-soft: #e0e4d3;

  /* Gold system — matches logo */
  --gold: #c9a455;
  --gold-bright: #e0bc6a;
  --gold-deep: #9a7a30;
  --gold-soft: #f0e6c9;
  --gold-faint: #f7f1de;

  /* Deep sage for dark sections */
  --sage-dark: #2c3527;
  --sage-deeper: #1f2620;

  /* Semantic */
  --success: #5a8a4f;

  /* Type */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  /* Layout */
  --max: 1320px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows — warm, soft */
  --shadow-sm: 0 1px 2px rgba(44, 53, 39, 0.04), 0 2px 6px rgba(44, 53, 39, 0.04);
  --shadow-md: 0 4px 12px rgba(44, 53, 39, 0.06), 0 8px 24px rgba(44, 53, 39, 0.05);
  --shadow-lg: 0 12px 32px rgba(44, 53, 39, 0.09), 0 24px 60px rgba(44, 53, 39, 0.06);
  --shadow-gold: 0 16px 40px -12px rgba(201, 164, 85, 0.4);
}

/* ============================================ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 100px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
em { font-family: var(--font-display); font-style: italic; font-weight: 400; }
::selection { background: var(--gold); color: var(--ink); }

/* ============================================ CONTAINERS */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ============================================ SCORE TRACKER (pinned) */
.score-tracker {
  position: fixed;
  right: 1.5rem;
  bottom: 2rem;
  z-index: 70;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.score-tracker.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.st-card {
  background: var(--ink);
  color: var(--bg-card);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(44, 53, 39, 0.25);
  width: 200px;
  position: relative;
  border: 1px solid rgba(201, 164, 85, 0.2);
}
.st-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 100px;
}
.st-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(245, 246, 239, 0.55);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.st-pulse {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
  animation: st-pulse 1.5s var(--ease) infinite;
}
@keyframes st-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}
.st-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.15rem;
}
.st-rating {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(245, 246, 239, 0.75);
  margin-bottom: 0.65rem;
}
.st-bar {
  height: 4px;
  background: rgba(245, 246, 239, 0.1);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}
.st-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  border-radius: 100px;
  transition: width 0.6s var(--ease-out);
}
.st-tier-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(245, 246, 239, 0.4);
  letter-spacing: 0.05em;
}
.st-jump {
  position: absolute;
  top: -8px;
  right: 12px;
  background: var(--gold);
  color: var(--ink);
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(201, 164, 85, 0.4);
}

@media (max-width: 768px) {
  .score-tracker { right: 0.85rem; bottom: 1rem; }
  .st-card { width: 168px; padding: 0.85rem 1rem; }
  .st-num { font-size: 2rem; }
}

/* ============================================ ANNOUNCE BAR */
.announce {
  background: var(--ink);
  color: var(--bg-card);
  padding: 0.55rem 0;
  font-size: 0.82rem;
  position: relative;
  z-index: 100;
}
.announce-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.announce-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.announce a {
  color: var(--gold-bright);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.announce a:hover { border-color: var(--gold-bright); }

/* ============================================ NAVIGATION */
.nav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(238, 240, 232, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem var(--pad);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-logo {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  background: var(--ink);
  border-radius: 50%;
  padding: 4px;
  position: relative;
  flex-shrink: 0;
}
.brand-logo::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.3;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-text { font-weight: 500; }
.brand-text em { color: var(--gold-deep); }

.nav-links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-soft);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nav-login {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color 0.2s var(--ease);
}
.nav-login:hover { color: var(--gold-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ============================================ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  text-align: center;
}
.btn-primary {
  background: var(--ink);
  color: var(--gold-bright);
  border: 1px solid var(--ink);
}
.btn-primary:hover {
  background: var(--sage-deeper);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(44, 53, 39, 0.4);
}
.btn-primary svg { transition: transform 0.3s var(--ease); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
  background: var(--gold-faint);
}

.btn-light {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn-light:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-light svg { transition: transform 0.3s var(--ease); }
.btn-light:hover svg { transform: translateX(3px); }

.btn-light-outline {
  background: transparent;
  color: var(--bg-card);
  border: 1.5px solid rgba(245, 246, 239, 0.3);
}
.btn-light-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 164, 85, 0.08);
}

.btn-lg { padding: 1rem 1.85rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ============================================ REVEAL & SLIDE-IN */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.slide-in {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.slide-in.slide-from-right { transform: translateX(30px); }
.slide-in.slide-up { transform: translateY(40px); }
.slide-in.is-in {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

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

/* ============================================ HERO */
.hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  mix-blend-mode: multiply;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.17 0 0 0 0 0.21 0 0 0 0 0.15 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-deco {
  position: absolute;
  z-index: 0;
  color: var(--gold);
  pointer-events: none;
}
.hero-deco-1 {
  top: -10%;
  right: -5%;
  width: 50vw;
  max-width: 600px;
  animation: float-deco 18s var(--ease) infinite;
}
.hero-deco-2 {
  bottom: -5%;
  left: -3%;
  width: 30vw;
  max-width: 380px;
  animation: float-deco 22s var(--ease) infinite reverse;
}
@keyframes float-deco {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text { padding-top: 1rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}
.hb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s var(--ease) infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6.5vw, 5.25rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 1.75rem;
}
.hero-title em {
  color: var(--gold-deep);
  font-style: italic;
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0; right: 0;
  height: 0.08em;
  background: var(--gold);
  opacity: 0.35;
}
.hero-title .line {
  display: block;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 50ch;
  margin-bottom: 2rem;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-microtrust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-mute);
  font-weight: 500;
}
.hero-microtrust > div {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-microtrust span {
  display: inline-grid; place-items: center;
  width: 18px; height: 18px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Hero Stage */
.hero-stage {
  position: relative;
  min-height: 540px;
}

.stage-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  z-index: 2;
}
.photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  background: var(--bg-deep);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.photo-frame:hover img { transform: scale(1.03); }
.photo-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(245, 246, 239, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 0.85rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--ink);
  font-weight: 500;
  border: 1px solid var(--line);
}
.ph-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
}

.stage-logo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  border: 1px solid rgba(201, 164, 85, 0.25);
}
.stage-logo::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.35;
  animation: spin-slow 30s linear infinite;
}
.stage-logo::after {
  content: '✦';
  position: absolute;
  top: -3px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 0.85rem;
  background: var(--bg);
  padding: 0 0.4rem;
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
.stage-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.float-chip {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  z-index: 4;
}
.float-chip strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.92rem;
}
.float-chip em {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.7rem;
  color: var(--ink-mute);
  margin-top: 0.1rem;
}
.fc-icon {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.chip-deletions {
  top: 35%;
  left: -8%;
  animation: float-a 5s var(--ease) infinite;
}
.chip-funded {
  bottom: 8%;
  right: -8%;
  animation: float-b 6s var(--ease) infinite;
}
@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  z-index: 5;
  animation: scroll-bounce 2.4s var(--ease) infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ============================================ TRUST STRIP */
.trust-strip {
  padding: 2.5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 1.5rem;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}
.trust-row span:nth-child(even) {
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-display);
}

/* ============================================ STATS */
.stats {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bg);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.stat {
  background: var(--bg-card);
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: background 0.3s var(--ease);
}
.stat:hover { background: var(--gold-faint); }
.stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--gold-deep);
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================ SECTIONS */
section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
}
.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.85rem;
  background: var(--gold-faint);
  border-radius: 100px;
  font-weight: 500;
}
.kicker.light {
  color: var(--gold-bright);
  background: rgba(201, 164, 85, 0.12);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.section-title em { color: var(--gold-deep); font-style: italic; }
.section-title.light { color: var(--bg-card); }
.section-title.light em { color: var(--gold-bright); }
.section-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 60ch;
  margin: 0 auto;
}
.section-sub.light { color: rgba(245, 246, 239, 0.78); margin: 0; }
.section-sub strong { color: var(--ink); font-weight: 600; }
.section-sub.light strong { color: var(--bg-card); }

/* ============================================ HOW IT WORKS */
.how { background: var(--bg-soft); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0, var(--line) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.how-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease);
}
.how-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
}
.how-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink-faint);
  font-weight: 400;
  letter-spacing: -0.04em;
}
.how-icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  border-radius: var(--radius-md);
  color: var(--gold-deep);
  margin-bottom: 1.5rem;
  transition: transform 0.3s var(--ease);
}
.how-card:hover .how-icon { transform: scale(1.05) rotate(-3deg); }
.how-icon svg { width: 28px; height: 28px; }
.how-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.how-card p {
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.how-time {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--gold-deep);
  background: var(--gold-faint);
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
  font-weight: 500;
}

/* ============================================ RESULTS */
.results { background: var(--bg); }
.results-marquee-wrap {
  position: relative;
  margin: 0 calc(var(--pad) * -1);
  overflow: hidden;
}
.results-marquee-wrap::before,
.results-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.results-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.results-marquee-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}
.results-marquee { overflow: hidden; }
.results-track {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 0;
  animation: scroll-x 25s linear infinite;
  width: fit-content;
}
.results-track:hover { animation-play-state: paused; }
@keyframes scroll-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.rcard {
  flex: 0 0 280px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.rcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.rcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
}
.rcard:hover::before { transform: scaleY(1); }
.rc-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
  background: var(--gold-faint);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  font-weight: 500;
}
.rc-data {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--ink);
  letter-spacing: -0.03em;
  font-weight: 400;
  margin-bottom: 0.4rem;
  font-variant-numeric: tabular-nums;
}
.rcard h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.rcard p {
  font-size: 0.85rem;
  color: var(--ink-mute);
  line-height: 1.5;
}
.results-disclaimer {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}

/* ============================================ DISPUTE LIST */
.dispute { background: var(--bg-soft); }
.dispute-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
.dispute-grid span {
  padding: 0.7rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
  transition: all 0.3s var(--ease);
  position: relative;
  cursor: default;
}
.dispute-grid span::before {
  content: '✓';
  color: var(--gold-deep);
  margin-right: 0.45rem;
  font-weight: 700;
}
.dispute-grid span:hover {
  border-color: var(--gold);
  background: var(--gold-faint);
  color: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ============================================ SERVICES */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '→';
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--ink-faint);
  transition: all 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
}
.service-card:hover::after {
  color: var(--gold-deep);
  transform: translateX(4px);
}
.service-icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  border-radius: var(--radius-md);
  color: var(--gold-deep);
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.service-card p {
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============================================ FUNDING */
.funding {
  background: linear-gradient(135deg, var(--sage-deeper) 0%, var(--sage-dark) 100%);
  color: var(--bg-card);
  position: relative;
  overflow: hidden;
}
.funding::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(201, 164, 85, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.funding::after {
  content: '$';
  position: absolute;
  bottom: -10%; left: -2%;
  font-family: var(--font-display);
  font-size: clamp(15rem, 30vw, 28rem);
  color: rgba(201, 164, 85, 0.05);
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
}

.funding-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.zero-cost {
  font-style: italic;
  display: inline-block;
  position: relative;
  padding: 0 0.2em;
  color: var(--gold-bright);
}
.zero-cost::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0; right: 0;
  height: 0.12em;
  background: rgba(224, 188, 106, 0.5);
}

.funding-list {
  margin: 2rem 0 2.5rem;
  display: grid;
  gap: 0.4rem;
}
.funding-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(245, 246, 239, 0.1);
  position: relative;
  padding-left: 1.85rem;
  font-size: 0.95rem;
  color: rgba(245, 246, 239, 0.82);
}
.funding-list li::before {
  content: '';
  position: absolute;
  top: 1.05em;
  left: 0;
  width: 14px;
  height: 2px;
  background: var(--gold);
}
.funding-list li strong { color: var(--bg-card); font-weight: 600; }

/* Funding Visual */
.funding-visual {
  display: grid;
  gap: 1rem;
}
.funding-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 164, 85, 0.2);
  aspect-ratio: 16 / 9;
}
.funding-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.funding-photo:hover img { transform: scale(1.04); }

.funding-card {
  background: rgba(245, 246, 239, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 164, 85, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.4);
}
.fc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(245, 246, 239, 0.1);
  margin-bottom: 1.25rem;
}
.fc-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(245, 246, 239, 0.6);
  text-transform: uppercase;
  font-weight: 500;
}
.fc-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold-bright);
  background: rgba(201, 164, 85, 0.12);
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
}
.fc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px var(--gold-bright);
}

.fc-amount {
  text-align: center;
  padding: 0.5rem 0 1.25rem;
}
.fc-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.4rem;
}
.fc-sub {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(245, 246, 239, 0.6);
  letter-spacing: 0.05em;
}

.fc-stack {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(245, 246, 239, 0.1);
}
.stack-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
  margin-top: 0.85rem;
}
.stack-row > div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.wave {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 246, 239, 0.5);
  font-weight: 500;
}
.lender {
  font-size: 0.88rem;
  color: var(--bg-card);
  font-weight: 500;
}
.amt {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
}
.stack-bar {
  height: 4px;
  background: rgba(245, 246, 239, 0.08);
  border-radius: 100px;
  overflow: hidden;
}
.stack-bar > div {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  border-radius: 100px;
  width: 0;
  transition: width 1.5s var(--ease-out) 0.3s;
}
.stack-bar.is-in > div { width: var(--target-width, 100%); }

/* ============================================ BURNED */
.burned { background: var(--bg); }
.burned-callout {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.bc-bar {
  width: 6px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  flex-shrink: 0;
}
.bc-content {
  padding: 2rem 2.5rem;
}
.bc-content h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--ink);
}
.bc-content p {
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
  line-height: 1.7;
}
.bc-content p:last-child { margin-bottom: 0; }
.bc-content strong { color: var(--ink); font-weight: 600; }
.bc-em em { color: var(--gold-deep); }

.burned-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.3s var(--ease);
}
.trust:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
}
.t-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.trust h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.trust p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}
.trust-cta {
  background: linear-gradient(135deg, var(--ink) 0%, var(--sage-deeper) 100%);
  color: var(--bg-card);
  border-color: transparent;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
}
.trust-cta:hover { box-shadow: 0 16px 40px -12px rgba(44, 53, 39, 0.5); }
.trust-cta .t-num { color: var(--gold-bright); }
.trust-cta h4 { color: var(--bg-card); }
.trust-cta p { color: rgba(245, 246, 239, 0.85); margin-bottom: 1.25rem; }
.trust-cta .btn { background: var(--gold); color: var(--ink); border-color: var(--gold); margin-top: auto; align-self: flex-start; }
.trust-cta .btn:hover { background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-2px); }

/* ============================================ MEMBERSHIPS */
.memberships { background: var(--bg-soft); }

.process-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 1.25rem 2rem;
  margin: 0 auto 3.5rem;
  max-width: 980px;
  box-shadow: var(--shadow-sm);
}
.pb-step {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pb-num {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
}
.pb-step > div { display: flex; flex-direction: column; }
.pb-step strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pb-step em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.72rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.pb-arrow {
  color: var(--gold);
  font-size: 1.2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
}
.plan {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  position: relative;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.plan-popular {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}
.plan-popular:hover { transform: scale(1.02) translateY(-6px); }
.plan-platinum {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--gold-faint) 100%);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}
.plan-badge-premium {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
}

.plan-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.plan-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  background: var(--gold-faint);
  padding: 0.3rem 0.6rem;
  border-radius: 100px;
  font-weight: 500;
}

.plan-price { margin-bottom: 1.5rem; }
.price-setup {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.price-monthly {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.4rem;
}
.dollar {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink-soft);
  margin-right: 0.05em;
}
.price-monthly .amt {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--gold-deep);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.per {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-left: 0.3em;
}
.price-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

.plan-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.plan-features {
  flex: 1;
  margin-bottom: 1.75rem;
}
.plan-features li {
  padding: 0.55rem 0;
  font-size: 0.9rem;
  color: var(--ink);
  position: relative;
  padding-left: 1.65rem;
  line-height: 1.4;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--gold-deep);
  border-bottom: 2px solid var(--gold-deep);
  transform: rotate(45deg) translate(-2px, -2px);
}
.plan-features li.feat-prev {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 1rem;
  padding-left: 0;
  margin-bottom: 0.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--gold-soft);
}
.plan-features li.feat-prev::before { display: none; }
.plan-features li.feat-bold {
  color: var(--gold-deep);
  font-weight: 600;
}

.plan-foot {
  text-align: center;
  margin-top: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-faint);
  letter-spacing: 0.03em;
}

.monitoring {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}
.m-icon { font-size: 2.25rem; }
.m-content h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.m-content p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 65ch;
}
.m-content strong { color: var(--ink); font-weight: 600; }

.pricing-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-mute);
  padding-top: 1rem;
  letter-spacing: 0.03em;
}

/* ============================================ FAQ */
.faq { background: var(--bg); }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.85rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--bg-soft); }
.q-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  font-weight: 500;
}
.q-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.3;
}
.q-icon {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.4s var(--ease);
  font-family: var(--font-display);
  line-height: 1;
}
.faq-item[open] .q-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--ink);
}
.faq-body {
  padding: 0 1.85rem 1.5rem 5.4rem;
}
.faq-body p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* ============================================ FINAL CTA */
.final-cta {
  background: linear-gradient(135deg, var(--sage-deeper) 0%, var(--ink) 50%, var(--sage-dark) 100%);
  color: var(--bg-card);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 164, 85, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.fc-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.fc-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
  color: var(--bg-card);
}
.fc-title em {
  color: var(--gold-bright);
  font-style: italic;
  display: inline-block;
}
.fc-inner p {
  color: rgba(245, 246, 239, 0.8);
  font-size: 1.15rem;
  line-height: 1.55;
  max-width: 56ch;
  margin: 0 auto 2rem;
}
.fc-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.fc-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(245, 246, 239, 0.6);
  letter-spacing: 0.03em;
}

/* ============================================ FOOTER */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 5rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand p {
  color: var(--ink-soft);
  margin: 1.25rem 0 1.5rem;
  font-size: 0.95rem;
  max-width: 38ch;
  line-height: 1.55;
}
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-mute);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-cols h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-cols a {
  display: block;
  color: var(--ink-soft);
  font-size: 0.92rem;
  padding: 0.3rem 0;
  transition: color 0.2s var(--ease);
}
.footer-cols a:hover { color: var(--gold-deep); }
.footer-cta { color: var(--gold-deep) !important; font-weight: 600; }
.footer-disclaimer {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}
.footer-disclaimer p {
  font-size: 0.78rem;
  color: var(--ink-mute);
  line-height: 1.7;
  max-width: 100ch;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

/* ============================================ RESPONSIVE */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stage { max-width: 540px; margin: 0 auto; min-height: 480px; }
  .funding-grid { grid-template-columns: 1fr; gap: 3rem; }
  .how-grid { grid-template-columns: 1fr; }
  .how-grid::before { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .burned-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-cta { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 2.5rem; }
  .plan-popular { transform: none; }
  .plan-popular:hover { transform: translateY(-6px); }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .nav-login { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 73px; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    padding: 2rem var(--pad);
    gap: 1rem;
    z-index: 80;
    font-size: 1.5rem;
    font-family: var(--font-display);
    overflow-y: auto;
  }
  .announce-inner { font-size: 0.75rem; gap: 0.6rem; }
  .services-grid { grid-template-columns: 1fr; }
  .burned-grid { grid-template-columns: 1fr; }
  .trust-cta { grid-column: span 1; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .monitoring { grid-template-columns: 1fr; text-align: center; }
  .m-icon { margin: 0 auto; }
  .process-bar { flex-direction: column; padding: 1.5rem; border-radius: var(--radius-lg); }
  .pb-arrow { transform: rotate(90deg); }
  .burned-callout { flex-direction: column; }
  .bc-bar { width: 100%; height: 4px; }
  .bc-content { padding: 1.75rem 1.5rem; }
  .faq-item summary { padding: 1.25rem 1.25rem; gap: 0.85rem; }
  .faq-body { padding: 0 1.25rem 1.25rem 4rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stage-logo { width: 140px; height: 140px; padding: 22px; left: 50%; transform: translateX(-50%); }
  .stage-photo { width: 100%; }
  .float-chip { font-size: 0.78rem; padding: 0.7rem 0.9rem; }
  .chip-deletions { left: -2%; top: 30%; }
  .chip-funded { right: -2%; bottom: 25%; }
}

@media (max-width: 480px) {
  .hero { padding-top: 1.5rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .fc-actions { flex-direction: column; }
  .fc-actions .btn { width: 100%; }
  .float-chip { display: none; }
  .stage-logo { width: 110px; height: 110px; padding: 18px; }
}

/* ============================================
   V3.1 ADDITIONS — Bureau dashboard, image cards, lightbox
   ============================================ */

/* Stat text variant (for "Thousands") */
.stat-num.stat-text {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-style: italic;
}

/* Hide old stage elements that we replaced */
.stage-photo, .stage-logo { display: none !important; }

/* Bureau Dashboard (replaces hero photo) */
.bureau-dashboard {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}
.bureau-dashboard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
}

.dash-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 1.5rem;
}
.dash-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  font-weight: 600;
  text-transform: uppercase;
}
.dash-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
  animation: pulse 1.8s var(--ease) infinite;
}
.dash-date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}

.dash-gauges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.gauge {
  text-align: center;
}
.gauge-bureau {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.gauge-ring {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 130px;
  margin: 0 auto 0.5rem;
}
.gauge-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.gauge-track {
  fill: none;
  stroke: var(--bg-warm);
  stroke-width: 8;
}
.gauge-progress {
  fill: none;
  stroke: url(#gaugeGradient);
  stroke: var(--gold);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 314.16;
  stroke-dashoffset: 314.16;
  transition: stroke-dashoffset 2.2s var(--ease-out), stroke 0.6s var(--ease);
}
.gauge-ring.is-poor .gauge-progress { stroke: #d6705a; }
.gauge-ring.is-fair .gauge-progress { stroke: #d4925a; }
.gauge-ring.is-good .gauge-progress { stroke: #c9a455; }
.gauge-ring.is-very-good .gauge-progress { stroke: #94b370; }
.gauge-ring.is-excellent .gauge-progress { stroke: var(--success); }

.gauge-num {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.gauge-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, 65%);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.gauge-jump {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--success);
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.gauge-jump.is-shown {
  opacity: 1;
  transform: translateY(0);
}

.dash-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
}
.df-stat {
  text-align: center;
}
.df-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-deep);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.df-lbl {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* Reposition floating chips for new dashboard layout */
.chip-deletions {
  bottom: -10%;
  right: -8%;
  top: auto;
}
.chip-funded {
  top: -8%;
  left: -10%;
}

/* ============================================ IMAGE RESULT CARDS */
.rcard-img {
  flex: 0 0 280px;
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  position: relative;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.rcard-img::after {
  content: '🔍';
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  background: rgba(31, 38, 28, 0.85);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s var(--ease);
  z-index: 2;
}
.rcard-img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.rcard-img:hover::after {
  opacity: 1;
  transform: scale(1);
}
.rcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s var(--ease);
}
.rcard-img:hover img {
  transform: scale(1.04);
}

/* ============================================ LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(31, 38, 28, 0.94);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.lightbox.is-open {
  display: flex;
  animation: fadeIn 0.3s var(--ease);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lb-content {
  max-width: 92vw;
  max-height: 90vh;
  text-align: center;
  position: relative;
}
.lb-content img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(238, 240, 232, 0.15);
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.7);
  background: white;
}
.lb-caption {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-bright);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(238, 240, 232, 0.1);
  color: var(--bg);
  border: 1px solid rgba(238, 240, 232, 0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  z-index: 2;
  font-family: var(--font-display);
}
.lb-close { top: 1.5rem; right: 1.5rem; font-size: 1.8rem; }
.lb-prev { top: 50%; left: 1.5rem; transform: translateY(-50%); }
.lb-next { top: 50%; right: 1.5rem; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}

/* ============================================ MOBILE FIXES */
@media (max-width: 1100px) {
  .hero-stage { height: auto; min-height: 480px; }
  .bureau-dashboard { max-width: 480px; }
}

@media (max-width: 768px) {
  .hero-stage { height: auto; min-height: auto; padding: 0; }
  .bureau-dashboard { padding: 1.25rem 1rem 1.25rem; }
  .dash-gauges { gap: 0.4rem; }
  .gauge-ring { max-width: 100px; }
  .gauge-num { font-size: 1.15rem; }
  .gauge-label { font-size: 0.55rem; }
  .gauge-bureau { font-size: 0.55rem; }
  .gauge-jump { font-size: 0.65rem; }
  .df-num { font-size: 1.2rem; }
  .df-lbl { font-size: 0.55rem; }
  .chip-deletions { bottom: -8%; right: -2%; }
  .chip-funded { top: -6%; left: -2%; }
  .rcard-img { flex: 0 0 240px; }
  .lb-prev, .lb-next { width: 40px; height: 40px; }
  .lb-close { top: 1rem; right: 1rem; }
}

@media (max-width: 480px) {
  .float-chip { display: none; }
  .rcard-img { flex: 0 0 220px; }
  .lightbox { padding: 1rem; }
  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
}

/* ============================================
   V3.2 — Score Monitor (matches elitecredit.us)
   ============================================ */

/* Hide the old bureau dashboard if it shows up */
.bureau-dashboard { display: none !important; }

/* Score Monitor Card */
.score-monitor {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2rem 1.85rem 1.85rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}
.score-monitor::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
}
.score-monitor::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(201, 164, 85, 0.08), transparent 70%);
  pointer-events: none;
}

.sm-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.sm-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  font-weight: 600;
  text-transform: uppercase;
}
.sm-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px var(--success);
  animation: pulse 1.8s var(--ease) infinite;
}
.sm-jump {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(106, 137, 101, 0.12);
  color: var(--success);
  padding: 0.45rem 0.85rem;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

/* Big animated score */
.sm-score {
  text-align: center;
  padding: 1rem 0 1.5rem;
  position: relative;
  z-index: 1;
}
.sm-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(5.5rem, 11vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--gold-deep);
  font-variant-numeric: tabular-nums;
  transition: color 0.6s var(--ease);
  display: inline-block;
}
.sm-num.tier-poor { color: #c8553d; }
.sm-num.tier-fair { color: #d68b3c; }
.sm-num.tier-good { color: var(--gold-deep); }
.sm-num.tier-very-good { color: #6f9e5e; }
.sm-num.tier-excellent { color: var(--success); }

.sm-rating {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin-top: 0.3rem;
  font-weight: 400;
  transition: color 0.6s var(--ease);
}

/* Gradient bar */
.sm-bar-wrap {
  padding: 0.5rem 0 1.5rem;
  position: relative;
  z-index: 1;
}
.sm-bar {
  position: relative;
  height: 10px;
  border-radius: 100px;
  overflow: visible;
  background: linear-gradient(90deg,
    #d6705a 0%,
    #d68b3c 28%,
    var(--gold) 55%,
    #94b370 78%,
    var(--success) 100%
  );
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.08);
}
.sm-bar-fill { display: none; }
.sm-bar-marker {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--gold-deep);
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 14px rgba(201, 164, 85, 0.4), 0 0 0 4px rgba(201, 164, 85, 0.12);
  transition: border-color 0.6s var(--ease), box-shadow 0.6s var(--ease), opacity 0.4s var(--ease);
  z-index: 2;
}
.sm-bar-marker.tier-poor { border-color: #c8553d; box-shadow: 0 4px 14px rgba(200, 85, 61, 0.4), 0 0 0 4px rgba(200, 85, 61, 0.12); }
.sm-bar-marker.tier-fair { border-color: #d68b3c; box-shadow: 0 4px 14px rgba(214, 139, 60, 0.4), 0 0 0 4px rgba(214, 139, 60, 0.12); }
.sm-bar-marker.tier-good { border-color: var(--gold-deep); }
.sm-bar-marker.tier-very-good { border-color: #6f9e5e; box-shadow: 0 4px 14px rgba(111, 158, 94, 0.4), 0 0 0 4px rgba(111, 158, 94, 0.12); }
.sm-bar-marker.tier-excellent { border-color: var(--success); box-shadow: 0 4px 14px rgba(106, 137, 101, 0.5), 0 0 0 4px rgba(106, 137, 101, 0.14); }

.sm-bar-tiers {
  display: flex;
  justify-content: space-between;
  margin-top: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 600;
}
.sm-bar-tiers span:first-child,
.sm-bar-tiers span:last-child { color: var(--ink-soft); }

/* 4 stat counters */
.sm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
  position: relative;
  z-index: 1;
}
.sm-stat {
  text-align: center;
  padding: 0 0.25rem;
}
.sms-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.sms-lbl {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-top: 0.4rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Stats grid back to 3 columns since we removed one */
@media (min-width: 1101px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile tweaks for score monitor */
@media (max-width: 768px) {
  .score-monitor { padding: 1.5rem 1.25rem 1.5rem; max-width: 100%; }
  .sm-num { font-size: clamp(4rem, 18vw, 6rem); }
  .sm-rating { font-size: 1rem; }
  .sm-stats { gap: 0.25rem; padding-top: 1.25rem; }
  .sms-num { font-size: 1.1rem; }
  .sms-lbl { font-size: 0.52rem; letter-spacing: 0.04em; }
  .sm-bar-tiers { font-size: 0.55rem; }
  .sm-jump { font-size: 0.75rem; padding: 0.35rem 0.65rem; }
  .sm-label { font-size: 0.65rem; }
}

@media (max-width: 480px) {
  .sm-stats { grid-template-columns: repeat(2, 1fr); gap: 0.85rem 0.4rem; }
  .sms-num { font-size: 1.4rem; }
  .sms-lbl { font-size: 0.6rem; }
}
