:root {
  --navy: #071f55;
  --navy-two: #0a2868;
  --blue: #176bf2;
  --light-blue: #eaf3ff;
  --white: #ffffff;
  --light: #f5f8fc;
  --text: #182235;
  --muted: #677589;
  --border: #dfe7f1;
  --shadow: 0 20px 55px rgba(7, 31, 85, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 90%);
  margin: auto;
}


/* HEADER */

.site-header{
    position: sticky;
    top: 0;
    z-index: 1000;

    background: white;

    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.nav-wrap {
  height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img{
    height: 80px;px;
    width:auto;
    display:block;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  font-weight: 800;
  letter-spacing: -2px;
}

.brand-name {
  font-weight: 800;
  color: var(--navy);
}

.brand-sub {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--blue);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-button {
  color: white !important;
  background: var(--blue);
  padding: 10px 18px;
  border-radius: 9px;
}


/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 100px;
  background:
    radial-gradient(circle at 90% 15%, rgba(23,107,242,.18), transparent 30%),
    linear-gradient(180deg, #fff, #f5f9ff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-label {
    display: inline-block;
    color: var(--blue);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1.3px;

    white-space: nowrap;
}

.hero h1 {
  color: var(--navy);
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -3px;
  margin: 20px 0;
}

.hero h1 span {
  color: var(--blue);
}

.hero p {
  max-width: 700px;
  font-size: 19px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 10px;
  font-weight: 700;
  transition: .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), #0854c9);
  box-shadow: 0 12px 30px rgba(23,107,242,.24);
}

.btn-secondary {
  background: white;
  border: 1px solid var(--border);
  color: var(--navy);
}

.btn-light {
  background: white;
  color: var(--navy);
}

.hero-note {
  margin-top: 24px;
  color: #56647a;
  font-size: 14px;
}


/* SIMULATOR PREVIEW */

.simulator-window {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: white;
  box-shadow: 0 35px 90px rgba(7,31,85,.17);
  transform: rotate(1deg);
}

.window-top {
  height: 42px;
  padding: 0 15px;
  display: flex;
  gap: 7px;
  align-items: center;
  background: #eff4f9;
  border-bottom: 1px solid var(--border);
}

.window-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b3bfcd;
}

.simulator-body {
  min-height: 390px;
  display: grid;
  grid-template-columns: 150px 1fr;
}

.sim-sidebar {
  padding: 25px 14px;
  background: var(--navy);
  color: white;
}

.sim-sidebar h3 {
  font-size: 14px;
  margin-bottom: 28px;
}

.sim-sidebar a {
  display: block;
  margin: 20px 0;
  opacity: .65;
  font-size: 12px;
}

.sim-sidebar .active {
  opacity: 1;
  color: #78b3ff;
  font-weight: 700;
}

.dashboard {
  padding: 28px;
  background: #f8fafc;
}

.dashboard h3 {
  margin-top: 4px;
  color: var(--navy);
  font-size: 22px;
}

.small-text {
  font-size: 13px;
  color: var(--muted);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 25px;
}

.dashboard-card {
  padding: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 11px;
}

.dashboard-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.dashboard-card strong {
  color: var(--navy);
  font-size: 23px;
}


/* SECTIONS */

.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading h2 {
  margin: 12px 0;
  color: var(--navy);
  font-size: clamp(34px, 4.5vw, 50px);
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.three-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card,
.program-card {
  padding: 32px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: .25s ease;
}

.feature-card:hover,
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--light-blue);
  color: var(--blue);
  font-weight: 800;
}

.feature-card h3,
.program-card h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 22px;
}

.feature-card p,
.program-card p,
.program-card li {
  color: var(--muted);
}

.program-card ul {
  padding-left: 20px;
  margin-top: 20px;
}

.program-level {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.programs {
  background: var(--light);
}


/* SIMULATOR SECTION */

.simulator-section {
  padding: 100px 0;
  background: var(--navy);
  color: white;
}

.simulator-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.light-label {
  color: #72adff;
}

.simulator-section h2 {
  margin: 15px 0;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.08;
}

.simulator-section p {
  color: #c6d3e8;
  font-size: 18px;
}

.module-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.module {
  padding: 17px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  background: rgba(255,255,255,.07);
}

.module strong {
  display: block;
  color: #79b4ff;
}

.module span {
  color: #cad6e9;
  font-size: 14px;
}

.scenario-card {
  padding: 32px;
  border-radius: 19px;
  background: white;
  color: var(--text);
  box-shadow: 0 35px 75px rgba(0,0,0,.22);
}

.scenario-label {
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.scenario-card h3 {
  margin: 8px 0;
  color: var(--navy);
  font-size: 29px;
}

.scenario-card p {
  color: var(--muted);
}

.scenario-step {
  margin-top: 14px;
  padding: 16px;
  border-radius: 12px;
  background: #f1f6fc;
}

.scenario-step strong {
  display: block;
  color: var(--navy);
}

.scenario-step span {
  color: var(--muted);
  font-size: 14px;
}


/* COMMUNITY */

.community-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #eaf4ff, #f8fbff);
}

.community-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 55px;
  align-items: center;
}

.community-grid h2 {
  margin: 12px 0;
  color: var(--navy);
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.1;
}

.community-grid p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 18px;
}

.impact-card {
  padding: 38px;
  text-align: center;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.impact-number {
  color: var(--blue);
  font-size: 62px;
  font-weight: 800;
}

.impact-card h3 {
  color: var(--navy);
  font-size: 23px;
}

.impact-card p {
  font-size: 15px;
}


/* FOUNDER */

.founder-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.founder-photo {
  overflow: hidden;
  min-height: 430px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: var(--light-blue);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center top;
}

.founder-copy h2 {
  margin: 12px 0;
  color: var(--navy);
  font-size: clamp(36px, 4.5vw, 50px);
  line-height: 1.1;
}

.founder-copy p {
  margin-top: 17px;
  color: var(--muted);
  font-size: 18px;
}


/* CTA */

.cta-section {
  padding: 80px 0;
}

.cta-box {
  padding: 65px;
  text-align: center;
  border-radius: 25px;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.cta-box h2 {
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.08;
}

.cta-box p {
  max-width: 700px;
  margin: 18px auto 30px;
  color: #dbeaff;
  font-size: 18px;
}


/* FOOTER */

footer {
  padding: 55px 0 28px;
  background: #061944;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

footer h4 {
  margin-bottom: 15px;
}

footer p,
footer a {
  display: block;
  margin-top: 8px;
  color: #aebbd1;
  font-size: 14px;
}

.copyright {
  margin-top: 35px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #7f8da6;
  font-size: 13px;
}


/* RESPONSIVE */

@media (max-width: 850px) {

  .nav-links {
    display: none;
  }

  .hero-grid,
  .simulator-grid,
  .community-grid,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .three-column {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 75px 0;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .simulator-window {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 40px 22px;
  }

}
/* =====================================
   CONTACT / DEMO SECTION
===================================== */

.contact-actions {
    margin-top: 30px;

    display: flex;
    flex-wrap: wrap;

    align-items: center;
    justify-content: center;

    gap: 24px;
}

.email-link {
    color: white;

    font-size: 18px;
    font-weight: 700;

    text-decoration: none;

    border-bottom: 2px solid rgba(255,255,255,.35);

    padding-bottom: 3px;

    transition: .25s ease;
}

.email-link:hover {
    color: #b9d8ff;
    border-color: #b9d8ff;
}

.cta-label {
    color: #b9d8ff;
}

/* =========================================
   TEAM / LEADERSHIP SECTION
========================================= */

.team-section {
    padding: 90px 20px;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 35%),
        linear-gradient(135deg, #06162f 0%, #0b2347 50%, #071a35 100%);
    color: white;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #7db7ff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.team-heading h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    color: #ffffff;
}

.team-heading p {
    margin: 0;
    color: #c8d8ed;
    font-size: 1.05rem;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.profile-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    color: #12233f;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.profile-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
}

.profile-photo {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center top;
}

.profile-content {
    padding: 28px;
}

.profile-content h3 {
    margin: 0 0 6px;
    color: #092451;
    font-size: 1.55rem;
}

.profile-title {
    margin: 0 0 20px;
    color: #2563eb;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.profile-bio p {
    margin: 0 0 14px;
    color: #53647d;
    font-size: 0.96rem;
    line-height: 1.7;
}

.bio-extra {
    display: none;
}

.profile-card.expanded .bio-extra {
    display: block;
}

.bio-toggle {
    margin-top: 8px;
    padding: 11px 20px;
    border: 0;
    border-radius: 999px;
    background: #0d5bd7;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.bio-toggle:hover {
    background: #0849ad;
    transform: translateY(-1px);
}

.bio-toggle:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.3);
    outline-offset: 3px;
}


/* TABLET */
@media (max-width: 950px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* MOBILE */
@media (max-width: 650px) {
    .team-section {
        padding: 65px 18px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .profile-photo {
        height: 400px;
    }
}
/* =========================================================
   JOIN BLUE RIDGE
========================================================= */

.join-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #edf6ff 100%);
}

.join-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.join-heading .section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #1467e8;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.join-heading h2 {
    margin: 0 0 18px;
    color: #082653;
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1.1;
}

.join-heading > p {
    margin: 0 auto;
    max-width: 680px;
    color: #52657d;
    font-size: 18px;
    line-height: 1.7;
}

.join-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.join-card {
    display: flex;
    flex-direction: column;
    padding: 42px;
    background: #ffffff;
    border: 1px solid #dce9f7;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(8, 38, 83, 0.10);
}

.join-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 25px;
    background: #eaf3ff;
    border-radius: 18px;
    font-size: 30px;
}

.join-card h3 {
    margin: 0 0 16px;
    color: #082653;
    font-size: 28px;
}

.join-card > p {
    margin: 0 0 25px;
    color: #52657d;
    font-size: 16px;
    line-height: 1.7;
}

.availability-note {
    margin-bottom: 30px;
    padding: 18px 20px;
    background: #edf6ff;
    border-left: 4px solid #1467e8;
    border-radius: 10px;
    color: #173b68;
}

.availability-note strong,
.availability-note span {
    display: block;
}

.availability-note span {
    margin-top: 5px;
    font-size: 14px;
}

.join-button {
    display: inline-block;
    margin-top: auto;
    padding: 15px 25px;
    background: linear-gradient(135deg, #0d4fa8, #1877f2);
    border-radius: 10px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.join-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(20, 103, 232, 0.25);
}

@media (max-width: 768px) {
    .join-grid {
        grid-template-columns: 1fr;
    }

    .join-section {
        padding: 70px 20px;
    }

    .join-card {
        padding: 30px;
    }
}