/* ============================================
   PRACTICAL INCOME INVESTING — Brand-Accurate Styles
   Dark Charcoal · Bright Green · Gold Shield
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;500;600;700;800;900&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  /* Brand Colors — pulled directly from PII logo */
  --dark:        #0E0E18;        /* near-black site background */
  --dark-card:   #16161F;        /* card / section bg */
  --dark-border: #252535;        /* subtle borders */
  --charcoal:    #1E1E2E;        /* shield bg color */
  --green:       #6DC040;        /* THE brand green — "INCOME" color */
  --green-bright:#82D455;        /* hover / lighter green */
  --green-dark:  #4A9A28;        /* darker green for depth */
  --gold:        #D4AF37;        /* shield border / accents */
  --gold-light:  #F0CC55;        /* gold hover */
  --white:       #FFFFFF;
  --off-white:   #F0F0F0;
  --gray:        #8A8AA0;
  --gray-light:  #1C1C2C;        /* light section = still dark on dark site */
  --red:         #E05252;
  --shadow:      0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.5);
  --glow-green:  0 0 24px rgba(109,192,64,0.25);
  --glow-gold:   0 0 24px rgba(212,175,55,0.2);
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 700; line-height: 1.3; }
p  { color: rgba(255,255,255,0.65); font-size: 1rem; }

.green  { color: var(--green); }
.gold   { color: var(--gold); }
.white  { color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--green);
  border: 1px solid rgba(109,192,64,0.35);
  background: rgba(109,192,64,0.08);
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 16px;
}

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; text-decoration: none;
  border-radius: 4px; border: 2px solid transparent;
  cursor: pointer; transition: all 0.22s ease;
}
.btn-green {
  background: var(--green); color: #0A1200; border-color: var(--green);
}
.btn-green:hover { background: var(--green-bright); border-color: var(--green-bright); transform: translateY(-2px); box-shadow: var(--glow-green); }
.btn-outline-green {
  background: transparent; color: var(--green); border-color: rgba(109,192,64,0.5);
}
.btn-outline-green:hover { border-color: var(--green); background: rgba(109,192,64,0.08); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold); color: #1A0800; border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--glow-gold); }
.btn-outline-white {
  background: transparent; color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3);
}
.btn-outline-white:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,20,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(109,192,64,0.15);
  padding: 0 28px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-emblem { height: 42px; width: 42px; object-fit: contain; border-radius: 4px; }
.nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white); line-height: 1.3;
}
.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--green); }
.nav-cta { margin-left: 12px; white-space: nowrap; }

/* ── HERO LOGO BANNER ── */
.hero-logo-banner {
  position: relative;
  width: 100%;
  margin-top: 74px; /* nav height */
  overflow: hidden;
  background: #050510;
  line-height: 0;
}
.hero-banner-img {
  width: 100%;
  display: block;
  max-height: 80vh;
  object-fit: cover;
  object-position: center center;
}
.hero-banner-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(5,5,16,0.95) 0%, rgba(5,5,16,0.5) 50%, transparent 100%);
  padding: 48px 40px 40px;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-banner-cta { text-align: center; }
.hero-banner-cta p {
  font-size: 1.05rem; color: rgba(255,255,255,0.75);
  margin-bottom: 20px; letter-spacing: 0.03em;
}
.hero-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── HERO STATS STRIP ── */
.hero-stats-strip {
  background: var(--dark-card);
  border-top: 1px solid rgba(109,192,64,0.2);
  border-bottom: 1px solid rgba(109,192,64,0.1);
  padding: 0;
}
.hero-stats-strip .hero-stats {
  display: flex; border: none; border-radius: 0;
}
.hero-stats-strip .hero-stat {
  flex: 1; padding: 28px 24px; text-align: center;
  border-right: 1px solid var(--dark-border);
  border-radius: 0; background: transparent;
}
.hero-stats-strip .hero-stat:last-child { border-right: none; }

/* ── OLD HERO (keep for structure refs but hidden) ── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 74px;
}
/* Subtle green radial glow top-right, gold bottom-left */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 85% 20%, rgba(109,192,64,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(212,175,55,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
  padding: 48px 0;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green); margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--green); border-radius: 2px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--green); }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.6);
  margin-bottom: 36px; max-width: 500px; line-height: 1.75;
}
.hero-tagline {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px; font-weight: 600;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 0; 
  border: 1px solid var(--dark-border); border-radius: 10px; overflow: hidden;
}
.hero-stat {
  padding: 18px 24px; text-align: center; flex: 1;
  border-right: 1px solid var(--dark-border);
  background: var(--dark-card);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-size: 1.6rem; font-weight: 900; color: var(--green); display: block; }
.hero-stat-label { font-size: 0.65rem; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

/* Hero right panel — strategy list */
.hero-panel {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px; overflow: hidden;
}
.hero-panel-header {
  background: var(--charcoal);
  padding: 16px 24px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(109,192,64,0.2);
}
.hero-panel-header img { height: 32px; }
.hero-panel-title {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green);
}
.hero-panel-sub { font-size: 0.65rem; color: var(--gray); margin-top: 1px; }
.strategy-list { list-style: none; padding: 8px 0; }
.strategy-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.strategy-list li:last-child { border-bottom: none; }
.strategy-list li:hover { background: rgba(109,192,64,0.05); }
.s-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(109,192,64,0.1); border: 1px solid rgba(109,192,64,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.s-name { font-size: 0.88rem; font-weight: 600; color: var(--white); }
.s-desc { font-size: 0.72rem; color: var(--gray); margin-top: 1px; }

/* ── DIVIDER BAND ── */
.brand-band {
  background: linear-gradient(90deg, #0A0A14 0%, #14241A 50%, #0A0A14 100%);
  border-top: 1px solid rgba(109,192,64,0.15);
  border-bottom: 1px solid rgba(109,192,64,0.15);
  padding: 20px 0;
}
.brand-band-inner {
  display: flex; align-items: center; gap: 40px;
  justify-content: center; flex-wrap: wrap;
}
.brand-band p {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.brand-band .dot { color: var(--green); font-size: 0.5rem; }

/* ── WHAT IS INCOME INVESTING ── */
.what-section { background: var(--dark-card); }
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.what-content h2 { margin-bottom: 20px; }
.what-content p { margin-bottom: 16px; line-height: 1.8; font-size: 1.02rem; }
.pillars { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.pillar {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px; border-radius: 10px;
  background: var(--dark);
  border-left: 3px solid var(--green);
  transition: border-color 0.2s;
}
.pillar:hover { border-color: var(--gold); }
.p-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 1px; }
.p-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 3px; color: var(--white); }
.p-desc  { font-size: 0.82rem; color: var(--gray); }

/* Visual panel — income chart mockup */
.what-visual {
  background: var(--charcoal);
  border: 1px solid var(--dark-border);
  border-radius: 16px; padding: 36px;
}
.chart-title {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green); margin-bottom: 28px;
}
.bar-row { margin-bottom: 18px; }
.bar-label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-bottom: 7px; font-weight: 500;
}
.bar-amount { color: var(--green); font-weight: 700; }
.bar-track { height: 7px; background: rgba(255,255,255,0.07); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--green-dark), var(--green)); }
.chart-note { font-size: 0.7rem; color: rgba(255,255,255,0.25); margin-top: 20px; line-height: 1.6; text-align: center; }

/* ── STRATEGIES ── */
.strategies-section { background: var(--dark); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 540px; margin: 0 auto; font-size: 1.02rem; }
.strategies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.s-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: 14px; padding: 28px; position: relative; overflow: hidden;
  transition: all 0.25s ease; cursor: default;
}
.s-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.25s;
}
.s-card:hover { border-color: rgba(109,192,64,0.3); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.s-card:hover::after { transform: scaleX(1); }
.s-card-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(109,192,64,0.1); border: 1px solid rgba(109,192,64,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.s-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.s-card p { font-size: 0.85rem; line-height: 1.72; }
.s-tag {
  display: inline-block; margin-top: 14px;
  padding: 3px 10px; border-radius: 100px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.tag-income { background: rgba(109,192,64,0.12); color: var(--green); border: 1px solid rgba(109,192,64,0.25); }
.tag-growth { background: rgba(212,175,55,0.12); color: var(--gold); border: 1px solid rgba(212,175,55,0.25); }
.s-card-featured {
  background: linear-gradient(135deg, #0D1F0D 0%, #14281A 100%);
  border-color: rgba(109,192,64,0.4);
}

/* ── JOURNAL CTA ── */
.journal-section { background: var(--dark-card); }
.journal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.journal-content h2 { margin-bottom: 16px; }
.journal-content p { margin-bottom: 14px; line-height: 1.8; }
.journal-features { list-style: none; margin: 24px 0 32px; }
.journal-features li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,0.8); font-size: 0.88rem;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.journal-features li:last-child { border-bottom: none; }
.check { color: var(--green); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }

/* Spreadsheet mockup */
.mockup {
  background: #0A1A0A; border: 1px solid rgba(109,192,64,0.25);
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.mockup-bar {
  background: #151F15; padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(109,192,64,0.15);
}
.m-dot { width: 9px; height: 9px; border-radius: 50%; }
.m-tabs { display: flex; gap: 6px; margin-left: 12px; }
.m-tab {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 3px 3px 0 0; background: var(--dark-card);
  color: var(--gray);
}
.m-tab.active { background: var(--green); color: #0A1200; }
.mockup-table { padding: 20px; }
.m-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 8px; margin-bottom: 6px;
}
.m-cell {
  background: rgba(255,255,255,0.04); border-radius: 4px;
  padding: 7px 10px; font-size: 0.62rem; color: rgba(255,255,255,0.5);
  font-family: 'Montserrat', monospace;
}
.m-cell.hdr { background: rgba(109,192,64,0.12); color: var(--green); font-weight: 700; letter-spacing: 0.06em; }
.m-cell.pos { color: #6DC040; font-weight: 700; }
.m-cell.neg { color: #E05252; font-weight: 700; }
.m-cell.total { background: rgba(212,175,55,0.1); color: var(--gold); font-weight: 700; }
.mockup-summary {
  display: flex; justify-content: space-between;
  padding: 14px 20px; background: rgba(109,192,64,0.08);
  border-top: 1px solid rgba(109,192,64,0.15);
}
.m-sum-label { font-size: 0.65rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }
.m-sum-val   { font-size: 1rem; font-weight: 800; color: var(--green); margin-top: 2px; }

/* ── ABOUT ── */
.about-section { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; }
.about-img {
  background: var(--charcoal); border-radius: 16px;
  border: 1px solid var(--dark-border);
  aspect-ratio: 3/4; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px; overflow: hidden;
}
.about-img-icon { font-size: 5rem; opacity: 0.25; }
.about-img-logo { padding: 0 24px; }
.about-img-logo img { width: 100%; opacity: 0.7; }
.about-content h2 { margin-bottom: 18px; }
.about-content p { margin-bottom: 14px; line-height: 1.82; }
.creds {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 28px;
}
.cred {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: 10px; padding: 16px; text-align: center;
}
.cred-num { font-size: 1.5rem; font-weight: 900; color: var(--green); }
.cred-label { font-size: 0.65rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 3px; }

/* ── NEWSLETTER ── */
.newsletter-section {
  background: linear-gradient(135deg, #0A1A0A 0%, #0E1E14 100%);
  border-top: 1px solid rgba(109,192,64,0.15);
  border-bottom: 1px solid rgba(109,192,64,0.15);
  padding: 80px 0; text-align: center;
}
.newsletter-section h2 { margin-bottom: 12px; }
.newsletter-section > .container > p { margin-bottom: 32px; font-size: 1.02rem; }
.newsletter-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 13px 18px; border-radius: 4px;
  border: 1px solid rgba(109,192,64,0.3);
  background: rgba(255,255,255,0.05); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-size: 0.88rem; outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--green); }
.nl-note { font-size: 0.72rem; color: rgba(255,255,255,0.25); margin-top: 14px; }

/* ── MARKET COMPASS SECTION ── */
.compass-section { background: var(--dark-card); }
.compass-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.compass-header p { font-size: 1.05rem; margin-top: 14px; }
.compass-grid {
  display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start;
}
.compass-features { display: flex; flex-direction: column; gap: 28px; }
.compass-feat { display: flex; gap: 18px; align-items: flex-start; }
.compass-feat-icon {
  font-size: 1.6rem; width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(109,192,64,0.1); border: 1px solid rgba(109,192,64,0.2);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.compass-feat-title { font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.compass-feat-desc  { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* CTA Card — centered column */
.compass-cta-card {
  background: linear-gradient(160deg, #0A1A08 0%, #121E10 100%);
  border: 1px solid rgba(109,192,64,0.3);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: var(--glow-green), var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;   /* ← CENTER everything */
  text-align: center;
  gap: 0;
}

/* Logo lockup inside card */
.compass-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
}
.compass-logo-icon {
  font-size: 3.2rem;
  line-height: 1;
}
.compass-logo-text {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1;
}
.compass-logo-by {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compass-cta-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 22px;
}

.compass-badge-row {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 28px;
}
.compass-badge {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
}
.badge-free { background: rgba(109,192,64,0.15); color: var(--green); border: 1px solid rgba(109,192,64,0.3); }
.badge-pro  { background: rgba(212,175,55,0.12); color: var(--gold);  border: 1px solid rgba(212,175,55,0.3); }

.compass-launch-btn {
  width: 100%; font-size: 1rem; padding: 15px 28px; text-align: center;
  border-radius: 10px; margin-bottom: 12px;
}
.compass-disclaimer {
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
  margin: 0;
}
.compass-gate-label {
  font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.75);
  margin-bottom: 10px; letter-spacing: 0.02em;
}
.compass-gate-form {
  display: flex; gap: 8px; width: 100%; margin-bottom: 12px;
}
.compass-gate-form input[type="email"] {
  flex: 1; padding: 11px 14px; border-radius: 8px;
  border: 1px solid rgba(109,192,64,0.4);
  background: rgba(255,255,255,0.07); color: #fff;
  font-size: 0.85rem; font-family: 'Montserrat', sans-serif; outline: none;
}
.compass-gate-form input[type="email"]::placeholder { color: rgba(255,255,255,0.35); }
.compass-gate-form input[type="email"]:focus { border-color: var(--green); }
.compass-gate-form .btn { white-space: nowrap; padding: 11px 18px; font-size: 0.78rem; border-radius: 8px; }
.compass-skip {
  color: rgba(255,255,255,0.3); text-decoration: underline; font-size: 0.72rem;
  transition: color 0.2s;
}
.compass-skip:hover { color: var(--green); }

/* ── FOOTER ── */
footer {
  background: #050510; padding: 48px 0 32px;
  border-top: 1px solid var(--dark-border);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-emblem { width: 32px; opacity: 0.7; }
.footer-brand { font-weight: 800; font-size: 0.85rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.5); }
.footer-brand span { color: var(--green); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.2); text-align: center; margin-top: 28px; }
.footer-disc { font-size: 0.68rem; color: rgba(255,255,255,0.15); text-align: center; margin-top: 8px; max-width: 680px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .compass-grid { grid-template-columns: 1fr; }
  .compass-cta-card { max-width: 480px; margin: 0 auto; }
  .journal-grid, .about-grid, .what-grid { grid-template-columns: 1fr; }
  .strategies-grid { grid-template-columns: 1fr 1fr; }
  .creds { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .strategies-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .nav-links, .nav-cta { display: none; }
}

/* ── MARKET COMPASS SECTION ── */
.compass-section { background: var(--dark-card); }
.compass-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.compass-header p { font-size: 1.05rem; margin-top: 14px; }
.compass-grid {
  display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start;
}
.compass-features { display: flex; flex-direction: column; gap: 28px; }
.compass-feat { display: flex; gap: 18px; align-items: flex-start; }
.compass-feat-icon {
  font-size: 1.6rem; width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(109,192,64,0.1); border: 1px solid rgba(109,192,64,0.2);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.compass-feat-title { font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.compass-feat-desc  { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* CTA Card — centered column */
.compass-cta-card {
  background: linear-gradient(160deg, #0A1A08 0%, #121E10 100%);
  border: 1px solid rgba(109,192,64,0.3);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 0 24px rgba(109,192,64,0.25), 0 12px 48px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.compass-logo-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 22px;
}
.compass-logo-icon { font-size: 3.2rem; line-height: 1; }
.compass-logo-text {
  font-size: 1.7rem; font-weight: 900; letter-spacing: -0.01em;
  color: var(--white); line-height: 1;
}
.compass-logo-by {
  font-size: 0.75rem; color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.compass-cta-desc {
  font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 22px;
}
.compass-badge-row {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px;
}
.compass-badge {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
}
.badge-free { background: rgba(109,192,64,0.15); color: var(--green); border: 1px solid rgba(109,192,64,0.3); }
.badge-pro  { background: rgba(212,175,55,0.12); color: var(--gold);  border: 1px solid rgba(212,175,55,0.3); }
.compass-launch-btn {
  width: 100%; font-size: 1rem; padding: 15px 28px; text-align: center;
  border-radius: 10px; margin-bottom: 12px;
}
.compass-disclaimer { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin: 0; }

/* ── FOOTER ── */
footer {
  background: #050510; padding: 48px 0 32px;
  border-top: 1px solid var(--dark-border);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-emblem { width: 32px; opacity: 0.7; }
.footer-brand { font-weight: 800; font-size: 0.85rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.5); }
.footer-brand span { color: var(--green); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.2); text-align: center; margin-top: 28px; }
.footer-disc { font-size: 0.68rem; color: rgba(255,255,255,0.15); text-align: center; margin-top: 8px; max-width: 680px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .compass-grid { grid-template-columns: 1fr; }
  .compass-cta-card { max-width: 480px; margin: 0 auto; }
  .journal-grid, .about-grid, .what-grid { grid-template-columns: 1fr; }
  .strategies-grid { grid-template-columns: 1fr 1fr; }
  .creds { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .strategies-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .nav-links, .nav-cta { display: none; }
}
