/* ========================================
   FININVERSE — Style
   Navy #0D1B2A + Gold #C9A84C
   ======================================== */

:root {
  --navy: #0D1B2A;
  --navy-light: #1B2838;
  --navy-dark: #091420;
  --gold: #C9A84C;
  --gold-light: #D4B96A;
  --gold-dark: #A88B3D;
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #E0E0E0;
  --gray-300: #BDBDBD;
  --gray-400: #9E9E9E;
  --gray-500: #757575;
  --text-primary: #FFFFFF;
  --text-secondary: #B0BEC5;
  --text-dark: #1A1A2E;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; }

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: background 0.3s;
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.header__logo:hover { color: var(--gold-light); }

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.header__nav a:hover { color: var(--white); }

.header__cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.header__cta:hover {
  background: var(--gold-light);
  color: var(--navy) !important;
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  transition: transform 0.3s, opacity 0.3s;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  position: relative;
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content { position: relative; z-index: 1; }

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero__tagline {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 48px;
  letter-spacing: 0.05em;
}

.hero__stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero__stat { text-align: center; }

.hero__stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero__stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__disclaimer {
  position: absolute;
  bottom: 32px;
  font-size: 0.75rem;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
}

.btn--gold:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn--large {
  padding: 18px 48px;
  font-size: 1.0625rem;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--navy-dark);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  text-align: center;
}

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.subsection-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  margin: 48px 0 12px;
}

.subsection-desc {
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 700px;
}

/* ========================================
   THESIS
   ======================================== */
.thesis__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.thesis__card {
  background: var(--navy-light);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
}

.thesis__icon {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.thesis__card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.thesis__narrative {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.thesis__narrative p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1.0625rem;
  line-height: 1.8;
}

.thesis__narrative strong { color: var(--white); }

.thesis__market h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  text-align: center;
  margin-bottom: 24px;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.market-item {
  text-align: center;
  padding: 24px;
  background: var(--navy-light);
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.market-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.market-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* ========================================
   TABLES
   ======================================== */
.table-wrapper {
  overflow-x: auto;
  margin: 16px 0 24px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.data-table th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 2px solid rgba(201, 168, 76, 0.3);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
}

.data-table tr:hover td {
  background: rgba(201, 168, 76, 0.04);
}

/* ========================================
   SAVINGS TIMELINE
   ======================================== */
.savings-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.savings-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  width: var(--width);
  min-width: 200px;
  padding: 12px 20px;
  border-radius: 4px;
  transition: width 0.8s ease;
}

.savings-year {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.875rem;
}

.savings-pct {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.875rem;
}

/* ========================================
   COMPARISON
   ======================================== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}

.comparison-card {
  padding: 32px;
  border-radius: 8px;
  text-align: center;
}

.comparison-card--without {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-card--with {
  background: rgba(201, 168, 76, 0.08);
  border: 2px solid var(--gold);
}

.comparison-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.comparison-subtitle {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.comparison-metric {
  margin: 16px 0;
}

.comparison-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.comparison-card--with .comparison-value {
  color: var(--gold);
}

.comparison-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ========================================
   PORTFOLIO
   ======================================== */
.portfolio-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.portfolio-stat {
  text-align: center;
  padding: 24px;
  background: var(--navy-light);
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.portfolio-stat__value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.portfolio-stat__label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.sector-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.sector-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.sector-bar {
  height: 8px;
  width: calc(var(--width) * 4);
  max-width: 120px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 4px;
}

.sector-bar--geo {
  background: linear-gradient(90deg, #2E5A88, #4A90D9);
}

.sector-name {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.sector-pct {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

/* Deployment */
.deployment-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.deployment-quarter {
  text-align: center;
  padding: 24px 16px;
  background: var(--navy-light);
  border-radius: 8px;
  border-top: 3px solid var(--gold);
}

.deployment-quarter__header {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.deployment-quarter__detail {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ========================================
   STRUCTURE
   ======================================== */
.structure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.structure-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 8px;
  padding: 28px 24px;
}

.structure-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.structure-list {
  list-style: none;
}

.structure-list li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.structure-list li:last-child { border-bottom: none; }
.structure-list strong { color: var(--white); font-weight: 500; }

/* Ecosystem Narrative */
.ecosystem-narrative {
  max-width: 800px;
  margin: 0 auto 48px;
}

.ecosystem-narrative p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.ecosystem-entity__desc {
  font-size: 0.8125rem !important;
  line-height: 1.7 !important;
  color: var(--text-secondary) !important;
  margin-bottom: 0 !important;
  text-align: left;
}

.ecosystem-punchline {
  max-width: 800px;
  margin: 48px auto 0;
  padding: 28px 32px;
  background: rgba(201, 168, 76, 0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
}

.ecosystem-punchline p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.ecosystem-punchline strong {
  color: var(--gold);
}

/* Ecosystem Diagram */
.ecosystem-diagram {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  margin: 24px 0;
}

.ecosystem-entity {
  flex: 1;
  max-width: 340px;
  padding: 28px 24px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.ecosystem-entity h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.ecosystem-entity p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.ecosystem-entity ul {
  list-style: none;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.ecosystem-entity ul li { padding: 4px 0; }

.ecosystem-entity--foundation {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.ecosystem-entity--foundation h4 { color: var(--gray-200); }

.ecosystem-entity--fininverse {
  background: rgba(201, 168, 76, 0.08);
  border: 2px solid var(--gold);
}
.ecosystem-entity--fininverse h4 { color: var(--gold); }

.ecosystem-entity--forge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ecosystem-entity--forge h4 { color: var(--gray-300); }

.ecosystem-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
}

.arrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  position: relative;
}

.arrow-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--gold);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* ========================================
   SCENARIOS
   ======================================== */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.scenario-card {
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.scenario-card--highlight {
  border: 2px solid var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

.scenario-badge {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.scenario-badge--bear { background: rgba(255, 152, 0, 0.15); color: #FFA726; }
.scenario-badge--base { background: rgba(201, 168, 76, 0.2); color: var(--gold); }
.scenario-badge--bull { background: rgba(76, 175, 80, 0.15); color: #66BB6A; }

.scenario-metric { margin: 16px 0; }

.scenario-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.scenario-card--highlight .scenario-value { color: var(--gold); }

.scenario-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.scenario-desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 16px;
  font-style: italic;
}

.scenarios-context {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-500);
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
}

/* ========================================
   NEXI GRID
   ======================================== */
.nexi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.nexi-card {
  background: var(--navy-light);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 8px;
  padding: 24px;
  position: relative;
  width: 100%;
}

.nexi-card--full {
  grid-column: 2 / 3;
  text-align: center;
  border-color: rgba(201, 168, 76, 0.25);
}

.nexi-number {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 28px;
  text-align: center;
  margin-bottom: 12px;
}

.nexi-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.nexi-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.dividend-narrative {
  max-width: 800px;
  margin: 48px auto 0;
}

.dividend-narrative p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

/* ========================================
   GATED / FOR INVESTORS
   ======================================== */
.gated-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.gated-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
}

.gated-card__icon {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.gated-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.gated-card p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.gated-cta {
  text-align: center;
}

.gated-note {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 12px;
}

/* ========================================
   THE EDGE
   ======================================== */
.edge-narrative {
  max-width: 800px;
  margin: 0 auto 48px;
}

.edge-narrative p,
.thesis__deep p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.thesis__deep {
  max-width: 800px;
  margin: 48px auto 0;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding-top: 32px;
}

.edge-points {
  max-width: 800px;
  margin: 0 auto 48px;
}

.edge-point {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.edge-point:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.edge-point__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--gold);
  margin-top: 4px;
}

.edge-point__content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.edge-point__content p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.edge-summary {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
}

.edge-summary p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
  max-width: 500px;
  margin: 0 auto;
}

.contact-grid--centered {
  text-align: center;
}

.contact-value--large {
  font-size: 1.5rem;
  font-weight: 500;
}

.contact-value--location {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.contact-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1.0625rem;
  color: var(--white);
}

a.contact-value:hover { color: var(--gold); }

.contact-cta { text-align: center; }

.contact-note {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 12px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.footer__copy {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.footer__legal {
  max-width: 700px;
}

.footer__legal p {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.footer__links a {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* ========================================
   AUTH OVERLAY
   ======================================== */
.auth-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--navy-dark);
  align-items: center;
  justify-content: center;
}

.auth-overlay.is-active {
  display: flex;
}

.auth-card {
  max-width: 420px;
  width: 100%;
  padding: 48px 40px;
  text-align: center;
}

.auth-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 32px;
}

.auth-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.auth-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-input {
  width: 100%;
  padding: 14px 20px;
  background: var(--navy-light);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.1em;
  outline: none;
  transition: border-color 0.2s;
}

.auth-input:focus {
  border-color: var(--gold);
}

.auth-input::placeholder {
  color: var(--gray-500);
  letter-spacing: 0.02em;
}

.auth-btn {
  width: 100%;
}

.auth-error {
  color: #FFA726;
  font-size: 0.875rem;
  margin-top: 12px;
  opacity: 0;
  transition: opacity 0.2s;
}

.auth-error.is-visible {
  opacity: 1;
}

.auth-request {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 24px;
}

.investor-content.is-locked {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

/* ========================================
   INVESTOR PORTAL — COMPACT HERO
   ======================================== */
.hero--compact {
  min-height: 40vh;
  padding: 120px 24px 48px;
}

.hero__title--small {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

/* ========================================
   WATERFALL STEPS
   ======================================== */
.waterfall-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 16px;
  max-width: 700px;
}

.waterfall-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--navy-light);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
}

.waterfall-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 32px;
  text-align: center;
}

.waterfall-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.table-note {
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-style: italic;
  margin-top: 12px;
}

.table-total td {
  border-top: 2px solid rgba(201, 168, 76, 0.3);
  border-bottom: none;
}

/* ========================================
   LP TIERS
   ======================================== */
.lp-tier {
  text-align: center;
  padding-top: 40px;
  position: relative;
}

.lp-tier__badge {
  display: inline-block;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.lp-tier--anchor .lp-tier__badge {
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold);
}

.lp-tier--lead .lp-tier__badge {
  background: rgba(74, 144, 217, 0.15);
  color: #4A90D9;
}

.lp-tier--standard .lp-tier__badge {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gray-300);
}

.lp-tier__min {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.lp-tier .structure-list {
  text-align: left;
}

.lp-tier--anchor {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.04);
}

/* ========================================
   DECK DOWNLOADS
   ======================================== */
.deck-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.deck-single {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.deck-card--featured {
  max-width: 400px;
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.04);
}

.deck-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
}

.deck-card__icon {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.deck-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.deck-card p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.btn--deck {
  padding: 10px 24px;
  font-size: 0.8125rem;
}

.deck-contact {
  text-align: center;
}

.deck-contact p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

/* ========================================
   REVEAL ANIMATION
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
  .thesis__grid,
  .market-grid,
  .nexi-grid,
  .gated-grid,
  .deck-grid {
    grid-template-columns: 1fr;
  }

  .nexi-card--full {
    max-width: 100%;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-overview {
    grid-template-columns: repeat(2, 1fr);
  }

  .deployment-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ecosystem-diagram {
    flex-direction: column;
    align-items: center;
  }

  .ecosystem-entity {
    max-width: 100%;
    width: 100%;
  }

  .ecosystem-connector {
    transform: rotate(90deg);
    min-width: auto;
    margin: 4px 0;
  }

  .nexi-card--full {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(13, 27, 42, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  }

  .header__nav.is-open { display: flex; }

  .header__toggle { display: flex; }

  .hero__stats {
    gap: 24px;
  }

  .hero__stat-value {
    font-size: 2rem;
  }

  .portfolio-overview {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .portfolio-overview {
    grid-template-columns: 1fr;
  }

  .deployment-timeline {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    flex-direction: column;
    gap: 16px;
  }
}
