/* =========================================================
   PM STRATEGIES — PREMIUM EDUCATION DESIGN SYSTEM
   Fonts: Plus Jakarta Sans + JetBrains Mono
   Palette: navy + emerald + cobalt
   ========================================================= */

:root {
  --bg: #06152f;
  --bg-soft: #0b1f47;
  --page-bg: #eef3f9;
  --page-bg-soft: #f6f8fc;
  --surface-light: #ffffff;
  --surface-light-soft: #f8fbff;
  --ink-dark: #0f172a;
  --ink-dark-soft: #334155;
  --ink-dark-muted: #64748b;
  --line-light: rgba(15, 23, 42, 0.12);
  --line-light-strong: rgba(15, 23, 42, 0.22);
  --surface: rgba(13, 35, 76, 0.7);
  --surface-solid: #102a5d;
  --ink: #edf3ff;
  --ink-soft: #b7c7e6;
  --ink-muted: #89a1c8;
  --line: rgba(150, 180, 230, 0.2);
  --line-strong: rgba(168, 201, 252, 0.36);
  --accent: #22c55e;
  --accent-glow: #86efac;
  --accent-soft: rgba(34, 197, 94, 0.17);
  --brand-blue: #3b82f6;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #f97373;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.75);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.5);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink-dark);
  background:
    radial-gradient(1100px 620px at -5% -10%, rgba(59, 130, 246, 0.13), transparent 58%),
    radial-gradient(1000px 640px at 105% 8%, rgba(16, 185, 129, 0.12), transparent 60%),
    linear-gradient(180deg, #eef3f9 0%, #f4f7fb 50%, #edf2f7 100%);
  background-color: var(--page-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(37, 99, 235, 0.24);
  color: #0b1730;
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ---- LAYOUT ---- */
.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, .font-syne {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

h1, .h1 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

h2, .h2 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.75rem);
}

h3, .h3 {
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 600;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
}

h4, .h4 {
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.83rem;
  font-weight: 700;
}

/* ---- GRADIENT TEXT ---- */
.red-gradient-text {
  background: linear-gradient(to right, #ffffff, #5ea9ff, #73f3b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent {
  color: var(--accent);
}

/* ---- NAVIGATION ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 25, 57, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 160;
  pointer-events: none;
  background: var(--mc-green);
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 0;
  object-fit: contain;
  border: 0;
  background: transparent;
  filter: brightness(0) invert(1);
}

.brand-copy {
  min-width: 0;
}

.brand-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1rem;
  line-height: 1.2;
  color: #fff;
}

.brand-sub {
  color: var(--ink-muted);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2px;
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  color: rgba(225, 237, 255, 0.74);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a[aria-current='page'] {
  color: #fff;
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(123, 178, 255, 0.45);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible,
.main-nav a:focus-visible,
.faq-q:focus-visible,
.chat-quick button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-blue), var(--accent));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(13, 37, 82, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: saturate(1.08) brightness(1.05);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(37, 99, 235, 0.45);
}

.hero .btn-secondary,
.section-dark .btn-secondary,
.principles-band .btn-secondary,
.cohort-stage-section .btn-secondary,
.footer .btn-secondary,
.hero-mini .btn-secondary {
  background: rgba(59, 130, 246, 0.14);
  color: #eaf2ff;
  border-color: rgba(146, 190, 255, 0.34);
}

.hero .btn-secondary:hover,
.section-dark .btn-secondary:hover,
.principles-band .btn-secondary:hover,
.cohort-stage-section .btn-secondary:hover,
.footer .btn-secondary:hover,
.hero-mini .btn-secondary:hover {
  background: rgba(59, 130, 246, 0.23);
  border-color: rgba(170, 206, 255, 0.55);
}

.btn-block {
  width: 100%;
}

.nav-cta.btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.72rem;
}

/* ---- MAIN ---- */
main {
  padding-top: 72px;
  padding-bottom: 0;
}

body.menu-open {
  overflow: hidden;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

.hero-s-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 8;
  pointer-events: none;
}

.hero-s-divider svg {
  display: block;
  width: 100%;
  height: 98px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(6, 21, 47, 0.84), rgba(9, 29, 67, 0.48) 45%, rgba(5, 20, 45, 0.82)),
    radial-gradient(800px 400px at 75% 15%, rgba(34, 197, 94, 0.2), transparent 62%);
  z-index: 1;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.02);
}

.hero-content-wrap {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.16);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 700;
  color: #9bf8bf;
  margin-bottom: 1.5rem;
}

.kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
  animation: bounce 2s infinite;
  z-index: 10;
}

.hero-scroll span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- STATS BAR ---- */
.stats-bar {
  padding: 4rem 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background:
    radial-gradient(900px 480px at 0% 0%, rgba(59, 130, 246, 0.08), transparent 56%),
    linear-gradient(90deg, #ffffff, #f4f8ff 55%, #f1fbf7);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-dark-muted);
}

/* ---- SECTIONS ---- */
.section {
  padding: 6rem 0;
  background: var(--surface-light);
}

.section-muted {
  background: var(--page-bg-soft);
}

.section-dark {
  background:
    radial-gradient(900px 500px at 85% 15%, rgba(34, 197, 94, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(10, 32, 72, 0.9), rgba(9, 27, 60, 0.92));
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.85rem;
  display: block;
}

.section-header h2 {
  margin-bottom: 1rem;
  color: var(--ink-dark);
}

.section-header p {
  color: var(--ink-dark-muted);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
}

.section-intro {
  color: var(--ink-dark-soft);
  margin-top: 0.5rem;
  font-weight: 300;
}

.section-dark .section-header h2,
.principles-band .section-header h2,
.cohort-stage-section .section-header h2,
.hero-mini .section-header h2 {
  color: #fff;
}

.section-dark .section-intro,
.section-dark .section-header p,
.principles-band .section-intro,
.principles-band .section-header p,
.cohort-stage-section .section-intro,
.cohort-stage-section .section-header p,
.hero-mini .section-intro,
.hero-mini .section-header p {
  color: var(--ink-soft);
}

/* ---- REVEAL ANIMATIONS ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---- GLASS CARDS ---- */
.glass-card {
  background: var(--surface-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.glass-card:hover {
  border-color: rgba(37, 99, 235, 0.32);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
}

.glass-card-static {
  background: var(--surface-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.section-dark .glass-card,
.section-dark .glass-card-static {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: none;
}

.principles-band .glass-card,
.cohort-stage-section .glass-card {
  background: rgba(10, 30, 66, 0.68);
  border-color: rgba(171, 209, 255, 0.25);
}

.section-dark .glass-card,
.section-dark .glass-card-static,
.principles-band .glass-card,
.cohort-stage-section .glass-card,
.hero-mini .glass-card,
.hero-mini .glass-card-static {
  color: var(--ink);
}

.section-dark .glass-card h1,
.section-dark .glass-card h2,
.section-dark .glass-card h3,
.section-dark .glass-card h4,
.section-dark .glass-card-static h1,
.section-dark .glass-card-static h2,
.section-dark .glass-card-static h3,
.section-dark .glass-card-static h4,
.principles-band .glass-card h1,
.principles-band .glass-card h2,
.principles-band .glass-card h3,
.principles-band .glass-card h4,
.cohort-stage-section .glass-card h1,
.cohort-stage-section .glass-card h2,
.cohort-stage-section .glass-card h3,
.cohort-stage-section .glass-card h4,
.hero-mini .glass-card h1,
.hero-mini .glass-card h2,
.hero-mini .glass-card h3,
.hero-mini .glass-card h4 {
  color: #f8fbff;
}

.section-dark .glass-card p,
.section-dark .glass-card-static p,
.principles-band .glass-card p,
.cohort-stage-section .glass-card p,
.hero-mini .glass-card p,
.hero-mini .glass-card-static p {
  color: var(--ink-soft);
}

/* Panel (legacy compat) */
.panel {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.panel-pad {
  padding: 2rem;
}

/* ---- GRID LAYOUTS ---- */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.bento-7 { grid-column: span 7; }
.bento-5 { grid-column: span 5; }
.bento-6 { grid-column: span 6; }
.bento-4 { grid-column: span 4; }
.bento-12 { grid-column: span 12; }

/* ---- FEATURE CARDS (3-column) ---- */
.feature-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface-light);
  border: 1px solid var(--line-light);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(96, 165, 250, 0.56);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--accent);
  color: #fff;
}

.feature-card h3 {
  color: var(--ink-dark);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--ink-dark-soft);
  font-size: 0.88rem;
  line-height: 1.6;
  font-weight: 300;
}

/* ---- COURSE CARDS ---- */
.course-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(37, 99, 235, 0.25);
  background: rgba(59, 130, 246, 0.08);
  color: #1d4ed8;
  border-radius: 999px;
  padding: 0.24rem 0.6rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.list-clean {
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  margin: 0.5rem 0;
  color: var(--ink-dark-soft);
  font-size: 0.9rem;
  padding-left: 1.2rem;
  position: relative;
}

.section-dark .list-clean li,
.principles-band .list-clean li,
.cohort-stage-section .list-clean li,
.hero-mini .list-clean li {
  color: var(--ink-soft);
}

.section-dark .pricing-table th,
.section-dark .pricing-table td {
  border-bottom-color: var(--line);
}

.section-dark .pricing-table th {
  color: var(--ink-muted);
}

.section-dark .pricing-table td {
  color: var(--ink-soft);
}

.list-clean li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* ---- METRICS ROW ---- */
.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.metric {
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: 0.8rem;
  background: var(--surface-light-soft);
}

.metric-label {
  color: var(--ink-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.68rem;
  font-weight: 600;
}

.metric-value {
  margin-top: 0.3rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-dark);
}

/* ---- PRICING TABLE ---- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.8rem;
}

.table-scroll {
  overflow-x: auto;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line-light);
  text-align: left;
  vertical-align: top;
}

.pricing-table th {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dark-muted);
  font-weight: 600;
}

.pricing-table td {
  color: var(--ink-dark-soft);
}

/* ---- PRICING CARDS (3-tier) ---- */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface-light);
  border: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.price-card.featured {
  border-color: rgba(80, 154, 255, 0.6);
  box-shadow: 0 0 60px rgba(59, 130, 246, 0.15);
  transform: scale(1.03);
  z-index: 2;
}

.price-card .popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.6rem;
}

.popular-badge span {
  background: linear-gradient(120deg, var(--brand-blue), var(--accent));
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-card h3 {
  color: var(--ink-dark);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink-dark);
  margin-bottom: 1.5rem;
}

.price-amount .period {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-dark-muted);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: var(--ink-dark-soft);
  font-size: 0.88rem;
}

.price-features li .check {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---- FORMS ---- */
.form-grid {
  display: grid;
  gap: 1rem;
}

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

label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-dark-muted);
  margin-bottom: 0.4rem;
}

.section-dark label,
.principles-band label,
.cohort-stage-section label,
.hero-mini label {
  color: var(--ink-muted);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  font-size: 0.9rem;
  color: var(--ink-dark);
  background: #fff;
  transition: all 0.3s ease;
}

input::placeholder,
textarea::placeholder {
  color: var(--ink-dark-muted);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  padding-right: 2rem;
}

select option {
  background: #fff;
  color: var(--ink-dark);
}

.section-dark input,
.section-dark select,
.section-dark textarea,
.principles-band input,
.principles-band select,
.principles-band textarea,
.cohort-stage-section input,
.cohort-stage-section select,
.cohort-stage-section textarea,
.hero-mini input,
.hero-mini select,
.hero-mini textarea {
  border-color: var(--line-strong);
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
}

.section-dark input::placeholder,
.section-dark textarea::placeholder,
.principles-band input::placeholder,
.principles-band textarea::placeholder,
.cohort-stage-section input::placeholder,
.cohort-stage-section textarea::placeholder,
.hero-mini input::placeholder,
.hero-mini textarea::placeholder {
  color: var(--ink-muted);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  margin-top: 0.7rem;
  font-size: 0.88rem;
}

.form-status.ok {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

/* ---- FAQ ---- */
.faq-item {
  border-top: 1px solid var(--line-light);
}

.faq-item:first-child {
  border-top: 0;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.1rem 0;
  font: inherit;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.3s ease;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--ink-dark-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-q::after {
  content: '-';
  color: var(--accent);
}

.faq-a {
  display: none;
  padding: 0 0 1.2rem;
  color: var(--ink-dark-soft);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

/* ---- NOTICE ---- */
.notice {
  border: 1px solid var(--line-light-strong);
  background: #f8fbff;
  border-radius: 14px;
  padding: 1rem;
  color: var(--ink-dark-soft);
}

.section-dark .notice,
.principles-band .notice,
.cohort-stage-section .notice,
.hero-mini .notice {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink-soft);
}

.notice.warn {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.05);
  color: var(--warning);
}

.notice a {
  color: var(--accent);
  text-decoration: underline;
}

/* ---- PORTAL AUTH ---- */
.auth-shell {
  max-width: 520px;
  margin: 0 auto;
}

.auth-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.auth-tab {
  flex: 1;
  border: 1px solid var(--line-light-strong);
  border-radius: 999px;
  background: #f8fbff;
  color: var(--ink-dark-soft);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.62rem 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.auth-tab:hover {
  border-color: rgba(96, 165, 250, 0.56);
}

.auth-tab.active {
  color: #fff;
  border-color: rgba(96, 165, 250, 0.65);
  background: rgba(59, 130, 246, 0.2);
}

.auth-hidden {
  display: none;
}

.auth-status {
  min-height: 1.4rem;
  margin-top: 0.6rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.auth-status.ok {
  color: var(--success);
}

.auth-status.error {
  color: var(--danger);
}

/* ---- PORTAL DASHBOARD ---- */
.portal-grid {
  display: grid;
  gap: 1rem;
}

.portal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.portal-head p {
  margin: 0.3rem 0 0;
  color: var(--ink-soft);
}

.enrollment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.enrollment-item {
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: #f8fbff;
  display: grid;
  gap: 0.4rem;
}

.enrollment-title {
  color: var(--ink-dark);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.enrollment-meta {
  color: var(--ink-dark-soft);
  font-size: 0.84rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  border: 1px solid var(--line-strong);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  width: fit-content;
}

.status-pill.active {
  border-color: rgba(16, 185, 129, 0.35);
  color: #34d399;
  background: rgba(16, 185, 129, 0.1);
}

.status-pill.refunded,
.status-pill.revoked {
  border-color: rgba(245, 158, 11, 0.35);
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.1);
}

/* ---- TIMELINE ---- */
.timeline-track {
  position: relative;
  padding-left: 2rem;
}

.timeline-track::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line-light);
}

.timeline-step {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: -1.65rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(37, 99, 235, 0.28);
  background: var(--surface-light);
  z-index: 2;
  transition: all 0.4s ease;
}

.timeline-step:hover::before {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.45);
}

.timeline-step h3 {
  color: var(--ink-dark);
  margin-bottom: 0.5rem;
}

.timeline-step p {
  color: var(--ink-dark-soft);
  font-size: 0.9rem;
  font-weight: 300;
}

/* ---- INSTRUCTOR CARDS ---- */
.instructor-card {
  text-align: center;
}

.instructor-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(34, 197, 94, 0.28));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  border: 2px solid rgba(124, 198, 255, 0.45);
  overflow: hidden;
}

.instructor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor-card h3 {
  color: var(--ink-dark);
  margin-bottom: 0.25rem;
}

.instructor-role {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.instructor-card p {
  color: var(--ink-dark-soft);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-brand .accent-dot {
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 6px;
}

.footer-brand span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}

.footer p {
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-weight: 300;
  max-width: 280px;
}

.footer-links-grid {
  display: flex;
  gap: 4rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.footer-col a {
  display: block;
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-weight: 300;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.75rem;
}

.small {
  font-size: 0.84rem;
  color: var(--ink-soft);
}

/* ---- HERO GRID (subpages) ---- */
.hero-mini {
  padding: 8rem 0 4rem;
  text-align: left;
  position: relative;
  background:
    radial-gradient(780px 420px at 85% 5%, rgba(34, 197, 94, 0.17), transparent 62%),
    linear-gradient(180deg, rgba(8, 26, 59, 0.96), rgba(7, 22, 49, 0.98));
  border-bottom: 1px solid rgba(173, 210, 255, 0.26);
}

.hero-mini::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.16) 0%, transparent 72%);
  pointer-events: none;
}

.hero-mini .section-label {
  margin-bottom: 1rem;
}

.hero-mini h1 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.hero-mini p {
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 520px;
  margin: 0;
}

/* ---- CHATBOT ---- */
.chat-launcher {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 130;
}

.chat-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.38);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.chat-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(34, 197, 94, 0.52);
}

.chat-fab .sparkle-lg {
  display: block;
}

.chat-fab .sparkle-sm {
  display: block;
  opacity: 0.7;
}

.chat-fab .sparkle-sm-1 {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.chat-fab .sparkle-sm-2 {
  position: absolute;
  top: 10px;
  right: 9px;
}

.chat-panel {
  position: fixed;
  right: 1rem;
  bottom: 4.8rem;
  width: min(380px, calc(100vw - 1.2rem));
  max-height: 70vh;
  z-index: 140;
  display: none;
  flex-direction: column;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #111;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.chat-panel.open {
  display: flex;
}

.chat-head {
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.chat-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.chat-log {
  padding: 0.75rem;
  overflow-y: auto;
  flex: 1;
  background: #0a0a0a;
}

.chat-msg {
  margin-bottom: 0.62rem;
  padding: 0.62rem 0.68rem;
  border-radius: 12px;
  max-width: 90%;
  line-height: 1.45;
  font-size: 0.9rem;
}

.chat-msg.bot {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--ink);
}

.chat-msg.user {
  margin-left: auto;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #fff;
}

.chat-input-wrap {
  border-top: 1px solid var(--line);
  background: #111;
  padding: 0.55rem;
  display: grid;
  gap: 0.45rem;
}

.chat-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem;
}

.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.chat-quick button {
  border: 1px solid rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.13);
  color: var(--accent-glow);
  font-size: 0.73rem;
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chat-quick button:hover {
  background: rgba(59, 130, 246, 0.22);
}

/* Grid pattern BG */
.grid-bg {
  position: relative;
}

.grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
}

/* ---- MANYCHAT-INSPIRED HOME COMPONENTS ---- */
.hero-manychat {
  max-width: 1120px;
}

.hero-floating {
  margin: 1.4rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.float-chip {
  border: 1px solid rgba(191, 236, 255, 0.5);
  background: rgba(8, 18, 43, 0.78);
  color: #eaf2ff;
  border-radius: 999px;
  min-width: 112px;
  text-align: center;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 0.42rem 0.72rem;
  box-shadow: 0 10px 30px rgba(0, 10, 32, 0.3);
  animation: float-bob 6s ease-in-out infinite;
}

.float-chip:nth-child(2) { animation-delay: 0.8s; }
.float-chip:nth-child(3) { animation-delay: 1.6s; }
.float-chip:nth-child(4) { animation-delay: 2.4s; }

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-showcase {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 1rem;
  align-items: stretch;
}

.mock-browser {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(186, 217, 255, 0.34);
  background: rgba(7, 20, 45, 0.84);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.56);
  min-height: 420px;
  position: relative;
}

.mock-browser::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(186, 217, 255, 0.42);
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
}

.mock-bar {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem;
  background: rgba(239, 246, 255, 0.13);
  border-bottom: 1px solid rgba(191, 220, 255, 0.24);
  position: absolute;
  top: 3.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 62%;
  border-radius: 999px;
  z-index: 3;
}

.mock-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(219, 234, 254, 0.7);
}

.mock-bar p {
  margin: 0 auto;
  color: rgba(222, 236, 255, 0.85);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.mock-screen {
  position: absolute;
  inset: 0;
}

.mock-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mock-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.9rem 1.3rem 1.1rem;
  display: grid;
  gap: 0.55rem;
  background: linear-gradient(180deg, rgba(3, 9, 23, 0) 0%, rgba(4, 12, 30, 0.84) 36%, rgba(4, 12, 30, 0.92) 100%);
}

.mock-overlay div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(183, 221, 255, 0.2);
  border-radius: 14px;
  padding: 0.45rem 0.65rem;
  background: rgba(6, 22, 49, 0.7);
}

.mock-overlay strong {
  color: #fff;
  font-size: 0.82rem;
}

.mock-overlay p {
  margin: 0;
  color: rgba(198, 221, 255, 0.86);
  font-size: 0.7rem;
}

.mock-phone {
  border-radius: 24px;
  min-height: 420px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(225, 241, 255, 0.95));
  color: #06152f;
  padding: 1.1rem 1rem 1.2rem;
  box-shadow: 0 25px 60px rgba(4, 12, 30, 0.5);
  position: relative;
  overflow: hidden;
}

.mock-phone::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(15, 23, 42, 0.2);
  border-radius: 16px;
  pointer-events: none;
}

.mock-notch {
  display: none;
}

.mock-phone-kicker {
  margin-top: 0.2rem;
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #2563eb;
}

.mock-phone h3 {
  margin: 0.55rem 0;
  color: #020617;
  font-size: 1.05rem;
  line-height: 1.1;
}

.mock-phone-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.mock-phone-pills span {
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: #fff;
  padding: 0.24rem 0.55rem;
  font-size: 0.64rem;
  font-weight: 700;
  color: #0f172a;
}

.ticker-strip {
  overflow: hidden;
  border-top: 1px solid rgba(191, 219, 254, 0.18);
  border-bottom: 1px solid rgba(191, 219, 254, 0.18);
  background: rgba(7, 20, 45, 0.72);
}

.ticker-track {
  width: max-content;
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 0;
  animation: ticker-loop 34s linear infinite;
}

.ticker-strip:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-pill {
  background: #f8fbff;
  border: 1px solid rgba(10, 30, 71, 0.15);
  color: #0f172a;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ---- HOME HERO REFINEMENT ---- */
.home-page .site-header {
  background: rgba(249, 252, 255, 0.88);
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.home-page .brand img {
  filter: none;
  border-color: rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.75);
}

.home-page .brand-title {
  color: #111827;
}

.home-page .brand-sub {
  color: #64748b;
}

.home-page .menu-toggle {
  border-color: rgba(15, 23, 42, 0.18);
}

.home-page .menu-toggle span,
.home-page .menu-toggle span::before,
.home-page .menu-toggle span::after {
  background: #0f172a;
}

.home-page .main-nav a {
  color: rgba(17, 24, 39, 0.78);
}

.home-page .main-nav a:hover,
.home-page .main-nav a[aria-current='page'] {
  color: #111827;
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(59, 130, 246, 0.22);
}

.home-page .main-nav a.nav-utility {
  border-color: rgba(59, 130, 246, 0.26);
  background: rgba(255, 255, 255, 0.76);
  color: #1d4ed8;
}

.home-page .main-nav a.nav-utility:hover {
  background: rgba(37, 99, 235, 0.11);
}

.home-page .nav-cta.btn {
  background: #2643b3;
  border-color: #2643b3;
  color: #fff;
  box-shadow: 0 12px 28px rgba(38, 67, 179, 0.28);
}

.home-page .nav-cta.btn:hover {
  background: #1f3899;
  border-color: #1f3899;
  filter: none;
}

.home-page .hero {
  min-height: 90vh;
  padding: 6.4rem 0 3.8rem;
  background: linear-gradient(180deg, #f7f9fc 0%, #f4f8ff 72%, #f4f8ff 100%);
}

.home-page .hero-bg::after {
  background:
    linear-gradient(180deg, rgba(249, 252, 255, 0.93), rgba(246, 250, 255, 0.88) 36%, rgba(243, 248, 255, 0.94)),
    radial-gradient(1200px 520px at 50% 10%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18) 55%, transparent 75%);
}

.home-page .hero-bg video {
  filter: saturate(0.82) contrast(0.82) brightness(0.9);
}

.home-page .hero-content-wrap {
  max-width: 1040px;
}

.home-page .kicker {
  border-color: rgba(37, 99, 235, 0.24);
  background: rgba(255, 255, 255, 0.76);
  color: #1f3a8a;
  margin-bottom: 1.2rem;
}

.home-page .kicker-dot {
  background: #1d4ed8;
  animation: none;
}

.home-page .hero h1 {
  margin-bottom: 1rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  color: #111827;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.028em;
}

.home-page .hero-emphasis {
  color: #2643b3;
}

.home-page .hero p {
  color: #253043;
  font-size: 1.02rem;
  font-weight: 400;
  max-width: 620px;
  line-height: 1.62;
  margin: 0 auto 1.85rem;
}

.home-page .hero-actions {
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.home-page .hero .btn-primary {
  background: #2643b3;
  color: #fff;
  border-color: #2643b3;
  box-shadow: 0 14px 30px rgba(38, 67, 179, 0.24);
}

.home-page .hero .btn-primary:hover {
  background: #1f3899;
  border-color: #1f3899;
  filter: none;
}

.home-page .hero .btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: #1f2937;
  border-color: rgba(31, 41, 55, 0.22);
}

.home-page .hero .btn-secondary:hover {
  background: #fff;
  color: #0f172a;
  border-color: rgba(37, 99, 235, 0.34);
}

.home-page .hero-floating {
  margin: 0 auto;
  gap: 0.45rem;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.72);
}

.home-page .float-chip {
  border: 1px solid rgba(148, 163, 184, 0.33);
  background: #f8fafc;
  color: #334155;
  min-width: 0;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 0.38rem 0.68rem;
  animation: none;
  box-shadow: none;
}

.home-page .hero-showcase {
  margin-top: 1.35rem;
  grid-template-columns: minmax(0, 1fr) 282px;
  gap: 1rem;
  align-items: stretch;
}

.home-page .mock-browser,
.home-page .mock-phone {
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home-page .mock-browser {
  min-height: 390px;
  background: rgba(255, 255, 255, 0.72);
}

.home-page .mock-browser::before {
  inset: 10px;
  border-color: rgba(255, 255, 255, 0.55);
}

.home-page .mock-bar {
  top: 1rem;
  width: 70%;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.home-page .mock-bar span {
  background: rgba(148, 163, 184, 0.92);
}

.home-page .mock-bar p {
  color: #475569;
}

.home-page .mock-overlay {
  padding: 1rem 1.15rem;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0) 0%, rgba(10, 27, 60, 0.32) 56%, rgba(7, 22, 49, 0.56) 100%);
}

.home-page .mock-phone {
  min-height: 390px;
  padding: 1.05rem;
  background: rgba(255, 255, 255, 0.75);
}

.home-page .mock-phone::before {
  border-color: rgba(148, 163, 184, 0.35);
}

.home-page .mock-phone-kicker {
  color: #1e40af;
}

.home-page .mock-phone h3 {
  color: #111827;
  margin: 0.45rem 0 0.75rem;
}

.home-page .mock-phone-pills span {
  border-color: rgba(59, 130, 246, 0.25);
  background: #eef2ff;
  color: #1e3a8a;
}

.home-page .hero-scroll {
  opacity: 0.55;
}

.home-page .hero-scroll span {
  color: #475569;
}

@keyframes ticker-loop {
  from { transform: translateX(0); }
  to { transform: translateX(-42%); }
}

.section-light {
  background:
    radial-gradient(1000px 500px at 100% 0%, rgba(59, 130, 246, 0.1), transparent 62%),
    radial-gradient(800px 500px at 0% 100%, rgba(16, 185, 129, 0.11), transparent 58%),
    #f3f7ff;
  color: #0f172a;
}

.section-light .section-label {
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.18);
  background: rgba(255, 255, 255, 0.7);
}

.section-light h2 {
  color: #020617;
  font-size: clamp(2rem, 4.6vw, 4rem);
  letter-spacing: -0.03em;
}

.section-light p {
  color: #334155;
}

.manychat-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}

.manychat-copy {
  background: #f8fbff;
  border: 1px solid rgba(15, 23, 42, 0.13);
  border-radius: 20px;
  padding: 1.4rem;
}

.manychat-pills {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.manychat-pills span {
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: #0f172a;
  color: #f8fbff;
  padding: 0.32rem 0.65rem;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.manychat-preview {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 20px;
  display: grid;
  overflow: hidden;
}

.manychat-preview-top {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.manychat-preview-top p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.62rem;
  color: #475569;
  font-weight: 700;
}

.manychat-preview-top span {
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  font-size: 0.62rem;
  padding: 0.2rem 0.5rem;
  font-weight: 700;
}

.manychat-preview-body {
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
}

.pill-dark {
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(2, 6, 23, 0.15);
  background: #fff;
  color: #020617;
  padding: 0.36rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pill-dark.active {
  background: #0f172a;
  color: #fff;
}

.principles-band {
  background:
    linear-gradient(180deg, rgba(3, 10, 24, 0.95), rgba(3, 11, 28, 0.98)),
    radial-gradient(900px 500px at 80% 0%, rgba(59, 130, 246, 0.14), transparent 62%);
}

.principles-band .section-header {
  margin-bottom: 1.2rem;
}

.principle-list {
  border-top: 1px solid rgba(219, 234, 254, 0.23);
}

.principle-row {
  display: grid;
  grid-template-columns: 62px 1.2fr 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(219, 234, 254, 0.23);
}

.principle-number {
  color: #22c55e;
  font-weight: 800;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.principle-row h3 {
  margin: 0;
  color: #f8fbff;
  letter-spacing: -0.01em;
  font-size: clamp(1.15rem, 2.4vw, 1.85rem);
}

.principle-row p {
  margin: 0;
  color: #d6e6ff;
  font-size: 0.95rem;
}

.cohort-stage-section {
  background:
    radial-gradient(900px 500px at 5% 5%, rgba(16, 185, 129, 0.12), transparent 64%),
    linear-gradient(180deg, rgba(8, 23, 51, 0.95), rgba(8, 26, 58, 0.98));
}

.cohort-tabs {
  display: inline-flex;
  gap: 0.45rem;
  border: 1px solid rgba(191, 219, 254, 0.28);
  background: rgba(8, 22, 50, 0.76);
  border-radius: 999px;
  padding: 0.3rem;
  margin-bottom: 0.95rem;
}

.cohort-tabs button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(230, 241, 255, 0.76);
  padding: 0.45rem 0.82rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.66rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cohort-tabs button.active,
.cohort-tabs button:hover {
  background: #f8fbff;
  color: #0f172a;
}

.cohort-panels {
  position: relative;
  min-height: 0;
}

.cohort-panel {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(190, 221, 255, 0.34);
  background: linear-gradient(140deg, rgba(7, 23, 49, 0.93), rgba(8, 29, 66, 0.9));
  padding: 1.05rem;
  display: none;
  gap: 0.7rem;
  align-content: start;
}

.cohort-panel.active {
  display: grid;
  animation: cohort-fade 0.3s ease;
}

.cohort-panel h3 {
  margin: 0;
  color: #f8fbff;
}

.cohort-panel p {
  margin: 0;
  color: var(--ink-soft);
}

.cohort-panel .list-clean {
  margin-top: 0.1rem;
}

.cohort-panel .btn {
  margin-top: 0.15rem;
}

@keyframes cohort-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.24s ease;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1080px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 0.5rem;
    right: 0.5rem;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    padding: 0.6rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .home-page .main-nav {
    border-color: rgba(148, 163, 184, 0.35);
    background: rgba(250, 252, 255, 0.96);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
  }

  .home-page .main-nav a {
    color: #334155;
  }

  .home-page .main-nav a.nav-utility {
    color: #1e3a8a;
  }

  .hero-grid,
  .grid.two,
  .grid.three,
  .metric-row,
  .form-grid.two,
  .pricing-cards,
  .stats-grid,
  .bento-grid,
  .manychat-grid {
    grid-template-columns: 1fr;
  }

  .bento-7, .bento-5, .bento-6, .bento-4, .bento-12 {
    grid-column: span 1;
  }

  .price-card.featured {
    transform: none;
  }

  .nav-cta {
    display: none;
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer-links-grid {
    gap: 2rem;
  }

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

  .home-page .hero-showcase {
    grid-template-columns: 1fr;
  }

  .mock-phone {
    max-width: 320px;
    justify-self: center;
  }

  .home-page .mock-phone {
    max-width: 360px;
    width: 100%;
  }

  .principle-row {
    grid-template-columns: 42px 1fr;
  }

  .principle-row p {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 1.2rem));
  }

  .hero {
    padding: 7rem 0 3rem;
    min-height: auto;
  }

  .home-page .hero {
    padding: 6.8rem 0 2.9rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .home-page .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
  }

  .home-page .hero p {
    font-size: 0.94rem;
    margin-bottom: 1.4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-floating {
    justify-content: center;
  }

  .home-page .hero-floating {
    padding: 0.38rem;
  }

  .float-chip {
    font-size: 0.6rem;
    min-width: 96px;
    padding: 0.34rem 0.5rem 0.22rem;
  }

  .home-page .float-chip {
    font-size: 0.56rem;
    min-width: 0;
    padding: 0.32rem 0.5rem;
  }

  .ticker-track {
    animation-duration: 22s;
  }

  .principle-number {
    font-size: 1.2rem;
  }

  .cohort-tabs {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

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

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

  .chat-panel {
    right: 0.55rem;
    left: 0.55rem;
    width: auto;
  }

  .chat-launcher {
    right: 0.55rem;
    bottom: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  .ticker-track,
  .float-chip {
    animation: none !important;
  }

  [data-tilt],
  .cohort-panel {
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   MANYCHAT-INSPIRED HERO + LOGO TREATMENT
   Layered overrides — additive, only affect .mc-mode pages
   ========================================================= */

:root {
  --mc-green: #22c55e;
  --mc-green-hover: #16a34a;
  --mc-green-glow: #4ade80;
  --mc-cream: #F5F3EE;
  --mc-ink: #0E0E0E;
  --mc-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ---- NAV: transparent over hero, swap solid on scroll ---- */
.mc-mode .site-header.mc-nav {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
.mc-mode.is-scrolled .site-header.mc-nav {
  background: rgba(14, 14, 14, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mc-mode .site-header.mc-nav .main-nav a,
.mc-mode .site-header.mc-nav .nav-utility {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.mc-mode .site-header.mc-nav .main-nav a:hover {
  color: var(--mc-green);
}

/* ---- LOGO: creative sub-brand lockup ---- */
.mc-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
}
.mc-lockup::before {
  content: '';
  position: absolute;
  left: -6px; top: 50%;
  width: 3px; height: 28px;
  background: var(--mc-green);
  border-radius: 2px;
  transform: translateY(-50%);
  box-shadow: 0 0 0 0 rgba(255, 63, 164, 0.5);
  animation: mcPulse 2.6s ease-in-out infinite;
}
@keyframes mcPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 63, 164, 0.55); }
  50%      { box-shadow: 0 0 0 8px rgba(255, 63, 164, 0); }
}
.mc-lockup__mark {
  width: 36px; height: 36px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}
.mc-lockup__copy {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  line-height: 1;
}
.mc-lockup__wordmark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: #fff;
  text-transform: none;
}
.mc-lockup__tag {
  font-family: var(--mc-mono);
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mc-green);
  padding: 3px 7px;
  border: 1px solid rgba(255, 63, 164, 0.45);
  border-radius: 999px;
  background: rgba(255, 63, 164, 0.08);
}
.mc-mode.is-scrolled .mc-lockup__wordmark { color: #fff; }

/* ---- HERO: full-bleed, video-first ---- */
.hero.hero-mc {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: flex-end;
  background: var(--mc-ink);
}
.hero-mc .hero-bg.hero-mc__bg { z-index: 0; }
.hero-mc .hero-bg.hero-mc__bg::after {
  background:
    linear-gradient(180deg, rgba(14,14,14,0.55) 0%, rgba(14,14,14,0.05) 28%, rgba(14,14,14,0.05) 55%, rgba(14,14,14,0.78) 100%);
}
.hero-mc .hero-bg.hero-mc__bg video {
  filter: saturate(0.92) contrast(1.04) brightness(0.92);
}

/* Oversized PMS logo as a creative watermark behind the type */
.hero-mc__watermark {
  position: absolute;
  inset: auto 0 18% 0;
  display: flex;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.18;
}
.hero-mc__watermark img {
  width: min(78vw, 980px);
  height: auto;
  filter: drop-shadow(0 0 60px rgba(255, 63, 164, 0.35));
}

/* Hero content sits bottom-left, anchored, ManyChat-style */
.hero-mc__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  text-align: left;
  padding: 0 0 12vh 0;
  color: #fff;
}

.hero-mc__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.6rem;
  padding: 0;
  font-family: var(--mc-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.hero-mc__eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--mc-green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 63, 164, 0.18);
}

.hero-mc__display {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 7.4vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 1.6rem;
  max-width: 16ch;
  text-wrap: balance;
}
.hero-mc__display-em {
  position: relative;
  display: inline-block;
  color: var(--mc-green);
  font-style: normal;
}
.hero-mc__display-em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.18em;
  background: rgba(255, 63, 164, 0.18);
  z-index: -1;
  border-radius: 4px;
}

.hero-mc__sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 56ch;
  margin: 0 0 2.2rem;
}

/* Hero CTAs — pill buttons */
.hero-mc__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.btn.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  font-family: var(--mc-mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1.5px solid transparent;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}
.btn.btn-pill svg { transition: transform 0.22s ease; }
.btn.btn-pill:hover svg { transform: translateX(3px); }
.btn-pill--primary {
  background: var(--mc-green);
  color: #fff;
}
.btn-pill--primary:hover {
  background: var(--mc-green-hover);
  transform: translateY(-1px);
}
.btn-pill--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-pill--ghost:hover {
  background: #fff;
  color: var(--mc-ink);
  border-color: #fff;
}

/* Bottom marquee */
.hero-mc__marquee {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 6;
  padding: 0.95rem 0;
  background: var(--mc-green);
  border-top: 1px solid rgba(0,0,0,0.18);
  border-bottom: 1px solid rgba(0,0,0,0.18);
  overflow: hidden;
  transform: rotate(-1.2deg);
  margin: 0 -2vw -8px;
  width: 104vw;
}
.hero-mc__marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2.2rem;
  white-space: nowrap;
  animation: mcMarquee 32s linear infinite;
  will-change: transform;
}
.hero-mc__marquee-track span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
}
.hero-mc__marquee-track span[aria-hidden="true"] {
  font-size: 0.95rem;
  opacity: 0.85;
}
@keyframes mcMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-mc__scroll {
  bottom: 5.2rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ---- Section that holds the relocated mock browser/phone ---- */
.mc-showcase-section { background: var(--mc-cream); }
.mc-showcase-section .section-header h2 { color: var(--mc-ink); }
.mc-showcase-section .section-header p,
.mc-showcase-section .section-label { color: #4a4a4a; }
.mc-showcase-section .section-label { color: var(--mc-green); }
.mc-chips {
  position: static;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: -1.5rem auto 2.5rem;
}
.mc-showcase {
  position: static;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

/* ---- Mobile ---- */
@media (max-width: 900px) {
  .hero-mc__content { padding: 0 0 16vh 0; text-align: left; }
  .hero-mc__display { font-size: clamp(2.4rem, 9vw, 3.6rem); }
  .hero-mc__watermark { opacity: 0.12; inset: auto 0 28% 0; }
  .mc-showcase { grid-template-columns: 1fr; }
  .mc-lockup__copy { display: none; }
  .mc-lockup::before { display: none; }
}

@media (max-width: 600px) {
  .hero-mc__marquee { padding: 0.7rem 0; }
  .hero-mc__marquee-track span { font-size: 1rem; }
  .hero-mc__scroll { display: none; }
}

/* =========================================================
   V2 REDESIGN — NAVY / GREEN / LIGHT GRAY
   Navy-dominant, Plus Jakarta Sans everywhere, no gradients, no pink
   ========================================================= */

:root {
  --v2-navy: #0A1A33;
  --v2-navy-2: #0E2344;
  --v2-navy-3: #142C54;
  --v2-navy-deep: #06122A;
  --v2-green: #22c55e;
  --v2-green-2: #16a34a;
  --v2-green-soft: rgba(34, 197, 94, 0.14);
  --v2-gray: #EEF1F5;
  --v2-gray-2: #E3E7ED;
  --v2-gray-3: #F6F8FB;
  --v2-ink: #0A1A33;
  --v2-ink-soft: #465571;
  --v2-line-dark: rgba(255, 255, 255, 0.08);
  --v2-line-dark-strong: rgba(255, 255, 255, 0.16);
}

/* -- Global body + backgrounds -- */
.mc-mode body,
body.mc-mode {
  background: var(--v2-navy);
  color: #ffffff;
}
body.mc-mode {
  background:
    radial-gradient(1100px 680px at 12% -10%, rgba(34, 197, 94, 0.08), transparent 60%),
    radial-gradient(900px 600px at 100% 110%, rgba(34, 197, 94, 0.06), transparent 60%),
    var(--v2-navy);
}

/* -- Typography: Plus Jakarta Sans for headings + display UI -- */
body.mc-mode h1,
body.mc-mode h2,
body.mc-mode h3,
body.mc-mode h4,
body.mc-mode h5,
body.mc-mode .stat-value,
body.mc-mode .brand-title,
body.mc-mode .mc-lockup__wordmark,
body.mc-mode .footer-brand span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.018em;
}
body.mc-mode h1 { font-weight: 800; }
body.mc-mode h2 { font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 1.05; }
body.mc-mode h3 { font-weight: 700; font-size: clamp(1.25rem, 1.8vw, 1.6rem); line-height: 1.15; }

/* -- Section rhythm: dark-first with light gray padding sections -- */
body.mc-mode .section { background: var(--v2-navy); color: #fff; padding: 7rem 0; }
body.mc-mode .section-muted { background: var(--v2-navy-2); color: #fff; }
body.mc-mode .section-dark {
  background: var(--v2-navy-deep);
  color: #fff;
}
body.mc-mode .section-light {
  background: var(--v2-gray-3);
  color: var(--v2-ink);
}
body.mc-mode .section-light h1,
body.mc-mode .section-light h2,
body.mc-mode .section-light h3,
body.mc-mode .section-light h4,
body.mc-mode .section-light p { color: var(--v2-ink); }
body.mc-mode .section-light .section-intro,
body.mc-mode .section-light .section-header p { color: var(--v2-ink-soft); }

body.mc-mode .section-header h2 { color: #fff; }
body.mc-mode .section-header p { color: rgba(255, 255, 255, 0.72); max-width: 60ch; margin-left: auto; margin-right: auto; }
body.mc-mode .section-light .section-header h2 { color: var(--v2-ink); }
body.mc-mode .section-light .section-header p { color: var(--v2-ink-soft); }

body.mc-mode .section-label {
  color: var(--v2-green);
  font-family: var(--mc-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
}

/* Remove blue/green gradient backgrounds on home stats + sections */
body.mc-mode .stats-bar {
  background: var(--v2-navy-2);
  border-top: 1px solid var(--v2-line-dark);
  border-bottom: 1px solid var(--v2-line-dark);
  padding: 4.5rem 0;
}
body.mc-mode .stats-bar .stat-value { color: #fff; }
body.mc-mode .stats-bar .stat-label { color: rgba(255, 255, 255, 0.6); }

body.mc-mode .grid-bg::before,
body.mc-mode .grid-bg::after { display: none; }
body.mc-mode .grid-bg { background: var(--v2-navy-deep); }

/* -- Cards on dark -- */
body.mc-mode .glass-card,
body.mc-mode .glass-card-static {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--v2-line-dark);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #fff;
  border-radius: 20px;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
body.mc-mode .glass-card:hover {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.05);
  transform: translateY(-2px);
}
body.mc-mode .glass-card h1,
body.mc-mode .glass-card h2,
body.mc-mode .glass-card h3,
body.mc-mode .glass-card h4 { color: #fff; }
body.mc-mode .glass-card p,
body.mc-mode .glass-card li { color: rgba(255, 255, 255, 0.78); }
body.mc-mode .glass-card .section-label { text-align: left; }
body.mc-mode .glass-card strong { color: #fff !important; }
body.mc-mode .list-clean li { color: rgba(255, 255, 255, 0.82); }
body.mc-mode .list-clean li::before { color: var(--v2-green) !important; }

/* FAQ items on dark */
body.mc-mode .faq-item { padding: 1.6rem 1.8rem; margin-bottom: 0.85rem; }
body.mc-mode .faq-q { color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.55rem; }
body.mc-mode .faq-a { color: rgba(255, 255, 255, 0.78); line-height: 1.65; }
body.mc-mode .faq-a a { color: var(--v2-green); border-bottom: 1px solid rgba(34, 197, 94, 0.35); }

/* Form inputs on dark */
body.mc-mode label { color: rgba(255, 255, 255, 0.75); font-family: var(--mc-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
body.mc-mode input, body.mc-mode select, body.mc-mode textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}
body.mc-mode input:focus, body.mc-mode select:focus, body.mc-mode textarea:focus {
  border-color: var(--v2-green);
  outline: none;
  background: rgba(255, 255, 255, 0.06);
}
body.mc-mode input::placeholder, body.mc-mode textarea::placeholder { color: rgba(255, 255, 255, 0.4); }

/* Pricing + generic tables */
body.mc-mode .pricing-table { color: #fff; width: 100%; }
body.mc-mode .pricing-table th,
body.mc-mode .pricing-table td { border-bottom: 1px solid var(--v2-line-dark); color: rgba(255, 255, 255, 0.85); padding: 1rem 1.2rem; }
body.mc-mode .pricing-table th { color: var(--v2-green); font-family: var(--mc-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* Badges */
body.mc-mode .badge {
  background: rgba(34, 197, 94, 0.12);
  color: var(--v2-green);
  border: 1px solid rgba(34, 197, 94, 0.32);
  font-family: var(--mc-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Notice box */
body.mc-mode .notice {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  padding: 1rem 1.2rem;
}
body.mc-mode .notice a { color: var(--v2-green); }

/* =========================================================
   V3 POLISH — MORE GREEN, MORE LIGHT GRAY, LOGO WATERMARKS
   ========================================================= */

/* --- HERO: force any descendant text white (no black overrides from inline styles) --- */
body.mc-mode .hero.hero-mc,
body.mc-mode .hero.hero-mc *:not(.btn-pill--primary):not(.btn-pill--primary *) {
  color: #ffffff;
}
body.mc-mode .hero.hero-mc .hero-mc__sub { color: rgba(255, 255, 255, 0.82); }
body.mc-mode .hero.hero-mc .hero-mc__eyebrow { color: rgba(255, 255, 255, 0.88); }
body.mc-mode .hero.hero-mc .hero-mc__display-em { color: var(--v2-navy-deep); }
body.mc-mode .hero.hero-mc .btn-pill--primary { color: #06122A; }
body.mc-mode .hero.hero-mc .btn-pill--ghost { color: #fff; }
body.mc-mode .hero.hero-mc .btn-pill--ghost:hover { color: var(--v2-navy); }

/* --- LIGHT-GRAY SECTION: premium warm-gray treatment --- */
body.mc-mode .section-light,
body.mc-mode .v2-section-gray {
  background: var(--v2-gray-3);
  color: var(--v2-ink);
  position: relative;
  border-top: 1px solid rgba(10, 26, 51, 0.06);
  border-bottom: 1px solid rgba(10, 26, 51, 0.06);
}
body.mc-mode .section-light h1,
body.mc-mode .section-light h2,
body.mc-mode .section-light h3,
body.mc-mode .section-light h4,
body.mc-mode .v2-section-gray h1,
body.mc-mode .v2-section-gray h2,
body.mc-mode .v2-section-gray h3,
body.mc-mode .v2-section-gray h4 { color: var(--v2-ink); }
body.mc-mode .section-light p,
body.mc-mode .v2-section-gray p,
body.mc-mode .section-light li,
body.mc-mode .v2-section-gray li { color: #3e4b63; }
body.mc-mode .section-light .section-label,
body.mc-mode .v2-section-gray .section-label { color: var(--v2-green-2); }
body.mc-mode .section-light .glass-card,
body.mc-mode .v2-section-gray .glass-card,
body.mc-mode .section-light .feature-card,
body.mc-mode .v2-section-gray .feature-card {
  background: #ffffff;
  border: 1px solid rgba(10, 26, 51, 0.08);
  box-shadow: 0 20px 60px rgba(10, 26, 51, 0.06);
  color: var(--v2-ink);
}
body.mc-mode .section-light .glass-card h3,
body.mc-mode .section-light .glass-card h2,
body.mc-mode .v2-section-gray .glass-card h3,
body.mc-mode .v2-section-gray .glass-card h2,
body.mc-mode .section-light .feature-card h3,
body.mc-mode .v2-section-gray .feature-card h3 { color: var(--v2-ink); }
body.mc-mode .section-light .glass-card p,
body.mc-mode .section-light .glass-card li,
body.mc-mode .v2-section-gray .glass-card p,
body.mc-mode .v2-section-gray .glass-card li,
body.mc-mode .section-light .feature-card p,
body.mc-mode .v2-section-gray .feature-card p { color: #4a5870; }
body.mc-mode .section-light .glass-card strong,
body.mc-mode .v2-section-gray .glass-card strong,
body.mc-mode .section-light .feature-card strong,
body.mc-mode .v2-section-gray .feature-card strong { color: var(--v2-ink) !important; }
body.mc-mode .section-light .list-clean li::before,
body.mc-mode .v2-section-gray .list-clean li::before { color: var(--v2-green-2) !important; }
body.mc-mode .section-light .feature-icon,
body.mc-mode .v2-section-gray .feature-icon {
  background: rgba(34, 197, 94, 0.12);
  color: var(--v2-green-2);
  border-color: rgba(34, 197, 94, 0.35);
}
body.mc-mode .section-light .btn-primary,
body.mc-mode .v2-section-gray .btn-primary {
  background: var(--v2-green-2);
  color: #ffffff;
  border-color: var(--v2-green-2);
}
body.mc-mode .section-light .btn-primary:hover,
body.mc-mode .v2-section-gray .btn-primary:hover {
  background: var(--v2-navy);
  border-color: var(--v2-navy);
  color: #fff;
}
body.mc-mode .section-light .btn-secondary,
body.mc-mode .v2-section-gray .btn-secondary {
  color: var(--v2-ink);
  border: 1.5px solid rgba(10, 26, 51, 0.3);
  background: transparent;
}
body.mc-mode .section-light .btn-secondary:hover,
body.mc-mode .v2-section-gray .btn-secondary:hover {
  background: var(--v2-navy);
  color: #fff;
  border-color: var(--v2-navy);
}
body.mc-mode .section-light label,
body.mc-mode .v2-section-gray label { color: #3e4b63; }
body.mc-mode .section-light input,
body.mc-mode .section-light select,
body.mc-mode .section-light textarea,
body.mc-mode .v2-section-gray input,
body.mc-mode .v2-section-gray select,
body.mc-mode .v2-section-gray textarea {
  background: #ffffff;
  color: var(--v2-ink);
  border: 1px solid rgba(10, 26, 51, 0.15);
}
body.mc-mode .section-light input::placeholder,
body.mc-mode .v2-section-gray input::placeholder { color: #8a96ad; }
body.mc-mode .section-light .v2-split__copy h2,
body.mc-mode .v2-section-gray .v2-split__copy h2 { color: var(--v2-ink); }
body.mc-mode .section-light .v2-split__copy p,
body.mc-mode .v2-section-gray .v2-split__copy p { color: #3e4b63; }

/* --- GREEN ACCENT BAND: slim full-width strip, used between sections --- */
.v2-green-band {
  background: var(--v2-green);
  color: #06122A;
  padding: 1.25rem 0;
  position: relative;
  overflow: hidden;
}
.v2-green-band::before,
.v2-green-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
  opacity: 0.3;
}
.v2-green-band .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.v2-green-band p {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  letter-spacing: -0.01em;
  color: #06122A;
  text-transform: uppercase;
}
.v2-green-band small {
  font-family: var(--mc-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(6, 18, 42, 0.75);
}
.v2-green-band .btn {
  background: #06122A;
  color: #ffffff;
  border: 1.5px solid #06122A;
}
.v2-green-band .btn:hover {
  background: #ffffff;
  color: #06122A;
}

/* --- GREEN STAT STRIP (alt to stats-bar, punchier green accent) --- */
.v2-stat-strip {
  background: var(--v2-navy-deep);
  border-top: 1px solid rgba(34, 197, 94, 0.3);
  border-bottom: 1px solid rgba(34, 197, 94, 0.3);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.v2-stat-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 20% 50%, rgba(34, 197, 94, 0.12), transparent 60%),
    radial-gradient(600px 300px at 80% 50%, rgba(34, 197, 94, 0.08), transparent 60%);
  pointer-events: none;
}
.v2-stat-strip .container { position: relative; z-index: 1; }
.v2-stat-strip .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.v2-stat-strip .stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  color: var(--v2-green);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.v2-stat-strip .stat-label {
  font-family: var(--mc-mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.65);
}
@media (max-width: 800px) {
  .v2-stat-strip .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
}

/* --- PMSLogo watermark: low-opacity background mark for any section --- */
.v2-logo-watermark { position: relative; overflow: hidden; }
.v2-logo-watermark::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -8%;
  width: 620px;
  height: 620px;
  background: url('/assets/img/PMSLogo.svg') no-repeat center / contain;
  transform: translateY(-50%) rotate(-8deg);
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}
.v2-logo-watermark > * { position: relative; z-index: 1; }

.v2-logo-watermark--left::before { right: auto; left: -10%; transform: translateY(-50%) rotate(6deg); }
.v2-logo-watermark--center::before { right: auto; left: 50%; transform: translate(-50%, -50%) rotate(-4deg); width: 780px; height: 780px; opacity: 0.028; }
.v2-logo-watermark--bright::before { opacity: 0.055; }
body.mc-mode .v2-logo-watermark.section-light::before,
body.mc-mode .v2-logo-watermark.v2-section-gray::before {
  opacity: 0.04;
  filter: hue-rotate(90deg) saturate(1.3);
}

/* --- GREEN LEFT RAIL: narrow decorative band on section edges --- */
.v2-green-rail { position: relative; }
.v2-green-rail::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent 0%, var(--v2-green) 20%, var(--v2-green) 80%, transparent 100%);
  opacity: 0.9;
}

/* --- GREEN HIGHLIGHT CARDS: accent variants for feature-card --- */
body.mc-mode .feature-card.v2-accent-green {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.3);
}
body.mc-mode .feature-card.v2-accent-green .feature-icon {
  background: var(--v2-green);
  color: var(--v2-navy-deep);
  border-color: var(--v2-green);
}

/* --- Section-muted (navy-2) padding tweak so it doesn't feel like dead space --- */
body.mc-mode .section-muted { background: var(--v2-navy-2); }

/* --- Hero-mini nudge: subtle watermark on secondary hero --- */
body.mc-mode .hero-mini.v2-logo-watermark::before { opacity: 0.055; }

/* -- Feature cards -- */
body.mc-mode .feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--v2-line-dark);
  color: #fff;
}
body.mc-mode .feature-card h3 { color: #fff; }
body.mc-mode .feature-card p { color: rgba(255, 255, 255, 0.72); }
body.mc-mode .feature-icon {
  background: var(--v2-green-soft);
  color: var(--v2-green);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

/* -- Buttons: override any remaining pink / blue-green gradients -- */
body.mc-mode .btn-primary,
body.mc-mode .btn.btn-pill--primary {
  background: var(--v2-green);
  color: #06122A;
  border: 1.5px solid var(--v2-green);
}
body.mc-mode .btn-primary:hover,
body.mc-mode .btn.btn-pill--primary:hover {
  background: var(--v2-green-2);
  border-color: var(--v2-green-2);
}
body.mc-mode .btn-secondary,
body.mc-mode .btn.btn-pill--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
body.mc-mode .btn-secondary:hover,
body.mc-mode .btn.btn-pill--ghost:hover {
  background: #fff;
  color: var(--v2-navy);
  border-color: #fff;
}
body.mc-mode .section-light .btn-secondary {
  color: var(--v2-ink);
  border-color: rgba(10, 26, 51, 0.35);
}
body.mc-mode .section-light .btn-secondary:hover {
  background: var(--v2-navy);
  color: #fff;
  border-color: var(--v2-navy);
}

/* -- Ticker strip -- */
body.mc-mode .ticker-strip {
  background: var(--v2-navy-deep);
  border-top: 1px solid var(--v2-line-dark);
  border-bottom: 1px solid var(--v2-line-dark);
}
body.mc-mode .ticker-pill {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}

/* -- Principle rows -- */
body.mc-mode .principle-row {
  border-bottom: 1px solid var(--v2-line-dark);
  padding: 2rem 0;
}
body.mc-mode .principle-row h3 { color: #fff; }
body.mc-mode .principle-row p { color: rgba(255, 255, 255, 0.72); }
body.mc-mode .principle-number { color: var(--v2-green); }

/* -- Manychat preview block (legacy section below hero) -- */
body.mc-mode .manychat-copy h2,
body.mc-mode .manychat-copy p { color: #fff; }
body.mc-mode .manychat-preview {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--v2-line-dark);
}
body.mc-mode .pill-dark {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
body.mc-mode .pill-dark.active {
  background: var(--v2-green);
  border-color: var(--v2-green);
  color: #06122A;
}

/* -- Cohort tabs -- */
body.mc-mode .cohort-tabs button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
}
body.mc-mode .cohort-tabs button.active {
  background: var(--v2-green);
  color: #06122A;
  border-color: var(--v2-green);
}
body.mc-mode .cohort-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--v2-line-dark);
  color: #fff;
}
body.mc-mode .cohort-panel h3 { color: #fff; }
body.mc-mode .cohort-panel p { color: rgba(255, 255, 255, 0.78); }

/* -- Hero tweaks: remove underline highlight, keep clear navy emphasis -- */
body.mc-mode .hero-mc__display-em { color: var(--v2-navy-deep); }
body.mc-mode .hero-mc__display-em::after { display: none; }
body.mc-mode .hero-mc__display {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -0.022em;
}
body.mc-mode .hero-mc__eyebrow-dot { background: var(--v2-green); box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2); }

/* -- Hero marquee: navy strip, green text, no rotation wobble -- */
body.mc-mode .hero-mc__marquee {
  background: var(--v2-navy-deep);
  border-top: 1px solid rgba(34, 197, 94, 0.35);
  border-bottom: 1px solid var(--v2-line-dark);
  transform: none;
  margin: 0;
  width: 100%;
}
body.mc-mode .hero-mc__marquee-track span { color: #fff; }
body.mc-mode .hero-mc__marquee-track span[aria-hidden="true"] { color: var(--v2-green); }

/* -- Lockup: green pulse, no pink -- */
body.mc-mode .mc-lockup::before { background: var(--v2-green); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); animation: v2Pulse 2.6s ease-in-out infinite; }
@keyframes v2Pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  50%      { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}
body.mc-mode .mc-lockup__tag {
  color: var(--v2-green);
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.08);
}

/* Nav solid-on-scroll swap */
body.mc-mode.is-scrolled .site-header.mc-nav {
  background: rgba(10, 26, 51, 0.88);
  border-bottom: 1px solid var(--v2-line-dark);
}

/* -- Hero-mini for secondary pages -- */
body.mc-mode .hero-mini {
  background: var(--v2-navy-deep);
  border-bottom: 1px solid var(--v2-line-dark);
  padding: 12rem 0 6rem;
  position: relative;
  overflow: hidden;
}
body.mc-mode .hero-mini::before { display: none; }
body.mc-mode .hero-mini::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 85% 0%, rgba(34, 197, 94, 0.12), transparent 60%);
  pointer-events: none;
}
body.mc-mode .hero-mini h1 { color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; }
body.mc-mode .hero-mini p { color: rgba(255, 255, 255, 0.75); }

/* -- Unsplash accent frames -- */
.v2-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--v2-line-dark-strong);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  aspect-ratio: 4 / 3;
  background: var(--v2-navy-2);
}
.v2-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.05);
}
.v2-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 26, 51, 0) 50%, rgba(10, 26, 51, 0.55) 100%);
}
.v2-image-caption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  color: #fff;
  font-family: var(--mc-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.v2-image-caption .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v2-green);
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* -- Split / image-text blocks -- */
.v2-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}
.v2-split.reverse { grid-template-columns: 1fr 1.05fr; }
.v2-split.reverse .v2-split__copy { order: 2; }
.v2-split.reverse .v2-split__media { order: 1; }
.v2-split__copy h2 { margin-bottom: 1.2rem; color: #fff; }
.v2-split__copy p { color: rgba(255, 255, 255, 0.78); font-size: 1.05rem; line-height: 1.65; }
.v2-split__copy .section-label { display: inline-block; margin-bottom: 1rem; }

/* -- PMI / Certification emblem strip -- */
.v2-emblem-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--v2-line-dark);
  border-bottom: 1px solid var(--v2-line-dark);
}
.v2-emblem-strip p {
  font-family: var(--mc-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.v2-emblem-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.v2-emblem-strip li { display: inline-flex; align-items: center; gap: 0.6rem; }
.v2-emblem-strip li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--v2-green);
  border-radius: 50%;
}

/* -- PMI callout -- */
.v2-pmi-callout {
  background:
    linear-gradient(0deg, rgba(10,26,51,0.92), rgba(10,26,51,0.92)),
    url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80') center/cover;
  padding: 6rem 0;
  border-top: 1px solid var(--v2-line-dark);
  border-bottom: 1px solid var(--v2-line-dark);
}
.v2-pmi-callout h2 {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  max-width: 22ch;
  margin-bottom: 1.2rem;
  color: #fff;
}
.v2-pmi-callout p { color: rgba(255, 255, 255, 0.78); max-width: 58ch; margin-bottom: 2rem; }

/* -- Footer redo -- */
body.mc-mode .footer {
  background: var(--v2-navy-deep);
  border-top: 1px solid var(--v2-line-dark);
  color: rgba(255, 255, 255, 0.7);
}
body.mc-mode .footer h4 { color: #fff; }
body.mc-mode .footer a { color: rgba(255, 255, 255, 0.7); }
body.mc-mode .footer a:hover { color: var(--v2-green); }
body.mc-mode .accent-dot { background: var(--v2-green); }

/* -- Revealed elements (GSAP sets final state; CSS just hides pre-animation) -- */
body.mc-mode [data-v2-reveal] {
  opacity: 0;
  transform: translateY(36px);
  will-change: opacity, transform;
}

@media (max-width: 900px) {
  .v2-split,
  .v2-split.reverse { grid-template-columns: 1fr; gap: 2rem; }
  .v2-split.reverse .v2-split__copy { order: 1; }
  .v2-split.reverse .v2-split__media { order: 2; }
  .v2-emblem-strip ul { gap: 1rem; font-size: 0.95rem; }
}

/* =========================================================
   V4 TUNING — LIGHT/GRAY BALANCE + CLEANER TYPE
   ========================================================= */

:root {
  --pms-heading-sans: "Plus Jakarta Sans", sans-serif;
}

body.mc-mode h1,
body.mc-mode h2,
body.mc-mode h3,
body.mc-mode h4,
body.mc-mode h5,
body.mc-mode .brand-title,
body.mc-mode .mc-lockup__wordmark,
body.mc-mode .hero-mc__display {
  font-family: var(--pms-heading-sans);
}

body.mc-mode .section-muted {
  background: var(--v2-gray-3);
  color: var(--v2-ink);
  border-top: 1px solid rgba(10, 26, 51, 0.08);
  border-bottom: 1px solid rgba(10, 26, 51, 0.08);
}

body.mc-mode .section-muted h1,
body.mc-mode .section-muted h2,
body.mc-mode .section-muted h3,
body.mc-mode .section-muted h4 {
  color: var(--v2-ink);
}

body.mc-mode .section-muted p,
body.mc-mode .section-muted li,
body.mc-mode .section-muted .section-intro,
body.mc-mode .section-muted .section-header p {
  color: #41516b;
}

body.mc-mode .section-muted .section-label {
  color: var(--v2-green-2);
}

body.mc-mode .section-muted .glass-card,
body.mc-mode .section-muted .feature-card {
  background: #ffffff;
  color: var(--v2-ink);
  border: 1px solid rgba(10, 26, 51, 0.08);
  box-shadow: 0 14px 42px rgba(10, 26, 51, 0.06);
}

body.mc-mode .section-muted .glass-card h1,
body.mc-mode .section-muted .glass-card h2,
body.mc-mode .section-muted .glass-card h3,
body.mc-mode .section-muted .feature-card h3 {
  color: var(--v2-ink);
}

body.mc-mode .section-muted .glass-card p,
body.mc-mode .section-muted .glass-card li,
body.mc-mode .section-muted .feature-card p {
  color: #4a5870;
}

body.mc-mode .section-muted .feature-icon {
  background: rgba(34, 197, 94, 0.12);
  color: var(--v2-green-2);
  border-color: rgba(34, 197, 94, 0.35);
}

body.mc-mode .section-muted .btn-primary {
  background: var(--v2-green-2);
  border-color: var(--v2-green-2);
  color: #fff;
}

body.mc-mode .section-muted .btn-primary:hover {
  background: var(--v2-navy);
  border-color: var(--v2-navy);
}

body.mc-mode .section-muted .btn-secondary {
  color: var(--v2-ink);
  border: 1.5px solid rgba(10, 26, 51, 0.28);
  background: transparent;
}

body.mc-mode .section-muted .btn-secondary:hover {
  background: var(--v2-navy);
  border-color: var(--v2-navy);
  color: #fff;
}

body.mc-mode .section-muted .v2-split__copy h2 {
  color: var(--v2-ink);
}

body.mc-mode .section-muted .v2-split__copy p {
  color: #3e4b63;
}

body.mc-mode .section-muted .v2-emblem-strip {
  border-top: 1px solid rgba(10, 26, 51, 0.12);
  border-bottom: 1px solid rgba(10, 26, 51, 0.12);
}

body.mc-mode .section-muted .v2-emblem-strip p {
  color: #66778f;
}

body.mc-mode .section-muted .v2-emblem-strip ul {
  color: var(--v2-ink);
}

body.mc-mode .section-muted .v2-image-frame {
  border-color: rgba(10, 26, 51, 0.16);
  box-shadow: 0 18px 46px rgba(10, 26, 51, 0.12);
}

body.mc-mode .v2-logo-watermark::before {
  opacity: 0.022;
}

body.mc-mode .v2-logo-watermark--center::before {
  opacity: 0.018;
}

body.mc-mode .v2-logo-watermark--bright::before {
  opacity: 0.032;
}

/* Ensure hero emphasis phrase stays navy and readable */
body.mc-mode .hero-mc__display .hero-mc__display-em {
  color: var(--v2-navy-deep) !important;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.02em 0.16em;
  border-radius: 0.14em;
}

/* Subpage balancing: lighter core section surfaces outside homepage */
body.mc-mode:not(.home-page) .section:not(.section-dark) {
  background: var(--v2-gray-3);
  color: var(--v2-ink);
  border-top: 1px solid rgba(10, 26, 51, 0.08);
  border-bottom: 1px solid rgba(10, 26, 51, 0.08);
}

body.mc-mode:not(.home-page) .section:not(.section-dark) h1,
body.mc-mode:not(.home-page) .section:not(.section-dark) h2,
body.mc-mode:not(.home-page) .section:not(.section-dark) h3,
body.mc-mode:not(.home-page) .section:not(.section-dark) h4 {
  color: var(--v2-ink);
}

body.mc-mode:not(.home-page) .section:not(.section-dark) p,
body.mc-mode:not(.home-page) .section:not(.section-dark) li,
body.mc-mode:not(.home-page) .section:not(.section-dark) .section-intro,
body.mc-mode:not(.home-page) .section:not(.section-dark) .section-header p {
  color: #42516a;
}

body.mc-mode:not(.home-page) .section:not(.section-dark) .glass-card,
body.mc-mode:not(.home-page) .section:not(.section-dark) .feature-card {
  background: #fff;
  border: 1px solid rgba(10, 26, 51, 0.1);
  color: var(--v2-ink);
  box-shadow: 0 14px 42px rgba(10, 26, 51, 0.06);
}

body.mc-mode:not(.home-page) .section:not(.section-dark) .glass-card h1,
body.mc-mode:not(.home-page) .section:not(.section-dark) .glass-card h2,
body.mc-mode:not(.home-page) .section:not(.section-dark) .glass-card h3,
body.mc-mode:not(.home-page) .section:not(.section-dark) .feature-card h3 {
  color: var(--v2-ink);
}

body.mc-mode:not(.home-page) .section:not(.section-dark) .glass-card p,
body.mc-mode:not(.home-page) .section:not(.section-dark) .glass-card li,
body.mc-mode:not(.home-page) .section:not(.section-dark) .feature-card p {
  color: #4a5870;
}

/* =========================================================
   V5 NAV / LOGO / WATERMARK REFINEMENT
   ========================================================= */

/* Navbar logo: triangle mark only (no square plate) */
.brand img,
.home-page .brand img {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  filter: brightness(0) invert(1);
  box-shadow: 0 1px 2px rgba(6, 21, 47, 0.45);
}

/* Student Portal utility action: cleaner blue/green pill */
.main-nav a.nav-utility,
.home-page .main-nav a.nav-utility,
.mc-mode .site-header.mc-nav .nav-utility {
  background: linear-gradient(135deg, #2563eb, #10b981);
  color: #fff;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.25);
}

.main-nav a.nav-utility:hover,
.main-nav a.nav-utility[aria-current='page'],
.home-page .main-nav a.nav-utility:hover,
.home-page .main-nav a.nav-utility[aria-current='page'],
.mc-mode .site-header.mc-nav .nav-utility:hover,
.mc-mode .site-header.mc-nav .nav-utility[aria-current='page'] {
  color: #fff;
  background: linear-gradient(135deg, #1d4ed8, #059669);
  border-color: transparent;
  filter: saturate(1.05);
}

/* Footer brand logo */
.footer-logo {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  flex: 0 0 auto;
}

/* Decorative triangle logo watermark on light-gray pages */
body.mc-mode:not(.home-page) .section:not(.section-dark),
body.mc-mode:not(.home-page) .hero-mini {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

body.mc-mode:not(.home-page) .section:not(.section-dark)::before,
body.mc-mode:not(.home-page) .hero-mini::before {
  content: '';
  position: absolute;
  right: -72px;
  top: 50%;
  width: min(38vw, 420px);
  aspect-ratio: 1 / 1;
  transform: translateY(-50%) rotate(-9deg);
  background: #9ca3af;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
  -webkit-mask: url('/assets/img/PMSLogo.svg') no-repeat center / contain;
  mask: url('/assets/img/PMSLogo.svg') no-repeat center / contain;
}

body.mc-mode:not(.home-page) .section:not(.section-dark) > *,
body.mc-mode:not(.home-page) .hero-mini > * {
  position: relative;
  z-index: 1;
}

/* =========================================================
   V7 NAV + HERO CONSISTENCY
   ========================================================= */

/* Unified navbar appearance across all pages */
body.mc-mode .site-header,
body.home-page .site-header,
body.mc-mode .site-header.mc-nav,
body.mc-mode.is-scrolled .site-header.mc-nav,
body.home-page .site-header.mc-nav,
body.home-page.is-scrolled .site-header.mc-nav {
  background: rgba(8, 25, 57, 0.86);
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.mc-mode .nav-shell,
body.home-page .nav-shell {
  min-height: 80px;
}

body.mc-mode .brand,
body.home-page .brand,
body.mc-mode .mc-lockup,
body.home-page .mc-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

body.mc-mode .brand img,
body.home-page .brand img,
body.mc-mode .mc-lockup__mark,
body.home-page .mc-lockup__mark {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: brightness(0) invert(1);
  box-shadow: none;
}

body.mc-mode .brand-title,
body.home-page .brand-title,
body.mc-mode .mc-lockup__wordmark,
body.home-page .mc-lockup__wordmark {
  color: #f8fbff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

body.mc-mode .brand-sub,
body.home-page .brand-sub,
body.mc-mode .mc-lockup__tag,
body.home-page .mc-lockup__tag {
  color: rgba(191, 214, 247, 0.86);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: transparent;
  border: 0;
  padding: 0;
}

body.mc-mode .main-nav a,
body.home-page .main-nav a,
body.mc-mode .site-header.mc-nav .main-nav a {
  color: rgba(232, 241, 255, 0.82);
  background: transparent;
  border-color: transparent;
}

body.mc-mode .main-nav a:hover,
body.mc-mode .main-nav a[aria-current='page'],
body.home-page .main-nav a:hover,
body.home-page .main-nav a[aria-current='page'] {
  color: #fff;
  background: rgba(59, 130, 246, 0.16);
  border-color: rgba(147, 197, 253, 0.36);
}

body.mc-mode .main-nav a.nav-utility,
body.home-page .main-nav a.nav-utility,
body.mc-mode .site-header.mc-nav .nav-utility {
  background: linear-gradient(135deg, #2563eb, #10b981);
  color: #ffffff !important;
  border-color: transparent !important;
}

body.mc-mode .main-nav a.nav-utility:hover,
body.home-page .main-nav a.nav-utility:hover,
body.mc-mode .site-header.mc-nav .nav-utility:hover,
body.mc-mode .main-nav a.nav-utility[aria-current='page'],
body.home-page .main-nav a.nav-utility[aria-current='page'],
body.mc-mode .site-header.mc-nav .nav-utility[aria-current='page'] {
  background: linear-gradient(135deg, #1d4ed8, #059669);
  color: #ffffff !important;
  border-color: transparent !important;
}

body.mc-mode .nav-cta.btn,
body.home-page .nav-cta.btn {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
}

body.mc-mode .nav-cta.btn:hover,
body.home-page .nav-cta.btn:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  filter: none;
}

body.mc-mode .menu-toggle,
body.home-page .menu-toggle {
  border-color: rgba(148, 163, 184, 0.36);
}

body.mc-mode .menu-toggle span,
body.mc-mode .menu-toggle span::before,
body.mc-mode .menu-toggle span::after,
body.home-page .menu-toggle span,
body.home-page .menu-toggle span::before,
body.home-page .menu-toggle span::after {
  background: #eff6ff;
}

@media (max-width: 1080px) {
  body.mc-mode .main-nav,
  body.home-page .main-nav {
    border-color: rgba(147, 197, 253, 0.28);
    background: rgba(8, 25, 57, 0.97);
  }
}

/* Home hero: slightly shorter so next section appears sooner on desktop */
body.home-page .hero.hero-mc {
  min-height: 84vh;
}

body.home-page .hero-mc__content {
  padding: 0 0 8vh 0;
}

@media (min-width: 1200px) {
  body.home-page .hero.hero-mc {
    min-height: 82vh;
  }
}

/* Navbar typography lock: consistent across all pages/states */
body.mc-mode .site-header .main-nav a,
body.home-page .site-header .main-nav a,
body.mc-mode .site-header .nav-utility,
body.home-page .site-header .nav-utility,
body.mc-mode .site-header .nav-cta.btn,
body.home-page .site-header .nav-cta.btn,
body.mc-mode .site-header .btn,
body.home-page .site-header .btn {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =========================================================
   V8 HOME HERO DECLUTTER + NAV LOCKUP PARITY
   ========================================================= */
body.home-page .hero.hero-mc {
  min-height: 80vh;
}

body.home-page .hero-mc__content {
  max-width: min(var(--max), calc(100% - 2.5rem));
  padding: 0 0 9vh 0;
}

body.home-page .hero-mc__eyebrow {
  margin: 0 0 1.05rem;
  max-width: 66ch;
  font-size: 0.68rem;
  line-height: 1.45;
  letter-spacing: 0.11em;
}

body.home-page .hero-mc__display {
  max-width: 13ch;
  margin: 0 0 1.05rem;
  font-size: clamp(2.25rem, 4.9vw, 4.6rem);
  line-height: 1.02;
}

body.home-page .hero-mc__sub {
  max-width: 58ch;
  margin: 0 0 1.55rem;
  font-size: 1rem;
  line-height: 1.56;
}

body.home-page .hero-mc__actions {
  gap: 0.7rem;
}

body.home-page .hero-mc__watermark {
  inset: auto 2.5rem 22% auto;
  justify-content: flex-end;
  opacity: 0.09;
  mix-blend-mode: soft-light;
}

body.home-page .hero-mc__watermark img {
  width: min(42vw, 520px);
  filter: drop-shadow(0 0 36px rgba(37, 99, 235, 0.2));
}

body.home-page .hero-mc__marquee {
  padding: 0.55rem 0;
}

body.home-page .hero-mc__marquee-track {
  gap: 0.85rem;
}

body.home-page .hero-mc__marquee-track span {
  font-size: 0.76rem;
  letter-spacing: 0.055em;
}

body.home-page .hero-mc__scroll {
  bottom: 4.4rem;
  opacity: 0.72;
}

@media (max-width: 1080px) {
  body.home-page .hero.hero-mc {
    min-height: 84vh;
  }

  body.home-page .hero-mc__content {
    padding: 0 0 7.2rem 0;
  }

  body.home-page .hero-mc__watermark {
    inset: auto 0 24% 0;
    justify-content: center;
    opacity: 0.08;
  }

  body.home-page .hero-mc__watermark img {
    width: min(64vw, 420px);
  }
}
