/* ============================================
   Aurora Investor Website — Shared Styles
   Colors: navy #162232, gold #f0d899
   ============================================ */

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Georgia, 'Times New Roman', serif;
  background: #0d1520;
  color: #f0d899;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: #f0d899; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---- Typography ---- */
.section-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(240,216,153,0.4);
  margin-bottom: 16px;
}
h2 {
  font-size: 42px;
  font-weight: 300;
  color: #f0d899;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.body-text {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(240,216,153,0.65);
  max-width: 640px;
}

/* ---- Pulsing Urgency Dot ---- */
.urgency-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: #f0d899;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

/* ---- Navigation (inner pages only) ---- */
.nav {
  position: sticky;
  top: 0; z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  background: rgba(22,34,50,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(240,216,153,0.08);
}
.nav-logo {
  font-size: 16px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #f0d899;
}
.nav-logo img {
  height: 32px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: rgba(240,216,153,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #f0d899;
}
.nav-cta {
  padding: 7px 20px;
  border: 1px solid rgba(240,216,153,0.3);
  border-radius: 2px;
  color: #f0d899 !important;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover {
  background: #f0d899;
  color: #162232 !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #f0d899;
  margin: 5px 0;
  transition: all 0.3s;
}

/* ---- Sticky Bottom CTA Bar ---- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(22,34,50,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(240,216,153,0.1);
  padding: 14px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sticky-cta .left {
  font-size: 12px;
  color: rgba(240,216,153,0.5);
  letter-spacing: 2px;
}
.sticky-cta-btn {
  display: inline-block;
  padding: 10px 32px;
  background: #f0d899;
  color: #162232;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s;
}
.sticky-cta-btn:hover {
  background: #e8cc7a;
  color: #162232;
}

/* ---- Footer ---- */
.footer {
  padding: 48px 60px;
  text-align: center;
  border-top: 1px solid rgba(240,216,153,0.08);
  /* offset for sticky CTA bar */
  padding-bottom: 100px;
}
.footer div {
  font-size: 11px;
  color: rgba(240,216,153,0.25);
  letter-spacing: 2px;
}
.footer a { color: rgba(240,216,153,0.25); }
.footer a:hover { color: #f0d899; }

/* ---- Landing Page ---- */
.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.landing-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.landing-video-bg iframe,
.landing-video-bg lite-youtube {
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100vh;
  min-width: 177.78vh; /* 16:9 */
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.landing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,21,32,0.7);
  z-index: 1;
}
.landing-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 32px;
}
.landing-logo {
  width: 560px; height: 560px;
  margin: 0 auto 16px;
}
.landing-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.landing h1 {
  font-size: 64px;
  font-weight: 300;
  letter-spacing: 12px;
  text-transform: uppercase;
  color: #f0d899;
  margin-bottom: 8px;
}
.landing .tagline {
  font-size: 15px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(240,216,153,0.45);
  margin-bottom: 48px;
}
.landing .hook {
  font-size: 24px;
  font-style: italic;
  color: rgba(240,216,153,0.85);
  line-height: 1.6;
  margin-bottom: 56px;
}
.urgency-line {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(240,216,153,0.5);
  margin-bottom: 24px;
}
.big-cta {
  display: inline-block;
  padding: 22px 64px;
  background: #f0d899;
  color: #162232;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 4px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s;
}
.big-cta:hover {
  background: #e8cc7a;
  color: #162232;
}
.cta-sub {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(240,216,153,0.35);
  letter-spacing: 1px;
}

/* ---- Vision Page ---- */
.vision-hero {
  padding: 120px 60px 80px;
  text-align: center;
  background: linear-gradient(180deg, #162232, #0d1520);
}
.vision-hero .body-text {
  margin: 0 auto;
  text-align: center;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}
.pillar {
  text-align: center;
  padding: 64px 40px;
  border-right: 1px solid rgba(240,216,153,0.06);
}
.pillar:last-child { border-right: none; }
.pillar-line {
  width: 32px; height: 1px;
  background: rgba(240,216,153,0.25);
  margin: 0 auto 16px;
}
.pillar h3 {
  font-size: 18px;
  color: #f0d899;
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-weight: 400;
  text-transform: uppercase;
}
.pillar p {
  font-size: 15px;
  color: rgba(240,216,153,0.55);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.image-grid img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* ---- Investment Page ---- */
.invest-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px;
  /* offset for sticky CTA */
  padding-bottom: 140px;
}
.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.highlight-card {
  background: rgba(240,216,153,0.04);
  border: 1px solid rgba(240,216,153,0.1);
  padding: 40px 28px;
  border-radius: 4px;
  text-align: center;
}
.highlight-card .number {
  font-size: 42px;
  color: #f0d899;
  font-weight: 300;
  margin-bottom: 8px;
}
.highlight-card .label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(240,216,153,0.45);
  margin-bottom: 14px;
}
.highlight-card p {
  font-size: 13px;
  color: rgba(240,216,153,0.5);
  line-height: 1.6;
}
.deck-box {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: rgba(240,216,153,0.04);
  border: 1px solid rgba(240,216,153,0.1);
  border-radius: 4px;
}
.deck-box p {
  color: rgba(240,216,153,0.55);
  font-size: 14px;
  letter-spacing: 1px;
}
.deck-box a {
  color: #f0d899;
  text-decoration: underline;
  font-size: 13px;
}

/* ---- Partners Page ---- */
.partners-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px;
  padding-bottom: 140px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.partners-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}
.partner-card {
  background: rgba(240,216,153,0.04);
  border: 1px solid rgba(240,216,153,0.08);
  padding: 28px 20px;
  border-radius: 4px;
  text-align: center;
}
.partner-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.partner-logo img {
  max-height: 50px;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(0.85) sepia(0.3) hue-rotate(10deg) saturate(0.5);
}
.partner-card .icon {
  font-size: 24px;
  margin-bottom: 10px;
  opacity: 0.4;
}
.partner-card h4 {
  font-size: 13px;
  color: #f0d899;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.partner-card p {
  font-size: 11px;
  color: rgba(240,216,153,0.45);
  line-height: 1.5;
}
.mba-badge {
  text-align: center;
  margin-top: 48px;
  font-size: 12px;
  color: rgba(240,216,153,0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ---- Team Page ---- */
.team-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 60px;
  text-align: center;
  padding-bottom: 140px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.team-member { text-align: center; }
.team-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(240,216,153,0.08);
  border: 1px solid rgba(240,216,153,0.12);
  margin: 0 auto 16px;
  overflow: hidden;
}
.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-member h4 {
  font-size: 15px;
  color: #f0d899;
  margin-bottom: 4px;
  font-weight: 400;
}
.team-member .role {
  font-size: 11px;
  color: rgba(240,216,153,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.expert-card {
  margin-top: 24px;
  padding: 40px;
  background: rgba(240,216,153,0.06);
  border: 1px solid rgba(240,216,153,0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 32px;
  text-align: left;
}
.expert-card .team-avatar { margin: 0; flex-shrink: 0; }
.expert-card h4 { font-size: 16px; color: #f0d899; margin-bottom: 4px; }
.expert-card .role {
  font-size: 11px;
  color: rgba(240,216,153,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.expert-card p {
  font-size: 13px;
  color: rgba(240,216,153,0.5);
  line-height: 1.6;
  margin-top: 8px;
}

/* ---- Thank You Page ---- */
.thankyou-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 32px;
  background: linear-gradient(180deg, #162232, #0d1520);
}
.thankyou-section .check {
  width: 80px; height: 80px;
  border: 2px solid rgba(240,216,153,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #f0d899;
  margin-bottom: 32px;
}
.thankyou-section h1 {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 4px;
  color: #f0d899;
  margin-bottom: 16px;
}
.thankyou-section .sub {
  font-size: 18px;
  color: rgba(240,216,153,0.6);
  font-style: italic;
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 48px;
}
.thankyou-section .next-steps {
  padding: 32px 48px;
  background: rgba(240,216,153,0.06);
  border: 1px solid rgba(240,216,153,0.12);
  border-radius: 4px;
  max-width: 500px;
}
.thankyou-section .next-steps h3 {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(240,216,153,0.5);
  margin-bottom: 16px;
}
.thankyou-section .next-steps p {
  font-size: 15px;
  color: rgba(240,216,153,0.65);
  line-height: 1.7;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .nav { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(22,34,50,0.98);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(240,216,153,0.08);
  }
  .nav-toggle { display: block; }

  /* Landing page mobile */
  .landing {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: clip;
    padding: 40px 0;
  }
  .landing-logo { width: 55vw; height: 55vw; margin-bottom: 0; }
  .landing .tagline { font-size: 10px; letter-spacing: 2px; margin-bottom: 16px; white-space: nowrap; }
  .landing .hook { font-size: 16px; margin-bottom: 20px; line-height: 1.5; }
  .landing .hook br { display: none; }
  .big-cta { padding: 16px 36px; font-size: 12px; letter-spacing: 3px; }
  .urgency-line { font-size: 10px; letter-spacing: 2px; margin-bottom: 14px; }

  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(240,216,153,0.06); padding: 40px 24px; }
  .pillar:last-child { border-bottom: none; }
  .image-grid { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: 1fr; }
  .partners-grid, .partners-grid-3 { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .expert-card { flex-direction: column; text-align: center; }
  .expert-card .team-avatar { margin: 0 auto; }
  .sticky-cta { padding: 12px 24px; }
  .sticky-cta .left { display: none; }
  h2 { font-size: 32px; }
  .vision-hero { padding: 80px 24px 60px; }
  .invest-section, .partners-section, .team-section { padding: 60px 24px 140px; }
  .footer { padding: 32px 24px 100px; }
}
@media (max-width: 480px) {
  /* Landing page small mobile */
  .landing { padding: 20px 0; }
  .landing-logo { width: 50vw; height: 50vw; }
  .landing-content { padding: 0 16px; }
  .landing .tagline { font-size: 9px; letter-spacing: 1.5px; margin-bottom: 12px; }
  .landing .hook { font-size: 14px; margin-bottom: 16px; }
  .big-cta { padding: 14px 28px; font-size: 11px; }
  .urgency-line { font-size: 9px; letter-spacing: 1.5px; margin-bottom: 10px; }
  .cta-sub { font-size: 10px; margin-top: 10px; }
  .partners-grid, .partners-grid-3 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
