/* =====================================================
   VALUATUM AI EQUITY REPORTS — Design System
   Brand: Professional green / clean neutrals (Inter)
===================================================== */

/* =====================================================
   1. DESIGN TOKENS
===================================================== */
:root {
  /* Brand palette */
  --green:         #3D9E72;
  --green-light:   #6DBFA0;
  --green-mist:    #E3F5EE;
  --green-deep:    #2A7452;
  --green-faint:   #F2FAF6;
  --forest:        #1B3028;
  --forest-mid:    #243D30;
  --charcoal:      #1A2420;
  --charcoal-mid:  #2C3832;
  --gray-steel:    #8A9590;
  --gray-light:    #E2E9E5;
  --off-white:     #F4F7F5;
  --white:         #FFFFFF;

  /* Premium/locked accent */
  --gold:          #C8963E;
  --gold-light:    #E8B96A;
  --gold-faint:    #FDF6E8;

  /* Semantic */
  --color-text:        var(--charcoal);
  --color-text-muted:  var(--gray-steel);
  --color-bg:          var(--white);
  --color-bg-alt:      var(--off-white);
  --color-border:      var(--gray-light);
  --color-border-mid:  rgba(0,0,0,0.09);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type scale */
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-md:    1.125rem;
  --text-lg:    1.375rem;
  --text-xl:    clamp(1.5rem, 2.5vw, 2rem);
  --text-2xl:   clamp(2rem, 3.5vw, 2.75rem);
  --text-3xl:   clamp(2.5rem, 5vw, 4rem);
  --text-hero:  clamp(2.75rem, 5.5vw, 4.75rem);

  /* Spacing */
  --nav-h:      72px;
  --page-x:     clamp(1.5rem, 5vw, 5rem);
  --max-w:      1280px;
  --section-py: clamp(5rem, 9vw, 9rem);
  --gap-sm:     1rem;
  --gap-md:     1.5rem;
  --gap-lg:     2.5rem;
  --gap-xl:     4rem;

  /* Motion */
  --trs:        200ms ease;
  --trs-md:     350ms cubic-bezier(0.4, 0, 0.2, 1);
  --trs-lg:     600ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Radii */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 100em;
}

/* =====================================================
   2. RESET & BASE
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; }
input, textarea { font: inherit; }

/* Top accent bar */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-deep) 0%, var(--green) 50%, var(--green-light) 100%);
  z-index: 300;
}

/* =====================================================
   3. UTILITIES
===================================================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-x);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--trs-lg), transform var(--trs-lg);
}
.reveal.is-visible { opacity: 1; transform: none; }

.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
  display: block;
}
.section-eyebrow--light { color: var(--green-light); }

.section-headline {
  font-size: var(--text-3xl);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: var(--gap-lg);
}
.section-headline--light { color: var(--white); }

.section-sub {
  font-size: var(--text-md);
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray-steel);
  max-width: 640px;
  margin-bottom: var(--gap-lg);
}

/* =====================================================
   4. BUTTONS
===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.7em 1.5em;
  border-radius: var(--r-pill);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: background var(--trs-md), color var(--trs-md), border-color var(--trs-md), transform var(--trs), box-shadow var(--trs-md);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover { background: var(--green-deep); border-color: var(--green-deep); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.85); }

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--gray-light);
}
.btn-outline-dark:hover { border-color: var(--green); color: var(--green); }

.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: transparent;
  padding-left: 0;
}
.btn-ghost:hover { color: var(--green-deep); transform: none; }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: #a87832; border-color: #a87832; }

.btn-lg { padding: 0.85em 2em; font-size: var(--text-md); }
.btn-sm { padding: 0.5em 1.1em; font-size: var(--text-xs); }

/* =====================================================
   5. NAVIGATION
===================================================== */
.nav {
  position: fixed;
  top: 2px; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--trs-md), border-color var(--trs-md), backdrop-filter var(--trs-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-x);
  gap: 2rem;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--green);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 16px; height: 16px; fill: white; }

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-wordmark {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color var(--trs-md);
}

.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  transition: color var(--trs-md);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  list-style: none;
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
  transition: color var(--trs);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--green-light);
  transition: width var(--trs-md);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
  padding: 0.45em 1.2em;
  border-radius: var(--r-pill);
  transition: background var(--trs-md), border-color var(--trs-md);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--green-deep); border-color: var(--green-deep); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: var(--trs-md);
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--forest);
  padding: 1.5rem var(--page-x) 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile-link {
  padding: 0.85rem 0;
  font-size: var(--text-md);
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--trs);
}
.nav-mobile-link:hover { color: var(--white); }
.nav-mobile-cta { margin-top: 1rem; color: var(--green-light); border-bottom: none; font-weight: 500; }

/* Scrolled state */
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--color-border);
}
.nav.scrolled .nav-logo-wordmark { color: var(--charcoal); }
.nav.scrolled .nav-logo-sub { color: var(--gray-steel); }
.nav.scrolled .nav-link { color: var(--gray-steel); }
.nav.scrolled .nav-link:hover { color: var(--charcoal); }
.nav.scrolled .nav-link::after { background: var(--green); }
.nav.scrolled .nav-hamburger span { background: var(--charcoal); }

/* =====================================================
   6. HERO — SEARCH FIRST
===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: var(--forest);
  overflow: hidden;
}

/* Subtle grid pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, transparent 75%);
}

/* Decorative chart line */
.hero-chart {
  position: absolute;
  bottom: 15%;
  right: -5%;
  width: 55%;
  height: 40%;
  z-index: 0;
  opacity: 0.06;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(61,158,114,0.18) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 860px;
  padding: calc(var(--nav-h) + 3rem) var(--page-x) 6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(61,158,114,0.15);
  border: 1px solid rgba(61,158,114,0.3);
  border-radius: var(--r-pill);
  padding: 0.3em 1em;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  animation: pulse 2s ease-in-out infinite;
}
.hero-badge-text {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.85); }
  50%       { opacity: 1;   transform: scale(1.15); }
}

.hero-headline {
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}
.hero-headline strong { font-weight: 600; }

.hero-sub {
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.35s, transform 0.8s ease 0.35s;
}

/* Search input area */
.hero-search-wrap {
  max-width: 660px;
  margin: 0 auto 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
  position: relative;
}

.search-field-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-lg);
  overflow: visible;
  transition: border-color var(--trs-md), background var(--trs-md), box-shadow var(--trs-md);
  position: relative;
  backdrop-filter: blur(8px);
}
.search-field-wrap:focus-within {
  border-color: var(--green-light);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 4px rgba(61,158,114,0.15);
}

.search-icon {
  padding: 0 1rem 0 1.25rem;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  display: flex;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: var(--text-md);
  font-weight: 300;
  padding: 1rem 0;
  min-width: 0;
}
.search-input::placeholder { color: rgba(255,255,255,0.38); }

.search-btn {
  margin: 0.5rem;
  padding: 0.65em 1.5em;
  background: var(--green);
  color: var(--white);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: background var(--trs-md), transform var(--trs);
  white-space: nowrap;
  flex-shrink: 0;
}
.search-btn:hover { background: var(--green-deep); transform: translateY(-1px); }

/* Autocomplete dropdown */
.search-autocomplete {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  z-index: 50;
  display: none;
  overflow: hidden;
}
.search-autocomplete.open { display: block; }

.autocomplete-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  cursor: pointer;
  transition: background var(--trs);
  border-bottom: 1px solid var(--color-border);
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover { background: var(--off-white); }

.autocomplete-ticker {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--green);
  min-width: 72px;
  font-family: 'Courier New', monospace;
}
.autocomplete-name {
  font-size: var(--text-sm);
  color: var(--charcoal);
  flex: 1;
}
.autocomplete-exchange {
  font-size: var(--text-xs);
  color: var(--gray-steel);
}

.availability-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2em 0.6em;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.availability-badge--preview { background: var(--green-mist); color: var(--green-deep); }
.availability-badge--generate { background: var(--off-white); color: var(--gray-steel); }
.availability-badge--soon { background: #f0f0f0; color: #999; }

/* Hero trust tags */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease 0.65s, transform 0.8s ease 0.65s;
}
.hero-trust-item {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.48);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-trust-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* Hero coming soon notice */
.hero-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.25rem;
  padding: 0.6rem 1.1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-pill);
  opacity: 0;
  transition: opacity 0.8s ease 0.8s;
}
.hero-loaded .hero-coming-soon { opacity: 1; }
.hero-cs-icon { color: rgba(255,255,255,0.4); flex-shrink: 0; display: flex; }
.hero-cs-text {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.hero-cs-text strong { color: rgba(255,255,255,0.75); font-weight: 600; }
.hero-cs-link {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--green-light);
  white-space: nowrap;
  transition: color var(--trs);
  cursor: pointer;
}
.hero-cs-link:hover { color: var(--white); }

/* Hero Now vs Coming Soon cards */
.hero-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 640px;
  margin: 2rem auto 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
  text-align: left;
}
@media (max-width: 540px) { .hero-modes { grid-template-columns: 1fr; } }
.hero-loaded .hero-modes { opacity: 1; transform: translateY(0); }

.hero-mode {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  backdrop-filter: blur(6px);
}
.hero-mode--now  { background: rgba(61,158,114,0.12); border-color: rgba(61,158,114,0.3); }
.hero-mode--soon { background: rgba(255,255,255,0.05); }

.hero-mode-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
}
.hero-mode-label--soon { color: rgba(255,255,255,0.4); }

.hero-mode-text {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  flex: 1;
}

.hero-sample-link {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease 0.75s;
}
.hero-sample-link a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--trs);
}
.hero-sample-link a:hover { color: rgba(255,255,255,0.85); }

/* Hero loaded state */
.hero-loaded .hero-badge,
.hero-loaded .hero-headline,
.hero-loaded .hero-sub,
.hero-loaded .hero-search-wrap,
.hero-loaded .hero-trust,
.hero-loaded .hero-sample-link { opacity: 1; transform: translateY(0); }

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-line {
  display: block;
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollPulse 2.5s ease-in-out infinite;
  margin: 0 auto;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5) translateY(-40%); }
  50%       { opacity: 0.8; transform: scaleY(1) translateY(0); }
}

/* =====================================================
   7. TRUST BAR
===================================================== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 3rem;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray-steel);
}
.trust-bar-icon { color: var(--green); flex-shrink: 0; display: flex; }

/* =====================================================
   8. SAMPLE REPORTS SECTION
===================================================== */
.samples-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}
.samples-header {
  text-align: center;
  margin-bottom: var(--gap-xl);
}
.samples-header .section-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.samples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.sample-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow var(--trs-md), transform var(--trs-md), border-color var(--trs-md);
  display: flex;
  flex-direction: column;
}
.sample-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-3px);
  border-color: rgba(61,158,114,0.3);
}
.sample-thumbnail {
  background: var(--forest);
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sample-thumb-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  opacity: 0.6;
}
.sample-thumb-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100px;
}
.sample-thumb-line {
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
}
.sample-thumb-line:nth-child(1) { width: 100%; }
.sample-thumb-line:nth-child(2) { width: 75%; }
.sample-thumb-line:nth-child(3) { width: 88%; }
.sample-thumb-line:nth-child(4) { width: 60%; }
.sample-thumb-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.sample-thumb-ticker {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-sm);
  padding: 0.25em 0.65em;
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  font-family: 'Courier New', monospace;
}

.sample-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sample-market {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.sample-company {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.sample-title {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--gray-steel);
  margin-bottom: 0.75rem;
}
.sample-desc {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.65;
  color: var(--gray-steel);
  margin-bottom: 1.25rem;
  flex: 1;
}
.sample-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.sample-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--green-mist);
  color: var(--green-deep);
  padding: 0.25em 0.65em;
  border-radius: var(--r-sm);
}
.sample-card-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--green);
  transition: color var(--trs), gap var(--trs-md);
}
.sample-card-cta:hover { color: var(--green-deep); gap: 0.75rem; }
.sample-card-cta--disabled {
  color: var(--gray-steel);
  opacity: 0.65;
  cursor: default;
  font-size: var(--text-xs);
}

/* =====================================================
   9. WHAT'S INSIDE SECTION
===================================================== */
.whats-inside {
  padding: var(--section-py) 0;
  background: var(--white);
}
.whats-inside-header {
  max-width: 640px;
  margin-bottom: var(--gap-xl);
}
.whats-inside-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--color-border);
}
.inside-item {
  background: var(--white);
  padding: 2rem;
  display: flex;
  gap: 1rem;
  transition: background var(--trs-md);
}
.inside-item:last-child {
  grid-column: span 2;
}
.inside-item:hover { background: var(--green-faint); }
.inside-icon {
  width: 36px; height: 36px;
  background: var(--green-mist);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.inside-icon svg { width: 18px; height: 18px; }
.inside-text {}
.inside-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.inside-desc {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.6;
  color: var(--gray-steel);
}

/* =====================================================
   10. HOW IT WORKS
===================================================== */
.how-it-works {
  padding: var(--section-py) 0;
  background: var(--forest);
}
.how-it-works-header {
  text-align: center;
  margin-bottom: var(--gap-xl);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(61,158,114,0.3), rgba(61,158,114,0.6), rgba(61,158,114,0.3));
}
.step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(61,158,114,0.15);
  border: 1px solid rgba(61,158,114,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--green-light);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.step-title {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* =====================================================
   11. WHY DIFFERENT
===================================================== */
.why-different {
  padding: var(--section-py) 0;
  background: var(--green-faint);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.why-content .section-headline { margin-bottom: 1.5rem; }
.why-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-pillar-num {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--green);
  min-width: 24px;
  padding-top: 2px;
}
.why-pillar-body {}
.why-pillar-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.why-pillar-desc {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.65;
  color: var(--gray-steel);
}

/* Report visual mockup */
.report-mockup {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.report-mockup-header {
  background: var(--forest);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.report-mockup-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
}
.report-mockup-sub {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  margin-top: 0.1rem;
}
.report-mockup-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(61,158,114,0.2);
  color: var(--green-light);
  padding: 0.3em 0.7em;
  border-radius: var(--r-sm);
}
.report-mockup-body { padding: 1.5rem; }
.mockup-metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.mockup-metric {
  background: var(--off-white);
  border-radius: var(--r-md);
  padding: 0.75rem;
}
.mockup-metric-val {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
}
.mockup-metric-lbl {
  font-size: 10px;
  color: var(--gray-steel);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mockup-section-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.mockup-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.mockup-bar-label {
  font-size: var(--text-xs);
  color: var(--charcoal);
  min-width: 120px;
}
.mockup-bar-track {
  flex: 1;
  height: 6px;
  background: var(--off-white);
  border-radius: 3px;
  overflow: hidden;
}
.mockup-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--green);
}
.mockup-bar-fill--locked { background: var(--gray-light); }
.mockup-bar-pct {
  font-size: var(--text-xs);
  color: var(--gray-steel);
  min-width: 32px;
  text-align: right;
}
.mockup-locked-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold-faint);
  border: 1px solid rgba(200,150,62,0.2);
  border-radius: var(--r-md);
  padding: 0.75rem 1rem;
  margin-top: 0.75rem;
}
.mockup-lock-icon { color: var(--gold); flex-shrink: 0; display: flex; }
.mockup-locked-text { font-size: var(--text-xs); color: var(--gold); font-weight: 500; flex: 1; }
.mockup-unlock-btn {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--r-sm);
  padding: 0.3em 0.7em;
  cursor: pointer;
  transition: background var(--trs), color var(--trs);
}
.mockup-unlock-btn:hover { background: var(--gold); color: var(--white); }

/* =====================================================
   12. PRICING TEASER
===================================================== */
.pricing-teaser {
  padding: var(--section-py) 0;
  background: var(--white);
}
.pricing-teaser-header {
  text-align: center;
  margin-bottom: var(--gap-xl);
}
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--trs-md), transform var(--trs-md), border-color var(--trs-md);
}
.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.pricing-card--featured {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), 0 12px 40px rgba(61,158,114,0.12);
}
.pricing-card--featured:hover {
  box-shadow: 0 0 0 1px var(--green-deep), 0 16px 48px rgba(61,158,114,0.18);
}
.pricing-badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3em 0.8em;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.pricing-name {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-steel);
  margin-bottom: 0.75rem;
}
.pricing-price-wrap { margin-bottom: 0.5rem; }
.pricing-price-main {
  font-size: var(--text-3xl);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  line-height: 1;
}
.pricing-price-launch {
  font-size: var(--text-sm);
  color: var(--gray-steel);
  text-decoration: line-through;
  margin-left: 0.5rem;
}
.pricing-period {
  font-size: var(--text-xs);
  color: var(--gray-steel);
  margin-bottom: 1.25rem;
}
.pricing-desc {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.65;
  color: var(--gray-steel);
  margin-bottom: 1.5rem;
  flex: 1;
}
.pricing-card-cta { width: 100%; justify-content: center; margin-top: auto; }
.pricing-all-link {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--gray-steel);
}
.pricing-all-link a { color: var(--green); }
.pricing-all-link a:hover { color: var(--green-deep); }

/* Full pricing page */
.pricing-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.pricing-card-full {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--trs-md), transform var(--trs-md);
}
.pricing-card-full:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.pricing-card-full.featured {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), 0 8px 32px rgba(61,158,114,0.1);
}
.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--text-sm);
  color: var(--charcoal);
  line-height: 1.5;
}
.pricing-features-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 0.45em;
}
.pricing-not-included li { color: var(--gray-steel); }
.pricing-not-included li::before { background: var(--gray-light); }

/* =====================================================
   13. METHODOLOGY / TRUST SECTION
===================================================== */
.method-trust {
  padding: var(--section-py) 0;
  background: var(--off-white);
  border-top: 1px solid var(--color-border);
}
.method-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.method-trust-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.method-pillar {
  border-top: 2px solid var(--green-light);
  padding-top: 1.25rem;
}
.method-pillar-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.method-pillar-desc {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.65;
  color: var(--gray-steel);
}
.method-disclaimer {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-top: 2rem;
}
.method-disclaimer p {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--gray-steel);
}
.method-disclaimer strong { color: var(--charcoal); }

/* =====================================================
   14. FAQ
===================================================== */
.faq-section {
  padding: var(--section-py) 0;
  background: var(--white);
}
.faq-header {
  text-align: center;
  margin-bottom: var(--gap-xl);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  text-align: left;
  font-size: var(--text-md);
  font-weight: 400;
  color: var(--charcoal);
  cursor: pointer;
  transition: color var(--trs);
  background: none;
  border: none;
}
.faq-question:hover { color: var(--green); }
.faq-question-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-steel);
  transition: transform var(--trs-md), color var(--trs);
}
.faq-item.open .faq-question-icon { transform: rotate(45deg); color: var(--green); }
.faq-answer {
  display: none;
  padding-bottom: 1.5rem;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray-steel);
}

/* =====================================================
   15. FINAL CTA SECTION
===================================================== */
.final-cta {
  padding: var(--section-py) 0;
  background: var(--forest);
  text-align: center;
}
.final-cta .hero-search-wrap {
  opacity: 1;
  transform: none;
  margin: 0 auto 1.5rem;
  max-width: 600px;
}
.final-cta-headline {
  font-size: var(--text-3xl);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1rem;
}
.final-cta-sub {
  font-size: var(--text-md);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
}

/* =====================================================
   16. FOOTER
===================================================== */
.footer {
  background: var(--charcoal);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
}
.footer-col-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  transition: color var(--trs);
}
.footer-link:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}
.footer-disclaimer {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
  max-width: 500px;
  text-align: right;
  line-height: 1.55;
}

/* =====================================================
   17. REPORT PREVIEW PAGE
===================================================== */
.report-page {
  padding-top: var(--nav-h);
  background: var(--off-white);
  min-height: 100vh;
}

/* Company header */
.report-company-header {
  background: var(--forest);
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.company-header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.company-ident {}
.company-name {
  font-size: var(--text-3xl);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.company-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1rem;
}
.company-meta-chip {
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}
.company-meta-sep {
  width: 1px; height: 12px;
  background: rgba(255,255,255,0.2);
}
.company-ticker {
  font-family: 'Courier New', monospace;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--green-light);
  background: rgba(61,158,114,0.12);
  border: 1px solid rgba(61,158,114,0.25);
  border-radius: var(--r-sm);
  padding: 0.2em 0.6em;
}
.company-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-pill);
  padding: 0.35em 0.9em;
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}
.company-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
}
.company-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Key metrics */
.key-metrics-section {
  padding: 2rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--color-border);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.metric-card {
  background: var(--white);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.metric-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-steel);
}
.metric-value {
  font-size: var(--text-xl);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  line-height: 1.2;
}
.metric-change {
  font-size: var(--text-xs);
  font-weight: 500;
}
.metric-change--pos { color: var(--green); }
.metric-change--neg { color: #E05252; }

/* Report layout (2 col) */
.report-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0 4rem;
}

.report-main {}

/* Report content sections */
.report-section {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.report-section-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.report-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.report-section-title {
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.report-section-body {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal);
}
.report-section-body p + p { margin-top: 0.75rem; }

/* Value pool chart */
.value-pool-chart { margin-top: 1.5rem; }
.pool-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.pool-name {
  font-size: var(--text-sm);
  color: var(--charcoal);
  min-width: 160px;
}
.pool-track {
  flex: 1;
  height: 8px;
  background: var(--off-white);
  border-radius: 4px;
  overflow: hidden;
}
.pool-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
}
.pool-pct {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--charcoal);
  min-width: 36px;
  text-align: right;
}
.pool-row--locked .pool-name { color: var(--gray-steel); }
.pool-row--locked .pool-fill { background: var(--gray-light); }

/* Locked content */
.locked-section {
  background: var(--white);
  border: 1px solid rgba(200,150,62,0.25);
  border-radius: var(--r-xl);
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
}
.locked-section-inner {
  padding: 2rem;
}
.locked-preview {
  margin-bottom: 1.5rem;
  position: relative;
}
.locked-preview-text {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal);
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
  max-height: 80px;
  overflow: hidden;
}
.locked-gate {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.9) 60%, rgba(255,255,255,1) 100%);
}
.locked-section-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.locked-icon {
  width: 40px; height: 40px;
  background: var(--gold-faint);
  border: 1px solid rgba(200,150,62,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.locked-icon svg { width: 20px; height: 20px; }
.locked-section-title {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.locked-section-desc {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.65;
  color: var(--gray-steel);
}
.locked-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gold);
  border: 1px solid rgba(200,150,62,0.4);
  border-radius: var(--r-pill);
  padding: 0.5em 1.25em;
  background: var(--gold-faint);
  cursor: pointer;
  transition: background var(--trs-md), border-color var(--trs-md);
  width: fit-content;
}
.locked-cta:hover { background: rgba(200,150,62,0.15); border-color: var(--gold); }
.locked-cta svg { width: 14px; height: 14px; }

/* Sticky CTA sidebar */
.report-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.sticky-cta-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.sticky-cta-header {
  background: var(--forest);
  padding: 1.5rem;
}
.sticky-cta-company {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.25rem;
}
.sticky-cta-title {
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.sticky-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.sticky-price {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
}
.sticky-price-orig {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}
.sticky-launch-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 0.2em 0.6em;
  border-radius: var(--r-sm);
  margin-left: 0.5rem;
}
.sticky-cta-body { padding: 1.5rem; }
.sticky-cta-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.sticky-cta-includes li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-sm);
  color: var(--charcoal);
}
.sticky-cta-includes li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.sticky-cta-btn { width: 100%; justify-content: center; margin-bottom: 0.75rem; }
.sticky-cta-secondary {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--gray-steel);
  display: block;
}
.sticky-cta-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: var(--text-xs);
  color: var(--gray-steel);
}
.sticky-credits {
  border-top: 1px solid var(--color-border);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sticky-credits-text {
  font-size: var(--text-xs);
  color: var(--gray-steel);
  line-height: 1.5;
}
.sticky-credits-link {
  font-size: var(--text-xs);
  color: var(--green);
  cursor: pointer;
  transition: color var(--trs);
}
.sticky-credits-link:hover { color: var(--green-deep); }

/* Related companies */
.related-section {
  padding: 3rem 0 4rem;
  background: var(--off-white);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  cursor: pointer;
  transition: box-shadow var(--trs-md), border-color var(--trs-md), transform var(--trs);
  text-decoration: none;
}
.related-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  border-color: var(--green-light);
  transform: translateY(-2px);
}
.related-ticker {
  font-family: 'Courier New', monospace;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.25rem;
}
.related-name {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.related-sector {
  font-size: var(--text-xs);
  color: var(--gray-steel);
}

/* =====================================================
   18. SEARCH PAGE
===================================================== */
.search-page {
  padding-top: var(--nav-h);
  min-height: 100vh;
  background: var(--off-white);
}
.search-page-hero {
  background: var(--forest);
  padding: 3rem 0 2.5rem;
}
.search-page-headline {
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.search-page-input-wrap {
  max-width: 640px;
}
.search-results-section { padding: 2.5rem 0; }
.search-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.search-results-count {
  font-size: var(--text-sm);
  color: var(--gray-steel);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.result-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  cursor: pointer;
  transition: box-shadow var(--trs-md), border-color var(--trs-md), transform var(--trs);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
}
.result-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  border-color: rgba(61,158,114,0.3);
  transform: translateY(-2px);
}
.result-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.result-ticker {
  font-family: 'Courier New', monospace;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--green);
}
.result-name {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--charcoal);
}
.result-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.result-meta-item {
  font-size: var(--text-xs);
  color: var(--gray-steel);
}
.result-action {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--green);
  margin-top: auto;
  padding-top: 0.75rem;
  transition: gap var(--trs-md);
}
.result-card:hover .result-action { gap: 0.65rem; }

/* =====================================================
   19. FULL REPORT PAGE
===================================================== */
.report-full-page {
  padding-top: var(--nav-h);
  background: var(--off-white);
}
.report-full-nav {
  position: sticky;
  top: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--color-border);
  z-index: 50;
}
.report-full-nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.report-full-nav-inner::-webkit-scrollbar { display: none; }
.report-nav-link {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--gray-steel);
  padding: 1rem 1.25rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--trs), border-color var(--trs);
  text-decoration: none;
}
.report-nav-link:hover { color: var(--charcoal); }
.report-nav-link.active { color: var(--green); border-bottom-color: var(--green); }
.report-full-download {
  margin-left: auto;
  flex-shrink: 0;
  padding: 0.75rem 1.25rem;
  border-left: 1px solid var(--color-border);
}

.report-full-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  min-height: calc(100vh - var(--nav-h) - 49px);
}
.report-full-sidebar {
  background: var(--white);
  border-right: 1px solid var(--color-border);
  padding: 2rem 1.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 49px);
  height: calc(100vh - var(--nav-h) - 49px);
  overflow-y: auto;
}
.sidebar-nav-link {
  display: block;
  font-size: var(--text-sm);
  color: var(--gray-steel);
  padding: 0.6rem 1rem;
  border-radius: var(--r-md);
  border-left: 2px solid transparent;
  transition: color var(--trs), background var(--trs), border-color var(--trs);
  text-decoration: none;
  margin-bottom: 0.25rem;
}
.sidebar-nav-link:hover { color: var(--charcoal); background: var(--off-white); }
.sidebar-nav-link.active { color: var(--green); background: var(--green-faint); border-left-color: var(--green); }

.report-full-content { padding: 2.5rem; }
.report-full-section {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}
.report-full-section h2 {
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.report-full-section h3 {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}
.report-full-section p {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.report-full-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  margin-top: 1.5rem;
}
.report-full-section th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: var(--off-white);
  color: var(--gray-steel);
  font-weight: 600;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--color-border);
}
.report-full-section td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--charcoal);
}
.report-full-section tr:last-child td { border-bottom: none; }
.report-full-section td.num { text-align: right; font-variant-numeric: tabular-nums; }
.report-full-section td.pos { color: var(--green); }
.report-full-section td.neg { color: #E05252; }

/* Upsell banner inside full report */
.upsell-bar {
  background: var(--forest);
  border-radius: var(--r-xl);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.upsell-bar-text {
  flex: 1;
}
.upsell-bar-title {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.upsell-bar-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
}

/* =====================================================
   20. METHODOLOGY PAGE
===================================================== */
.method-page {
  padding-top: var(--nav-h);
  background: var(--off-white);
}
.method-hero {
  background: var(--forest);
  padding: 4rem 0 3rem;
}
.method-body { padding: var(--section-py) 0; }
.method-article {
  max-width: 760px;
  margin: 0 auto;
}
.method-step {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}
.method-step-num {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.method-step h2 {
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.method-step p {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.method-step ul {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}
.method-step li {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-steel);
  margin-bottom: 0.4rem;
}

/* =====================================================
   21. ABOUT PAGE
===================================================== */
.about-page { padding-top: var(--nav-h); }
.about-hero {
  background: var(--forest);
  padding: 5rem 0 4rem;
}
.about-body { padding: var(--section-py) 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  margin-bottom: var(--gap-xl);
}

/* =====================================================
   22. PRICING PAGE
===================================================== */
.pricing-page {
  padding-top: var(--nav-h);
  background: var(--off-white);
}
.pricing-page-hero {
  background: var(--forest);
  padding: 4rem 0 3rem;
}
.pricing-page-body { padding: var(--section-py) 0; }
.pricing-faq { padding: var(--section-py) 0; background: var(--white); }

/* =====================================================
   23. SAMPLE REPORTS PAGE
===================================================== */
.samples-page {
  padding-top: var(--nav-h);
  background: var(--off-white);
}
.samples-page-hero {
  background: var(--forest);
  padding: 4rem 0 3rem;
}
.samples-page-body { padding: var(--section-py) 0; }
.samples-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

/* =====================================================
   24. CHECKOUT PAGES
===================================================== */
.checkout-page {
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--off-white);
}
.checkout-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.checkout-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.checkout-icon--success { background: var(--green-mist); color: var(--green); }
.checkout-icon--cancel { background: #FEF0F0; color: #E05252; }
.checkout-icon svg { width: 36px; height: 36px; }
.checkout-title {
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.checkout-body {
  font-size: var(--text-md);
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-steel);
  margin-bottom: 2rem;
}
.checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* =====================================================
   25. EMAIL CAPTURE MODAL
===================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  display: none;
  place-items: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: grid; }
.modal {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  max-width: 440px;
  width: 90%;
  position: relative;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  color: var(--gray-steel);
  cursor: pointer;
  transition: background var(--trs);
}
.modal-close:hover { background: var(--color-border); }
.modal-icon {
  width: 52px; height: 52px;
  background: var(--green-mist);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--green);
}
.modal-icon svg { width: 24px; height: 24px; }
.modal-title {
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.modal-body {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-steel);
  margin-bottom: 1.5rem;
}
.modal-form { display: flex; flex-direction: column; gap: 0.75rem; }
.modal-input {
  width: 100%;
  padding: 0.85em 1.1em;
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  color: var(--charcoal);
  transition: border-color var(--trs-md), box-shadow var(--trs-md);
  outline: none;
  background: var(--off-white);
}
.modal-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61,158,114,0.12);
  background: var(--white);
}
.modal-submit { width: 100%; justify-content: center; }
.modal-skip {
  text-align: center;
  margin-top: 0.75rem;
}
.modal-skip button {
  font-size: var(--text-xs);
  color: var(--gray-steel);
  cursor: pointer;
  transition: color var(--trs);
}
.modal-skip button:hover { color: var(--charcoal); }

/* =====================================================
   26. DISCLAIMER PAGE
===================================================== */
.disclaimer-page {
  padding-top: var(--nav-h);
  background: var(--off-white);
}
.disclaimer-body { padding: var(--section-py) 0; }
.disclaimer-article {
  max-width: 760px;
  margin: 0 auto;
}
.disclaimer-section {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}
.disclaimer-section h2 {
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.disclaimer-section p {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.disclaimer-section p:last-child { margin-bottom: 0; }

/* =====================================================
   27. RESPONSIVE
===================================================== */
@media (max-width: 1100px) {
  .report-full-layout {
    grid-template-columns: 1fr;
  }
  .report-full-sidebar { display: none; }
  .report-full-nav { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .report-layout {
    grid-template-columns: 1fr;
  }
  .report-sidebar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    top: auto;
    z-index: 90;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.12);
    border-radius: var(--r-lg) var(--r-lg) 0 0;
  }
  .sticky-cta-card {
    border-radius: var(--r-lg) var(--r-lg) 0 0;
  }
  .sticky-cta-includes { display: none; }
  .sticky-credits { display: none; }
  .preview-save-card { display: none; }
  .sticky-cta-header { display: flex; align-items: center; gap: 1.5rem; padding: 1rem 1.5rem; }
  .sticky-cta-company { display: none; }
  .sticky-cta-title { font-size: var(--text-base); margin-bottom: 0; }
  .sticky-price-wrap { margin: 0; }
  .sticky-cta-body { padding: 0.75rem 1.5rem; }
  .sticky-cta-secondary { display: none; }
  .sticky-cta-secure { display: none; }

  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .method-trust-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .pricing-cards-grid { grid-template-columns: 1fr; }
  .mockup-metric-row { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }

  .report-page { padding-bottom: 180px; }
}

@media (max-width: 640px) {
  .samples-section { padding: 4rem 0; }
  .inside-item:last-child { grid-column: span 1; }
  .hero-headline { letter-spacing: -0.02em; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-disclaimer { text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .why-different { padding: 4rem 0; }
  .pool-name { min-width: 120px; font-size: var(--text-xs); }
  .company-header-actions { width: 100%; }
  .company-header-actions .btn { flex: 1; justify-content: center; }
}

@media (min-width: 901px) {
  .nav-mobile-menu { display: none !important; }
}
