/* ============================================================
   THE STOCK TREND REPORT — shared stylesheet (v2 multi-page)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1B3A6B;
  --navy-dk: #102245;
  --blue:    #2E5F9E;
  --ltblue:  #E8F2FB;
  --teal:    #0F6E56;
  --gold:    #2F7E8C;
  --body:    #3A3A4A;
  --muted:   #6B7280;
  --border:  #DDE6F0;
  --bg:      #F7FAFD;
  --white:   #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── SITE PASSWORD GATE ── */
body { visibility: hidden; }
body.str-unlocked { visibility: visible; }
#str-gate {
  visibility: visible;
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-dk);
  padding: 1.5rem;
}
#str-gate-box {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem 2.25rem;
  max-width: 340px; width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
#str-gate-box .logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.9rem; font-weight: 600;
  color: var(--navy-dk); line-height: 1.15;
  display: block; margin-bottom: 1.4rem;
}
#str-gate-box input {
  width: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 5px;
  outline: none;
  margin-bottom: 0.9rem;
}
#str-gate-box input:focus { border-color: var(--blue); }
#str-gate-box button {
  width: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem; font-weight: 600;
  background: var(--teal); color: #fff;
  border: none; border-radius: 5px;
  padding: 0.7rem; cursor: pointer;
}
#str-gate-box button:hover { background: var(--navy); }
#str-gate-error {
  color: #B3261E; font-size: 0.8rem; margin-top: 0.7rem; min-height: 1em;
}

/* ── PRE-LAUNCH BANNER ── */
.pre-launch-bar {
  background: var(--teal); color: #fff;
  padding: 0.6rem 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.82rem; position: relative; flex-wrap: wrap; text-align: center;
}
.pre-launch-tag {
  font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; font-size: 0.66rem;
  background: rgba(255,255,255,0.18); padding: 3px 9px; border-radius: 3px;
}
.pre-launch-cta {
  position: absolute; right: 2.6rem; top: 50%; transform: translateY(-50%);
  background: #fff; color: var(--teal); font-weight: 600; font-size: 0.72rem;
  padding: 5px 14px; border-radius: 4px; text-decoration: none; white-space: nowrap;
}
.pre-launch-cta:hover { background: rgba(255,255,255,0.9); }
.pre-launch-close {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  opacity: 0.65; font-size: 1.1rem; line-height: 1;
  color: #fff; text-decoration: none;
}
.pre-launch-close:hover { opacity: 1; }
@media (max-width: 700px) {
  .pre-launch-cta { position: static; transform: none; margin-top: 0.4rem; }
}

/* ── HEADER (two-tier: brand band + two-row nav) ── */
.site-header {
  background: var(--navy-dk);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.brand-band {
  text-align: center;
  padding: 1.25rem 2.5rem 0.9rem;
}
.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.7rem; font-weight: 600;
  color: #fff; text-decoration: none;
  letter-spacing: 0.01em; line-height: 1;
  white-space: nowrap;
}
.brand-tag {
  margin-top: 0.5rem;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.site-nav { border-top: 1px solid rgba(255,255,255,0.07); }
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 0.55rem 2.5rem 0.7rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
}
.nav-row {
  display: flex; align-items: center; gap: 0.35rem;
  list-style: none; flex-wrap: wrap; justify-content: center;
}
.nav-row a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.4rem 0.85rem; border-radius: 5px;
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
}
.nav-row a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-row a.active { color: #fff; }
.nav-row a.active::after {
  content: ''; display: block; height: 2px; margin-top: 3px;
  background: var(--gold); border-radius: 2px;
}
.nav-cta {
  background: #3A85CC; color: #fff !important;
  border: 1px solid #3A85CC;
  padding: 0.4rem 1.2rem !important; border-radius: 5px;
  font-weight: 600 !important;
  margin-left: 0.4rem;
}
.nav-cta:hover { background: #4D99E0 !important; }
.nav-cta.active::after { display: none; }

/* ── ARTICLE (special report) ── */
.article { max-width: 720px; margin: 0 auto; }
.article-meta {
  display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
}
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }
.article-meta .cat { color: var(--blue); }
.article h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 600;
  color: var(--navy); line-height: 1.12; letter-spacing: -0.01em; margin-bottom: 0.5rem;
}
.article-dateline { font-size: 0.95rem; color: var(--muted); margin-bottom: 2rem; font-style: italic; }
.article-body p { font-size: 1.05rem; color: var(--body); line-height: 1.9; margin-bottom: 1.3rem; }
.article-body h3 { font-size: 1.3rem; font-weight: 600; color: var(--navy); margin: 2.5rem 0 0.9rem; }
.article-body h3:first-child { margin-top: 0; }
.article-body p.dropcap-lead { font-size: 1.12rem; }
.article-sign {
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; color: var(--navy);
}
.article-note {
  margin-top: 2.5rem; background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.1rem 1.4rem;
  font-size: 0.8rem; color: var(--muted); line-height: 1.75;
}

/* ── REPORT LIST ── */
.report-list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 2.5rem; }
.report-item {
  display: block; text-decoration: none;
  border: 1px solid var(--border); border-radius: 11px;
  background: var(--white); padding: 1.6rem 1.85rem;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.report-item:hover { border-color: var(--blue); box-shadow: 0 4px 22px rgba(27,58,107,0.08); transform: translateY(-1px); }
.report-item.is-soon { opacity: 0.72; cursor: default; }
.report-item.is-soon:hover { border-color: var(--border); box-shadow: none; transform: none; }
.report-top { display: flex; gap: 0.7rem; align-items: center; flex-wrap: wrap; margin-bottom: 0.6rem; }
.report-cat {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); background: var(--ltblue); padding: 2px 9px; border-radius: 3px;
}
.report-date { font-size: 0.74rem; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.report-flag {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal); background: #E6F4EF; padding: 2px 9px; border-radius: 3px;
}
.report-flag.soon { color: var(--muted); background: var(--bg); }
.report-item h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; font-weight: 600; color: var(--navy); line-height: 1.2; margin-bottom: 0.4rem;
}
.report-item p { font-size: 0.92rem; color: var(--muted); line-height: 1.75; }
.report-readmore { display: inline-block; margin-top: 0.8rem; font-size: 0.82rem; font-weight: 600; color: var(--blue); text-decoration: none; }
.report-actions { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ── CRASHES ── */
.crash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.5rem; }
.crash-card {
  display: block; text-decoration: none;
  border: 1px solid var(--border); border-radius: 11px; background: var(--white);
  padding: 1.6rem 1.85rem; position: relative; overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.crash-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--navy), var(--blue));
}
.crash-card:hover { border-color: var(--blue); box-shadow: 0 4px 22px rgba(27,58,107,0.08); transform: translateY(-1px); }
.crash-year {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem; font-weight: 600; color: var(--navy); line-height: 1;
}
.crash-name { font-size: 1.02rem; font-weight: 600; color: var(--navy); margin: 0.35rem 0 0.9rem; }
.crash-stat {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  color: #B91C1C; background: #FEF2F2; padding: 2px 9px; border-radius: 3px; margin-bottom: 0.8rem;
}
.crash-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.crash-readmore { display: inline-block; margin-top: 0.85rem; font-size: 0.8rem; font-weight: 600; color: var(--blue); }
.crash-readmore.soon { color: var(--muted); }

/* ── MONITOR SUMMARY ── */
.mon-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 2.5rem; }
.mon-stat {
  border: 1px solid var(--border); border-radius: 10px; background: var(--white);
  padding: 1.4rem 1.5rem; text-align: center;
}
.mon-stat-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2.6rem; font-weight: 600; color: var(--navy); line-height: 1; }
.mon-stat-num.green { color: var(--teal); }
.mon-stat-num.red { color: #B91C1C; }
.mon-stat-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 0.6rem; }

/* ── SMA MONITOR CARD GRID ── */
.mon-summary {
  display: flex; gap: 2rem; align-items: center; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 1rem 1.5rem; margin-top: 2.5rem;
}
.mon-summary-item { display: flex; align-items: center; gap: 0.55rem; font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.mon-summary-date { margin-left: auto; font-size: 0.8rem; font-weight: 600; color: var(--muted); letter-spacing: 0.02em; }
.mon-sdot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.mon-sdot.invested { background: #16a34a; }
.mon-sdot.cash { background: #dc2626; }
.mon-sdot.inband { background: #ca8a04; }
.mon-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.1rem; margin-top: 1.5rem;
}
.mon-card {
  background: var(--white); border: 2px solid var(--border); border-radius: 11px;
  padding: 1.1rem 1.2rem;
  transition: box-shadow 0.18s, transform 0.18s;
}
.mon-card:hover { box-shadow: 0 4px 22px rgba(27,58,107,0.08); transform: translateY(-1px); }
.mon-card.invested { border-color: #16a34a; }
.mon-card.inband { border-color: #ca8a04; }
.mon-card.cash { border-color: #dc2626; }
.mon-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.9rem; }
.mon-ticker { font-family: 'Courier New', monospace; font-size: 1.35rem; font-weight: 700; color: var(--navy); line-height: 1.1; }
.mon-sector { font-size: 0.74rem; color: var(--muted); margin-top: 0.2rem; }
.mon-badge {
  font-size: 0.64rem; font-weight: 700; padding: 4px 10px; border-radius: 12px;
  text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap;
}
.mon-badge.invested { background: #DCFCE7; color: #15803D; }
.mon-badge.inband { background: #FEF9C3; color: #A16207; }
.mon-badge.cash { background: #FEE2E2; color: #B91C1C; }
.mon-metrics { display: flex; justify-content: space-between; padding-bottom: 0.85rem; margin-bottom: 0.8rem; border-bottom: 1px solid var(--border); }
.mon-metric .mon-label { font-size: 0.62rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.2rem; }
.mon-metric .mon-value { font-size: 0.9rem; font-weight: 700; color: var(--navy); font-family: 'Courier New', monospace; }
.mon-value.pos { color: #15803D; }
.mon-value.neg { color: #B91C1C; }
.mon-value.flat { color: #A16207; }
.mon-pos { font-size: 0.8rem; color: var(--muted); font-weight: 600; }

/* ── LAYOUT ── */
section { padding: 4rem 2.5rem; }
.container { max-width: 1120px; margin: 0 auto; }
.container-narrow { max-width: 720px; margin: 0 auto; }

/* ── SECTION HEADER ── */
.section-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.8rem;
}
h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--navy); line-height: 1.15; letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.lead {
  font-size: 1.05rem; color: var(--muted); line-height: 1.85;
}

/* ── HERO (home) ── */
#hero {
  background: linear-gradient(165deg, #0a1a38 0%, #162d5a 50%, #1a3968 100%);
  color: #fff;
  padding: 4rem 2.5rem 3.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(46,95,158,0.35) 0%, transparent 65%);
  pointer-events: none;
}
.hero-tagline {
  font-size: clamp(1.35rem, 3.2vw, 2.2rem); font-weight: 700; color: #fff;
  margin: 0 auto 1.5rem; max-width: 46rem; line-height: 1.3;
  text-align: center; position: relative; letter-spacing: -0.01em;
  text-wrap: balance;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid rgba(95,168,181,0.45);
  border-radius: 3px;
  padding: 0.4rem 1rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #6FB4C0;
  margin-bottom: 2rem;
  position: relative;
}
#hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 500;
  line-height: 1.5; letter-spacing: 0;
  max-width: 640px; margin: 0 auto 1.25rem;
  color: rgba(255,255,255,0.78);
  position: relative;
}
#hero h1 em { font-style: italic; color: #8ABFE8; }
#hero .sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.65);
  max-width: 560px; margin: 0 auto 3rem;
  line-height: 1.85;
  position: relative;
}
.cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-primary {
  background: #3A85CC; color: #fff;
  padding: 0.9rem 2.2rem; border-radius: 5px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: background 0.2s; display: inline-block;
}
.btn-primary:hover { background: #4D99E0; }
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.85);
  padding: 0.9rem 2.2rem; border-radius: 5px;
  text-decoration: none; font-weight: 500; font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s; display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.07); }
.btn-wide { padding-left: 3.2rem; padding-right: 3.2rem; }
.hero-footnote {
  margin-top: 2.25rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.32);
  max-width: 500px; margin-left: auto; margin-right: auto;
  position: relative;
  line-height: 1.7;
}
.hero-quote-cite {
  display: block;
  margin: -0.75rem auto 2.25rem;
  font-style: normal;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}

/* ── PAGE HEADER (interior pages) ── */
.page-header {
  background: linear-gradient(165deg, #0a1a38 0%, #162d5a 60%, #1a3968 100%);
  color: #fff;
  padding: 3.25rem 2.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(46,95,158,0.3) 0%, transparent 65%);
  pointer-events: none;
}
.page-header .ph-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: #6FB4C0; margin-bottom: 1rem;
  position: relative;
}
.page-header h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 600; line-height: 1.12; letter-spacing: -0.01em;
  color: #fff; max-width: 760px; margin: 0 auto 1rem;
  position: relative;
}
.page-header p {
  font-size: 1.05rem; color: rgba(255,255,255,0.66);
  max-width: 620px; margin: 0 auto; line-height: 1.8;
  position: relative;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 2.5rem;
}
.trust-bar-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; gap: 0; justify-content: center; flex-wrap: wrap;
}
.trust-item {
  font-size: 0.775rem; font-weight: 500; color: var(--muted);
  padding: 0.25rem 1.75rem;
  border-right: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.5rem;
}
.trust-item:last-child { border-right: none; }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── WHY ── */
#why { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 2.5rem; align-items: start; }
.why-col-left { padding-right: 1rem; }
.why-col-right { display: flex; flex-direction: column; gap: 1.25rem; }
.why-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 1.5rem 1.75rem;
}
.why-card-icon { font-size: 1.1rem; margin-bottom: 0.75rem; }
.why-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.75; }
.why-aside {
  margin-top: 2rem;
  background: var(--navy-dk);
  border-radius: 10px;
  padding: 1.75rem;
  color: rgba(255,255,255,0.85);
}
.why-aside-label {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem;
}
.why-aside p { font-size: 0.875rem; line-height: 1.8; color: rgba(255,255,255,0.7); }
.why-aside strong { color: #fff; }

/* ── HOW ── */
#how { background: var(--white); }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; }
.how-card {
  border: 1px solid var(--border); border-radius: 10px;
  padding: 2rem 2.25rem;
  position: relative;
}
.how-card::before {
  content: ''; position: absolute; top: 0; left: 2.25rem; right: 2.25rem; height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  border-radius: 0 0 2px 2px;
}
.how-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem; font-weight: 400; color: var(--ltblue);
  line-height: 1; margin-bottom: 1rem; margin-left: -4px;
}
.how-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.75rem; }
.how-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; }
.rule-table { margin-top: 1.5rem; border: 1px solid var(--border); border-radius: 7px; overflow: hidden; }
.rule-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.55rem 1rem; font-size: 0.82rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.rule-row:last-child { border-bottom: none; }
.rule-lbl { color: var(--muted); }
.rule-val { font-family: 'Courier New', monospace; font-size: 0.8rem; }
.tag { padding: 2px 9px; border-radius: 3px; font-size: 0.75rem; font-weight: 600; }
.tag-invest { background: #DCFCE7; color: #15803D; }
.tag-cash   { background: #FEF2F2; color: #B91C1C; }
.tag-hold   { background: #FEF9C3; color: #854D0E; }

/* ── BEHAVIOUR ── */
#behaviour {
  background: #0D1F3C;
}
#behaviour .section-label { color: #6FB4C0; }
#behaviour h2 { color: #fff; }
.beh-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem; margin-top: 3rem; align-items: start; }
.beh-body p { font-size: 1rem; color: rgba(255,255,255,0.68); line-height: 1.9; }
.beh-body p + p { margin-top: 1.1rem; }
.beh-body strong { color: rgba(255,255,255,0.92); }
.beh-body em { font-style: italic; color: rgba(255,255,255,0.55); }
.beh-cards { display: flex; flex-direction: column; gap: 1rem; }
.beh-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9px; padding: 1.4rem 1.6rem;
  background: rgba(255,255,255,0.04);
}
.beh-card-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #6FB4C0; margin-bottom: 0.6rem;
}
.beh-card blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem; font-weight: 400; font-style: italic;
  color: rgba(255,255,255,0.85); line-height: 1.55;
}
.beh-card-attr { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 0.6rem; }
.beh-stat { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2.4rem; font-weight: 600; color: #fff; line-height: 1; margin-bottom: 0.4rem; }
.beh-stat-desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
.beh-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 0.6rem; }
.beh-card-head .beh-card-label { margin-bottom: 0; }
.beh-card-head .beh-stat { margin-bottom: 0; white-space: nowrap; }
.beh-rule {
  margin-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  grid-column: 1 / -1;
}
.beh-rule p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; font-style: italic; font-weight: 400;
  color: rgba(255,255,255,0.75); line-height: 1.5;
  max-width: 820px;
}
.beh-rule strong { color: #fff; font-style: normal; }

/* ── DASHBOARD MOCKUP ── */
#dashboard { background: var(--bg); }
.db-shell {
  margin-top: 2.5rem;
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 20px rgba(27,58,107,0.07);
}
.db-bar {
  background: var(--navy-dk); padding: 0.75rem 1.5rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.db-dot { width: 9px; height: 9px; border-radius: 50%; }
.db-dot-r { background: #FF5F57; }
.db-dot-y { background: #FFBD2E; }
.db-dot-g { background: #28C840; }
.db-bar-title { color: rgba(255,255,255,0.55); font-size: 0.78rem; margin-left: 0.6rem; }
.db-header {
  background: #FAFCFF; padding: 1rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--border);
}
.db-header-title { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.db-header-date { font-size: 0.75rem; color: var(--muted); }
table.signals { width: 100%; border-collapse: collapse; }
table.signals th {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--muted);
  padding: 0.65rem 1.25rem; text-align: left;
  background: #F2F7FC; border-bottom: 1px solid var(--border);
}
table.signals td {
  padding: 0.65rem 1.25rem; font-size: 0.865rem;
  border-bottom: 1px solid #F0F5FB;
  color: var(--body);
}
table.signals tr:last-child td { border-bottom: none; }
table.signals tr:hover td { background: #F8FBFF; }
.pill {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 3px 9px; border-radius: 3px;
  font-size: 0.72rem; font-weight: 600;
}
.pill-invest { background: #DCFCE7; color: #15803D; }
.pill-cash   { background: #FEF2F2; color: #991B1B; }
.pill-watch  { background: #FEF9C3; color: #854D0E; }
.pill-dot { width: 6px; height: 6px; border-radius: 50%; }
.pd-g { background: #22C55E; }
.pd-r { background: #EF4444; }
.pd-y { background: #EAB308; }
td.mono { font-family: 'Courier New', monospace; font-size: 0.8rem; color: var(--navy); }
.chg-new { display: inline-block; font-size: 0.68rem; font-weight: 600; padding: 2px 7px; border-radius: 3px; background: #DCFCE7; color: #15803D; }
.chg-nil { color: var(--muted); font-size: 0.8rem; }
.db-footer {
  background: #FAFCFF; border-top: 1px solid var(--border);
  padding: 0.8rem 1.5rem;
  display: flex; justify-content: space-between;
  font-size: 0.72rem; color: var(--muted);
}

/* ── EVIDENCE ── */
#evidence { background: var(--white); }
.ev-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 2rem; margin-top: 2.5rem; align-items: start; }
.ev-card {
  border: 1px solid var(--border); border-radius: 10px; padding: 2rem 2.25rem;
  position: relative;
}
.ev-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--navy); border-radius: 10px 0 0 10px;
}
.ev-year {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem; font-weight: 600; color: var(--navy); line-height: 1; margin-bottom: 0.3rem;
}
.ev-crisis { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 1.5rem; }
.ev-stat { font-size: 0.875rem; padding: 0.5rem 0; border-top: 1px solid var(--border); display: flex; justify-content: space-between; }
.ev-stat-val { font-weight: 600; color: var(--navy); }
.ev-stat-val.green { color: var(--teal); }
.ev-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.9rem; line-height: 1.7; font-style: italic; }
.ev-context { padding: 1.75rem 2rem; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; }
.ev-context h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.75rem; }
.ev-context p { font-size: 0.875rem; color: var(--muted); line-height: 1.8; }
.ev-context p + p { margin-top: 0.75rem; }
.ev-caveat {
  margin-top: 2rem;
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 1.1rem 1.4rem;
  font-size: 0.82rem; color: var(--muted); line-height: 1.75;
}
.ev-caveat strong { color: var(--body); }

/* ── SECTORS ── */
#sectors { background: var(--bg); }
.sector-wrap { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.5rem; }
.sector-chip {
  background: var(--white); border: 1px solid var(--border); border-radius: 5px;
  padding: 0.55rem 0.9rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem;
}
.ticker-badge {
  font-family: 'Courier New', monospace; font-size: 0.75rem; font-weight: 700;
  color: var(--blue); background: var(--ltblue);
  padding: 1px 6px; border-radius: 3px;
}

/* ── DELIVERABLES ── */
#product { background: var(--white); }
.del-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; }
.del-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem 1.75rem;
  width: calc((100% - 3rem) / 3); flex: 0 0 auto;
}
.del-icon { font-size: 1.15rem; margin-bottom: 1rem; }
.del-card h4 { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.35rem; }
.del-card p { font-size: 0.825rem; color: var(--muted); line-height: 1.7; }
.del-freq {
  display: inline-block; margin-top: 0.75rem;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 3px; background: var(--ltblue); color: var(--blue);
}

/* ── PULL QUOTE ── */
.pull-quote {
  background: var(--navy-dk);
  padding: 3.5rem 2.5rem; text-align: center;
}
.pull-quote blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 400;
  line-height: 1.45; max-width: 760px; margin: 0 auto;
  color: rgba(255,255,255,0.9);
}
.pull-quote cite { display: block; margin-top: 1.75rem; font-style: normal; font-size: 0.8rem; color: rgba(255,255,255,0.38); letter-spacing: 0.06em; text-transform: uppercase; }

/* ── TEAM ── */
#team { background: var(--bg); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 2rem 2.25rem; }
.avatar {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600;
  margin-bottom: 1.25rem;
}
.av-m { background: #EEF2FF; color: #3730A3; }
.av-j { background: var(--ltblue); color: var(--navy); }
.team-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.15rem; }
.team-role { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1rem; }
.team-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.8; }

/* ── DIY ── */
#diy { background: var(--bg); }
.diy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 2.5rem; align-items: start; }
.diy-intro { font-size: 1.05rem; color: var(--muted); line-height: 1.85; }
.diy-intro p + p { margin-top: 1rem; }
.diy-intro strong { color: var(--navy); }
.diy-items { display: flex; flex-direction: column; gap: 1.1rem; }
.diy-item {
  background: var(--white); border: 1px solid var(--border); border-radius: 9px;
  padding: 1.25rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.diy-item-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--ltblue); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.diy-item-text h4 { font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.diy-item-text p { font-size: 0.825rem; color: var(--muted); line-height: 1.7; }
.diy-close {
  margin-top: 2.25rem;
  background: var(--navy-dk); border-radius: 10px;
  padding: 2rem 2.25rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.diy-close-icon { font-size: 2rem; flex-shrink: 0; }
.diy-close p { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.75; }
.diy-close strong { color: #fff; }

/* ── PRICING ── */
#pricing { background: var(--white); }
.pricing-wrap { max-width: 520px; margin: 2.5rem auto 0; }
.pricing-card {
  border: 1.5px solid var(--navy); border-radius: 12px; padding: 2.5rem;
  text-align: center; position: relative;
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; white-space: nowrap;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px;
}
.pricing-name { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; margin-top: 0.6rem; }
.pricing-price-row { display: flex; align-items: baseline; justify-content: center; gap: 16px; margin-bottom: 0.4rem; }
.pricing-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4.5rem; font-weight: 400; color: var(--navy);
  line-height: 1;
}
.pricing-price sup { font-size: 1.5rem; vertical-align: super; font-family: 'Inter', sans-serif; font-weight: 400; }
.pricing-price-old {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4.5rem; font-weight: 400; color: #B7C2D0;
  line-height: 1; text-decoration: line-through;
}
.pricing-price-old sup { font-size: 1.5rem; vertical-align: super; font-family: 'Inter', sans-serif; font-weight: 400; text-decoration: line-through; }
.pricing-period { font-size: 0.875rem; color: var(--muted); margin-bottom: 0.3rem; }
.pricing-annual { font-size: 0.825rem; color: var(--teal); font-weight: 500; margin-bottom: 2rem; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 0 0 2rem; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.65rem; }
.pricing-features li { font-size: 0.9rem; color: var(--body); display: flex; align-items: flex-start; gap: 0.7rem; }
.pricing-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.btn-subscribe {
  display: block; text-align: center; text-decoration: none;
  padding: 1rem; border-radius: 6px;
  background: var(--navy); color: #fff;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em;
  transition: background 0.2s;
  margin-bottom: 1rem;
}
.btn-subscribe:hover { background: var(--blue); }
.pricing-guarantee { font-size: 0.78rem; color: var(--muted); line-height: 1.65; }
.pricing-guarantee span { color: var(--teal); font-weight: 500; }

/* ── CTA BAND (cross-page conversion) ── */
.cta-band {
  background: linear-gradient(165deg, #0a1a38 0%, #162d5a 60%, #1a3968 100%);
  padding: 3.5rem 2.5rem; text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.66); max-width: 540px; margin: 0 auto 2rem; font-size: 1.02rem; line-height: 1.8; }

/* ── DISCLAIMER ── */
#disclaimer { background: var(--bg); padding: 2.5rem 2.5rem; }
.disc-box {
  max-width: 840px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 2rem 2.25rem;
}
.disc-box h4 {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border);
}
.disc-box p { font-size: 0.79rem; color: var(--muted); line-height: 1.85; }
.disc-box p + p { margin-top: 0.75rem; }

/* ── FOOTER ── */
footer {
  background: #07122A; color: rgba(255,255,255,0.4);
  padding: 2.25rem 2.5rem; text-align: center;
}
.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem; font-weight: 600;
  color: rgba(255,255,255,0.75); margin-bottom: 0.9rem;
}
.footer-logo .gold { color: var(--gold); }
.footer-nav {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.footer-nav a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 0.8rem; font-weight: 500;
  transition: color 0.18s;
}
.footer-nav a:hover { color: #fff; }
footer p { font-size: 0.75rem; max-width: 560px; margin: 0 auto; line-height: 1.8; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  section { padding: 2.75rem 1.5rem; }
  .why-grid, .how-grid, .team-grid, .ev-grid, .beh-grid, .diy-grid, .crash-grid { grid-template-columns: 1fr; }
  .why-col-left { padding-right: 0; }
  #hero { padding: 3.5rem 1.5rem 3rem; }
  .trust-item { border-right: none; padding: 0.3rem 1rem; }
  .brand-band { padding: 1.2rem 1.5rem 0.9rem; }
  .logo { font-size: 2.1rem; }
  .nav-inner { padding: 0.5rem 1.2rem 0.65rem; }
  .del-card { width: calc((100% - 1.5rem) / 2); }
  .mon-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .del-card { width: 100%; }
}
