:root {
  --bg-light: #f6f4fb;
  --bg-dark: #0f1024;

  --card-light: #ffffff;
  --card-dark: #1b1d3a;

  --text-light: #1e1e2f;
  --text-dark: #eaeaf5;

  --accent: #ffb703;
  --gradient: linear-gradient(135deg, #5b2b82, #1e3c72);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: var(--bg-light);
  color: var(--text-light);
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}

body.dark {
  background: var(--bg-dark);
  color: var(--text-dark);
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: inherit;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.nav-content {
  max-width: 1400px;          /* was 1100px */
  margin: auto;
  padding: 0.75rem 1.25rem;  /* slightly more breathing room */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}


.logo-img {
  height: 56px;       /* was probably ~36–40px */
  width: auto;
  transition: transform 0.3s ease;
  margin-left: -0.5rem; 
}

@media (max-width: 768px) {
  .logo-img {
    height: 46px;
  }
}


#menu-toggle,
#mode-toggle {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: inherit;
}

@media (max-width: 900px) {
  #menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    right: -100%;
    flex-direction: column;
    background: var(--card-light);
    width: 220px;
    height: calc(100vh - 64px);
    padding: 1.5rem;
    transition: right 0.3s ease;
  }

  body.dark .nav-links {
    background: var(--card-dark);
  }

  .nav-links.active {
    right: 0;
  }
}



body.dark {
  background-color: #0b1533;
  color: #ffffff;
}

body.dark .navbar,
body.dark .deck-section,
body.dark footer {
  background-color: transparent;
}

body.dark .journey-shell {
  background: linear-gradient(180deg, #14061f, #050a1a);
}


/* HERO */
.hero-deck {
  background: var(--gradient);
  color: #fff;
  text-align: center;
  padding: 6rem 1rem;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero-content p {
  max-width: 720px;
  margin: auto;
}

.hero-cta {
  margin-top: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  background: var(--accent);
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin: 0.25rem;
}

.cta-secondary {
  color: #fff;
  text-decoration: underline;
  margin-left: 1rem;
}

.hero-footnote {
  display: block;
  margin-top: 2rem;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* SECTIONS */
.deck-section {
  max-width: 1100px;
  margin: auto;
  padding: 4rem 1rem;
}

.alt-bg {
  background: rgba(0,0,0,0.04);
}

.section-subtitle {
  text-align: center;
  opacity: 0.8;
}

.triple-grid,
.value-grid,
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.deck-card,
.value-box {
  background: var(--card-light);
  padding: 2rem;
  border-radius: 12px;
}

body.dark .deck-card,
body.dark .value-box {
  background: var(--card-dark);
}

/* JOURNEY */
.journey-road {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  gap: 1rem;
}

.road-step {
  width: 120px;
  height: 120px;
  background: var(--card-light);
  border-radius: 50%;
  text-align: center;
  padding-top: 2.5rem;
  font-weight: bold;
}

body.dark .road-step {
  background: var(--card-dark);
}

.journey-stepper {
  margin-top: 2rem;
}

.journey-stepper .step {
  background: var(--card-light);
  padding: 1rem;
  border-left: 4px solid var(--accent);
  margin-bottom: 1rem;
}

body.dark .journey-stepper .step {
  background: var(--card-dark);
}

.desktop-only { display: flex; }
.mobile-only { display: none; }

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
}

/* LOGIN */
.login-section {
  max-width: 480px;
}

.login-section form input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

/* FOUNDERS */
.founder-card {
  background: var(--card-light);
  padding: 2.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

body.dark .founder-card {
  background: var(--card-dark);
}

.center {
  text-align: center;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 1.5rem;
  opacity: 0.8;
}

/* FOUNDERS – HOMEPAGE PREVIEW */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.founder-preview-card {
  background: var(--card-light);
  padding: 2rem;
  border-radius: 14px;
  text-align: center;
}

body.dark .founder-preview-card {
  background: var(--card-dark);
}

.founder-photo {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-title {
  font-size: 0.9rem;
  opacity: 0.8;
}

.founder-blurb {
  font-size: 0.95rem;
  margin: 1rem 0;
}

.founder-link {
  font-weight: bold;
  text-decoration: none;
}

/* FOUNDERS – FULL PAGE */
.founders-page-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

.founder-full-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  background: var(--card-light);
  padding: 2.5rem;
  border-radius: 16px;
}

body.dark .founder-full-card {
  background: var(--card-dark);
}

.founder-photo.large {
  width: 160px;
  height: 160px;
}

.founder-content h2 {
  margin-top: 0;
}

@media (max-width: 768px) {
  .founder-full-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-photo.large {
    margin: auto;
  }
}
.nav-links a.active {
  color: var(--accent);
}

.breadcrumb {
  max-width: 1100px;
  margin: 1rem auto 0;
  padding: 0 1rem;
  font-size: 0.9rem;
  opacity: 0.75;
}
/* ENGAGEMENT MODEL – VISUAL */

.engagement-visual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.engagement-card {
  background: var(--card-light);
  padding: 2.5rem;
  border-radius: 18px;
  position: relative;
}

body.dark .engagement-card {
  background: var(--card-dark);
}

.engagement-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.engagement-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.engagement-card ul {
  padding-left: 1.2rem;
}

.engagement-card li {
  margin-bottom: 0.4rem;
}

.engagement-card .muted {
  opacity: 0.75;
  font-size: 0.9rem;
}

.duration {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--accent);
}

.tag {
  display: inline-block;
  background: rgba(0,0,0,0.05);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-right: 0.4rem;
  margin-top: 0.5rem;
}

body.dark .tag {
  background: rgba(255,255,255,0.1);
}

.pill {
  display: inline-block;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-right: 0.4rem;
  margin-top: 0.5rem;
}

.highlight {
  border: 2px solid var(--accent);
}

.muted-card {
  opacity: 0.9;
}

/* CASE STUDIES */

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.case-card {
  background: var(--card-light);
  padding: 2.5rem;
  border-radius: 18px;
}

body.dark .case-card {
  background: var(--card-dark);
}

.case-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.case-tag,
.case-stage {
  font-size: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.05);
}

body.dark .case-tag,
body.dark .case-stage {
  background: rgba(255,255,255,0.1);
}

.case-actions {
  padding-left: 1.2rem;
  margin: 1rem 0;
}

.case-outcome {
  margin-top: 1.2rem;
  font-weight: 600;
}

.highlight {
  border: 2px solid var(--accent);
}

/* JOURNEY – INTERCONNECTED */

.journey-path {
  position: relative;
  height: 320px;
  margin-top: 4rem;
}

.journey-svg {
  width: 100%;
  height: 100%;
}

.journey-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-dasharray: 6;
}

.journey-node {
  position: absolute;
  top: 90px;
  width: 160px;
  text-align: center;
  transform: translateX(-50%);
}

.journey-node .icon {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.journey-node h4 {
  margin-bottom: 0.3rem;
}

.cta-secondary {
  display: inline-block;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  border-bottom: 2px solid #000;
  padding-bottom: 2px;
  transition: all 0.2s ease;
}

.cta-secondary:hover {
  opacity: 0.7;
}

body.dark .cta-secondary {
  color: #fff;
  border-bottom-color: #fff;
}

.value-box,
.engagement-card {
  will-change: transform, box-shadow;
}

/* HERO CTA OVERRIDE */
.hero-deck .cta-secondary {
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
}

.hero-deck .cta-secondary:hover {
  opacity: 0.85;
}
/* FUNDRAISING JOURNEY — SAFE FLEX PATH */

.journey-wrapper {
  position: relative;
  margin-top: 3.5rem;
}

.journey-line-bg {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.05)
  );
}

body.dark .journey-line-bg {
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.3),
    rgba(255,255,255,0.1)
  );
}

.journey-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
}

.journey-step-node {
  text-align: center;
  max-width: 160px;
}

.node-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 0.6rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

body.dark .node-icon {
  background: rgba(255,255,255,0.12);
}

.journey-step-node h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.journey-step-node p {
  font-size: 0.8rem;
  opacity: 0.85;
  line-height: 1.3;
}

.journey-step-node.highlight .node-icon {
  background: var(--accent);
  color: #fff;
}

/* HARD VISIBILITY CONTROL */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 900px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

/* CONTACT SECTION – PREMIUM */

.contact-section {
  background: linear-gradient(
    135deg,
    rgba(128, 90, 213, 0.08),
    rgba(128, 90, 213, 0.03)
  );
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

body.dark .contact-section {
  background: linear-gradient(
    135deg,
    rgba(128, 90, 213, 0.18),
    rgba(128, 90, 213, 0.08)
  );
  border-color: rgba(255,255,255,0.1);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.contact-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

body.dark .contact-card {
  background: #1e1e1e;
}

.contact-card.highlight {
  border: 2px solid var(--accent);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  margin-bottom: 1rem;
}

.contact-item a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.address-text {
  line-height: 1.6;
  font-size: 0.95rem;
}

.legal-item {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(0,0,0,0.15);
  font-size: 0.9rem;
}

body.dark .legal-item {
  border-color: rgba(255,255,255,0.15);
}

.legal-item span {
  opacity: 0.75;
}

.legal-item strong {
  font-weight: 600;
}

/* LOGIN PAGE */

.login-hero {
  min-height: 40vh;
}

.login-page-section {
  display: flex;
  justify-content: center;
}

.login-card {
  max-width: 420px;
  width: 100%;
  background: #ffffff;
  padding: 3rem;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  text-align: center;
}

body.dark .login-card {
  background: #1e1e1e;
}

.login-card h2 {
  margin-bottom: 1.5rem;
}

.login-card input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.15);
}

body.dark .login-card input {
  background: #121212;
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

.full-width {
  width: 100%;
}

.login-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
}

.link-btn {
  background: none;
  border: none;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}

.link-btn:hover {
  text-decoration: underline;
}
/* ===========================
   WORLD-CLASS JOURNEY DESIGN
=========================== */

.journey-shell {
  padding: 5rem 2rem 6rem;
  background: linear-gradient(180deg, #2a0a3d, #0b1533);
  color: #fff;
}

.journey-header {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.journey-header h1 {
  font-size: 2.6rem;
  margin-bottom: 0.75rem;
}

.journey-header p {
  opacity: 0.9;
}

.journey-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: auto;
}

.journey-divider {
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(214, 226, 111, 0),
    rgba(214, 226, 111, 0.8),
    rgba(214, 226, 111, 0)
  );
  margin: 4rem auto;
  max-width: 900px;
}

/* CARDS */

.journey-card {
  background: rgba(0,0,0,0.55);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.journey-card h3 {
  margin-top: 1.2rem;
  margin-bottom: 0.8rem;
}

.journey-card ul {
  padding-left: 1.2rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.timeline {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: #ffd84d;
}

/* STAGE INDEX */

.stage-index {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* COLORS */
.purple { background: #9b4dcc; }
.blue { background: #4c7cf0; }
.teal { background: #2fb5a9; }
.green { background: #7fcf3f; }
.orange { background: #f3b233; }
.red { background: #f05454; }

/* HIGHLIGHT FINAL */
.journey-card.highlight {
  outline: 2px solid rgba(255,255,255,0.2);
}
