    * { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0d1b2a;
  --slate: #33415c;
  --blue: #00b4d8;
  --headline-cyan: #00d7ff;
  --mint: #bcece0;
  --white: #ffffff;
  --off: #f5f7fa;
  --nav-height: 78px;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  margin-top: 0 !important;
}

body.admin-bar {
  margin-top: 0 !important;
}

#wpadminbar {
  display: none !important;
}

body {
  font-family: 'Work Sans', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  padding-top: var(--nav-height);
}

    a { color: inherit; text-decoration: none; }

    .container {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(13, 27, 42, 0.95);
  border-bottom: 1px solid rgba(0, 180, 216, 0.18);
  box-shadow: 0 10px 28px rgba(4, 15, 27, 0.22);
}

    .nav-wrap {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 250px;
    }

    .brand-logo {
      width: 48px;
      height: 48px;
      max-width: 48px;
      max-height: 48px;
      display: block;
      flex: 0 0 48px;
      object-fit: contain;
      filter: drop-shadow(0 4px 12px rgba(0, 180, 216, 0.24));
    }

    .brand-name {
      font-family: 'Oswald', sans-serif;
      color: var(--white);
      font-size: 17px;
      letter-spacing: 0.7px;
      text-transform: uppercase;
      line-height: 1.15;
    }

.brand-name span { color: var(--headline-cyan); }

.institute-accent {
  color: var(--headline-cyan);
  text-shadow: 0 0 14px rgba(0, 180, 216, 0.26);
}

/* Contrast exceptions by background context */
.btn .institute-accent,
.btn-primary .institute-accent,
.nav-get-started .institute-accent {
  color: rgba(7, 29, 47, 0.62);
  text-shadow: none;
}

.btn-outline .institute-accent {
  color: #eaf7ff;
  text-shadow: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(134, 211, 244, 0.45);
  background: rgba(10, 30, 49, 0.78);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #eaf7ff;
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 0;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
}

.nav-links a {
  color: rgba(236, 247, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.nav-links a:hover { color: var(--blue); }

.nav-links a.active {
  color: #eaf7ff;
  text-decoration: underline;
}

.nav-get-started {
  color: var(--navy);
  background: linear-gradient(135deg, var(--blue), var(--mint));
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.9px;
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.3);
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 13px;
}

.nav-get-started:hover {
  color: var(--navy);
  background: linear-gradient(135deg, #2fd6ee, #d1f6ee);
  transform: translateY(-1px);
}

    .hero {
      background:
        radial-gradient(80% 100% at 85% 25%, rgba(0, 180, 216, 0.18), transparent 70%),
        radial-gradient(45% 70% at 10% 90%, rgba(188, 236, 224, 0.16), transparent 70%),
        linear-gradient(155deg, #0b1a2a 0%, #102841 55%, #15395f 100%);
      color: var(--white);
      padding: 84px 0 72px;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 38px;
      align-items: center;
      width: 100%;
    }

    .hero-grid > *,
    .offering-grid > *,
    .influence-wrap > *,
    .pathway-grid > *,
    .page-grid > *,
    .hero-stats > * {
      min-width: 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(0, 180, 216, 0.35);
      border-radius: 100px;
      background: rgba(0, 180, 216, 0.12);
      padding: 6px 14px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      margin-bottom: 22px;
      color: var(--blue);
    }

    .hero h1 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(40px, 6vw, 74px);
      line-height: 1.06;
      margin-bottom: 18px;
      letter-spacing: -0.5px;
      color: #ecf7ff;
      text-shadow: 0 2px 22px rgba(6, 22, 42, 0.6);
    }

    .hero h1,
    .hero h1 * {
      color: #ecf7ff;
    }

.hero h1 em {
  color: var(--headline-cyan);
  font-style: normal;
  text-shadow: 0 0 24px rgba(0, 180, 216, 0.35);
}

    .hero p {
      color: rgba(236, 247, 255, 0.9);
      max-width: 640px;
      font-size: 18px;
      margin-bottom: 30px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .btn {
      display: inline-block;
      border-radius: 6px;
      padding: 14px 24px;
      font-weight: 700;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1.1px;
      border: 1px solid transparent;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--blue), #0098b8);
      color: var(--navy);
    }

    .btn-outline {
      border-color: rgba(255, 255, 255, 0.45);
      color: var(--white);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .stat {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 16px;
    }

    .stat .num {
      font-family: 'Oswald', sans-serif;
      color: var(--mint);
      font-size: 30px;
      line-height: 1;
    }

    .stat .label {
      margin-top: 4px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.75);
      letter-spacing: 0.3px;
    }

    .hero-card {
      background: rgba(20, 48, 77, 0.72);
      border: 1px solid rgba(102, 198, 240, 0.38);
      border-radius: 12px;
      padding: 24px;
    }

    .hero-card h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 28px;
      margin-bottom: 10px;
      letter-spacing: 0.4px;
      color: #ecf7ff;
    }

    .hero-card p {
      margin: 0;
      font-size: 15px;
      color: rgba(236, 247, 255, 0.92);
    }

.hero-card p strong {
  color: #ffffff;
}

/* Align Home/Results hero cards with Memberships right inset */
.hero-home .hero-grid,
.hero-results .hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.hero-home .hero-card,
.hero-results .hero-card {
  margin-right: 12px;
}

    section { padding: 86px 0; }

    .section-head {
      margin-bottom: 34px;
    }

    .section-label {
      font-size: 11px;
      letter-spacing: 2.5px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 12px;
    }

    .section-head h2 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(32px, 4.6vw, 52px);
      line-height: 1.07;
      margin-bottom: 12px;
    }

    .section-head p {
      max-width: 760px;
      color: var(--slate);
      font-size: 17px;
    }

    #offering {
      background: var(--off);
    }

    .offering-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      width: 100%;
    }

    .offering-card {
      background: var(--white);
      border: 1px solid rgba(13, 27, 42, 0.08);
      border-radius: 10px;
      padding: 24px;
    }

    .offering-card h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 24px;
      margin-bottom: 10px;
      color: var(--navy);
    }

    .offering-card p {
      color: var(--slate);
      font-size: 15px;
    }

    .pill {
      display: inline-block;
      margin-bottom: 12px;
      background: rgba(0, 180, 216, 0.1);
      border: 1px solid rgba(0, 180, 216, 0.22);
      color: #077ea1;
      border-radius: 100px;
      padding: 4px 10px;
      font-size: 10px;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      font-weight: 700;
    }

    #influence {
      background:
        radial-gradient(90% 120% at 18% 20%, rgba(0, 180, 216, 0.08), transparent 65%),
        linear-gradient(150deg, #071425 0%, #0b1d33 58%, #0a2138 100%);
      color: var(--white);
    }

    #influence .section-label {
      color: #10d6ff;
      text-shadow: 0 0 10px rgba(0, 180, 216, 0.22);
    }

    #influence .section-head h2 {
      color: #eaf7ff;
      text-shadow: 0 2px 16px rgba(3, 12, 24, 0.5);
    }

    #influence .section-head > p {
      color: rgba(236, 247, 255, 0.9) !important;
      max-width: 840px;
    }

    .influence-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      width: 100%;
    }

    .influence-box {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(165, 214, 255, 0.18);
      border-radius: 10px;
      padding: 24px;
      backdrop-filter: blur(2px);
    }

    .influence-box h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 25px;
      margin-bottom: 10px;
      color: #f1fbff;
      letter-spacing: 0.2px;
    }

    .influence-box p {
      color: rgba(236, 247, 255, 0.9);
      font-size: 15px;
    }

    #pathways {
      background: var(--white);
    }

    .pathway-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      width: 100%;
    }

    .pathway {
      border: 1px solid rgba(13, 27, 42, 0.1);
      border-radius: 10px;
      padding: 24px;
      background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
    }

    .pathway h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 28px;
      margin-bottom: 8px;
    }

    .pathway p {
      color: var(--slate);
      margin-bottom: 12px;
      font-size: 15px;
    }

    .pathway ul {
      list-style: none;
      display: grid;
      gap: 8px;
      color: #2f415d;
      font-size: 14px;
    }

    .pathway li::before {
      content: "• ";
      color: var(--blue);
      font-weight: 800;
    }

    #next-pages {
      background: var(--off);
    }

    .page-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      width: 100%;
    }

    .page-tile {
      background: var(--white);
      border: 1px solid rgba(13, 27, 42, 0.1);
      border-radius: 10px;
      padding: 18px;
      min-height: 106px;
      display: grid;
      align-content: space-between;
      gap: 8px;
    }

    .page-tile strong {
      font-family: 'Oswald', sans-serif;
      font-size: 24px;
      color: var(--navy);
    }

    .page-tile span {
      color: var(--slate);
      font-size: 14px;
    }

    .cta {
      padding: 70px 0;
      background: linear-gradient(145deg, #0d1b2a, #133458);
      color: var(--white);
    }

    .cta-wrap {
      display: flex;
      gap: 16px;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .cta h2 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(30px, 4.8vw, 52px);
      line-height: 1.08;
      margin-bottom: 8px;
      color: #f0f9ff;
      text-shadow: 0 2px 18px rgba(3, 14, 28, 0.45);
    }

    .cta p {
      max-width: 650px;
      color: rgba(236, 247, 255, 0.92);
      font-size: 16px;
    }

    footer {
      padding: 22px 0;
      background: #091523;
      color: rgba(236, 247, 255, 0.84);
      font-size: 13px;
      border-top: 1px solid rgba(91, 172, 212, 0.22);
    }

    .foot {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

@media (max-width: 1200px) {
  .nav-wrap {
    height: auto;
    padding: 12px 0;
    align-items: center;
    flex-wrap: wrap;
  }

  :root {
    --nav-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(90, 166, 205, 0.28);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 12px;
    width: 100%;
  }

  .nav-actions {
    margin-left: auto;
    gap: 8px;
  }

  .nav-get-started {
    font-size: 12px;
    padding: 9px 12px;
    line-height: 1;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .influence-wrap,
  .offering-grid,
  .pathway-grid,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-home .hero-card,
  .hero-results .hero-card {
    margin-right: 0;
  }
}

/* About page */
.about-hero {
  background:
    radial-gradient(70% 90% at 80% 20%, rgba(0, 180, 216, 0.16), transparent 70%),
    linear-gradient(150deg, #081527 0%, #0c2340 58%, #12395f 100%);
  color: var(--white);
  padding: 90px 0 72px;
}

.about-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.05;
  color: #ecf7ff;
  margin-bottom: 14px;
}

.about-hero h1 em {
  color: var(--headline-cyan);
  font-style: normal;
  text-shadow: 0 0 20px rgba(0, 180, 216, 0.34);
}

.about-hero p {
  max-width: 760px;
  color: rgba(236, 247, 255, 0.9);
  font-size: 20px;
}

.about-story {
  background: var(--off);
}

.about-story h2,
.about-challenges h2,
.founder-section h2,
.about-values h2,
.about-solution h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.about-story-grid > div {
  display: flex;
  flex-direction: column;
}

.about-story-grid p {
  color: var(--slate);
  font-size: 17px;
  margin-bottom: 14px;
  max-width: 760px;
}

.about-timeline-card {
  background: #fff;
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 12px;
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about-timeline-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 1.6vw, 32px);
  line-height: 1;
  margin-bottom: 12px;
  color: var(--navy);
}

.about-timeline-card ul {
  list-style: none;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.about-timeline-card li {
  color: #304564;
  font-size: clamp(14px, 0.86vw, 16px);
  line-height: 1.45;
}

.about-timeline-card strong {
  color: #1a304e;
  font-size: 1.02em;
}

.about-challenges {
  background:
    radial-gradient(95% 120% at 20% 20%, rgba(0, 180, 216, 0.1), transparent 60%),
    linear-gradient(155deg, #081526 0%, #0d223b 60%, #123152 100%);
  color: var(--white);
}

.about-challenges .section-label {
  color: #13d8ff;
}

.about-challenges h2 {
  color: #eaf7ff;
  text-shadow: 0 2px 16px rgba(4, 14, 28, 0.45);
}

.challenge-intro {
  max-width: 860px;
  color: rgba(236, 247, 255, 0.9);
  font-size: 18px;
  margin-bottom: 20px;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.challenge-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(120, 203, 240, 0.3);
  border-radius: 12px;
  padding: 22px;
}

.challenge-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 8px;
  color: #eef9ff;
}

.challenge-card p {
  color: rgba(236, 247, 255, 0.88);
  font-size: 15px;
}

.founder-section {
  background: #fff;
  padding-top: 56px;
  padding-bottom: 52px;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.founder-media {
  border-radius: 14px;
  border: 1px solid rgba(13, 27, 42, 0.14);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: auto;
}

.founder-image-wrap {
  border-radius: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  min-height: 0;
  aspect-ratio: auto;
  flex: 0 0 50%;
}

.founder-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-quote-wrap {
  padding: 10px 14px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
}

.founder-content {
  display: flex;
  flex-direction: column;
}

.founder-intro {
  color: #2f435f;
  font-size: 17px;
  margin-bottom: 12px;
}

.founder-facts {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.founder-fact {
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.founder-fact span {
  display: block;
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #118fb6;
  font-weight: 700;
  margin-bottom: 4px;
}

.founder-fact strong {
  font-size: 14px;
  color: #1d324f;
}

.founder-quote {
  border-left: 4px solid var(--blue);
  padding: 4px 0 4px 14px;
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  line-height: 1.04;
  color: #0f2844;
}

.founder-quote-in-panel {
  font-size: clamp(40px, 2.9vw, 52px);
}

.about-values {
  background: var(--off);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.value-card {
  background: #fff;
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 12px;
  padding: 22px;
}

.value-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  color: #102845;
  margin-bottom: 8px;
}

.value-card p {
  color: #324866;
  font-size: 15px;
}

.about-solution {
  background: #ffffff;
}

.solution-intro {
  max-width: 860px;
  color: #2d425f;
  font-size: 18px;
  margin-bottom: 20px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.solution-step {
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 12px;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.step-number {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: #0f93ba;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.solution-step h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 8px;
  color: #102845;
}

.solution-step p {
  color: #304764;
  font-size: 15px;
}

@media (max-width: 980px) {
  .about-story-grid,
  .founder-grid,
  .values-grid,
  .challenge-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .about-timeline-card h3 {
    font-size: clamp(24px, 4.2vw, 30px);
  }

  .about-timeline-card ul {
    display: grid;
    gap: 12px;
  }

  .about-timeline-card li {
    font-size: clamp(14px, 3.1vw, 16px);
    line-height: 1.45;
  }

  .founder-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .founder-image-wrap {
    min-height: 0;
    flex: none;
    aspect-ratio: 4 / 3;
  }

  .founder-media {
    height: auto;
  }

  .founder-quote {
    font-size: 36px;
  }

  :root {
    --nav-height: 64px;
  }
}

/* Services page */
.services-hero {
  background:
    radial-gradient(82% 110% at 82% 16%, rgba(0, 180, 216, 0.18), transparent 68%),
    linear-gradient(155deg, #081526 0%, #0c2340 55%, #13385d 100%);
  color: var(--white);
  padding: 92px 0 76px;
}

.services-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.services-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.05;
  margin-bottom: 14px;
  color: #eef9ff;
}

.services-hero h1 em {
  color: var(--headline-cyan);
  font-style: normal;
  text-shadow: 0 0 20px rgba(0, 180, 216, 0.34);
}

.services-hero p {
  max-width: 760px;
  color: rgba(236, 247, 255, 0.9);
  font-size: 18px;
}

.services-hero-card {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(121, 202, 241, 0.32);
  padding: 22px;
}

.services-hero-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  margin-bottom: 10px;
  color: #ecf7ff;
}

.services-hero-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.services-hero-card li {
  color: rgba(236, 247, 255, 0.9);
  font-size: 15px;
  line-height: 1.45;
}

.services-hero-card li::before {
  content: "• ";
  color: var(--headline-cyan);
  font-weight: 800;
}

.services-lines {
  background: var(--off);
}

.services-lines h2,
.services-process h2,
.services-fit h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  margin-bottom: 12px;
  color: #132b47;
}

.services-intro,
.solution-intro {
  max-width: 860px;
  color: #2d425f;
  font-size: 18px;
  margin-bottom: 20px;
}

.services-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-line-card {
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 12px;
  background: #fff;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.service-line-eyebrow {
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  color: #118fb6;
  margin-bottom: 8px;
}

.service-line-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  line-height: 1.08;
  margin-bottom: 8px;
  color: #102845;
}

.service-line-card p {
  color: #304866;
  font-size: 15px;
  margin-bottom: 10px;
}

.service-line-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.service-line-card li {
  color: #2f4563;
  font-size: 14px;
  line-height: 1.45;
}

.service-line-card li::before {
  content: "• ";
  color: var(--blue);
  font-weight: 800;
}

.service-btn {
  margin-top: auto;
  width: fit-content;
}

.services-process {
  background:
    radial-gradient(95% 120% at 20% 20%, rgba(0, 180, 216, 0.1), transparent 60%),
    linear-gradient(155deg, #081526 0%, #0d223b 60%, #123152 100%);
  color: var(--white);
}

.services-process .section-label {
  color: #13d8ff;
}

.services-process h2 {
  color: #eaf7ff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.process-step {
  border: 1px solid rgba(120, 203, 240, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.process-num {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: #13d8ff;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.process-step h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  margin-bottom: 6px;
  color: #ecf7ff;
}

.process-step p {
  color: rgba(236, 247, 255, 0.9);
  font-size: 14px;
}

.services-fit {
  background: #fff;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fit-card {
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 20px;
}

.fit-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  line-height: 1.08;
  margin-bottom: 8px;
  color: #102845;
}

.fit-card p {
  color: #314866;
  font-size: 15px;
}

@media (max-width: 980px) {
  .services-hero-grid,
  .services-grid-cards,
  .process-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .services-hero {
    padding: 82px 0 62px;
  }

  .service-line-card h3,
  .fit-card h3 {
    font-size: 28px;
  }

  .services-hero-card h3 {
    font-size: 30px;
  }
}

/* Memberships page */
.memberships-hero {
  background:
    radial-gradient(82% 110% at 82% 16%, rgba(0, 180, 216, 0.18), transparent 68%),
    linear-gradient(155deg, #081526 0%, #0c2340 55%, #13385d 100%);
  color: var(--white);
  padding: 92px 0 76px;
}

.memberships-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.memberships-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.05;
  margin-bottom: 14px;
  color: #eef9ff;
}

.memberships-hero h1 em {
  color: var(--headline-cyan);
  font-style: normal;
  text-shadow: 0 0 20px rgba(0, 180, 216, 0.34);
}

.memberships-hero p {
  max-width: 760px;
  color: rgba(236, 247, 255, 0.9);
  font-size: 18px;
}

.memberships-hero-card {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(121, 202, 241, 0.32);
  padding: 22px;
}

.memberships-hero-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  margin-bottom: 10px;
  color: #ecf7ff;
}

.memberships-hero-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.memberships-hero-card li {
  color: rgba(236, 247, 255, 0.9);
  font-size: 15px;
  line-height: 1.45;
}

.memberships-hero-card li::before {
  content: "• ";
  color: var(--headline-cyan);
  font-weight: 800;
}

.memberships-plans {
  background: var(--off);
}

.memberships-plans h2,
.member-access h2,
.memberships-faq h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  margin-bottom: 12px;
  color: #132b47;
}

.memberships-intro {
  max-width: 860px;
  color: #2d425f;
  font-size: 18px;
  margin-bottom: 20px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.plan-card {
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 12px;
  background: #fff;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  border-color: rgba(0, 180, 216, 0.42);
  box-shadow: 0 14px 34px rgba(13, 27, 42, 0.1);
}

.plan-tag {
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  color: #118fb6;
  margin-bottom: 8px;
}

.plan-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  line-height: 1.08;
  margin-bottom: 6px;
  color: #102845;
}

.plan-price {
  font-family: 'Oswald', sans-serif;
  color: #0f94bb;
  font-size: 24px;
  margin-bottom: 10px;
}

.plan-card p {
  color: #304866;
  font-size: 15px;
  margin-bottom: 10px;
}

.plan-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.plan-card li {
  color: #2f4563;
  font-size: 14px;
  line-height: 1.45;
}

.plan-card li::before {
  content: "• ";
  color: var(--blue);
  font-weight: 800;
}

.member-access {
  background: #fff;
}

.member-access-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.member-access-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.member-access .section-label,
.member-access h2 {
  margin-bottom: 0;
}

.member-access-copy .memberships-intro {
  margin-bottom: 0;
  max-width: 650px;
}

.portal-phases {
  display: grid;
  gap: 10px;
}

.portal-phases-compact {
  gap: 10px;
}

.portal-phase {
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
  color: #304866;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.member-access .portal-phase {
  padding: 14px 16px;
}

.portal-phase strong {
  color: #14385b;
}

.portal-card {
  border-radius: 12px;
  border: 1px solid rgba(13, 27, 42, 0.14);
  background: #fff;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.portal-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  margin-bottom: 8px;
  color: #102845;
}

.portal-card p {
  color: #304866;
  font-size: 15px;
  margin-bottom: 12px;
}

.member-portal-card {
  gap: 14px;
}

.member-portal-card p {
  margin-bottom: 0;
  max-width: 34ch;
}

.member-access-cta {
  margin-top: 2px;
  margin-bottom: 0;
}

.member-access-cta .btn {
  min-width: 220px;
  text-align: center;
}

.portal-form {
  display: grid;
  gap: 8px;
}

.userswp-login-shell,
.userswp-register-shell {
  width: 100%;
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 18px;
  gap: 12px;
}

.userswp-login-shell > h1,
.userswp-login-shell > h2,
.userswp-login-shell > h3,
.userswp-login-shell > h4,
.userswp-register-shell > h1,
.userswp-register-shell > h2,
.userswp-register-shell > h3,
.userswp-register-shell > h4 {
  display: none;
}

.userswp-login-shell form,
.userswp-register-shell form,
.userswp-login-shell .uwp_form,
.userswp-register-shell .uwp_form,
.userswp-login-shell .uwp-login-form,
.userswp-register-shell .uwp-register-form {
  display: grid;
  gap: 12px;
}

.userswp-login-shell p,
.userswp-register-shell p {
  margin: 0;
}

.portal-form label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1d5078;
  font-weight: 700;
}

.portal-form input {
  height: 44px;
  border: 1px solid rgba(13, 27, 42, 0.2);
  border-radius: 8px;
  padding: 0 12px;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
}

.userswp-login-shell input[type="text"],
.userswp-login-shell input[type="email"],
.userswp-login-shell input[type="password"],
.userswp-register-shell input[type="text"],
.userswp-register-shell input[type="email"],
.userswp-register-shell input[type="password"],
.userswp-register-shell input[type="tel"],
.userswp-login-shell select,
.userswp-register-shell select,
.userswp-register-shell textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(13, 27, 42, 0.18);
  border-radius: 10px;
  padding: 10px 14px;
  background: #fff;
  color: #15314f;
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  box-sizing: border-box;
}

.userswp-register-shell textarea {
  min-height: 120px;
  resize: vertical;
}

.userswp-login-shell input:focus,
.userswp-register-shell input:focus,
.userswp-login-shell select:focus,
.userswp-register-shell select:focus,
.userswp-register-shell textarea:focus {
  outline: none;
  border-color: rgba(0, 180, 216, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.12);
}

.userswp-login-shell img,
.userswp-login-shell .avatar,
.userswp-register-shell img,
.userswp-register-shell .avatar {
  display: block;
  width: clamp(88px, 18vw, 120px);
  height: clamp(88px, 18vw, 120px);
  margin: 0 auto 12px;
  border-radius: 999px;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 18px 30px rgba(13, 27, 42, 0.14);
}

.userswp-login-shell label,
.userswp-register-shell label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1e5079;
  font-weight: 700;
}

.userswp-login-shell input[type="checkbox"],
.userswp-register-shell input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-height: 16px;
}

.userswp-login-shell .button,
.userswp-login-shell button,
.userswp-login-shell input[type="submit"],
.userswp-register-shell .button,
.userswp-register-shell button,
.userswp-register-shell input[type="submit"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), #0098b8);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 180, 216, 0.2);
}

.userswp-login-shell .button:hover,
.userswp-login-shell button:hover,
.userswp-login-shell input[type="submit"]:hover,
.userswp-register-shell .button:hover,
.userswp-register-shell button:hover,
.userswp-register-shell input[type="submit"]:hover {
  filter: brightness(1.04);
}

.userswp-login-shell select,
.userswp-login-shell .select2-container,
.userswp-register-shell .select2-container {
  width: 100% !important;
}

.userswp-login-shell .select2-selection,
.userswp-register-shell .select2-selection {
  min-height: 46px;
  border-radius: 10px !important;
  border: 1px solid rgba(13, 27, 42, 0.18) !important;
  padding: 8px 12px;
}

.userswp-login-shell .uwp_login_links,
.userswp-register-shell .uwp_login_links,
.userswp-login-shell .uwp-forgot-links,
.userswp-register-shell .uwp-forgot-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 14px;
  font-size: 13px;
}

.userswp-login-shell a,
.userswp-register-shell a {
  color: #0a9fd0;
  text-decoration: none;
}

.userswp-login-shell a:hover,
.userswp-login-shell a:focus-visible,
.userswp-register-shell a:hover,
.userswp-register-shell a:focus-visible {
  color: #0bc6f4;
  text-decoration: underline;
}

.userswp-login-shell .uwp-profile-actions,
.userswp-login-shell .uwp_account_actions,
.userswp-login-shell .uwp-login-actions {
  display: grid;
  gap: 10px;
}

.portal-form .btn {
  margin-top: 8px;
  width: 100%;
  text-align: center;
}

.portal-register-link {
  margin-top: 8px;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #0a9fd0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.portal-register-link:hover,
.portal-register-link:focus-visible {
  color: #0bc6f4;
}

.member-access-links {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.member-access-links .portal-register-link {
  margin-top: 0;
  width: fit-content;
}

.memberships-faq {
  background: var(--off);
}

.memberships-news {
  background: #fff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.news-item {
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 18px;
}

.news-date {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #1190b6;
  font-weight: 700;
  margin-bottom: 8px;
}

.news-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  line-height: 1.08;
  color: #102845;
  margin-bottom: 8px;
}

.news-item p {
  color: #314866;
  font-size: 14px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 12px;
  background: #fff;
  padding: 20px;
}

.faq-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 8px;
  color: #102845;
}

.faq-item p {
  color: #314866;
  font-size: 15px;
}

@media (max-width: 980px) {
  .memberships-hero-grid,
  .plans-grid,
  .member-access-grid,
  .faq-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .memberships-hero {
    padding: 82px 0 62px;
  }

  .plan-card h3,
  .portal-card h3,
  .faq-item h3 {
    font-size: 28px;
  }

  .memberships-hero-card h3 {
    font-size: 30px;
  }

  .member-access-copy,
  .member-portal-card {
    gap: 12px;
  }

  .member-access-cta .btn {
    width: 100%;
    min-width: 0;
  }
}

/* Results Page */
.results-hero {
  background:
    radial-gradient(circle at 20% 28%, rgba(19, 216, 255, 0.2), rgba(19, 216, 255, 0) 36%),
    linear-gradient(110deg, #071529 0%, #0b2f4b 44%, #14385b 100%);
  padding: 110px 0 78px;
}

.results-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: end;
}

.results-hero-card {
  border: 1px solid rgba(120, 203, 240, 0.34);
  border-radius: 14px;
  background: rgba(16, 55, 84, 0.72);
  padding: 22px;
}

.results-hero-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 44px;
  line-height: 1.02;
  margin-bottom: 10px;
  color: #ecf7ff;
}

.results-hero-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.results-hero-card li {
  color: rgba(236, 247, 255, 0.9);
  font-size: 15px;
  line-height: 1.45;
}

.results-hero-card li::before {
  content: "• ";
  color: var(--blue);
  font-weight: 800;
}

.results-framework {
  background: #fff;
}

.results-intro {
  color: #314866;
  font-size: 16px;
  max-width: 880px;
  margin: 6px 0 22px;
}

.results-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.results-step {
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 18px;
}

.results-step-num {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #1190b6;
  font-weight: 700;
  margin-bottom: 8px;
}

.results-step h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  line-height: 1.04;
  color: #102845;
  margin-bottom: 8px;
}

.results-step p {
  color: #314866;
  font-size: 14px;
}

.results-proof {
  background: var(--off);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-card {
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 12px;
  background: #fff;
  padding: 18px;
  display: grid;
  gap: 8px;
}

.proof-kicker {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #118db2;
  font-weight: 700;
}

.proof-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 31px;
  line-height: 1.05;
  color: #102845;
}

.proof-card p {
  color: #314866;
  font-size: 14px;
  line-height: 1.5;
}

.proof-card a {
  color: #0a9fd0;
  font-weight: 700;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.proof-card a:hover,
.proof-card a:focus-visible {
  color: #0bc6f4;
}

.results-metrics {
  background: #fff;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric-card {
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 18px;
}

.metric-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  line-height: 1.08;
  color: #102845;
  margin-bottom: 8px;
}

.metric-card p {
  color: #314866;
  font-size: 14px;
}

@media (max-width: 1120px) {
  .results-hero-grid,
  .results-steps,
  .proof-grid,
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-hero {
    padding: 92px 0 66px;
  }
}

@media (max-width: 980px) {
  .results-hero-grid,
  .results-steps,
  .proof-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .results-hero-card h3,
  .results-step h3,
  .proof-card h3,
  .metric-card h3 {
    font-size: 28px;
  }
}

/* Investor page */
.investor-hero {
  padding-bottom: 40px;
}

.investor-hero .hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.investor-hero-grid-fix {
  padding-right: 0;
}

.investor-hero .hero-card {
  width: calc(100% - 24px);
  max-width: 440px;
  justify-self: end;
  margin-right: 24px;
}

.investor-thesis-card {
  width: calc(100% - 24px) !important;
  max-width: 440px !important;
  justify-self: end !important;
  margin-right: 24px !important;
}

.investor-hero-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.investor-hero-list li {
  color: rgba(236, 247, 255, 0.92);
  font-size: 14px;
  line-height: 1.45;
}

.investor-hero-list li::before {
  content: "• ";
  color: var(--headline-cyan);
  font-weight: 800;
}

.investor-kpis {
  margin-top: 18px;
}

.investor-light {
  background: var(--off);
}

.investor-context-card {
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 20px;
  margin-top: 16px;
}

.investor-context-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  line-height: 1.06;
  color: #102845;
  margin-bottom: 10px;
}

.investor-context-card p {
  color: #314866;
  font-size: 15px;
  margin-bottom: 8px;
}

.investor-table-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.investor-table-card li {
  color: rgba(236, 247, 255, 0.9);
  font-size: 14px;
}

.investor-financials {
  background: #fff;
}

.investor-team-section {
  background: #fff;
}

.investor-comparison {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 12px;
  overflow: hidden;
}

.investor-comp-head {
  background: #102845;
  color: #ecf7ff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 14px;
}

.investor-comp-item {
  padding: 14px;
  border-top: 1px solid rgba(13, 27, 42, 0.1);
  font-size: 14px;
  color: #314866;
  background: #fff;
}

.investor-comp-yes {
  color: #0f8fb6;
  font-weight: 700;
}

.investor-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
}

.investor-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.investor-access {
  background: #fff;
}

.investor-access h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  margin-bottom: 12px;
  color: #132b47;
}

.investor-gate {
  background: var(--off);
}

.investor-gate-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: start;
}

.investor-form-card,
.investor-legal-card {
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 12px;
  background: #fff;
  padding: 22px;
}

.investor-form-card h2,
.investor-legal-card h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  margin-bottom: 10px;
  color: #132b47;
}

.investor-legal-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  line-height: 1.08;
  color: #123352;
  margin-bottom: 6px;
}

.investor-intake-form select,
.investor-intake-form textarea {
  border: 1px solid rgba(13, 27, 42, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
}

.investor-intake-form textarea {
  resize: vertical;
  min-height: 110px;
}

.investor-check-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #304866;
  font-size: 13px;
  font-weight: 500;
}

.investor-check-row input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.investor-checklist {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.investor-checklist li {
  color: #304866;
  font-size: 14px;
  line-height: 1.5;
}

.investor-checklist li::before {
  content: "• ";
  color: #0aa8d4;
  font-weight: 800;
}

.investor-legal-block {
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.investor-legal-block p {
  color: #304866;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .investor-hero .hero-card {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    margin-right: 0;
  }

  .investor-thesis-card {
    width: 100% !important;
    max-width: none !important;
    justify-self: stretch !important;
    margin-right: 0 !important;
  }

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

  .investor-gate-grid {
    grid-template-columns: 1fr;
  }
}

/* Portal pages */
.portal-hero {
  background:
    radial-gradient(82% 110% at 82% 16%, rgba(0, 180, 216, 0.18), transparent 68%),
    linear-gradient(155deg, #081526 0%, #0c2340 55%, #13385d 100%);
  color: var(--white);
  padding: 92px 0 76px;
}

.portal-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.portal-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.05;
  margin-bottom: 14px;
  color: #eef9ff;
}

.portal-hero h1 em {
  color: var(--headline-cyan);
  font-style: normal;
  text-shadow: 0 0 20px rgba(0, 180, 216, 0.34);
}

.portal-hero p {
  max-width: 760px;
  color: rgba(236, 247, 255, 0.9);
  font-size: 18px;
}

.portal-hero-card {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(121, 202, 241, 0.32);
  padding: 22px;
}

.portal-hero-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  margin-bottom: 10px;
  color: #ecf7ff;
}

.portal-list,
.portal-hero-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.portal-list li,
.portal-hero-card li {
  color: rgba(236, 247, 255, 0.9);
  font-size: 15px;
  line-height: 1.45;
}

.portal-list li::before,
.portal-hero-card li::before {
  content: "• ";
  color: var(--headline-cyan);
  font-weight: 800;
}

.portal-access {
  background: var(--off);
}

.portal-access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 420px);
  gap: clamp(20px, 2.4vw, 32px);
  align-items: start;
}

.portal-access-grid-member .portal-track-grid {
  margin-top: 16px;
}

.portal-signin-card {
  align-self: stretch;
  margin-top: clamp(92px, 8vw, 112px);
  min-height: 0;
}

.portal-signin-card .userswp-login-shell {
  flex: 1;
  align-content: start;
}

.portal-signin-card .userswp-login-shell form,
.portal-signin-card .userswp-login-shell .uwp_form,
.portal-signin-card .userswp-login-shell .uwp-login-form {
  align-content: start;
}

body.elementor-page-299 .portal-hero {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

body.elementor-page-299 .portal-access-grid {
  display: block;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 76px 0;
  background: var(--off);
}

body.elementor-page-299 .portal-access-grid > .e-con-inner {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  max-width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 420px);
  gap: clamp(20px, 2.4vw, 32px);
  align-items: start;
}

body.elementor-page-299 .portal-access-grid > .e-con-inner > .e-con-full {
  width: 100%;
  min-width: 0;
}

body.elementor-page-299 .portal-track-grid {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.elementor-page-299 .portal-signin-card {
  margin-top: clamp(78px, 6vw, 96px);
}

.portal-track-grid,
.portal-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.portal-track-card,
.portal-preview-card,
.portal-panel,
.portal-confirm-card {
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 12px;
  background: #fff;
  padding: 22px;
}

.portal-track-card h3,
.portal-preview-card h3,
.portal-panel h3,
.portal-confirm-card h2 {
  font-family: 'Oswald', sans-serif;
  color: #102845;
  line-height: 1.08;
}

.portal-track-card h3,
.portal-preview-card h3,
.portal-panel h3 {
  font-size: 30px;
  margin-bottom: 8px;
}

.portal-track-card p,
.portal-preview-card p,
.portal-panel p,
.portal-confirm-card p {
  color: #314866;
  font-size: 15px;
}

.portal-track-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 0;
  width: 100%;
}

.portal-track-card li {
  color: #2f4563;
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 6px;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
}

.portal-track-card li::before {
  content: "•";
  color: var(--blue);
  font-weight: 800;
}

.portal-track-card {
  display: flex;
  flex-direction: column;
}

.portal-track-card ul {
  margin-top: auto;
}

.portal-form select,
.portal-form textarea {
  border: 1px solid rgba(13, 27, 42, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
}

.portal-form textarea {
  resize: vertical;
  min-height: 110px;
}

.portal-check-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #304866;
  font-size: 13px;
  font-weight: 500;
}

.portal-check-row input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.portal-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  color: #118fb6;
}

.portal-preview {
  background: #fff;
}

.portal-meta {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-weight: 700;
  color: #0d95bd;
}

.portal-action-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.portal-note {
  margin-top: 14px;
  color: #47617f;
  font-size: 13px;
}

.portal-shell {
  background:
    radial-gradient(84% 112% at 82% 18%, rgba(0, 180, 216, 0.18), transparent 68%),
    linear-gradient(155deg, #071425 0%, #0b1d33 58%, #0a2138 100%);
  color: var(--white);
  padding: 92px 0 46px;
}

.portal-shell-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.portal-shell h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(42px, 5.8vw, 74px);
  line-height: 1.04;
  color: #eef9ff;
  margin-bottom: 12px;
}

.portal-shell p {
  max-width: 760px;
  color: rgba(236, 247, 255, 0.9);
  font-size: 18px;
}

.portal-shell-status {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.portal-status-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(120, 203, 240, 0.32);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  color: #eaf7ff;
}

.portal-shell-summary {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.portal-shell .stat {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.portal-shell .stat .num {
  color: #f0fbff;
}

.portal-dashboard {
  background: var(--off);
}

.portal-dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.portal-panel h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.08;
  color: #132b47;
  margin-bottom: 8px;
}

.portal-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.portal-data-grid .portal-panel {
  padding: 20px;
}

.portal-dashboard .portal-list li {
  color: #314866;
}

.portal-dashboard .portal-list li::before {
  color: #0aa8d4;
}

.portal-support-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.portal-confirm {
  background: var(--off);
  min-height: calc(100vh - var(--nav-height));
  padding: 82px 0;
}

.portal-confirm-card {
  max-width: 760px;
  margin: 0 auto;
}

.portal-confirm-card h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  color: #132b47;
  margin-bottom: 12px;
}

.portal-confirm-steps {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 18px 0 8px;
}

.portal-confirm-steps li {
  color: #314866;
  font-size: 15px;
  line-height: 1.5;
}

.portal-confirm-steps li::before {
  content: "• ";
  color: #0aa8d4;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .portal-access-grid {
    grid-template-columns: 1fr;
  }

  body.elementor-page-299 .portal-access-grid > .e-con-inner {
    grid-template-columns: 1fr;
  }

  .portal-signin-card {
    margin-top: 0;
  }

  body.elementor-page-299 .portal-signin-card {
    margin-top: 0;
  }

  .portal-card {
    max-width: 720px;
    width: 100%;
  }

  .portal-track-grid,
  .portal-preview-grid,
  .portal-shell-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .portal-hero-grid,
  .portal-access-grid,
  .portal-dashboard-grid,
  .portal-data-grid,
  .portal-track-grid,
  .portal-preview-grid,
  .portal-shell-summary {
    grid-template-columns: 1fr;
  }

  body.elementor-page-299 .portal-access-grid > .e-con-inner,
  body.elementor-page-299 .portal-track-grid {
    grid-template-columns: 1fr;
  }

  .portal-hero,
  .portal-shell {
    padding: 82px 0 62px;
  }

  .portal-card,
  .userswp-login-shell,
  .userswp-register-shell {
    padding: 18px;
  }

  .portal-hero-card h3,
  .portal-card h3,
  .portal-track-card h3,
  .portal-preview-card h3,
  .portal-panel h3 {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .portal-track-grid,
  .portal-preview-grid,
  .portal-shell-summary {
    grid-template-columns: 1fr;
  }

  .portal-access-grid {
    gap: 18px;
  }

  .portal-card {
    padding: 16px;
  }

  .userswp-login-shell,
  .userswp-register-shell {
    padding: 14px;
  }

  .userswp-login-shell .uwp_login_links,
  .userswp-register-shell .uwp_login_links,
  .userswp-login-shell .uwp-forgot-links,
  .userswp-register-shell .uwp-forgot-links {
    flex-direction: column;
    align-items: flex-start;
  }
}
