:root {
  --teal: #4f8f91;
  --orange: #d28835;
  --green: #69a88e;
  --vidyaara-green: #247d36;
  --purple: #8aa58f;
  --dark: #2d2d2d;
  --dgray: #333333;
  --mgray: #666666;
  --line: rgba(45, 45, 45, 0.1);
  --soft: #f7f5f1;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(45, 45, 45, 0.09);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Lato", Arial, sans-serif;
  color-scheme: light;
}

html {
  color-scheme: light;
  background: var(--soft);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dgray);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button.button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: var(--white);
  color: var(--dark);
  padding: 10px 14px;
  border-radius: 4px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.section-pad {
  padding: 96px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-heading {
  max-width: 690px;
  margin-bottom: 48px;
}

.section-heading-wide {
  max-width: 760px;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.section-kicker-on-dark {
  color: var(--teal);
}

.section-kicker-on-color {
  color: rgba(255, 255, 255, 0.82);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(42px, 6vw, 76px);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 23px;
}

p {
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, #2c914a, #247d36);
  color: var(--white);
}

.site-header .button-primary,
.hero .button-primary,
.hero-header .button-primary {
  border-color: rgba(36, 125, 54, 0.42);
  background: linear-gradient(180deg, #2c914a, #247d36);
  box-shadow: 0 13px 30px rgba(36, 125, 54, 0.24);
  color: #f8fbf4;
}

.site-header .button-primary:hover,
.site-header .button-primary:focus-visible,
.hero .button-primary:hover,
.hero .button-primary:focus-visible,
.hero-header .button-primary:hover,
.hero-header .button-primary:focus-visible {
  opacity: 0.94;
  box-shadow: 0 18px 46px rgba(36, 125, 54, 0.28);
}

.button-network {
  border-color: rgba(36, 125, 54, 0.24);
  background: rgba(255, 255, 255, 0.48);
  color: #247d36;
}

.hero-header .button-network {
  border-color: rgba(36, 125, 54, 0.24);
  background: rgba(255, 255, 255, 0.48);
  color: #247d36;
}

.hero-header .button-network:hover,
.hero-header .button-network:focus-visible {
  border-color: rgba(36, 125, 54, 0.36);
  background: rgba(36, 125, 54, 0.08);
  color: #1f6e2f;
}

.button-network:hover,
.button-network:focus-visible,
.button-network[aria-current="page"] {
  border-color: rgba(36, 125, 54, 0.36);
  background: rgba(36, 125, 54, 0.08);
  color: #1f6e2f;
}

.button-small {
  min-height: 40px;
  padding: 10px 18px;
  font-size: 13px;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--white);
}

.hero .button-ghost {
  border-color: rgba(36, 125, 54, 0.34);
  background: rgba(255, 255, 255, 0.72);
  color: #1f6e2f;
  backdrop-filter: blur(10px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.hero .button-ghost:hover,
.hero .button-ghost:focus-visible {
  border-color: rgba(36, 125, 54, 0.48);
  background: rgba(36, 125, 54, 0.1);
}

.button-light {
  background: var(--white);
  color: var(--teal);
}

.button-white {
  background: var(--white);
  color: var(--purple);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  pointer-events: none;
}

.nav-shell {
  width: min(calc(100% - 96px), 960px);
  min-height: 80px;
  margin: 0 auto;
  padding: 0 18px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(36, 125, 54, 0.1);
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.89);
  box-shadow: 0 8px 20px rgba(41, 49, 43, 0.08), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  backdrop-filter: blur(16px);
  pointer-events: auto;
}

.hero-header .nav-shell {
  border: 1px solid rgba(36, 125, 54, 0.1);
  background: rgba(251, 250, 246, 0.89);
  box-shadow: 0 8px 20px rgba(41, 49, 43, 0.08), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  min-width: max-content;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.brand-logo-header {
  height: 46px;
  max-width: 48px;
  filter: none;
  box-shadow: none;
}

.brand-text {
  display: grid;
  gap: 1px;
  line-height: 1;
  white-space: nowrap;
}

.brand-word {
  color: #1f2a22;
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.hero-header .brand-word {
  color: #1f2a22;
}

.brand-line {
  color: rgba(36, 125, 54, 0.78);
  font-family: var(--serif);
  font-size: 8px;
  font-style: italic;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-header .brand-line {
  color: rgba(36, 125, 54, 0.78);
}

.primary-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.primary-nav {
  flex: 1 1 auto;
  justify-content: center;
}

.nav-actions {
  flex: 0 0 auto;
  gap: 10px;
}

.primary-nav a,
.nav-apply {
  color: rgba(31, 42, 34, 0.68);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.hero-header .primary-nav a,
.hero-header .nav-dropdown-trigger {
  color: rgba(31, 42, 34, 0.68);
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"],
.nav-apply:hover,
.nav-apply:focus-visible {
  color: var(--vidyaara-green);
  opacity: 0.9;
}

.hero-header .primary-nav a:hover,
.hero-header .primary-nav a:focus-visible,
.hero-header .primary-nav a[aria-current="page"],
.hero-header .nav-dropdown-trigger:hover,
.hero-header .nav-dropdown-trigger:focus-visible {
  color: var(--vidyaara-green);
  opacity: 0.9;
}

.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: none;
  color: rgba(38, 49, 40, 0.74);
  padding: 0;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible {
  color: #4dac65;
}

.nav-chevron {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transform-origin: 58% 58%;
  transition: transform 0.22s ease;
}

.nav-dropdown-trigger[aria-expanded="true"] .nav-chevron {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 200;
  width: 280px;
  border: 1px solid rgba(36, 125, 54, 0.12);
  border-radius: 16px;
  background: rgba(251, 250, 246, 0.96);
  box-shadow: 0 28px 74px rgba(41, 49, 43, 0.16);
  padding: 8px;
  backdrop-filter: blur(18px);
  opacity: 0;
  transform-origin: top center;
  pointer-events: none;
  transform: translateX(-50%) translateY(-10px) scale(0.97);
  transition: opacity 0.22s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-header .nav-dropdown {
  border-color: rgba(36, 125, 54, 0.12);
  background: rgba(251, 250, 246, 0.96);
  box-shadow: 0 28px 74px rgba(41, 49, 43, 0.16);
  backdrop-filter: blur(18px);
}

.hero-header .nav-dropdown-item:hover,
.hero-header .nav-dropdown-item:focus-visible {
  background: rgba(36, 125, 54, 0.08);
}

.hero-header .nav-dropdown-label {
  color: #263128;
}

.hero-header .nav-dropdown-desc {
  color: rgba(78, 90, 82, 0.74);
}

.nav-dropdown-wrap:has(.nav-dropdown-trigger[aria-expanded="true"]) .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0) scale(1);
}

.nav-dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-radius: 10px;
  padding: 12px 16px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus-visible {
  background: rgba(36, 125, 54, 0.08);
}

.nav-dropdown-label {
  color: #263128;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-dropdown-desc {
  color: rgba(78, 90, 82, 0.74);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(36, 125, 54, 0.14);
  border-radius: 50%;
  background: rgba(36, 125, 54, 0.045);
  padding: 9px;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  margin: 4.5px 0;
  background: rgba(36, 125, 54, 0.78);
}

.nav-shell .button-small {
  min-height: 52px;
  padding: 12px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: none;
}

.nav-shell .button-small:hover,
.nav-shell .button-small:focus-visible {
  opacity: 0.96;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(36, 125, 54, 0.14);
}

.nav-programs-cta {
  appearance: none;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 34%, rgba(36, 125, 54, 0.07), transparent 31%),
    radial-gradient(circle at 18% 82%, rgba(36, 125, 54, 0.032), transparent 30%),
    linear-gradient(180deg, #fbfaf6 0%, #f6f3ed 100%);
}

.hero.section-dark {
  color: #263128;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(rgba(36, 125, 54, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 125, 54, 0.024) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 8%, rgba(0, 0, 0, 0.54) 38%, rgba(0, 0, 0, 0.9) 72%, transparent 100%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88) 18%, rgba(0, 0, 0, 0.72));
}

.hero::after {
  content: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 22% 32%, rgba(36, 125, 54, 0.055) 0 1px, transparent 1px),
    radial-gradient(circle at 72% 64%, rgba(41, 49, 43, 0.04) 0 1px, transparent 1px);
  background-size: 18px 18px, 26px 26px;
  mix-blend-mode: multiply;
}

.hero-system {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.system-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(36, 125, 54, 0.13), transparent);
  transform-origin: center;
  animation: systemDrift 18s ease-in-out infinite alternate;
}

.system-line-1 {
  top: 31%;
  right: 7%;
  width: 34vw;
  transform: rotate(-11deg);
}

.system-line-2 {
  top: 56%;
  right: 14%;
  width: 26vw;
  animation-delay: -6s;
  transform: rotate(17deg);
}

.system-line-3 {
  top: 72%;
  right: -2%;
  width: 32vw;
  animation-delay: -11s;
  transform: rotate(-4deg);
}

.system-node {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(36, 125, 54, 0.2);
  border-radius: 50%;
  background: rgba(36, 125, 54, 0.06);
  box-shadow: 0 0 20px rgba(36, 125, 54, 0.1);
  animation: nodeDrift 20s ease-in-out infinite alternate;
}

.system-node-1 {
  top: 30%;
  right: 32%;
}

.system-node-2 {
  top: 55%;
  right: 12%;
  animation-delay: -8s;
}

.system-node-3 {
  top: 72%;
  right: 25%;
  animation-delay: -13s;
}

.hero-cards {
  position: absolute;
  right: 5%;
  top: 50%;
  z-index: 2;
  width: min(46vw, 570px);
  height: 460px;
  pointer-events: none;
  transform: translateY(-50%);
}

.hero-map {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.88;
  overflow: visible;
}

.map-glow {
  opacity: 0.56;
}

.map-line {
  stroke: rgba(36, 125, 54, 0.34);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-dasharray: 6 8;
}

.map-orbit {
  stroke: rgba(36, 125, 54, 0.22);
  stroke-width: 1.1;
}

.map-orbit-inner {
  stroke: rgba(36, 125, 54, 0.34);
}

.map-orbit-point {
  fill: rgba(36, 125, 54, 0.18);
  stroke: rgba(36, 125, 54, 0.32);
  stroke-width: 1.1;
}

.map-axis {
  stroke: rgba(36, 125, 54, 0.82);
  stroke-width: 1.8;
  fill: rgba(36, 125, 54, 0.13);
  filter: drop-shadow(0 0 18px rgba(36, 125, 54, 0.22));
}

.map-axis-dot {
  fill: #247d36;
}

.map-axis-mark {
  fill: rgba(36, 125, 54, 0.2);
  stroke: rgba(36, 125, 54, 0.44);
  stroke-width: 1.2;
}

.map-card path {
  fill: rgba(255, 255, 255, 0.82);
  stroke: rgba(36, 125, 54, 0.4);
  stroke-width: 1.35;
  stroke-linejoin: round;
}

.map-card text {
  fill: rgba(38, 49, 40, 0.86);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.01em;
}

.hero-inner {
  padding: 132px 40px 118px;
}

.hero-frame {
  position: relative;
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  opacity: 0.35;
  pointer-events: none;
}

.hero-frame::before {
  top: 122px;
  left: -18px;
  border-top: 1px solid rgba(36, 125, 54, 0.18);
  border-left: 1px solid rgba(36, 125, 54, 0.18);
}

.hero-frame::after {
  right: -18px;
  bottom: 54px;
  border-right: 1px solid rgba(36, 125, 54, 0.14);
  border-bottom: 1px solid rgba(36, 125, 54, 0.14);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, 590px);
}

.hero-content::before {
  content: none;
  position: absolute;
  inset: -52px -46px -44px -56px;
  z-index: -1;
  border-radius: 32px;
  background: radial-gradient(ellipse at 22% 50%, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.2) 56%, transparent 82%);
  pointer-events: none;
}

.hero h1 {
  max-width: 610px;
  color: #247d36;
  font-size: clamp(38px, 4.35vw, 58px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
  margin-bottom: 24px;
}

.hero h1 em {
  color: inherit;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.hero-tagline {
  color: rgba(63, 69, 63, 0.84);
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 20px);
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 34px;
  opacity: 1;
}

.hero-sub {
  max-width: 560px;
  margin-bottom: 14px;
  color: rgba(54, 64, 58, 0.9);
  font-family: var(--sans);
  font-size: 1.03rem;
  font-weight: 400;
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

@keyframes systemDrift {
  from {
    opacity: 0.32;
    translate: -8px 0;
  }

  to {
    opacity: 0.54;
    translate: 14px -8px;
  }
}

@keyframes nodeDrift {
  from {
    opacity: 0.45;
    translate: 0 0;
  }

  to {
    opacity: 0.75;
    translate: 18px -12px;
  }
}

.kshama-trust.section-pad {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(36, 125, 54, 0.08), transparent 34%),
    radial-gradient(circle at 12% 86%, rgba(36, 125, 54, 0.045), transparent 32%),
    linear-gradient(180deg, #fbfaf6 0%, #f6f3eb 100%);
  padding: 84px 0;
}

.kshama-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(36, 125, 54, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 125, 54, 0.03) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.kshama-trust::after {
  content: "";
  position: absolute;
  inset: 26px 0 auto;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(36, 125, 54, 0.22), transparent);
}

.kshama-carousel-shell {
  position: relative;
  display: grid;
  grid-template-areas:
    "copy media"
    "proof media";
  grid-template-columns: minmax(0, 0.98fr) minmax(330px, 410px);
  grid-template-rows: auto 1fr;
  gap: 24px 56px;
  align-items: center;
}

.kshama-founder-copy {
  grid-area: copy;
  max-width: 680px;
}

.kshama-founder-proof {
  grid-area: proof;
  max-width: 680px;
  align-self: start;
}

.kshama-founder-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 18px;
  padding-bottom: 0;
  border-bottom: 0;
}

.kshama-founder-meta::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--vidyaara-green);
}

.kshama-founder-meta .section-kicker {
  margin: 0;
}

.kshama-founder-meta span {
  color: #4d574d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.kshama-carousel-shell h2 {
  max-width: 560px;
  color: #233327;
  font-size: clamp(34px, 3.7vw, 50px);
  line-height: 1.08;
}

.kshama-copy {
  max-width: 650px;
}

.kshama-copy .section-kicker {
  margin-bottom: 20px;
}

.kshama-copy h2 {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--dgray);
  font-size: clamp(34px, 4vw, 52px);
}

.kshama-intro {
  max-width: 600px;
  color: #5f5f5f;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
}

.kshama-meaning {
  max-width: 460px;
  margin: 1rem 0 1.5rem;
  color: var(--orange);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.6;
}

.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  max-width: 620px;
  margin-top: 28px;
}

.credential-list span {
  border: 1px solid rgba(45, 45, 45, 0.08);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.68);
  color: #666666;
  padding: 7px 12px;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.credential-list-founder {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 560px;
  margin-top: 8px;
}

.credential-list-founder span {
  border-color: rgba(36, 125, 54, 0.16);
  background: rgba(255, 255, 255, 0.64);
  color: #354339;
  padding: 6px 10px;
  font-size: 11px;
  box-shadow: none;
}

.credential-list-dark {
  margin-top: 0;
}

.credential-list-dark span {
  border-color: rgba(236, 241, 226, 0.15);
  background: rgba(236, 241, 226, 0.055);
  color: rgba(248, 251, 244, 0.74);
}

.kshama-quote {
  max-width: 620px;
  margin: 30px 0 0;
  padding: 18px 0 0 18px;
  border-top: 1px solid rgba(45, 45, 45, 0.08);
  border-left: 2px solid var(--vidyaara-green);
  color: #3d473f;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.65;
}

.kshama-quote-founder {
  max-width: 520px;
  margin-top: 22px;
  border-top-color: rgba(36, 125, 54, 0.14);
  background: linear-gradient(90deg, rgba(36, 125, 54, 0.035), transparent 66%);
  color: #2d3b31;
  font-size: clamp(18px, 1.5vw, 22px);
}

.kshama-quote-dark {
  border-top-color: rgba(236, 241, 226, 0.12);
  color: rgba(248, 251, 244, 0.82);
  font-size: clamp(20px, 2vw, 28px);
}

.kshama-poem {
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--purple);
  color: var(--mgray);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.75;
}

.kshama-poem cite {
  display: block;
  margin-top: 0.75rem;
  color: var(--purple);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.carousel {
  position: relative;
}

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

.kshama-stack {
  grid-area: media;
  position: relative;
  justify-self: end;
  width: min(100%, 410px);
  padding: 14px 14px 16px;
  border: 1px solid rgba(36, 125, 54, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(246, 243, 235, 0.66)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 60px rgba(35, 51, 39, 0.12);
}

.kshama-stack::before {
  content: "";
  position: absolute;
  inset: 34px -10px 46px 30px;
  z-index: -1;
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 10%, rgba(36, 125, 54, 0.22), transparent 38%),
    linear-gradient(145deg, #112016, #243328);
  box-shadow: 0 18px 48px rgba(35, 51, 39, 0.16);
}

.kshama-stack::after {
  content: "";
  position: absolute;
  inset: 26px 0 auto 28px;
  z-index: 1;
  width: 74px;
  height: 1px;
  background: rgba(255, 255, 255, 0.46);
  pointer-events: none;
}

.kshama-stack-track {
  position: relative;
  display: block;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
  background: #e5ded6;
}

.kshama-stack .quote-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #e5ded6;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.012);
  transition: transform 0.55s ease, opacity 0.55s ease;
  will-change: transform, opacity, filter;
}

.kshama-stack .quote-slide.pos-center {
  transform: scale(1);
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
}

.kshama-stack .quote-slide.pos-left,
.kshama-stack .quote-slide.pos-right {
  transform: scale(1.035);
  opacity: 0;
  z-index: 1;
}

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

.image-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 28px;
  color: var(--mgray);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(45, 45, 45, 0.08)),
    #ded8d0;
}

.image-placeholder span:not(.placeholder-icon) {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.image-placeholder small {
  max-width: 220px;
  color: #8a8580;
  font-size: 12px;
  line-height: 1.5;
}

.placeholder-icon {
  width: 50px;
  height: 50px;
  border: 1.5px solid #aaa39c;
  border-radius: 50%;
  position: relative;
}

.placeholder-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24px;
  width: 62px;
  height: 34px;
  border: 1.5px solid #aaa39c;
  border-bottom: 0;
  border-radius: 50px 50px 0 0;
  transform: translateX(-50%);
}

.quote-panel {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 22px;
  border: 1px solid rgba(236, 241, 226, 0.14);
  border-radius: 14px;
  color: #fbfaf6;
  background:
    linear-gradient(145deg, rgba(14, 25, 17, 0.94), rgba(28, 45, 33, 0.9));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.quote-panel p {
  font-family: var(--serif);
  font-size: clamp(16px, 1.45vw, 20px);
  font-style: italic;
  line-height: 1.45;
}

.quote-panel span {
  display: block;
  margin-top: 12px;
  color: rgba(248, 251, 244, 0.68);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.carousel-controls {
  display: none;
}

.kshama-stack .carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 0 4px;
}

.icon-button,
.carousel-dot {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.icon-button {
  width: 32px;
  height: 32px;
  border-radius: 100px;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: rgba(36, 125, 54, 0.42);
  background: rgba(36, 125, 54, 0.08);
  color: var(--vidyaara-green);
  transform: translateY(-1px);
}

.carousel-dots {
  display: flex;
  gap: 9px;
}

.carousel-dot {
  width: 22px;
  height: 3px;
  border-radius: 999px;
  padding: 0;
}

.carousel-dot.is-active {
  background: var(--vidyaara-green);
  border-color: var(--vidyaara-green);
}

.problem-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 8%, rgba(36, 125, 54, 0.045), transparent 30%),
    var(--white);
}

.problem-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.problem-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--vidyaara-green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.problem-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.problem-intro h2 {
  max-width: 700px;
  font-size: clamp(30px, 3.25vw, 46px);
  line-height: 1.18;
}

.problem-intro p:last-child {
  max-width: 690px;
  margin-top: 18px;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.78;
}

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

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  perspective: 1100px;
}

.platform-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glare-x: 50%;
  --glare-y: 50%;
  border: 1px solid rgba(45, 45, 45, 0.08);
  border-top: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 250, 246, 0.94));
  padding: 30px 30px 28px;
  box-shadow: 0 14px 38px rgba(35, 51, 39, 0.045);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.platform-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: rgba(36, 125, 54, 0.28);
  z-index: 2;
  transform: translateZ(28px);
}

.platform-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--glare-x) var(--glare-y), rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.16) 18%, transparent 44%);
  mix-blend-mode: screen;
  transition: opacity 0.18s ease;
}

.platform-card:first-child {
  border-color: rgba(36, 125, 54, 0.14);
  box-shadow: 0 18px 48px rgba(35, 51, 39, 0.075);
}

.platform-card:hover {
  border-color: rgba(36, 125, 54, 0.18);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-4px);
  box-shadow: 0 26px 66px rgba(35, 51, 39, 0.14);
}

.platform-card:hover::after {
  opacity: 0.72;
}

.gap-card {
  position: relative;
  height: 342px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  border: 1px solid rgba(36, 45, 39, 0.1);
  border-top: 3px solid var(--teal);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(79, 143, 145, 0.22) 0%, rgba(79, 143, 145, 0.06) 35%, transparent 58%),
    rgba(247, 245, 241, 0.02);
  box-shadow: 0 8px 30px rgba(18, 24, 20, 0.055);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gap-card:focus-visible {
  outline: 2px solid rgba(79, 143, 145, 0.5);
  outline-offset: 4px;
}

.gap-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.gap-card-orange {
  border-top-color: var(--orange);
}

.platform-card-orange {
  border-top-color: var(--orange);
}

.gap-card-orange {
  background:
    radial-gradient(circle at 50% 0%, rgba(210, 136, 53, 0.18) 0%, rgba(210, 136, 53, 0.05) 35%, transparent 58%),
    rgba(247, 245, 241, 0.02);
}

.gap-card-green {
  border-top-color: var(--green);
  background:
    radial-gradient(circle at 50% 0%, rgba(105, 168, 142, 0.16) 0%, rgba(105, 168, 142, 0.05) 35%, transparent 58%),
    rgba(247, 245, 241, 0.02);
}

.platform-card-green {
  border-top-color: var(--green);
}

.platform-card-purple {
  border-top-color: var(--purple);
}

.gap-index {
  position: absolute;
  top: 18px;
  left: 22px;
  z-index: 2;
  color: rgba(36, 45, 39, 0.46);
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.gap-illustration-wrap {
  position: absolute;
  top: 37%;
  left: 50%;
  z-index: 1;
  width: min(68%, 220px);
  opacity: 0.9;
  transform: translate(-50%, -50%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gap-card:hover .gap-illustration-wrap {
  transform: translate(-50%, calc(-50% - 12px)) scale(1.15);
}

.gap-illustration {
  display: block;
  width: 100%;
  height: auto;
}

.gap-illustration path,
.gap-illustration circle,
.gap-illustration rect {
  vector-effect: non-scaling-stroke;
}

.platform-card h3 {
  margin-bottom: 12px;
}

.platform-card p {
  color: var(--mgray);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.72;
}

.gap-content {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  margin: 0;
  border: 1px solid rgba(36, 45, 39, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  padding: 15px 18px 16px;
  box-shadow: 0 14px 32px rgba(18, 24, 20, 0.055);
  backdrop-filter: blur(10px);
}

.gap-tag {
  display: inline-block;
  margin-bottom: 8px;
  border: 1px solid rgba(79, 143, 145, 0.28);
  border-radius: 20px;
  background: rgba(79, 143, 145, 0.12);
  color: var(--teal);
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.gap-card-orange .gap-tag {
  border-color: rgba(210, 136, 53, 0.28);
  background: rgba(210, 136, 53, 0.12);
  color: var(--orange);
}

.gap-card-green .gap-tag {
  border-color: rgba(105, 168, 142, 0.28);
  background: rgba(105, 168, 142, 0.12);
  color: var(--green);
}

.gap-content h3 {
  margin-bottom: 7px;
  color: #1e1e1e;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.gap-content p {
  color: #4f4f4f;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.55;
}

.gap-content strong {
  display: block;
  margin-top: 9px;
  color: var(--teal);
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.5;
}

.gap-card-orange .gap-content strong {
  color: var(--orange);
}

.gap-card-green .gap-content strong {
  color: var(--green);
}

.gap-read-more {
  display: block;
  margin-top: 11px;
  color: #1e1e1e;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.gap-card:hover .gap-read-more,
.gap-card-orange:hover .gap-read-more,
.gap-card-green:hover .gap-read-more {
  color: #1e1e1e;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(4px);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gap-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1001;
  width: 640px;
  max-width: 92vw;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  border: 0;
  border-top: 3px solid var(--teal);
  border-radius: 20px;
  background: var(--soft);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding: 48px;
  transform: translate(-50%, -50%) translateY(24px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease, visibility 0.25s ease;
}

.gap-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) translateY(0);
}

.modal-orange {
  border-top-color: var(--orange);
}

.modal-green {
  border-top-color: var(--green);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  border: 0;
  background: transparent;
  color: #cccccc;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  padding: 0;
  transition: color 0.15s ease;
}

.modal-close:hover,
.modal-close:focus-visible {
  color: #333333;
}

.modal-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  margin: -48px -48px 28px;
  padding: 20px 48px;
  border-radius: 17px 17px 0 0;
  background: rgba(79, 143, 145, 0.07);
}

.modal-orange .modal-illustration {
  background: rgba(210, 136, 53, 0.07);
}

.modal-green .modal-illustration {
  background: rgba(105, 168, 142, 0.07);
}

.modal-illustration svg {
  width: auto;
  height: 100%;
}

.modal-tag {
  display: inline-block;
  margin-bottom: 16px;
  border-radius: 20px;
  background: rgba(79, 143, 145, 0.1);
  color: var(--teal);
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.modal-orange .modal-tag {
  background: rgba(210, 136, 53, 0.1);
  color: var(--orange);
}

.modal-green .modal-tag {
  background: rgba(105, 168, 142, 0.1);
  color: var(--green);
}

.gap-modal h2 {
  margin-bottom: 20px;
  color: #1e1e1e;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

.modal-points {
  margin-bottom: 24px;
}

.modal-points p {
  margin: 0;
  color: #383838;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.78;
}

.modal-points p + p {
  margin-top: 12px;
}

.modal-action-points {
  margin-bottom: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(36, 45, 39, 0.1);
}

.modal-action-points p {
  margin: 0;
  color: #333333;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.modal-action-points p + p {
  margin-top: 10px;
  color: #3f3f3f;
  font-weight: 500;
}

.modal-cta {
  display: block;
  text-align: center;
  border-radius: 100px;
  background: var(--teal);
  color: #ffffff;
  padding: 14px 36px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.modal-orange .modal-cta {
  background: var(--orange);
}

.modal-green .modal-cta {
  background: var(--green);
}

.modal-cta:hover,
.modal-cta:focus-visible {
  opacity: 0.88;
  transform: translateY(-2px);
}

.platform-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(36, 125, 54, 0.045), transparent 30%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f5f1 100%);
}

.platform-section .section-heading {
  margin-bottom: 40px;
}

.platform-section .section-kicker {
  margin-bottom: 14px;
  color: rgba(36, 125, 54, 0.82);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.platform-section .section-kicker::before {
  width: 26px;
  opacity: 0.72;
}

.platform-section h2 {
  max-width: 720px;
  color: #243027;
  line-height: 1.12;
}

.platform-section h2 span {
  color: var(--vidyaara-green);
  font-style: italic;
}

.platform-card > span {
  position: relative;
  z-index: 3;
  display: block;
  margin-bottom: 14px;
  color: #607269;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateZ(34px);
}

.platform-card-orange > span,
.platform-card-orange a {
  color: inherit;
}

.platform-card-purple > span,
.platform-card-purple strong,
.platform-card-purple a {
  color: inherit;
}

.platform-card-green > span,
.platform-card-green a {
  color: inherit;
}

.platform-card a {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  color: var(--vidyaara-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  transform: translateZ(36px);
  transition: color 0.18s ease, transform 0.18s ease;
}

.platform-card a span {
  display: inline-block;
  line-height: 1;
  transform: translateY(-0.02em);
}

.platform-card a:hover,
.platform-card a:focus-visible {
  color: #1f6b30;
  transform: translateZ(36px) translateX(2px);
}

.platform-section .platform-card h3 {
  position: relative;
  z-index: 3;
  color: #263128;
  font-size: 21px;
  line-height: 1.22;
  transform: translateZ(42px);
}

.platform-section .platform-card p {
  position: relative;
  z-index: 3;
  color: #565f58;
  font-size: 15px;
  line-height: 1.72;
  transform: translateZ(28px);
}

@media (prefers-reduced-motion: reduce) {
  .platform-card,
  .platform-card:hover,
  .platform-card span,
  .platform-card a,
  .platform-card a:hover,
  .platform-card a:focus-visible,
  .platform-section .platform-card h3,
  .platform-section .platform-card p {
    transform: none;
  }

  .platform-card::after {
    display: none;
  }

  .axis-point-group {
    animation: none;
  }
}

.community-teaser {
  padding: 20px 0 80px;
  background: var(--soft);
}

.community-teaser-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.18), transparent 32%),
    var(--purple);
  color: var(--white);
  padding: 54px 56px;
}

.community-teaser-card h2 {
  max-width: 620px;
  color: var(--white);
}

.community-teaser-card p:not(.section-kicker) {
  max-width: 660px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
}

.platform-card strong {
  display: inline-flex;
  margin-top: 24px;
  border-radius: 4px;
  background: rgba(138, 165, 143, 0.09);
  padding: 6px 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-section {
  padding: 80px 0;
}

.event-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  padding: 48px;
}

.event-copy {
  max-width: 700px;
}

.event-copy p:not(.section-kicker) {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 300;
}

.event-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.event-facts li {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.notes-section {
  background: var(--soft);
  text-align: center;
}

.notes-inner {
  max-width: 680px;
}

.notes-inner .section-kicker {
  justify-content: center;
}

.notes-inner p:not(.section-kicker):not(.form-note) {
  margin-top: 18px;
  color: var(--mgray);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.65;
}

.signup-form {
  display: flex;
  margin-top: 34px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.signup-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 6px 0 0 6px;
  padding: 16px 18px;
  color: var(--dgray);
  background: var(--white);
}

.signup-form button {
  border: 0;
  border-radius: 100px;
  background: var(--orange);
  color: var(--white);
  padding: 0 24px;
  font-weight: 900;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.form-note {
  margin-top: 14px;
  color: #999999;
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* Homepage green-led text system */
.problem-section .section-kicker,
.kshama-trust .section-kicker:not(.section-kicker-on-color),
.notes-section .section-kicker {
  color: var(--vidyaara-green);
}

.problem-section h2,
.kshama-copy h2,
.notes-section h2,
.platform-card h3 {
  color: var(--vidyaara-green);
}

.gap-content h3 {
  color: #1e1e1e;
}

.kshama-meaning {
  color: var(--vidyaara-green);
}

.kshama-stack .icon-button:hover,
.kshama-stack .icon-button:focus-visible {
  border-color: var(--vidyaara-green);
  color: var(--vidyaara-green);
}

.kshama-stack .carousel-dot.is-active {
  background: var(--vidyaara-green);
  border-color: var(--vidyaara-green);
}

.event-section .button-light {
  color: var(--vidyaara-green);
}

.notes-section .signup-form button {
  background: var(--vidyaara-green);
}

.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 56px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-footer {
  width: 36px;
  height: 36px;
  max-width: 36px;
  object-fit: contain;
}

.footer-brand-live span {
  color: #fbfaf6;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.footer-tagline {
  margin-top: 6px;
  color: var(--orange);
  font-family: var(--serif);
  font-style: italic;
}

.footer-copy {
  max-width: 310px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--teal);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.34);
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-delay-1 {
  animation-delay: 0.08s;
}

.reveal-delay-2 {
  animation-delay: 0.18s;
}

.reveal-delay-3 {
  animation-delay: 0.28s;
}

.reveal-delay-4 {
  animation-delay: 0.38s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .nav-shell {
    width: min(92vw, 720px);
    min-height: 66px;
    padding: 7px 14px 7px 28px;
  }

  .brand-mark {
    gap: 10px;
  }

  .brand-logo-header {
    height: 38px;
    max-width: 40px;
  }

  .brand-word {
    font-size: 30px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav,
  .nav-actions {
    display: none;
  }

  .primary-nav.is-open {
    position: fixed;
    top: 78px;
    left: 4vw;
    right: 4vw;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(36, 125, 54, 0.12);
    border-radius: 22px;
    background: rgba(251, 250, 246, 0.93);
    box-shadow: 0 16px 42px rgba(41, 49, 43, 0.12);
    backdrop-filter: blur(18px);
  }

  .primary-nav.is-open a {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(45, 45, 45, 0.08);
    font-size: 15px;
  }

  .primary-nav.is-open .nav-dropdown-wrap {
    border-bottom: 1px solid rgba(45, 45, 45, 0.08);
  }

  .primary-nav.is-open .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 18px 24px;
    font-size: 15px;
  }

  .primary-nav.is-open .nav-dropdown {
    position: static;
    width: auto;
    max-height: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0 12px;
    opacity: 1;
    pointer-events: none;
    transform: none;
    transition: max-height 0.2s ease, padding 0.2s ease;
  }

  .primary-nav.is-open .nav-dropdown-wrap:has(.nav-dropdown-trigger[aria-expanded="true"]) .nav-dropdown {
    max-height: 420px;
    padding: 0 12px 12px;
    pointer-events: all;
    transform: none;
  }

  .primary-nav.is-open .nav-dropdown-item {
    padding: 12px;
    border-bottom: 0;
  }

  .nav-actions.is-open {
    position: fixed;
    left: 4vw;
    right: 4vw;
    bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(36, 125, 54, 0.12);
    border-radius: 999px;
    background: rgba(251, 250, 246, 0.93);
    box-shadow: 0 14px 34px rgba(41, 49, 43, 0.1);
    padding: 11px 14px 11px 18px;
    backdrop-filter: blur(18px);
  }
}

@media (max-width: 1020px) {
  .site-header {
    top: 12px;
  }

  .nav-shell {
    width: min(92vw, 720px);
    min-height: 66px;
    padding: 7px 14px 7px 28px;
  }

  .brand-mark {
    gap: 10px;
  }

  .brand-logo-header {
    height: 38px;
    max-width: 40px;
  }

  .brand-word {
    font-size: 30px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav,
  .nav-actions {
    display: none;
  }

  .primary-nav.is-open {
    position: fixed;
    top: 78px;
    left: 4vw;
    right: 4vw;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(36, 125, 54, 0.12);
    border-radius: 22px;
    background: rgba(251, 250, 246, 0.93);
    box-shadow: 0 16px 42px rgba(41, 49, 43, 0.12);
    backdrop-filter: blur(18px);
  }

  .primary-nav.is-open a {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(45, 45, 45, 0.08);
    font-size: 15px;
  }

  .nav-actions.is-open {
    position: fixed;
    left: 4vw;
    right: 4vw;
    bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(36, 125, 54, 0.12);
    border-radius: 999px;
    background: rgba(251, 250, 246, 0.93);
    box-shadow: 0 14px 34px rgba(41, 49, 43, 0.1);
    padding: 11px 14px 11px 18px;
    backdrop-filter: blur(18px);
  }

  .hero-content {
    width: min(100%, 590px);
  }

  .hero-cards {
    right: -8%;
    opacity: 0.72;
    scale: 0.82;
    transform: translateY(-50%);
  }

  .system-line-1,
  .system-line-2,
  .system-line-3 {
    right: -10%;
    width: 56vw;
  }

  .carousel-track,
  .gap-grid,
  .platform-grid,
  .footer-grid,
  .kshama-carousel-shell {
    grid-template-columns: 1fr;
  }

  .problem-intro {
    max-width: 680px;
    margin-bottom: 30px;
  }

  .gap-grid {
    gap: 20px;
  }

  .gap-card {
    height: 330px;
  }

  .gap-illustration-wrap {
    width: min(62%, 210px);
  }

  .kshama-carousel-shell {
    grid-template-areas:
      "copy"
      "media"
      "proof";
    gap: 36px;
  }

  .kshama-stack {
    justify-self: start;
    width: min(100%, 430px);
  }

  .kshama-stack-track {
    display: block;
    height: 500px;
  }

  .carousel-track {
    overflow: hidden;
  }

  .quote-slide {
    display: none;
    min-height: 560px;
  }

  .quote-slide.is-active {
    display: block;
  }

  .kshama-stack .quote-slide {
    display: block;
    min-height: 0;
  }

  .carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 22px;
  }

  .event-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .community-teaser-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 1180px) {
  .primary-nav.is-open,
  .nav-actions.is-open {
    border-color: rgba(36, 125, 54, 0.12);
    background: rgba(251, 250, 246, 0.93);
    box-shadow: 0 14px 34px rgba(41, 49, 43, 0.1);
    backdrop-filter: blur(18px);
  }

  .primary-nav.is-open a,
  .primary-nav.is-open .nav-dropdown-wrap {
    border-bottom-color: rgba(36, 125, 54, 0.1);
  }

  .primary-nav.is-open .nav-dropdown {
    background: transparent;
  }

  .primary-nav.is-open .nav-dropdown-item:hover,
  .primary-nav.is-open .nav-dropdown-item:focus-visible {
    background: rgba(36, 125, 54, 0.08);
  }

  .hero-header .nav-toggle {
    border-color: rgba(36, 125, 54, 0.14);
    background: rgba(36, 125, 54, 0.045);
  }

  .hero-header .nav-toggle span {
    background: rgba(36, 125, 54, 0.78);
  }

  .hero-header .primary-nav.is-open,
  .hero-header .nav-actions.is-open {
    border-color: rgba(36, 125, 54, 0.12);
    background: rgba(251, 250, 246, 0.93);
    box-shadow: 0 14px 34px rgba(41, 49, 43, 0.1);
    backdrop-filter: blur(18px);
  }

  .hero-header .primary-nav.is-open a,
  .hero-header .primary-nav.is-open .nav-dropdown-wrap {
    border-bottom-color: rgba(36, 125, 54, 0.1);
  }

  .hero-header .primary-nav.is-open .nav-dropdown {
    background: transparent;
  }

  .hero-header .primary-nav.is-open .nav-dropdown-item:hover,
  .hero-header .primary-nav.is-open .nav-dropdown-item:focus-visible {
    background: rgba(36, 125, 54, 0.08);
  }
}

@media (max-width: 720px) {
  .container,
  .nav-shell {
    width: min(100% - 32px, 1140px);
  }

  .section-pad {
    padding: 72px 0;
  }

  .problem-section {
    padding-top: 68px;
  }

  .problem-eyebrow {
    gap: 10px;
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .problem-eyebrow::before {
    width: 24px;
  }

  .problem-intro h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .problem-intro p:last-child {
    font-size: 15px;
    line-height: 1.72;
  }

  .gap-card {
    height: 340px;
  }

  .gap-illustration-wrap {
    top: 35%;
    width: min(64%, 210px);
  }

  .gap-content {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 15px 16px 16px;
  }

  .nav-shell {
    border-radius: 999px;
    min-height: 56px;
    padding: 7px 11px 7px 18px;
  }

  .brand-mark {
    gap: 9px;
  }

  .brand-logo-header {
    height: 32px;
    max-width: 34px;
  }

  .brand-word {
    font-size: 24px;
  }

  .brand-line {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-inner {
    padding: 120px 24px 80px;
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.12;
    margin-bottom: 24px;
  }

  .hero-tagline {
    font-size: clamp(20px, 6vw, 26px);
    margin-bottom: 32px;
  }

  .hero-frame::before,
  .hero-frame::after {
    width: 34px;
    height: 34px;
  }

  .hero-frame::before {
    top: 104px;
    left: -8px;
  }

  .hero-frame::after {
    right: -8px;
    bottom: 30px;
  }

  .hero-cards {
    display: none;
  }

  h1 {
    font-size: clamp(38px, 14vw, 54px);
  }

  h2 {
    font-size: clamp(29px, 10vw, 40px);
  }

  .button {
    width: 100%;
  }

  .nav-actions.is-open .button {
    width: auto;
  }

  .hero-actions {
    width: 100%;
  }

  .kshama-carousel-shell h2,
  .kshama-copy h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .kshama-trust.section-pad {
    padding: 58px 0;
  }

  .kshama-founder-meta {
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 16px;
    padding-bottom: 0;
  }

  .kshama-founder-meta::before {
    width: 30px;
  }

  .kshama-founder-meta span {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .credential-list-founder {
    gap: 7px;
    margin-top: 0;
  }

  .kshama-quote-founder {
    margin-top: 18px;
    padding: 16px 0 0 16px;
    font-size: 18px;
  }

  .kshama-intro {
    font-size: 15px;
  }

  .credential-list span {
    font-size: 11px;
  }

  .kshama-stack,
  .kshama-stack-track,
  .quote-slide {
    min-height: 0;
  }

  .gap-card,
  .platform-card {
    padding: 24px;
  }

  .gap-card {
    padding: 0;
  }

  .kshama-stack {
    width: 100%;
    padding: 10px;
  }

  .kshama-stack-track {
    height: 440px;
  }

  .kshama-stack::before {
    inset: 28px 0 38px 22px;
  }

  .kshama-stack::after {
    display: none;
  }

  .quote-panel {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 18px;
  }

  .event-card {
    padding: 32px 24px;
  }

  .community-teaser-card {
    padding: 34px 24px;
  }

  .event-facts {
    display: grid;
  }

  .signup-form {
    display: grid;
    box-shadow: none;
    gap: 10px;
  }

  .signup-form input,
  .signup-form button {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--line);
    border-radius: 100px;
  }

  .footer-bottom {
    display: grid;
  }
}

/* Vidyaara content refresh */
:root {
  --muted-teal: #4f8f91;
  --sage: #8aa58f;
  --ivory: #fbfaf6;
}

.brand-mark {
  gap: 10px;
}

.brand-logo-header {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-word {
  line-height: 1;
}

.hero-sub-secondary {
  margin-top: -6px;
  margin-bottom: 28px;
}

.axis-hero-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  opacity: 0.9;
}

.axis-card {
  position: relative;
  width: min(100%, 530px);
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(36, 125, 54, 0.075), transparent 58%),
    radial-gradient(circle at 58% 48%, rgba(138, 165, 143, 0.055), transparent 48%);
  box-shadow: none;
  padding: 8px 8px 0;
  backdrop-filter: none;
  filter: none;
}

.axis-card::before {
  content: "";
  position: absolute;
  inset: 34px 20px 58px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.14);
  box-shadow: 0 0 74px rgba(36, 125, 54, 0.075);
}

.axis-kicker {
  margin: 0 0 2px;
  color: rgba(36, 64, 43, 0.74);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.axis-wheel {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.axis-glow {
  opacity: 0.58;
}

.axis-polygon {
  fill: none;
  stroke: rgba(45, 45, 45, 0.48);
  stroke-width: 1.35;
  stroke-linejoin: round;
}

.axis-spoke {
  stroke: rgba(45, 45, 45, 0.34);
  stroke-width: 1.2;
  stroke-linecap: round;
}

.axis-spoke-strong {
  stroke: rgba(36, 125, 54, 0.54);
}

.axis-hub {
  fill: rgba(251, 250, 246, 0.68);
  stroke: rgba(45, 45, 45, 0.44);
  stroke-width: 1.35;
}

.axis-hub-ring {
  fill: none;
  stroke: rgba(36, 125, 54, 0.14);
  stroke-width: 1;
}

.axis-node {
  fill: rgba(36, 125, 54, 0.82);
  stroke: rgba(251, 250, 246, 0.86);
  stroke-width: 2.4;
}

.axis-label-plate {
  fill: rgba(251, 250, 246, 0.72);
  stroke: rgba(138, 165, 143, 0.12);
  stroke-width: 0.8;
}

.axis-point-group {
  transform-box: fill-box;
  transform-origin: center;
  animation: axisFloat 8s ease-in-out infinite;
}

.axis-point-2 { animation-delay: -1.2s; }
.axis-point-3 { animation-delay: -2.4s; }
.axis-point-4 { animation-delay: -3.6s; }
.axis-point-5 { animation-delay: -4.8s; }

@keyframes axisFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.axis-label {
  fill: var(--vidyaara-green);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.045em;
}

.axis-label-green {
  fill: var(--vidyaara-green);
}

.axis-center-label {
  fill: #37433a;
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
}

.axis-caption {
  max-width: 390px;
  margin: -4px auto 0;
  color: rgba(55, 67, 58, 0.72);
  font-family: var(--serif);
  font-size: clamp(14px, 1.18vw, 17px);
  font-style: italic;
  line-height: 1.55;
  text-align: center;
}

.problem-intro {
  max-width: 900px;
}

.problem-intro h2 {
  max-width: 860px;
}

.gap-card {
  height: 470px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 0%, rgba(79, 143, 145, 0.15) 0%, rgba(79, 143, 145, 0.05) 36%, transparent 58%),
    rgba(251, 250, 246, 0.78);
}

.gap-card:not(.gap-card-orange):not(.gap-card-green) {
  border-top-color: var(--muted-teal);
}

.gap-card:not(.gap-card-orange):not(.gap-card-green) .gap-tag,
.gap-card:not(.gap-card-orange):not(.gap-card-green) .gap-content strong {
  color: var(--muted-teal);
}

.gap-illustration-wrap {
  top: 26%;
  width: min(56%, 190px);
  opacity: 0.72;
}

.gap-content {
  display: grid;
  min-height: 270px;
  align-content: start;
  border-radius: 12px;
  padding: 18px;
}

.gap-content h3 {
  font-size: 21px;
}

.gap-explainer {
  margin-top: 9px;
}

.gap-content strong {
  margin-top: 14px;
  color: var(--muted-teal);
  font-size: 13px;
  line-height: 1.42;
}

.gap-content small {
  display: block;
  margin-top: 7px;
  color: rgba(45, 45, 45, 0.52);
  font-size: 10px;
  line-height: 1.45;
}

.gap-read-more {
  margin-top: 15px;
  color: #243027;
}

.gcc-stats-block {
  margin-top: 34px;
  border: 1px solid rgba(36, 125, 54, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 245, 241, 0.86));
  box-shadow: 0 20px 52px rgba(35, 51, 39, 0.07);
  padding: clamp(26px, 4vw, 40px);
}

.gcc-stats-block > p {
  max-width: 820px;
  color: #263128;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 34px);
  font-style: italic;
  line-height: 1.3;
}

.gcc-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.gcc-stat-grid span {
  border-left: 2px solid rgba(36, 125, 54, 0.28);
  color: #4d574d;
  font-size: 13px;
  line-height: 1.6;
  padding-left: 12px;
}

.gcc-stats-block small,
.modal-source-footer p {
  display: block;
  margin-top: 22px;
  color: rgba(45, 45, 45, 0.55);
  font-size: 11px;
  line-height: 1.55;
}

.modal-stat {
  margin-top: 18px !important;
  border-left: 2px solid currentColor;
  color: var(--vidyaara-green) !important;
  font-family: var(--serif) !important;
  font-size: 21px !important;
  font-style: italic;
  line-height: 1.45 !important;
  padding-left: 16px;
}

.modal-orange .modal-stat {
  color: var(--orange) !important;
}

.modal-green .modal-stat {
  color: var(--green) !important;
}

.executive-coaching {
  background:
    radial-gradient(circle at 82% 14%, rgba(210, 136, 53, 0.1), transparent 30%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f5f1 100%);
}

.coaching-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.coaching-copy h2 {
  max-width: 720px;
  color: #243027;
}

.coaching-copy > p:not(.section-kicker) {
  max-width: 660px;
  margin-top: 18px;
  color: #4e5a52;
  font-size: 16px;
  line-height: 1.85;
}

.coaching-lede {
  color: #9a642b !important;
  font-family: var(--serif);
  font-size: 22px !important;
  font-style: italic;
}

.coaching-cta {
  margin-top: 30px;
  background: linear-gradient(180deg, #d28835, #b97128) !important;
  border-color: rgba(210, 136, 53, 0.44) !important;
  box-shadow: 0 14px 34px rgba(210, 136, 53, 0.16) !important;
}

.coaching-panel {
  border: 1px solid rgba(210, 136, 53, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 62px rgba(35, 51, 39, 0.09);
  padding: clamp(28px, 4vw, 40px);
}

.coaching-panel-kicker {
  display: block;
  margin-bottom: 20px;
  color: #9a642b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coaching-outcomes {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coaching-outcomes li {
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
  color: #2f3a32;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.35;
  padding-bottom: 16px;
}

.coaching-outcomes li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.founder-letter .kshama-carousel-shell {
  grid-template-areas: "copy media";
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 410px);
}

.founder-letter .kshama-founder-copy {
  max-width: 760px;
}

.founder-eyebrow .section-kicker {
  color: var(--vidyaara-green);
}

.founder-credential-stack {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  border-top: 1px solid rgba(36, 125, 54, 0.14);
  border-bottom: 1px solid rgba(36, 125, 54, 0.14);
  padding: 18px 0;
}

.founder-credential-stack p {
  color: #3f4a42;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.65;
}

.founder-quote {
  margin: 24px 0 0;
  border-left: 2px solid var(--vidyaara-green);
  color: #243027;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-style: italic;
  line-height: 1.45;
  padding-left: 18px;
}

.founder-story {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  max-width: 720px;
}

.founder-story p {
  color: #4e5a52;
  font-size: 15px;
  line-height: 1.82;
}

.founder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.founder-link {
  border-color: rgba(36, 125, 54, 0.28);
  color: var(--vidyaara-green);
}

.event-section {
  background: #fbfaf6;
}

.event-card {
  border: 1px solid rgba(36, 125, 54, 0.16);
  background:
    radial-gradient(circle at 84% 12%, rgba(138, 165, 143, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 245, 241, 0.94));
  color: #243027;
  box-shadow: 0 24px 64px rgba(35, 51, 39, 0.09);
}

.event-card h2,
.event-copy p:not(.section-kicker) {
  color: #243027;
}

.event-copy p:not(.section-kicker) {
  color: #4e5a52;
}

.event-facts li {
  border-color: rgba(36, 125, 54, 0.18);
  background: rgba(36, 125, 54, 0.06);
  color: #3f4a42;
}

.event-section .section-kicker-on-color {
  color: var(--vidyaara-green);
}

.event-section .button-light {
  background: var(--vidyaara-green);
  color: var(--white);
}

.contact-form-card::before {
  content: "Executive Coaching";
  border-color: rgba(210, 136, 53, 0.24);
  background: rgba(210, 136, 53, 0.08);
  color: #9a642b;
}

.contact-page .form-submit button {
  background: linear-gradient(180deg, #d28835, #b97128);
  box-shadow: 0 14px 34px rgba(210, 136, 53, 0.16);
}

.contact-page .form-submit button:hover,
.contact-page .form-submit button:focus-visible {
  box-shadow: 0 18px 42px rgba(210, 136, 53, 0.2);
}

.community-hero-card,
.community-page .community-join {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.11), transparent 34%),
    linear-gradient(135deg, #17331f, #247d36);
  color: #fbfaf6;
}

.community-hero-card h2,
.community-hero-card p:not(.community-card-kicker),
.community-join-copy .section-kicker,
.community-join-copy h2,
.community-join-copy p,
.community-page .access-flow li {
  color: #fbfaf6;
}

.community-card-kicker,
.community-page .section-kicker,
.community-principles > p {
  color: var(--vidyaara-green);
}

.community-node-map span,
.community-node-map::before,
.community-node-map::after {
  border-color: rgba(248, 251, 244, 0.28);
}

.community-page .advantage-card::before,
.community-page .audience-bullets li::before {
  background: var(--vidyaara-green);
}

.community-page .community-access-form .form-submit button,
.community-page .community-join .form-submit button {
  background: var(--vidyaara-green);
}

@media (max-width: 1020px) {
  .axis-hero-card {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 560px);
    margin: 0 auto 34px;
    transform: none;
  }

  .axis-card {
    width: min(100%, 500px);
    padding: 8px 6px 0;
  }

  .hero-inner {
    padding-top: 24px;
  }

  .coaching-grid,
  .founder-letter .kshama-carousel-shell {
    grid-template-columns: 1fr;
  }

  .founder-letter .kshama-stack {
    justify-self: start;
  }

  .gcc-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .axis-card {
    padding: 4px 0 0;
  }

  .axis-card::before {
    inset: 34px 10px 54px;
  }

  .axis-kicker {
    font-size: 9px;
  }

  .axis-label {
    font-size: 12px;
  }

  .axis-caption {
    max-width: 330px;
    font-size: 13.5px;
  }

  .gap-card {
    height: auto;
    min-height: 430px;
  }

  .gap-content {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 170px 14px 14px;
  }

  .gcc-stat-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .gap-modal {
    width: 90vw;
    padding: 36px;
  }

  .modal-illustration {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .gap-modal {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    max-width: none;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    padding: 28px 24px;
    transform: translateY(100%);
  }

  .gap-modal.is-active {
    transform: translateY(0);
  }

  .modal-illustration {
    display: none;
  }

  .modal-close {
    top: 18px;
    right: 22px;
  }

  .gap-modal h2 {
    font-size: 25px;
  }

  .modal-points p {
    font-size: 14px;
    line-height: 1.75;
  }

  .modal-cta {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .system-line,
  .system-node,
  .reveal {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   PAGE-LEVEL HERO
   ============================================================ */

.page-hero {
  padding: 148px 0 80px;
  background:
    radial-gradient(circle at 80% 20%, rgba(79, 143, 145, 0.1), transparent 38%),
    radial-gradient(circle at 10% 80%, rgba(210, 136, 53, 0.07), transparent 36%),
    #1a1a1a;
  color: var(--white);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}

.page-hero .section-kicker {
  color: var(--teal);
  margin-bottom: 20px;
}

.page-hero-orange .section-kicker { color: var(--orange); }
.page-hero-green .section-kicker { color: var(--green); }
.page-hero-purple .section-kicker { color: var(--purple); }

.page-hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 500;
  max-width: 820px;
  margin-bottom: 18px;
  line-height: 1.15;
}

.page-hero-sub {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.82;
  margin-top: 0;
}

.page-hero-accent-line {
  width: 48px;
  height: 3px;
  background: var(--teal);
  margin: 28px 0 0;
  border-radius: 2px;
}

.page-hero-orange .page-hero-accent-line { background: var(--orange); }
.page-hero-green .page-hero-accent-line { background: var(--green); }
.page-hero-purple .page-hero-accent-line { background: var(--purple); }

/* ============================================================
   ABOUT PAGE - LIGHT EDITORIAL SYSTEM
   ============================================================ */

.about-page {
  background: #fbfaf6;
}

.about-hero {
  padding: 150px 0 86px;
  background:
    radial-gradient(circle at 82% 18%, rgba(36, 125, 54, 0.085), transparent 34%),
    radial-gradient(circle at 12% 84%, rgba(36, 125, 54, 0.04), transparent 32%),
    linear-gradient(180deg, #fbfaf6 0%, #f6f3eb 100%);
  color: #243027;
}

.about-hero::before {
  background-image:
    linear-gradient(rgba(36, 125, 54, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 125, 54, 0.028) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.about-hero .section-kicker {
  color: rgba(36, 125, 54, 0.82);
}

.about-hero h1 {
  max-width: 820px;
  color: #233327;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.05;
}

.about-hero .page-hero-sub {
  max-width: 690px;
  color: #4e5a52;
  font-size: 17px;
  font-weight: 400;
}

.about-hero .page-hero-accent-line {
  width: 58px;
  height: 2px;
  background: var(--vidyaara-green);
}

.about-section-alt {
  background:
    radial-gradient(circle at 84% 12%, rgba(36, 125, 54, 0.045), transparent 30%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f5f1 100%);
}

.about-page .section-kicker {
  color: var(--vidyaara-green);
}

.about-page .section-kicker::before {
  opacity: 0.72;
}

.about-page h2 {
  color: #243027;
}

.about-lede {
  max-width: 720px;
  color: #4e5a52;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.84;
}

.about-lede-compact {
  max-width: 640px;
  margin-bottom: 34px;
}

.about-poem-wrap {
  max-width: 720px;
  margin-top: 56px;
}

.about-page .story-inner {
  align-items: center;
}

.about-page .story-copy h2 {
  color: #243027;
  font-size: clamp(30px, 3.7vw, 48px);
  line-height: 1.12;
}

.about-page .story-copy p {
  color: #4e5a52;
  font-weight: 400;
}

.about-page .story-photo {
  border: 1px solid rgba(36, 125, 54, 0.12);
  border-radius: 22px;
  box-shadow: 0 26px 70px rgba(35, 51, 39, 0.13);
}

.about-page .timeline {
  gap: 18px;
}

.about-page .timeline::before {
  left: 26px;
  background: linear-gradient(to bottom, rgba(36, 125, 54, 0.5), rgba(36, 125, 54, 0.06));
}

.about-page .timeline-phase {
  padding: 28px 32px 28px 76px;
  border: 1px solid rgba(36, 125, 54, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 250, 246, 0.92));
  box-shadow: 0 14px 38px rgba(35, 51, 39, 0.045);
}

.about-page .timeline-phase::before {
  left: 18px;
  top: 34px;
  border-color: rgba(36, 125, 54, 0.55);
  background: #fbfaf6;
}

.about-page .phase-number {
  color: var(--vidyaara-green);
}

.about-page .timeline-phase h3 {
  color: #263128;
}

.about-page .timeline-phase p,
.about-page .credential-block p,
.about-page .belief-content p,
.about-page .axis-wheel-caption {
  color: #4f5a53;
  font-weight: 400;
}

.about-page .belief-block,
.about-page .credential-block {
  border-color: rgba(36, 125, 54, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(35, 51, 39, 0.045);
}

.about-page .belief-block:hover {
  box-shadow: 0 18px 46px rgba(35, 51, 39, 0.075);
}

.about-page .belief-number {
  background: rgba(36, 125, 54, 0.08);
  color: var(--vidyaara-green);
}

.about-page .belief-content h4,
.about-page .credential-block h3 {
  color: #263128;
}

.about-page .timeline[data-story-stack].is-scroll-enhanced {
  gap: 22px;
  padding-bottom: 56px;
  --story-stack-top: 112px;
}

.about-page .timeline[data-story-stack].is-scroll-enhanced::before {
  display: none;
}

.about-page .timeline[data-story-stack].is-scroll-enhanced .timeline-phase {
  position: sticky;
  top: calc(var(--story-stack-top) + (var(--stack-index, 0) * 16px));
  min-height: 176px;
  border-bottom: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 246, 240, 0.94));
  box-shadow: 0 16px 38px rgba(35, 51, 39, 0.075);
  transform: translateY(14px) scale(0.985);
  transform-origin: center top;
  transition:
    transform 0.38s ease,
    opacity 0.38s ease,
    box-shadow 0.38s ease,
    border-color 0.38s ease;
  will-change: transform, opacity;
}

.about-page .timeline[data-story-stack].is-scroll-enhanced .timeline-phase:nth-child(1) { --stack-index: 0; z-index: 1; }
.about-page .timeline[data-story-stack].is-scroll-enhanced .timeline-phase:nth-child(2) { --stack-index: 1; z-index: 2; }
.about-page .timeline[data-story-stack].is-scroll-enhanced .timeline-phase:nth-child(3) { --stack-index: 2; z-index: 3; }
.about-page .timeline[data-story-stack].is-scroll-enhanced .timeline-phase:nth-child(4) { --stack-index: 3; z-index: 4; }

.about-page .timeline[data-story-stack].is-scroll-enhanced .timeline-phase::before {
  display: none;
}

.about-page .timeline[data-story-stack].is-scroll-enhanced .timeline-phase::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  border-radius: 999px;
  background: rgba(36, 125, 54, 0.34);
}

.about-page .timeline[data-story-stack].is-scroll-enhanced .timeline-phase p {
  max-height: 320px;
  opacity: 0.72;
  overflow: hidden;
  transition:
    opacity 0.28s ease,
    transform 0.32s ease;
}

.about-page .timeline[data-story-stack].is-scroll-enhanced .timeline-phase.is-active {
  border-color: rgba(36, 125, 54, 0.2);
  box-shadow: 0 20px 52px rgba(35, 51, 39, 0.11);
  transform: translateY(0) scale(1);
}

.about-page .timeline[data-story-stack].is-scroll-enhanced .timeline-phase.is-active::after {
  background: var(--vidyaara-green);
}

.about-page .timeline[data-story-stack].is-scroll-enhanced .timeline-phase.is-active p {
  max-height: 320px;
  opacity: 1;
  transform: translateY(0);
}

.about-page .timeline[data-story-stack].is-scroll-enhanced .timeline-phase.is-complete {
  min-height: 112px;
  border-color: rgba(36, 125, 54, 0.16);
  box-shadow: 0 12px 28px rgba(35, 51, 39, 0.075);
  transform: translateY(calc(var(--stack-index, 0) * -7px)) scale(calc(1 - (var(--stack-index, 0) * 0.008)));
}

.about-page .timeline[data-story-stack].is-scroll-enhanced .timeline-phase.is-complete p {
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
}

.about-page .timeline[data-story-stack].is-scroll-enhanced .timeline-phase.is-upcoming {
  opacity: 0.82;
}

.about-page .beliefs-grid[data-axis-accordion].is-scroll-enhanced {
  gap: 14px;
}

.about-page .beliefs-grid[data-axis-accordion].is-scroll-enhanced .belief-block {
  align-items: center;
  transition:
    box-shadow 0.36s ease,
    border-color 0.36s ease,
    background 0.36s ease;
}

.about-page .beliefs-grid[data-axis-accordion].is-scroll-enhanced .belief-content p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.28s ease,
    transform 0.32s ease;
}

.about-page .beliefs-grid[data-axis-accordion].is-scroll-enhanced .belief-block.is-active {
  align-items: flex-start;
  border-color: rgba(36, 125, 54, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 245, 241, 0.92));
  box-shadow: 0 16px 38px rgba(35, 51, 39, 0.085);
}

.about-page .beliefs-grid[data-axis-accordion].is-scroll-enhanced .belief-block.is-active .belief-number {
  background: var(--vidyaara-green);
  color: var(--white);
}

.about-page .beliefs-grid[data-axis-accordion].is-scroll-enhanced .belief-block.is-active .belief-content p {
  max-height: 320px;
  opacity: 1;
  margin-top: 8px;
  transform: translateY(0);
}

.about-page .axis-wheel-wrap {
  border: 1px solid rgba(36, 125, 54, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  padding: 28px;
  box-shadow: 0 16px 44px rgba(35, 51, 39, 0.055);
}

.about-page .axis-wheel-wrap svg [stroke="#4F8F91"],
.about-page .axis-wheel-wrap svg [stroke="#69A88E"],
.about-page .axis-wheel-wrap svg [stroke="#D28835"],
.about-page .axis-wheel-wrap svg [stroke="#8AA58F"] {
  stroke: var(--vidyaara-green);
}

.about-page .axis-wheel-wrap svg [fill="#4F8F91"],
.about-page .axis-wheel-wrap svg [fill="#D28835"],
.about-page .axis-wheel-wrap svg [fill="#8AA58F"],
.about-page .axis-wheel-wrap svg [fill="#69A88E"] {
  fill: var(--vidyaara-green);
}

.about-page .axis-wheel-wrap svg text {
  fill: #405047;
}

.about-page .pull-quote {
  border-left-color: var(--vidyaara-green);
  background: linear-gradient(90deg, rgba(36, 125, 54, 0.055), transparent 76%);
}

.about-page .pull-quote cite {
  color: var(--vidyaara-green);
}

.about-page .credential-block {
  border-top: 2px solid rgba(36, 125, 54, 0.25);
}

.about-page .photo-gallery {
  gap: 22px;
}

.about-page .photo-gallery-item {
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(35, 51, 39, 0.1);
}

.closing-cta-about {
  background:
    linear-gradient(rgba(36, 125, 54, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 125, 54, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 82% 16%, rgba(36, 125, 54, 0.08), transparent 34%),
    linear-gradient(180deg, #fbfaf6 0%, #f6f3ed 100%);
  background-size: 86px 86px, 86px 86px, auto, auto;
  color: var(--dgray);
  text-align: left;
}

.closing-cta-about .container {
  position: relative;
  max-width: 1040px;
  padding-left: 34px;
}

.closing-cta-about .container::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: var(--vidyaara-green);
}

.closing-cta-about h2 {
  max-width: 820px;
  margin: 0 0 28px;
  color: var(--dgray);
  font-size: clamp(34px, 5vw, 64px);
  font-style: normal;
  line-height: 1.06;
}

.closing-cta-about .button {
  background: var(--vidyaara-green);
  color: var(--white);
}

.closing-cta-about .button-ghost {
  border-color: rgba(36, 125, 54, 0.28);
  background: rgba(255, 255, 255, 0.54);
  color: var(--vidyaara-green);
}

.closing-cta-about .closing-cta-actions {
  justify-content: flex-start;
}

/* ============================================================
   PLACEHOLDER BANNERS
   ============================================================ */

.placeholder-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid rgba(210, 136, 53, 0.28);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: rgba(210, 136, 53, 0.06);
  padding: 18px 22px;
  margin-bottom: 48px;
}

.placeholder-banner-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.placeholder-banner-body strong {
  display: block;
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.placeholder-banner-body p {
  color: var(--mgray);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   FOUNDER STORY - TIMELINE PHASES
   ============================================================ */

.timeline {
  display: grid;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--teal), rgba(79, 143, 145, 0.08));
}

.timeline-phase {
  position: relative;
  padding: 32px 0 32px 72px;
  border-bottom: 1px solid var(--line);
}

.timeline-phase:last-child {
  border-bottom: 0;
}

.timeline-phase::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 40px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  background: var(--white);
}

.phase-number {
  display: block;
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline-phase h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dgray);
  margin-bottom: 12px;
}

.timeline-phase p {
  color: var(--mgray);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.82;
  max-width: 680px;
}

.timeline-phase blockquote {
  margin: 20px 0 0;
  padding: 16px 20px;
  border-left: 3px solid var(--teal);
  background: rgba(79, 143, 145, 0.05);
  border-radius: 0 8px 8px 0;
  color: var(--mgray);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.72;
}

/* ============================================================
   PHILOSOPHY - BELIEF BLOCKS
   ============================================================ */

.beliefs-grid {
  display: grid;
  gap: 20px;
}

.belief-block {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 26px 28px 26px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  transition: box-shadow 0.2s ease;
}

.belief-block:hover {
  box-shadow: var(--shadow);
}

.belief-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(138, 165, 143, 0.1);
  color: var(--purple);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}

.belief-content h4 {
  margin: 0 0 8px;
  color: var(--dgray);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}

.belief-content p {
  color: var(--mgray);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.78;
  margin: 0;
}

/* ============================================================
   AXIS OF FIVE LAYOUT
   ============================================================ */

.axis-section {
  display: grid;
  grid-template-columns: 1fr minmax(0, 320px);
  gap: 64px;
  align-items: start;
}

.axis-wheel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.axis-wheel-wrap svg {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.axis-wheel-caption {
  color: var(--mgray);
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  font-style: italic;
  margin: 0;
}

/* ============================================================
   POEM PULL-QUOTE
   ============================================================ */

.pull-quote {
  margin: 0;
  padding: 28px 32px;
  border-left: 4px solid var(--purple);
  background: rgba(138, 165, 143, 0.05);
  border-radius: 0 12px 12px 0;
}

.pull-quote p {
  color: var(--dgray);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.72;
  margin: 0;
}

.pull-quote cite {
  display: block;
  margin-top: 16px;
  color: var(--purple);
  font-family: var(--sans);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   CREDENTIALS BLOCKS (ABOUT PAGE)
   ============================================================ */

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.credential-block {
  padding: 32px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  border-radius: 12px;
  background: var(--white);
}

.credential-block h3 {
  color: var(--green);
  font-size: 18px;
  margin-bottom: 12px;
}

.credential-block p {
  color: var(--mgray);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.78;
  margin: 0;
}

/* ============================================================
   PHOTO GALLERY (ABOUT PAGE)
   ============================================================ */

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.photo-gallery-item {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  background: #e5ded6;
}

.photo-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.photo-gallery-item.placeholder-photo {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(45, 45, 45, 0.08)), #ded8d0;
  color: var(--mgray);
  font-size: 12px;
  text-align: center;
  padding: 24px;
  font-style: italic;
}

/* ============================================================
   TESTIMONIALS (ABOUT PAGE)
   ============================================================ */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 24px;
  color: rgba(79, 143, 145, 0.18);
  font-family: var(--serif);
  font-size: 96px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card blockquote {
  margin: 0 0 20px;
  color: var(--dgray);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.testimonial-attribution strong {
  display: block;
  color: var(--dgray);
  font-size: 14px;
  font-weight: 700;
}

.testimonial-attribution span {
  display: block;
  color: var(--mgray);
  font-size: 12px;
  font-weight: 300;
  margin-top: 4px;
}

.testimonial-placeholder {
  padding: 36px;
  border: 1px dashed rgba(45, 45, 45, 0.15);
  border-radius: 16px;
  background: rgba(247, 245, 241, 0.5);
  color: var(--mgray);
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
}

/* ============================================================
   CLOSING CTA SECTION
   ============================================================ */

.closing-cta {
  padding: 88px 0;
  text-align: center;
  color: var(--white);
}

.closing-cta-teal { background: var(--teal); }
.closing-cta-purple { background: var(--purple); }
.closing-cta-dark { background: var(--dark); }

.closing-cta h2 {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: clamp(26px, 3.5vw, 40px);
  font-style: italic;
  color: var(--white);
}

.closing-cta p {
  max-width: 520px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

.closing-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.closing-cta-about {
  background:
    linear-gradient(rgba(36, 125, 54, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 125, 54, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 82% 16%, rgba(36, 125, 54, 0.08), transparent 34%),
    linear-gradient(180deg, #fbfaf6 0%, #f6f3ed 100%);
  background-size: 86px 86px, 86px 86px, auto, auto;
  color: var(--dgray);
  text-align: left;
}

.closing-cta-about .container {
  position: relative;
  max-width: 1040px;
  padding-left: 34px;
}

.closing-cta-about .container::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: var(--vidyaara-green);
}

.closing-cta-about h2 {
  max-width: 820px;
  margin: 0 0 28px;
  color: var(--dgray);
  font-size: clamp(34px, 5vw, 64px);
  font-style: normal;
  line-height: 1.06;
}

.closing-cta-about .closing-cta-actions {
  justify-content: flex-start;
}

/* ============================================================
   PROGRAMME CARDS
   ============================================================ */

.programme-grid {
  display: grid;
  gap: 24px;
}

.programme-card {
  padding: 36px 40px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 16px;
  background: var(--white);
}

.programme-card-orange { border-top-color: var(--orange); }
.programme-card-green { border-top-color: var(--green); }
.programme-card-purple { border-top-color: var(--purple); }

.programme-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.programme-kicker {
  display: block;
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.programme-card-orange .programme-kicker { color: var(--orange); }
.programme-card-green .programme-kicker { color: var(--green); }
.programme-card-purple .programme-kicker { color: var(--purple); }

.programme-card h3 {
  color: var(--dgray);
  font-size: 22px;
  margin-bottom: 0;
}

.programme-badge {
  flex-shrink: 0;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.programme-badge-teal { background: rgba(79, 143, 145, 0.12); color: var(--teal); }
.programme-badge-orange { background: rgba(210, 136, 53, 0.12); color: var(--orange); }
.programme-badge-green { background: rgba(105, 168, 142, 0.12); color: var(--green); }
.programme-badge-purple { background: rgba(138, 165, 143, 0.12); color: var(--purple); }
.programme-badge-gray { background: rgba(45, 45, 45, 0.08); color: var(--mgray); }

.programme-card p {
  color: var(--mgray);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 16px;
}

.programme-card p:last-of-type {
  margin-bottom: 0;
}

.programme-outcomes {
  margin: 16px 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.programme-outcomes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--dgray);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

.programme-outcomes li::before {
  content: "→";
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.programme-card-orange .programme-outcomes li::before { color: var(--orange); }
.programme-card-green .programme-outcomes li::before { color: var(--green); }
.programme-card-purple .programme-outcomes li::before { color: var(--purple); }

.programme-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: opacity 0.18s ease;
}

.programme-card-orange .programme-card-cta { color: var(--orange); }
.programme-card-green .programme-card-cta { color: var(--green); }
.programme-card-purple .programme-card-cta { color: var(--purple); }

.programme-card-cta:hover { opacity: 0.72; }

/* ============================================================
   AUDIENCE TRACKS (BUILT-FOR PAGE)
   ============================================================ */

.audience-tracks {
  display: grid;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.audience-track {
  display: grid;
  grid-template-columns: 6px 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.audience-track:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.audience-track-accent { background: var(--teal); }
.audience-track-accent-orange { background: var(--orange); }
.audience-track-accent-purple { background: var(--purple); }

.audience-track-body {
  padding: 32px 36px;
}

.track-kicker {
  display: block;
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.audience-track-orange .track-kicker { color: var(--orange); }
.audience-track-purple .track-kicker { color: var(--purple); }

.audience-track-body h3 {
  color: var(--dgray);
  font-size: 22px;
  margin-bottom: 12px;
}

.audience-track-body p {
  color: var(--mgray);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  margin-bottom: 16px;
}

.audience-track-body a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.18s ease;
}

.audience-track-orange .audience-track-body a { color: var(--orange); }
.audience-track-purple .audience-track-body a { color: var(--purple); }
.audience-track-body a:hover { opacity: 0.72; }

/* ============================================================
   ADVANTAGE CARDS (NETWORK PAGE)
   ============================================================ */

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.advantage-card {
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition: box-shadow 0.2s ease;
}

.advantage-card:hover {
  box-shadow: var(--shadow);
}

.advantage-card h4 {
  color: var(--dgray);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
}

.advantage-card p {
  color: var(--mgray);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.72;
  margin: 0;
}

/* ============================================================
   CONTACT / ENQUIRY FORMS
   ============================================================ */

.page-form {
  display: grid;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  color: var(--dgray);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid rgba(45, 45, 45, 0.15);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--dgray);
  background: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(79, 143, 145, 0.14);
}

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

.form-submit {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-submit button {
  border: 0;
  border-radius: 100px;
  background: var(--teal);
  color: var(--white);
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.form-submit button:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.form-submit-orange button { background: var(--orange); }
.form-submit-orange .form-field input:focus,
.form-submit-orange .form-field textarea:focus,
.form-submit-orange .form-field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(210, 136, 53, 0.14);
}

.form-post-note {
  color: var(--mgray);
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  margin: 0;
}

/* ============================================================
   WHAT HAPPENS NEXT STEPS
   ============================================================ */

.next-steps {
  display: grid;
  gap: 0;
}

.next-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.next-step:last-child {
  border-bottom: 0;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(79, 143, 145, 0.1);
  color: var(--teal);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.next-step-body h4 {
  margin: 0 0 6px;
  color: var(--dgray);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.next-step-body p {
  color: var(--mgray);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.72;
  margin: 0;
}

/* ============================================================
   KSHAMA AUTHORITY BLOCK (replaces Faculty)
   ============================================================ */

.kshama-authority-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 10%, rgba(210, 136, 53, 0.07), transparent 36%),
    var(--soft);
}

.kshama-authority-photo {
  width: 200px;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  display: block;
}

.kshama-authority-copy h3 {
  font-size: 24px;
  margin: 0 0 6px;
}

.authority-title {
  display: block;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.kshama-authority-copy p {
  color: var(--mgray);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.82;
  margin: 0;
}

.kshama-authority-copy .credential-list {
  margin-top: 20px;
}

/* ============================================================
   COMMUNITY - WHO IT'S FOR
   ============================================================ */

.audience-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.audience-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--dgray);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.audience-bullets li::before {
  content: "→";
  color: var(--purple);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   COMMUNITY JOIN FORM SECTION
   ============================================================ */

.community-join {
  padding: 80px 0;
  background: var(--purple);
  color: var(--white);
}

.community-join-inner {
  max-width: 680px;
}

.community-join h2 {
  color: var(--white);
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 0 0 12px;
}

.community-join p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.72;
  margin: 0 0 36px;
}

.community-join .form-field input,
.community-join .form-field textarea,
.community-join .form-field select {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.community-join .form-field input::placeholder,
.community-join .form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.community-join .form-field label {
  color: rgba(255, 255, 255, 0.85);
}

.community-join .form-field input:focus,
.community-join .form-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.community-join .form-submit button {
  background: var(--white);
  color: var(--purple);
}

.community-join .form-submit button:hover {
  opacity: 0.92;
}

.community-join .form-post-note {
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   GENERAL ENQUIRIES BLOCK
   ============================================================ */

.general-enquiries {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
}

.general-enquiries h3 {
  font-size: 22px;
  margin: 0 0 14px;
  color: var(--dgray);
}

.general-enquiries p {
  color: var(--mgray);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  margin: 0 0 12px;
}

.general-enquiries a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}

.general-enquiries a:hover { opacity: 0.75; }

.enquiry-note {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 6px;
  background: rgba(45, 45, 45, 0.06);
  color: var(--mgray);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* ============================================================
   IDEAL PARTICIPANT PROFILE
   ============================================================ */

.profile-list {
  padding: 0;
  list-style: none;
  margin: 0;
  display: grid;
  gap: 10px;
}

.profile-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--dgray);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
}

.profile-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 5px;
}

/* ============================================================
   WHY CHOOSE VIDYAARA
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.why-item {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.why-item strong {
  display: block;
  color: var(--dgray);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-item p {
  color: var(--mgray);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   STORY INTRO SECTION (two-column: text + photo)
   ============================================================ */

.story-inner {
  display: grid;
  grid-template-columns: 1fr minmax(0, 380px);
  gap: 72px;
  align-items: start;
}

.story-copy h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 22px;
}

.story-copy p {
  color: var(--mgray);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 20px;
}

.story-copy p:last-child { margin-bottom: 0; }

.story-photo {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #e5ded6;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.story-photo.placeholder-photo {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(45, 45, 45, 0.08)), #ded8d0;
  color: var(--mgray);
  font-size: 12px;
  text-align: center;
  padding: 32px;
  font-style: italic;
}

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */

@media (max-width: 1020px) {
  .axis-section {
    grid-template-columns: 1fr;
  }

  .axis-wheel-wrap {
    order: -1;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
  }

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

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .kshama-authority-block {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .kshama-authority-photo {
    width: 160px;
    height: 200px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .story-inner {
    grid-template-columns: 1fr;
  }

  .story-photo {
    max-width: 380px;
    aspect-ratio: 4/3;
  }
}

/* contact page two-column layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr minmax(0, 480px);
  gap: 72px;
  align-items: start;
}

@media (max-width: 1020px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-hero {
    padding: 120px 0 56px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .audience-bullets {
    grid-template-columns: 1fr;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .programme-card {
    padding: 28px 24px;
  }

  .closing-cta-actions .button {
    width: 100%;
  }

  .general-enquiries {
    padding: 32px 24px;
  }

  .community-join-inner {
    max-width: 100%;
  }
}

@media (max-width: 1020px) {
  .about-page .story-photo {
    max-width: 520px;
    aspect-ratio: 4 / 3;
  }

  .about-page .axis-wheel-wrap {
    order: 0;
    max-width: 420px;
  }
}

@media (max-width: 720px) {
  .about-hero {
    padding: 124px 0 62px;
  }

  .about-hero h1 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.08;
  }

  .about-hero .page-hero-sub,
  .about-lede,
  .about-page .story-copy p {
    font-size: 15px;
    line-height: 1.78;
  }

  .about-page .timeline::before {
    left: 18px;
  }

  .about-page .timeline-phase {
    padding: 26px 22px 26px 56px;
  }

  .about-page .timeline-phase::before {
    left: 10px;
  }

  .about-page .timeline[data-story-stack].is-scroll-enhanced {
    gap: 14px;
    padding-bottom: 0;
  }

  .about-page .timeline[data-story-stack].is-scroll-enhanced .timeline-phase {
    position: relative;
    top: auto;
    min-height: 118px;
    padding: 22px 20px 22px 52px;
    transform: translateY(8px);
  }

  .about-page .timeline[data-story-stack].is-scroll-enhanced .timeline-phase::after {
    left: 20px;
    top: 24px;
    bottom: 24px;
  }

  .about-page .timeline[data-story-stack].is-scroll-enhanced .timeline-phase.is-complete {
    min-height: 92px;
    padding-top: 20px;
    padding-bottom: 20px;
    transform: translateY(0);
  }

  .about-page .timeline[data-story-stack].is-scroll-enhanced .timeline-phase.is-active {
    min-height: 196px;
  }

  .about-page .belief-block {
    grid-template-columns: 36px 1fr;
    gap: 16px;
    padding: 22px 20px;
  }

  .about-page .belief-number {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .about-page .beliefs-grid[data-axis-accordion].is-scroll-enhanced .belief-block,
  .about-page .beliefs-grid[data-axis-accordion].is-scroll-enhanced .belief-block.is-active {
    grid-template-columns: 36px 1fr;
    gap: 16px;
    padding: 22px 20px;
  }

  .about-page .beliefs-grid[data-axis-accordion].is-scroll-enhanced .belief-block.is-active .belief-content p {
    max-height: 320px;
  }

  .about-page .axis-wheel-wrap {
    padding: 20px;
  }

  .about-page .photo-gallery {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page .timeline[data-story-stack].is-scroll-enhanced .timeline-phase,
  .about-page .timeline[data-story-stack].is-scroll-enhanced .timeline-phase p,
  .about-page .beliefs-grid[data-axis-accordion].is-scroll-enhanced .belief-block,
  .about-page .beliefs-grid[data-axis-accordion].is-scroll-enhanced .belief-content p {
    transition: none;
  }
}

/* Placeholder inline text, visible during development, remove before final launch */
.placeholder-inline {
  display: inline-block;
  background: #fff3cd;
  color: #856404;
  font-size: 12px;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #ffc107;
  margin-top: 8px;
}

/* Modal scenario block */
.modal-scenario {
  margin: 16px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--teal);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--mgray);
  line-height: 1.7;
  background: rgba(79,143,145,0.04);
  border-radius: 0 8px 8px 0;
}

.modal-orange .modal-scenario {
  border-left-color: var(--orange);
  background: rgba(210,136,53,0.04);
}

.modal-green .modal-scenario {
  border-left-color: var(--green);
  background: rgba(105,168,142,0.04);
}

/* Kshama meaning line on homepage */
.kshama-meaning {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--orange);
  margin: 0;
  line-height: 1.6;
  max-width: 480px;
}

/* V1 polish: light editorial community/contact system */
.community-page,
.contact-page {
  background: #fbfaf6;
}

.community-hero,
.contact-hero {
  padding: 150px 0 86px;
  background:
    radial-gradient(circle at 82% 18%, rgba(36, 125, 54, 0.085), transparent 34%),
    radial-gradient(circle at 12% 84%, rgba(36, 125, 54, 0.04), transparent 32%),
    linear-gradient(180deg, #fbfaf6 0%, #f6f3eb 100%);
  color: #243027;
}

.community-hero::before,
.contact-hero::before {
  background-image:
    linear-gradient(rgba(36, 125, 54, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 125, 54, 0.028) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.community-hero .section-kicker,
.contact-hero .section-kicker,
.community-page .section-kicker,
.contact-page .section-kicker {
  color: rgba(36, 125, 54, 0.82);
}

.community-hero h1,
.contact-hero h1 {
  color: var(--dgray);
}

.community-hero .page-hero-sub,
.contact-hero .page-hero-sub {
  color: rgba(45, 45, 45, 0.68);
}

.community-hero .page-hero-accent-line,
.contact-hero .page-hero-accent-line {
  background: var(--vidyaara-green);
}

.community-intro {
  max-width: 820px;
}

.community-intro h2,
.contact-form-title,
.contact-side-title {
  color: var(--dgray);
}

.community-intro h2 {
  margin-bottom: 22px;
}

.community-intro > p:not(.section-kicker):not(.access-note),
.contact-form-intro {
  color: var(--mgray);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 20px;
}

.community-quote {
  margin: 0 0 28px;
}

.access-note {
  display: inline-flex;
  margin: 12px 0 0;
  border: 1px solid rgba(36, 125, 54, 0.24);
  border-radius: 999px;
  background: rgba(36, 125, 54, 0.06);
  color: var(--vidyaara-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 9px 14px;
  text-transform: uppercase;
}

.community-benefits-section {
  background:
    linear-gradient(rgba(36, 125, 54, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 125, 54, 0.024) 1px, transparent 1px),
    var(--soft);
  background-size: 86px 86px;
}

.community-page .advantage-card,
.contact-form-card,
.contact-page .next-step,
.contact-page .general-enquiries {
  border-color: rgba(36, 125, 54, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 50px rgba(36, 125, 54, 0.06);
}

.community-page .audience-bullets li {
  border-color: rgba(36, 125, 54, 0.14);
  border-radius: 8px;
}

.community-page .audience-bullets li::before {
  color: var(--vidyaara-green);
}

.notes-community-cta {
  background: var(--vidyaara-green);
  color: var(--white);
}

.contact-form-title {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 10px;
}

.contact-form-card {
  padding: 40px;
}

.contact-side-title {
  font-size: clamp(22px, 2.5vw, 30px);
  margin-bottom: 28px;
}

.contact-enquiry-wrap {
  margin-top: 48px;
}

.contact-page .general-enquiries a {
  color: var(--vidyaara-green);
}

.notes-community-cta {
  margin-top: 30px;
}

/* Final readability and alignment fixes */
.community-page .page-hero-sub,
.contact-page .page-hero-sub,
.community-intro > p:not(.section-kicker):not(.access-note),
.community-page .advantage-card p,
.community-page .audience-bullets li,
.contact-form-intro,
.contact-page .next-step-body p,
.contact-page .general-enquiries p,
.contact-page .form-post-note {
  color: #4e5a52;
}

.community-page .community-quote p {
  color: #3f4a42;
}

.contact-page .next-steps {
  gap: 0;
}

.contact-page .next-step {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 34px 36px;
  overflow: visible;
}

.contact-page .step-number {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 999px;
  margin: 0;
  line-height: 1;
}

.contact-page .next-step-body {
  min-width: 0;
}

.contact-page .next-step-body h4 {
  margin-top: 2px;
}

@media (max-width: 720px) {
  .community-page .community-join .form-submit {
    align-items: stretch;
    gap: 14px;
  }

  .community-page .community-join .form-submit button {
    width: 100%;
    min-width: 0;
  }

  .community-page .community-join .form-post-note {
    text-align: left;
  }

  .contact-page .next-step {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    padding: 28px 22px;
  }
}

/* Premium Community page redesign */
.community-page {
  background:
    linear-gradient(rgba(36, 125, 54, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 125, 54, 0.02) 1px, transparent 1px),
    #fbfaf6;
  background-size: 96px 96px;
}

.community-page .section-pad {
  padding-top: 72px;
  padding-bottom: 72px;
}

.community-hero {
  padding: 132px 0 76px;
  background:
    radial-gradient(circle at 84% 18%, rgba(36, 125, 54, 0.09), transparent 30%),
    linear-gradient(180deg, #fbfaf6 0%, #f6f3ed 100%);
}

.community-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: clamp(40px, 6vw, 82px);
  align-items: center;
}

.community-hero-copy h1 {
  max-width: 760px;
  color: #243027;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
}

.community-hero-copy .page-hero-sub {
  max-width: 620px;
  color: #4e5a52;
  font-size: 17px;
}

.community-hero-card {
  position: relative;
  border: 1px solid rgba(36, 125, 54, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(250, 248, 241, 0.92));
  box-shadow: 0 28px 70px rgba(36, 125, 54, 0.11);
  padding: 34px;
  overflow: hidden;
}

.community-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 125, 54, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 125, 54, 0.028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 74%);
  pointer-events: none;
}

.community-node-map {
  position: relative;
  width: 156px;
  height: 132px;
  margin-bottom: 26px;
}

.community-node-map::before,
.community-node-map::after {
  content: "";
  position: absolute;
  inset: 26px 18px;
  border: 1px solid rgba(36, 125, 54, 0.22);
  border-radius: 999px;
}

.community-node-map::after {
  inset: 46px 44px;
  border-color: rgba(36, 125, 54, 0.34);
}

.community-node-map span {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(36, 125, 54, 0.28);
  border-radius: 50%;
  background: #fbfaf6;
  box-shadow: 0 0 0 8px rgba(36, 125, 54, 0.05);
}

.community-node-map span:nth-child(1) { left: 14px; top: 54px; }
.community-node-map span:nth-child(2) { right: 18px; top: 24px; }
.community-node-map span:nth-child(3) { right: 36px; bottom: 18px; }
.community-node-map span:nth-child(4) {
  left: 70px;
  top: 60px;
  background: var(--vidyaara-green);
  border-color: var(--vidyaara-green);
}

.community-card-kicker,
.community-principles > p {
  color: var(--vidyaara-green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.community-hero-card h2 {
  position: relative;
  max-width: 340px;
  margin: 0 0 12px;
  color: #243027;
  font-size: clamp(24px, 3vw, 34px);
}

.community-hero-card p:not(.community-card-kicker) {
  position: relative;
  color: #4e5a52;
  line-height: 1.75;
}

.community-intro-section {
  padding-top: 62px;
}

.community-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.community-intro {
  max-width: 760px;
}

.community-intro h2,
.community-page .section-heading h2 {
  color: #243027;
}

.community-intro > p:not(.section-kicker):not(.access-note),
.community-page .advantage-card p,
.community-page .audience-bullets li {
  color: #4e5a52;
}

.community-quote {
  border-left: 3px solid var(--vidyaara-green);
  padding: 20px 0 20px 24px;
}

.community-quote p {
  color: #3f4a42;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
}

.community-principles {
  border: 1px solid rgba(36, 125, 54, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 22px 56px rgba(36, 125, 54, 0.08);
  padding: 28px;
}

.community-principles ul {
  display: grid;
  gap: 16px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.community-principles li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  color: #3f4a42;
  line-height: 1.55;
}

.community-principles li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--vidyaara-green);
  box-shadow: 0 0 0 7px rgba(36, 125, 54, 0.07);
}

.community-benefits-section {
  padding-top: 70px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 12% 22%, rgba(36, 125, 54, 0.06), transparent 30%),
    #f6f3ed;
}

.community-page .advantage-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.community-page .advantage-card {
  position: relative;
  grid-column: span 2;
  min-height: 210px;
  border: 1px solid rgba(36, 125, 54, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 48px rgba(36, 125, 54, 0.06);
  padding: 30px;
}

.community-page .advantage-card:nth-child(1),
.community-page .advantage-card:nth-child(3) {
  grid-column: span 3;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 250, 244, 0.82));
}

.community-page .advantage-card::before {
  content: counter(benefit, decimal-leading-zero);
  counter-increment: benefit;
  display: block;
  margin-bottom: 22px;
  color: rgba(36, 125, 54, 0.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.community-page .advantage-grid {
  counter-reset: benefit;
}

.community-page .advantage-card h4 {
  color: #243027;
  font-size: 20px;
  line-height: 1.25;
}

.community-page .audience-bullets {
  gap: 18px;
}

.community-page .audience-bullets li {
  position: relative;
  min-height: 116px;
  border: 1px solid rgba(36, 125, 54, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(36, 125, 54, 0.055);
  padding: 24px 26px 24px 58px;
  font-size: 16px;
}

.community-page .audience-bullets li::before {
  position: absolute;
  left: 24px;
  top: 26px;
  content: "→";
  width: 22px;
  height: 22px;
  border: 1px solid rgba(36, 125, 54, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--vidyaara-green);
  font-size: 13px;
}

.community-page .community-join {
  padding: 78px 0 92px;
  background:
    linear-gradient(rgba(36, 125, 54, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 125, 54, 0.02) 1px, transparent 1px),
    #fbfaf6;
  background-size: 92px 92px;
}

.community-page .community-join-inner {
  max-width: none;
  border-left: 0;
  padding-left: 0;
}

.community-join-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(36, 125, 54, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 80px rgba(36, 125, 54, 0.11);
}

.community-join-copy {
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #1f3b2a 0%, #182b20 100%);
  color: var(--white);
  padding: clamp(34px, 5vw, 52px);
}

.community-join-copy .section-kicker,
.community-join-copy h2,
.community-join-copy p {
  color: var(--white);
}

.community-join-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.access-flow {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: access;
}

.access-flow li {
  counter-increment: access;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
}

.access-flow li::before {
  content: counter(access);
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-family: var(--serif);
}

.community-access-form {
  padding: clamp(30px, 5vw, 52px);
}

.community-page .community-access-form .form-field label {
  color: #243027;
}

.community-page .community-access-form .form-field input,
.community-page .community-access-form .form-field textarea,
.community-page .community-access-form .form-field select {
  border-color: rgba(36, 125, 54, 0.22);
  background: #fffdf8;
  color: #243027;
}

.community-page .community-access-form .form-field input::placeholder,
.community-page .community-access-form .form-field textarea::placeholder {
  color: rgba(45, 45, 45, 0.48);
}

.community-page .community-access-form .form-field input:focus,
.community-page .community-access-form .form-field textarea:focus,
.community-page .community-access-form .form-field select:focus {
  border-color: var(--vidyaara-green);
  box-shadow: 0 0 0 3px rgba(36, 125, 54, 0.12);
}

.community-page .community-access-form .form-submit {
  align-items: center;
}

.community-page .community-access-form .form-submit button {
  min-width: 230px;
  background: var(--vidyaara-green);
  color: var(--white);
}

.community-page .community-access-form .form-post-note {
  color: #4e5a52;
}

@media (max-width: 1020px) {
  .community-hero-grid,
  .community-intro-grid,
  .community-join-panel {
    grid-template-columns: 1fr;
  }

  .community-page .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-page .advantage-card,
  .community-page .advantage-card:nth-child(1),
  .community-page .advantage-card:nth-child(3) {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .community-hero {
    padding: 118px 0 58px;
  }

  .community-page .section-pad,
  .community-page .community-join {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .community-hero-card,
  .community-principles,
  .community-access-form,
  .community-join-copy {
    padding: 26px 22px;
  }

  .community-page .advantage-grid {
    grid-template-columns: 1fr;
  }

  .community-page .audience-bullets li {
    min-height: auto;
  }
}

/* Readability and motion polish */
.community-page .page-hero-sub,
.contact-page .page-hero-sub,
.community-intro > p:not(.section-kicker):not(.access-note),
.community-page .advantage-card p,
.community-page .audience-bullets li,
.contact-form-intro,
.contact-page .next-step-body p,
.contact-page .general-enquiries p,
.contact-page .form-post-note {
  color: rgba(45, 45, 45, 0.62);
}

.community-page .advantage-card h4,
.contact-page .next-step-body h4,
.contact-page .general-enquiries h3,
.contact-form-title,
.contact-side-title {
  color: rgba(45, 45, 45, 0.88);
}

.community-page .community-quote p {
  color: rgba(45, 45, 45, 0.72);
}

.access-note {
  color: rgba(36, 125, 54, 0.82);
}

.contact-page .next-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 16px;
}

.contact-page .step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.button,
.primary-nav a,
.footer-links a,
.platform-card,
.gap-card,
.advantage-card,
.credential-block,
.contact-form-card,
.contact-page .next-step,
.general-enquiries,
.audience-bullets li,
.community-teaser-card,
.closing-cta-about .container,
.page-form input,
.page-form textarea,
.page-form select {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    opacity 0.22s ease;
}

.button:hover,
.button:focus-visible,
.platform-card:hover,
.gap-card:hover,
.advantage-card:hover,
.credential-block:hover,
.contact-page .next-step:hover,
.general-enquiries:hover,
.audience-bullets li:hover {
  transform: translateY(-2px);
}

.contact-form-card:hover,
.community-teaser-card:hover,
.closing-cta-about .container:hover {
  box-shadow: 0 24px 60px rgba(36, 125, 54, 0.08);
}

.page-form input:hover,
.page-form textarea:hover,
.page-form select:hover {
  border-color: rgba(36, 125, 54, 0.28);
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  opacity: 0.76;
}

.section-heading,
.community-intro,
.contact-layout,
.platform-card,
.gap-card,
.advantage-card,
.credential-block,
.audience-bullets li,
.community-join-inner,
.general-enquiries,
.next-step {
  animation: softUiIn 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.advantage-card:nth-child(2),
.gap-card:nth-child(2),
.platform-card:nth-child(2),
.audience-bullets li:nth-child(2),
.next-step:nth-child(2) {
  animation-delay: 0.06s;
}

.advantage-card:nth-child(3),
.gap-card:nth-child(3),
.platform-card:nth-child(3),
.audience-bullets li:nth-child(3),
.next-step:nth-child(3) {
  animation-delay: 0.12s;
}

.advantage-card:nth-child(n+4),
.audience-bullets li:nth-child(n+4) {
  animation-delay: 0.16s;
}

@keyframes softUiIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .primary-nav a,
  .footer-links a,
  .platform-card,
  .gap-card,
  .advantage-card,
  .credential-block,
  .contact-form-card,
  .contact-page .next-step,
  .general-enquiries,
  .audience-bullets li,
  .community-teaser-card,
  .closing-cta-about .container,
  .page-form input,
  .page-form textarea,
  .page-form select {
    transition: none;
  }

  .section-heading,
  .community-intro,
  .contact-layout,
  .platform-card,
  .gap-card,
  .advantage-card,
  .credential-block,
  .audience-bullets li,
  .community-join-inner,
  .general-enquiries,
  .next-step {
    animation: none;
  }

  .button:hover,
  .button:focus-visible,
  .platform-card:hover,
  .gap-card:hover,
  .advantage-card:hover,
  .credential-block:hover,
  .contact-page .next-step:hover,
  .general-enquiries:hover,
  .audience-bullets li:hover {
    transform: none;
  }
}

/* Last-pass overrides for Community and Contact readability/alignment */
.community-page .community-join {
  padding: 78px 0 92px;
  background:
    linear-gradient(rgba(36, 125, 54, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 125, 54, 0.02) 1px, transparent 1px),
    #fbfaf6;
  background-size: 92px 92px;
  color: #243027;
}

.community-page .community-join-inner {
  max-width: none;
  border-left: 0;
  padding-left: 0;
}

.community-page .community-join-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(36, 125, 54, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 80px rgba(36, 125, 54, 0.11);
}

.community-page .community-join-copy {
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #1f3b2a 0%, #182b20 100%);
  color: var(--white);
  padding: clamp(34px, 5vw, 52px);
}

.community-page .community-join-copy .section-kicker,
.community-page .community-join-copy h2 {
  color: var(--white);
}

.community-page .community-join-copy p,
.community-page .access-flow li {
  color: rgba(255, 255, 255, 0.82);
}

.community-page .community-access-form {
  padding: clamp(30px, 5vw, 52px);
}

.community-page .page-hero-sub,
.contact-page .page-hero-sub,
.community-intro > p:not(.section-kicker):not(.access-note),
.community-page .advantage-card p,
.community-page .audience-bullets li,
.contact-form-intro,
.contact-page .next-step-body p,
.contact-page .general-enquiries p,
.contact-page .form-post-note {
  color: #4e5a52;
}

.community-page .community-join .form-field label,
.community-page .community-join .form-field input,
.community-page .community-join .form-field textarea,
.community-page .community-join .form-field select {
  color: #243027;
}

.community-page .community-join .form-field input,
.community-page .community-join .form-field textarea,
.community-page .community-join .form-field select {
  background: #fffdf8;
  border-color: rgba(36, 125, 54, 0.22);
}

.community-page .community-join .form-field input::placeholder,
.community-page .community-join .form-field textarea::placeholder {
  color: rgba(45, 45, 45, 0.48);
}

.community-page .community-join .form-field input:focus,
.community-page .community-join .form-field textarea:focus,
.community-page .community-join .form-field select:focus {
  border-color: var(--vidyaara-green);
  box-shadow: 0 0 0 3px rgba(36, 125, 54, 0.12);
}

.community-page .community-join .form-submit {
  align-items: center;
  gap: 28px;
  margin-top: 18px;
}

.community-page .community-join .form-submit button {
  min-width: 230px;
  background: var(--vidyaara-green);
  color: var(--white);
}

.community-page .community-join .form-post-note {
  align-self: center;
  color: #4e5a52;
  line-height: 1.45;
  margin: 0;
}

.contact-page .next-step {
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 24px;
  padding: 34px 36px;
  overflow: visible;
}

.contact-page .step-number {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 999px;
  margin: 0;
  line-height: 1;
}

.contact-page .next-step-body {
  min-width: 0;
}

.contact-page .next-step-body h4 {
  margin-top: 2px;
}

@media (max-width: 720px) {
  .community-page .community-join {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .community-page .community-join-copy,
  .community-page .community-access-form {
    padding: 26px 22px;
  }

  .community-page .community-join .form-submit {
    align-items: stretch;
    gap: 14px;
  }

  .community-page .community-join .form-submit button {
    width: 100%;
    min-width: 0;
  }

  .community-page .community-join .form-post-note {
    text-align: left;
  }

  .contact-page .next-step {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    padding: 28px 22px;
  }
}

/* Premium Contact page redesign */
html {
  scroll-padding-top: 108px;
}

.contact-page {
  background:
    linear-gradient(rgba(36, 125, 54, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 125, 54, 0.02) 1px, transparent 1px),
    #fbfaf6;
  background-size: 96px 96px;
}

.contact-page #apply,
.contact-page .contact-form-card,
.contact-page .form-field {
  scroll-margin-top: 116px;
}

.contact-hero {
  padding: 132px 0 72px;
  background:
    radial-gradient(circle at 84% 18%, rgba(36, 125, 54, 0.09), transparent 30%),
    linear-gradient(180deg, #fbfaf6 0%, #f6f3ed 100%);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.68fr);
  gap: clamp(38px, 6vw, 78px);
  align-items: center;
}

.contact-hero-copy h1 {
  position: relative;
  max-width: 780px;
  color: #243027;
  font-size: clamp(42px, 5.8vw, 74px);
  line-height: 1.04;
}

.contact-hero-copy h1 span {
  position: relative;
}

.contact-hero-copy .page-hero-sub {
  max-width: 620px;
  color: #4e5a52;
  font-size: 17px;
  line-height: 1.78;
}

.contact-hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(36, 125, 54, 0.16);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(250, 248, 241, 0.94));
  box-shadow: 0 28px 70px rgba(36, 125, 54, 0.11);
  padding: clamp(28px, 4vw, 38px);
}

.contact-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 125, 54, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 125, 54, 0.028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68), transparent 78%);
  pointer-events: none;
}

.contact-card-kicker {
  position: relative;
  margin-bottom: 14px;
  color: var(--vidyaara-green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-hero-card h2 {
  position: relative;
  margin: 0 0 12px;
  color: #243027;
  font-size: clamp(24px, 3vw, 34px);
}

.contact-hero-card p:not(.contact-card-kicker) {
  position: relative;
  color: #4e5a52;
  line-height: 1.75;
}

.contact-preview-steps {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: contact-preview;
}

.contact-preview-steps li {
  counter-increment: contact-preview;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
  color: #3f4a42;
  font-size: 14px;
  font-weight: 700;
}

.contact-preview-steps li::before {
  content: counter(contact-preview);
  width: 28px;
  height: 28px;
  border: 1px solid rgba(36, 125, 54, 0.22);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(36, 125, 54, 0.06);
  color: var(--vidyaara-green);
  font-family: var(--serif);
  font-size: 15px;
}

.contact-page .section-pad {
  padding-top: 68px;
  padding-bottom: 82px;
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(34px, 5vw, 58px);
}

.contact-page .section-kicker {
  color: var(--vidyaara-green);
}

.contact-form-title,
.contact-side-title {
  color: #243027;
}

.contact-form-title {
  margin-bottom: 12px;
}

.contact-side-title {
  margin-bottom: 22px;
}

.contact-form-intro,
.contact-page .next-step-body p,
.contact-page .general-enquiries p,
.contact-page .form-post-note {
  color: #4e5a52;
  line-height: 1.75;
}

.contact-form-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(36, 125, 54, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 26px 70px rgba(36, 125, 54, 0.1);
  padding: clamp(30px, 4.5vw, 46px);
}

.contact-form-card::before {
  content: "Curated request";
  display: inline-flex;
  margin: 0 0 24px;
  border: 1px solid rgba(36, 125, 54, 0.22);
  border-radius: 999px;
  background: rgba(36, 125, 54, 0.06);
  color: var(--vidyaara-green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 8px 12px;
  text-transform: uppercase;
}

.contact-page .page-form {
  gap: 20px;
}

.contact-page .form-row {
  gap: 20px;
}

.contact-page .form-field {
  gap: 9px;
}

.contact-page .form-field label {
  color: #243027;
  font-size: 13px;
  font-weight: 900;
}

.contact-page .form-field input,
.contact-page .form-field textarea,
.contact-page .form-field select {
  border-color: rgba(36, 125, 54, 0.22);
  background-color: #fffdf8;
  color: #243027;
  font-weight: 400;
}

.contact-page .form-field input::placeholder,
.contact-page .form-field textarea::placeholder {
  color: rgba(45, 45, 45, 0.5);
}

.contact-page .form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23247d36' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px 8px;
  padding-right: 44px;
  -webkit-appearance: none;
  appearance: none;
}

.contact-page .form-field input:focus,
.contact-page .form-field textarea:focus,
.contact-page .form-field select:focus {
  border-color: var(--vidyaara-green);
  box-shadow: 0 0 0 3px rgba(36, 125, 54, 0.12);
}

.contact-page .form-submit {
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}

.contact-page .form-submit button {
  min-width: 250px;
  background: var(--vidyaara-green);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(36, 125, 54, 0.16);
}

.contact-page .form-submit button:hover,
.contact-page .form-submit button:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(36, 125, 54, 0.2);
}

.contact-page .form-post-note {
  max-width: 300px;
  margin: 0;
}

.contact-page .next-steps {
  position: relative;
  gap: 12px;
}

.contact-page .next-step {
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(36, 125, 54, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(36, 125, 54, 0.06);
  padding: 22px 24px;
}

.contact-page .step-number {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border: 1px solid rgba(36, 125, 54, 0.18);
  border-radius: 50%;
  background: rgba(36, 125, 54, 0.07);
  color: var(--vidyaara-green);
  font-size: 18px;
}

.contact-page .next-step-body h4 {
  margin: 0 0 7px;
  color: #243027;
  font-size: 18px;
}

.contact-page .next-step-body p {
  font-size: 14px;
}

.contact-enquiry-wrap {
  margin-top: 16px;
}

.contact-page .general-enquiries {
  border: 1px solid rgba(36, 125, 54, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(36, 125, 54, 0.06);
  padding: 26px 28px;
}

.contact-page .general-enquiries h3 {
  color: #243027;
  font-size: 22px;
  margin-bottom: 12px;
}

.contact-page .general-enquiries a {
  color: var(--vidyaara-green);
  font-weight: 900;
}

.contact-page .enquiry-note {
  display: inline-flex;
  margin-top: 18px;
  border: 1px solid rgba(36, 125, 54, 0.16);
  border-radius: 999px;
  background: rgba(36, 125, 54, 0.06);
  color: #3f4a42;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 9px 13px;
}

@media (max-width: 1020px) {
  .contact-hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-hero-card {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 92px;
  }

  .contact-page #apply,
  .contact-page .contact-form-card,
  .contact-page .form-field {
    scroll-margin-top: 96px;
  }

  .contact-hero {
    padding: 118px 0 56px;
  }

  .contact-hero-card,
  .contact-form-card,
  .contact-page .general-enquiries {
    padding: 26px 22px;
  }

  .contact-page .section-pad {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .contact-page .form-submit {
    align-items: stretch;
  }

  .contact-page .form-submit button {
    width: 100%;
    min-width: 0;
  }

  .contact-page .form-post-note {
    max-width: none;
  }

  .contact-page .next-step {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
  }

  .contact-page .step-number {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 16px;
  }
}

/* Homepage GCC diagnostic and community refinement */
.problem-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(36, 125, 54, 0.04), transparent 32%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f5f1 100%);
}

.problem-intro {
  max-width: 860px;
  margin-bottom: clamp(34px, 5vw, 52px);
}

.problem-intro h2 {
  max-width: 820px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.16;
}

.problem-intro p:last-child {
  max-width: 720px;
  color: #4b554e;
  font-size: 16px;
}

.gap-grid {
  align-items: stretch;
}

.gap-card {
  height: 386px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 3%, rgba(79, 143, 145, 0.13), transparent 48%),
    rgba(251, 250, 246, 0.86);
  box-shadow: 0 16px 42px rgba(35, 51, 39, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.gap-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 54px rgba(35, 51, 39, 0.1);
}

.gap-card-orange {
  background:
    radial-gradient(circle at 50% 3%, rgba(210, 136, 53, 0.12), transparent 48%),
    rgba(251, 250, 246, 0.86);
}

.gap-card-green {
  background:
    radial-gradient(circle at 50% 3%, rgba(105, 168, 142, 0.12), transparent 48%),
    rgba(251, 250, 246, 0.86);
}

.gap-index {
  color: rgba(36, 48, 39, 0.44);
  font-size: 12px;
}

.gap-illustration-wrap {
  top: 28%;
  width: min(46%, 154px);
  opacity: 0.58;
}

.gap-card:hover .gap-illustration-wrap {
  transform: translate(-50%, calc(-50% - 7px)) scale(1.05);
}

.gap-content {
  display: block;
  min-height: 0;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border-color: rgba(36, 45, 39, 0.08);
  background: rgba(255, 255, 255, 0.88);
  padding: 18px 18px 17px;
}

.gap-tag {
  margin-bottom: 10px;
  padding: 4px 9px;
  font-size: 9.5px;
}

.gap-content h3 {
  margin-bottom: 9px;
  color: #243027;
  font-size: 22px;
}

.gap-content p {
  margin: 0;
  color: #465049;
  font-size: 13.5px;
  line-height: 1.52;
}

.gap-content strong {
  margin-top: 15px;
  color: var(--muted-teal);
  font-size: 14px;
  line-height: 1.35;
}

.gap-card-orange .gap-content strong {
  color: var(--orange);
}

.gap-card-green .gap-content strong {
  color: var(--green);
}

.gap-content small {
  margin-top: 5px;
  color: rgba(45, 45, 45, 0.5);
  font-size: 10px;
}

.gap-read-more {
  display: inline-flex;
  margin-top: 15px;
  color: #243027;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.gcc-stats-block {
  margin-top: clamp(34px, 5vw, 54px);
  border: 1px solid rgba(36, 125, 54, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 8%, rgba(36, 125, 54, 0.07), transparent 34%),
    rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 18px 46px rgba(35, 51, 39, 0.055);
  padding: clamp(28px, 5vw, 46px);
}

.gcc-market-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--vidyaara-green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gcc-stats-block h3 {
  max-width: 760px;
  margin: 0;
  color: #243027;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.2;
}

.gcc-stats-block .gcc-market-support {
  max-width: 660px;
  margin: 12px 0 0;
  color: #4d5a51;
  font-family: var(--sans);
  font-size: 16px;
  font-style: normal;
  line-height: 1.7;
}

.gcc-stat-grid {
  gap: 16px;
  margin-top: 30px;
}

.gcc-stat-grid .gcc-stat-tile {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(36, 125, 54, 0.1);
  border-left: 2px solid rgba(36, 125, 54, 0.32);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  padding: 18px 16px;
}

.gcc-stat-tile strong {
  color: #247d36;
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 600;
  line-height: 1.05;
}

.gcc-stat-tile small {
  margin: 0;
  color: #4d574d;
  font-size: 12px;
  line-height: 1.45;
}

.gcc-stats-block .gcc-market-close {
  margin: 24px 0 0;
  color: #263128;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.4;
}

.gcc-stats-block > small {
  display: block;
  margin-top: 20px;
  color: rgba(45, 45, 45, 0.52);
  font-size: 11px;
  line-height: 1.55;
}

.community-home-section {
  border-top: 1px solid rgba(36, 45, 39, 0.08);
  background:
    radial-gradient(circle at 8% 12%, rgba(105, 168, 142, 0.08), transparent 30%),
    linear-gradient(180deg, #f7f5f1 0%, #fbfaf6 100%);
}

.community-home-intro {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(220px, 360px);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  max-width: none;
}

.community-home-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.community-home-intro h2 {
  max-width: 720px;
  color: #243027;
}

.community-home-intro p:not(.section-kicker) {
  max-width: 680px;
  margin-top: 18px;
  color: #4e5a52;
  font-size: 16px;
  line-height: 1.78;
}

.community-home-close {
  color: #247d36 !important;
  font-family: var(--serif);
  font-size: 21px !important;
  font-style: italic;
  line-height: 1.42 !important;
}

.community-orbit {
  position: relative;
  justify-self: end;
  width: min(100%, 360px);
  opacity: 0.72;
  pointer-events: none;
}

.community-orbit::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 999px;
  background: rgba(36, 125, 54, 0.08);
  filter: blur(30px);
}

.community-orbit svg {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.community-orbit circle,
.community-orbit ellipse,
.community-orbit path {
  opacity: 0.16;
  vector-effect: non-scaling-stroke;
}

.community-orbit text {
  opacity: 0.34;
}

.community-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(28px, 4vw, 42px);
}

.community-feature-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  cursor: pointer;
  border: 1px solid rgba(36, 125, 54, 0.12);
  border-top: 2px solid rgba(36, 125, 54, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 34px rgba(35, 51, 39, 0.04);
  padding: 28px 26px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.community-feature-card:hover,
.community-feature-card:focus-visible {
  border-color: rgba(36, 125, 54, 0.22);
  box-shadow: 0 20px 48px rgba(35, 51, 39, 0.085);
  outline: 0;
  transform: translateY(-5px);
}

.community-feature-card span {
  display: block;
  margin-bottom: 20px;
  color: rgba(36, 125, 54, 0.64);
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.community-feature-card h3 {
  margin: 0 0 14px;
  color: #243027;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.community-feature-card p {
  margin: 0;
  color: #4d574d;
  font-size: 14px;
  line-height: 1.62;
}

.community-feature-card small {
  display: inline-flex;
  margin-top: auto;
  padding-top: 24px;
  color: var(--vidyaara-green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.community-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-top: clamp(36px, 6vw, 56px);
  border: 0;
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #8062aa 0%, #73549d 58%, #67498f 100%);
  box-shadow: 0 24px 64px rgba(65, 45, 86, 0.2);
  padding: clamp(34px, 5vw, 64px);
}

.community-cta-eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.community-cta-card h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 600;
  line-height: 1.12;
}

.community-cta-card p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.72;
}

.community-cta-card .button {
  justify-self: end;
  border-color: rgba(255, 255, 255, 0.76);
  background: #ffffff !important;
  color: #67498f !important;
  box-shadow: 0 16px 34px rgba(36, 24, 50, 0.18) !important;
  white-space: nowrap;
}

.community-cta-card .button:hover,
.community-cta-card .button:focus-visible {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.92) !important;
  color: #5f4187 !important;
}

.community-modal {
  width: min(720px, 92vw);
  border: 1px solid rgba(36, 125, 54, 0.16);
  border-top: 4px solid var(--vidyaara-green);
  border-radius: 24px;
  background: #fbfaf6;
  box-shadow: 0 30px 88px rgba(18, 24, 20, 0.2);
}

.community-modal-content {
  padding: clamp(28px, 5vw, 48px);
}

.community-modal-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  border: 1px solid rgba(36, 125, 54, 0.16);
  border-radius: 999px;
  background: rgba(36, 125, 54, 0.06);
  color: var(--vidyaara-green);
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
}

.community-modal h2 {
  max-width: 620px;
  margin-bottom: 18px;
}

.community-modal p {
  margin: 0;
  color: #3f4a42;
  font-size: 15.5px;
  line-height: 1.74;
}

.community-modal p + p {
  margin-top: 14px;
}

.community-modal ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.community-modal li {
  position: relative;
  color: #3f4a42;
  font-size: 14.5px;
  line-height: 1.58;
  padding-left: 22px;
}

.community-modal li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--vidyaara-green);
}

.community-modal-cta {
  margin-top: 30px;
}

.gap-modal {
  width: min(760px, 92vw);
  border-top-width: 4px;
  border-radius: 18px;
  background: #fbfaf6;
  box-shadow: 0 28px 80px rgba(18, 24, 20, 0.2);
  padding: 0;
}

.modal-close {
  top: 16px;
  right: 18px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(36, 45, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #4d574d;
  font-size: 20px;
}

.modal-illustration {
  height: 88px;
  margin: 0;
  border-radius: 14px 14px 0 0;
  border-bottom: 1px solid rgba(36, 45, 39, 0.07);
  padding: 12px 54px 12px 32px;
  justify-content: flex-start;
}

.modal-illustration svg {
  height: 74px;
  opacity: 0.72;
}

.modal-content {
  padding: clamp(26px, 4vw, 38px);
}

.gap-modal h2 {
  max-width: 640px;
  margin: 0 0 12px;
  color: #243027;
  font-size: clamp(30px, 3.2vw, 42px);
}

.modal-tag {
  margin-bottom: 14px;
}

.modal-pain {
  max-width: 680px;
  margin: 0 0 26px;
  color: #303b34;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.58;
}

.modal-section-title {
  margin: 24px 0 10px;
  color: #247d36;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.modal-orange .modal-section-title {
  color: #9a642b;
}

.modal-green .modal-section-title {
  color: #247d36;
}

.modal-body {
  max-width: 700px;
  margin: 0;
  color: #3f4a42;
  font-size: 15.5px;
  line-height: 1.72;
}

.modal-evidence {
  display: grid;
  gap: 7px;
  margin: 22px 0 24px;
  border: 1px solid rgba(79, 143, 145, 0.16);
  border-left: 3px solid var(--muted-teal);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.66);
  padding: 18px 20px;
}

.modal-orange .modal-evidence {
  border-color: rgba(210, 136, 53, 0.16);
  border-left-color: var(--orange);
}

.modal-green .modal-evidence {
  border-color: rgba(105, 168, 142, 0.16);
  border-left-color: var(--green);
}

.modal-evidence strong {
  color: var(--muted-teal);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.12;
}

.modal-orange .modal-evidence strong {
  color: var(--orange);
}

.modal-green .modal-evidence strong {
  color: var(--green);
}

.modal-evidence p {
  margin: 0;
  color: #3f4a42;
  font-size: 14px;
  line-height: 1.55;
}

.modal-evidence small,
.modal-source-footer p {
  margin: 0;
  color: rgba(45, 45, 45, 0.52);
  font-size: 11px;
  line-height: 1.5;
}

.modal-source-footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(36, 45, 39, 0.08);
}

.modal-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.modal-cta {
  display: inline-flex;
  justify-content: center;
  width: auto;
  min-width: 190px;
  max-width: 260px;
  padding: 13px 28px;
}

.modal-back-link {
  color: #4d574d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.modal-back-link:hover,
.modal-back-link:focus-visible {
  color: var(--vidyaara-green);
}

@media (max-width: 1020px) {
  .gap-grid {
    grid-template-columns: 1fr;
  }

  .community-home-intro {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
    gap: 28px;
  }

  .community-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gap-card {
    height: 350px;
  }

  .gap-illustration-wrap {
    top: 30%;
    width: min(42%, 170px);
  }

  .gcc-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-cta-card {
    grid-template-columns: 1fr;
  }

  .community-cta-card .button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .problem-intro h2 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .community-home-intro {
    grid-template-columns: 1fr;
  }

  .community-orbit {
    display: none;
  }

  .community-feature-grid {
    grid-template-columns: 1fr;
  }

  .gap-card {
    height: 372px;
  }

  .gap-illustration-wrap {
    top: 27%;
    width: min(58%, 176px);
  }

  .gcc-stat-grid {
    grid-template-columns: 1fr;
  }

  .community-feature-card {
    padding: 22px;
  }

  .community-cta-card {
    border-radius: 18px;
  }

  .community-cta-card .button,
  .modal-cta {
    width: 100%;
    max-width: none;
  }

  .gap-modal {
    max-height: 88vh;
  }

  .modal-illustration {
    height: 72px;
    padding: 10px 48px 10px 22px;
  }

  .modal-illustration svg {
    height: 58px;
  }

  .modal-cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .modal-back-link {
    text-align: center;
  }
}

/* Community section final refinement */
.community-home-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(36, 125, 54, 0.07), transparent 32%),
    linear-gradient(180deg, #f7f5f1 0%, #fbfaf6 100%);
}

.community-home-intro {
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.48fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}

.community-home-copy {
  max-width: 740px;
}

.community-home-intro h2 {
  max-width: 710px;
}

.community-home-intro p:not(.section-kicker) {
  max-width: 650px;
}

.community-orbit {
  align-self: center;
  justify-self: end;
  width: min(100%, 390px);
  margin-right: clamp(0px, 2vw, 20px);
  opacity: 1;
  transform: translateY(8px);
}

.community-orbit::before {
  inset: 20%;
  background: rgba(36, 125, 54, 0.11);
  filter: blur(34px);
}

.community-orbit svg {
  animation: communityOrbitDrift 14s ease-in-out infinite;
}

.orbit-line {
  fill: none;
  stroke: #247d36;
  stroke-width: 1.2;
  stroke-linecap: round;
  opacity: 0.28;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
}

.orbit-node {
  fill: #247d36;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.orbit-node-center {
  opacity: 0;
  fill: rgba(36, 125, 54, 0.9);
}

.orbit-label {
  fill: #247d36;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  opacity: 0;
}

.community-orbit.is-visible .orbit-line {
  animation: communityLineDraw 1.25s ease forwards;
}

.community-orbit.is-visible .orbit-line-delay-1 {
  animation-delay: 0.08s;
}

.community-orbit.is-visible .orbit-line-delay-2 {
  animation-delay: 0.16s;
}

.community-orbit.is-visible .orbit-line-delay-3 {
  animation-delay: 0.24s;
}

.community-orbit.is-visible .orbit-line-delay-4 {
  animation-delay: 0.32s;
}

.community-orbit.is-visible .orbit-node {
  animation: communityNodeIn 0.7s ease forwards, communityNodeFloat 8s ease-in-out infinite;
}

.community-orbit.is-visible .orbit-node-1 {
  animation-delay: 0.36s, 1s;
}

.community-orbit.is-visible .orbit-node-2 {
  animation-delay: 0.48s, 1.15s;
}

.community-orbit.is-visible .orbit-node-3 {
  animation-delay: 0.6s, 1.3s;
}

.community-orbit.is-visible .orbit-node-center {
  animation-delay: 0.26s, 1s;
}

.community-orbit.is-visible .orbit-label {
  animation: communityLabelIn 0.7s ease forwards;
}

.community-orbit.is-visible .orbit-label-1 {
  animation-delay: 0.62s;
}

.community-orbit.is-visible .orbit-label-2 {
  animation-delay: 0.74s;
}

.community-orbit.is-visible .orbit-label-3 {
  animation-delay: 0.86s;
}

.community-feature-grid {
  gap: clamp(18px, 2.4vw, 28px);
  margin-top: clamp(34px, 5vw, 54px);
}

.community-feature-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-color: rgba(36, 125, 54, 0.13);
  border-top: 0;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(251, 250, 246, 0.78));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72), 0 12px 32px rgba(35, 51, 39, 0.035);
  padding: 30px 28px 28px;
}

.community-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  border-radius: 999px;
  background: rgba(36, 125, 54, 0.34);
}

.community-feature-card:hover,
.community-feature-card:focus-visible {
  border-color: rgba(36, 125, 54, 0.22);
  box-shadow: 0 24px 62px rgba(35, 51, 39, 0.11);
  transform: translateY(-6px);
}

.community-feature-card span {
  margin-bottom: 24px;
  color: rgba(36, 125, 54, 0.52);
}

.community-feature-card h3 {
  margin-bottom: 14px;
  color: #1f3025;
  font-size: 24px;
}

.community-feature-card p {
  max-width: 300px;
  color: #4b574f;
  font-size: 14.5px;
  line-height: 1.65;
}

.community-feature-card small {
  position: relative;
  width: fit-content;
  color: #247d36;
  font-size: 11.5px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.community-feature-card small::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 19px;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.22;
  transform: scaleX(0.45);
  transform-origin: left center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.community-feature-card:hover small,
.community-feature-card:focus-visible small {
  color: #1d6f2e;
  transform: translateX(2px);
}

.community-feature-card:hover small::after,
.community-feature-card:focus-visible small::after {
  opacity: 0.52;
  transform: scaleX(1);
}

.community-cta-card {
  border-radius: 26px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #8466b2 0%, #6f4a99 56%, #563176 100%);
  box-shadow: 0 28px 82px rgba(61, 38, 82, 0.28);
  padding: clamp(38px, 6vw, 74px);
}

.community-cta-eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.community-cta-card h3 {
  max-width: 650px;
  font-size: clamp(36px, 4.4vw, 58px);
}

.community-cta-card p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
}

.community-cta-card .button {
  border-color: #ffffff;
  box-shadow: 0 18px 42px rgba(34, 20, 46, 0.24) !important;
}

.community-modal {
  width: min(720px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  border: 1px solid rgba(36, 125, 54, 0.14);
  border-top: 4px solid var(--vidyaara-green);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 0%, rgba(36, 125, 54, 0.055), transparent 28%),
    #fbfaf6;
  box-shadow: 0 34px 96px rgba(17, 24, 20, 0.24);
  padding: 0;
}

.community-modal-content {
  padding: clamp(28px, 5vw, 48px);
}

.community-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.community-modal-close {
  position: static;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-color: rgba(36, 45, 39, 0.12);
  background: rgba(255, 255, 255, 0.68);
  color: #39453d;
  font-size: 20px;
}

.community-modal-close:hover,
.community-modal-close:focus-visible {
  border-color: rgba(36, 125, 54, 0.28);
  background: rgba(36, 125, 54, 0.08);
  color: var(--vidyaara-green);
}

.community-modal-kicker {
  margin: 0;
  background: rgba(36, 125, 54, 0.075);
}

.community-modal h2 {
  max-width: 620px;
  margin: 0 0 18px;
  color: #1f3025;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.community-modal p {
  max-width: 620px;
  color: #3f4a42;
  font-size: 15.5px;
  line-height: 1.74;
}

.community-modal-intro {
  color: #243027 !important;
  font-size: 17px !important;
  font-weight: 700;
  line-height: 1.65 !important;
}

.community-modal ul {
  max-width: 620px;
  gap: 11px;
  margin-top: 26px;
}

.community-modal li {
  font-size: 14.5px;
  padding-left: 24px;
}

.community-modal-cta {
  margin-top: 32px;
  width: fit-content;
}

@keyframes communityLineDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes communityNodeIn {
  to {
    opacity: 0.88;
  }
}

@keyframes communityLabelIn {
  to {
    opacity: 0.62;
  }
}

@keyframes communityNodeFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes communityOrbitDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -4px, 0) rotate(0.8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .community-orbit svg,
  .community-orbit.is-visible .orbit-line,
  .community-orbit.is-visible .orbit-node {
    animation: none;
  }

  .community-orbit .orbit-line {
    stroke-dashoffset: 0;
  }

  .community-orbit .orbit-node {
    opacity: 0.88;
  }

  .community-orbit .orbit-label {
    opacity: 0.62;
  }
}

@media (max-width: 1020px) {
  .community-home-intro {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
    gap: 34px;
  }

  .community-orbit {
    width: min(100%, 280px);
  }
}

@media (max-width: 640px) {
  .community-home-intro {
    grid-template-columns: 1fr;
  }

  .community-orbit {
    display: none;
  }

  .community-feature-card {
    min-height: 0;
    padding: 26px 24px;
  }

  .community-cta-card {
    border-radius: 20px;
    padding: 34px 26px;
  }

  .community-cta-card .button,
  .community-modal-cta {
    width: 100%;
  }

  .community-modal {
    width: 92vw;
    max-height: 86vh;
    border-radius: 20px;
  }

  .community-modal-content {
    padding: 28px 24px;
  }
}

/* Executive coaching elevation */
.executive-coaching {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(210, 136, 53, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210, 136, 53, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 82% 24%, rgba(210, 136, 53, 0.12), transparent 34%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f5f1 100%);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.coaching-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 500px);
  gap: clamp(44px, 7vw, 92px);
}

.coaching-copy h2 {
  max-width: 760px;
  line-height: 1.12;
}

.coaching-copy > p:not(.section-kicker) {
  max-width: 650px;
}

.coaching-founder-signal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px !important;
  border: 1px solid rgba(210, 136, 53, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #8f5b24 !important;
  font-size: 13px !important;
  font-weight: 900;
  line-height: 1.4 !important;
  padding: 10px 14px;
}

.coaching-founder-signal::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(210, 136, 53, 0.12);
}

.coaching-cta {
  margin-top: 28px;
}

.coaching-cta:hover,
.coaching-cta:focus-visible {
  box-shadow: 0 18px 42px rgba(210, 136, 53, 0.24) !important;
  transform: translateY(-2px);
}

.coaching-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(210, 136, 53, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(251, 250, 246, 0.82));
  box-shadow: 0 28px 76px rgba(35, 51, 39, 0.1);
  padding: clamp(30px, 4vw, 46px);
}

.coaching-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: rgba(210, 136, 53, 0.62);
}

.coaching-panel::after {
  content: "";
  position: absolute;
  right: -22%;
  bottom: -18%;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(210, 136, 53, 0.1);
  filter: blur(32px);
  pointer-events: none;
}

.coaching-panel-kicker {
  position: relative;
  z-index: 1;
  margin-bottom: 26px;
  color: #9a642b;
}

.coaching-outcomes {
  position: relative;
  z-index: 1;
  gap: 0;
}

.coaching-outcomes li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border-bottom: 1px solid rgba(45, 45, 45, 0.075);
  padding: 0 0 20px;
}

.coaching-outcomes li + li {
  padding-top: 20px;
}

.coaching-outcomes li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.coaching-outcomes li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(210, 136, 53, 0.26);
  border-radius: 999px;
  background: rgba(210, 136, 53, 0.08);
  color: #9a642b;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.coaching-outcomes strong {
  display: block;
  color: #243027;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.24;
}

.coaching-outcomes p {
  margin: 7px 0 0;
  color: #59645d;
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.58;
}

@media (max-width: 1020px) {
  .coaching-grid {
    grid-template-columns: 1fr;
  }

  .coaching-panel {
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .coaching-founder-signal {
    align-items: flex-start;
    border-radius: 16px;
  }

  .coaching-cta {
    width: 100%;
  }

  .coaching-panel {
    border-radius: 18px;
    padding: 30px 22px;
  }

  .coaching-outcomes li {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
  }

  .coaching-outcomes strong {
    font-size: 18px;
  }
}

/* Community and executive coaching page revamp */
.community-page .button-primary,
.coaching-page .button-primary,
.community-page .page-form button,
.coaching-page .page-form button {
  border-color: rgba(36, 125, 54, 0.42) !important;
  background: linear-gradient(180deg, #2c914a, #247d36) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 34px rgba(36, 125, 54, 0.16) !important;
}

.community-page .button-ghost,
.coaching-page .button-ghost {
  border-color: rgba(36, 125, 54, 0.28) !important;
  background: rgba(255, 255, 255, 0.58) !important;
  color: #1f6e2f !important;
}

.community-page .button:hover,
.community-page .button:focus-visible,
.coaching-page .button:hover,
.coaching-page .button:focus-visible,
.community-page .page-form button:hover,
.community-page .page-form button:focus-visible,
.coaching-page .page-form button:hover,
.coaching-page .page-form button:focus-visible {
  transform: translateY(-2px);
}

.community-page [data-story-reveal],
.coaching-page [data-story-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.community-page [data-story-reveal].is-visible,
.coaching-page [data-story-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.community-page .page-hero,
.coaching-page .page-hero {
  background:
    linear-gradient(rgba(36, 125, 54, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 125, 54, 0.024) 1px, transparent 1px),
    radial-gradient(circle at 84% 18%, rgba(36, 125, 54, 0.08), transparent 34%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f5f1 100%);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.community-page-actions,
.coaching-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.community-hero-sub-secondary {
  margin-top: 12px;
}

.community-hero-card,
.coaching-hero-card {
  border: 1px solid rgba(36, 125, 54, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 64px rgba(35, 51, 39, 0.08);
  padding: clamp(28px, 4vw, 42px);
}

.community-card-kicker,
.contact-card-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--vidyaara-green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.community-hero-card h2,
.coaching-hero-card h2 {
  margin: 0 0 14px;
  color: #243027;
  font-size: clamp(26px, 3vw, 34px);
}

.community-hero-card p,
.coaching-hero-card p {
  color: #4d574d;
  line-height: 1.72;
}

.community-hero-list,
.contact-preview-steps {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.community-hero-list li,
.contact-preview-steps li {
  border-top: 1px solid rgba(36, 45, 39, 0.08);
  color: #2f3a32;
  font-size: 14px;
  font-weight: 800;
  padding-top: 12px;
}

.community-advantage-grid,
.coaching-help-grid,
.coaching-pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.community-advantage-card,
.coaching-help-card,
.coaching-pillar {
  display: flex;
  flex-direction: column;
  min-height: 232px;
  border: 1px solid rgba(36, 125, 54, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 36px rgba(35, 51, 39, 0.04);
  padding: 26px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.community-advantage-card:hover,
.coaching-help-card:hover,
.coaching-pillar:hover,
.community-audience-card:hover,
.coaching-fit-list article:hover {
  border-color: rgba(36, 125, 54, 0.24);
  box-shadow: 0 22px 52px rgba(35, 51, 39, 0.09);
  transform: translateY(-4px);
}

.community-advantage-card span,
.coaching-help-card span {
  display: block;
  margin-bottom: 18px;
  color: rgba(36, 125, 54, 0.62);
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.community-advantage-card h3,
.coaching-help-card h3,
.coaching-pillar h3 {
  margin: 0 0 12px;
  color: #243027;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.22;
}

.community-advantage-card p,
.coaching-help-card p,
.coaching-pillar p {
  margin: 0;
  color: #4d574d;
  font-size: 14.5px;
  line-height: 1.72;
}

.community-audience-list,
.coaching-fit-list {
  display: grid;
  gap: 16px;
}

.community-audience-card,
.coaching-fit-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(36, 125, 54, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  padding: 24px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.community-audience-card > span,
.coaching-fit-list article > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(36, 125, 54, 0.18);
  border-radius: 999px;
  color: var(--vidyaara-green);
  transition: transform 0.22s ease;
}

.community-audience-card:hover > span,
.coaching-fit-list article:hover > span {
  transform: translateX(4px);
}

.community-audience-card h3 {
  margin: 0 0 8px;
  color: #243027;
  font-family: var(--serif);
  font-size: 22px;
}

.community-audience-card p,
.coaching-fit-list p {
  margin: 0;
  color: #4d574d;
  font-size: 14.5px;
  line-height: 1.65;
}

.community-request-section {
  padding: clamp(76px, 10vw, 118px) 0;
  background: #f7f5f1;
}

.community-request-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 26px 72px rgba(35, 51, 39, 0.1);
}

.community-request-panel {
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(135deg, #247d36, #1d632d);
  color: #ffffff;
  padding: clamp(34px, 5vw, 56px);
}

.community-request-panel .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.community-request-panel h2 {
  color: #ffffff;
  font-size: clamp(32px, 4vw, 48px);
}

.community-request-panel p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.74;
}

.community-request-panel .access-flow {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.88);
}

.community-request-form {
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.86);
  padding: clamp(30px, 5vw, 52px);
}

.coaching-page .section-heading p:not(.section-kicker) {
  max-width: 720px;
  color: #4d574d;
  font-size: 16px;
  line-height: 1.75;
}

.coaching-help-card p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, opacity 0.28s ease;
}

.coaching-help-card:hover p,
.coaching-help-card:focus-within p {
  max-height: 160px;
  opacity: 1;
}

.coaching-application-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.coaching-next-card {
  position: sticky;
  top: 108px;
  border: 1px solid rgba(36, 125, 54, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 50px rgba(35, 51, 39, 0.07);
  padding: clamp(26px, 4vw, 38px);
}

.coaching-page .contact-form-card {
  border-color: rgba(36, 125, 54, 0.14);
}

.community-page input:focus,
.community-page textarea:focus,
.community-page select:focus,
.coaching-page input:focus,
.coaching-page textarea:focus,
.coaching-page select:focus {
  border-color: rgba(36, 125, 54, 0.48);
  box-shadow: 0 0 0 4px rgba(36, 125, 54, 0.08);
  outline: none;
}

@media (max-width: 1020px) {
  .community-advantage-grid,
  .coaching-help-grid,
  .coaching-pillar-grid,
  .community-request-grid,
  .coaching-application-grid {
    grid-template-columns: 1fr;
  }

  .coaching-next-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .community-page-actions,
  .coaching-page-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .community-page-actions .button,
  .coaching-page-actions .button,
  .community-page .page-form button,
  .coaching-page .page-form button {
    width: 100%;
  }

  .community-request-grid {
    border-radius: 18px;
  }

  .community-advantage-card,
  .coaching-help-card,
  .coaching-pillar,
  .community-audience-card,
  .coaching-fit-list article {
    padding: 22px;
  }
}

/* === FOUNDER SECTION REDESIGN OVERRIDES === */

.kshama-carousel-shell {
  align-items: start;
}

.founder-subline {
  margin-top: 10px;
  font-size: 15px;
  color: #4e5a52;
  line-height: 1.7;
  max-width: 560px;
}

.founder-credentials-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-top: 20px;
  padding: 14px 0;
  border-top: 1px solid rgba(36, 125, 54, 0.14);
  border-bottom: 1px solid rgba(36, 125, 54, 0.14);
}

.founder-cred-item {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3f4a42;
  padding-right: 14px;
  margin-right: 14px;
  border-right: 1px solid rgba(36, 125, 54, 0.22);
  line-height: 1.8;
}

.founder-cred-item:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.founder-quote {
  margin: 28px 0 0;
  padding: 20px 20px 20px 22px;
  border-left: 3px solid var(--vidyaara-green);
  background: rgba(36, 125, 54, 0.04);
  border-radius: 0 6px 6px 0;
}

.founder-story-cards {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.founder-card {
  padding: 16px 20px;
  border: 1px solid rgba(36, 125, 54, 0.12);
  border-left: 3px solid rgba(36, 125, 54, 0.28);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.55);
}

.founder-card-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: #233327;
  margin: 0 0 6px;
}

.founder-card p {
  font-size: 14px;
  line-height: 1.78;
  color: #4e5a52;
  margin: 0;
}

.founder-closing {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: clamp(15px, 1.2vw, 17px);
  font-style: italic;
  color: #233327;
  line-height: 1.6;
}

@media (max-width: 1020px) {
  .founder-subline {
    max-width: 100%;
  }
  .founder-credentials-list {
    gap: 0;
  }
}

@media (max-width: 640px) {
  .founder-cred-item {
    font-size: 10px;
    padding-right: 10px;
    margin-right: 10px;
  }
  .founder-card {
    padding: 14px 16px;
  }
  .founder-closing {
    font-size: 15px;
  }
}

/* === FOUNDER ACCORDIONS + BUTTON + ALIGNMENT OVERRIDES === */

.founder-accordions {
  display: grid;
  gap: 7px;
  margin-top: 22px;
}

.founder-accordion {
  border: 1px solid rgba(36, 125, 54, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.68);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.founder-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 14px;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

.founder-accordion-trigger:focus-visible {
  outline: 2px solid var(--vidyaara-green);
  outline-offset: -2px;
  border-radius: 10px;
}

.founder-accordion-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #233327;
  line-height: 1.4;
}

.founder-accordion-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(36, 125, 54, 0.3);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.2s ease;
}

.founder-accordion-icon::before,
.founder-accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--vidyaara-green);
  border-radius: 1px;
}

.founder-accordion-icon::before {
  width: 8px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.founder-accordion-icon::after {
  width: 1.5px;
  height: 8px;
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.founder-accordion.is-open .founder-accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.founder-accordion-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.22s ease;
}

.founder-accordion-body p {
  padding: 2px 14px 13px;
  font-size: 13px;
  line-height: 1.68;
  color: #4e5a52;
  margin: 0;
}

.founder-accordion.is-open .founder-accordion-body {
  max-height: 120px;
  opacity: 1;
}

.founder-accordion.is-open {
  border-color: rgba(36, 125, 54, 0.26);
  box-shadow: 0 3px 12px rgba(36, 125, 54, 0.08);
}

@media (hover: hover) {
  .founder-accordion:hover {
    border-color: rgba(36, 125, 54, 0.22);
    box-shadow: 0 3px 12px rgba(36, 125, 54, 0.08);
    transform: translateY(-1px);
  }
  .founder-accordion:hover .founder-accordion-body {
    max-height: 120px;
    opacity: 1;
  }
}

.kshama-trust .founder-quote {
  font-size: clamp(16px, 1.5vw, 20px);
}

.kshama-stack {
  align-self: center;
}

.kshama-trust .button-primary {
  background: linear-gradient(180deg, #2c914a, #247d36);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(36, 125, 54, 0.2);
}

.kshama-trust .button-primary:hover,
.kshama-trust .button-primary:focus-visible {
  opacity: 1;
  background: linear-gradient(180deg, #247d36, #1f6e2f);
  box-shadow: 0 8px 24px rgba(36, 125, 54, 0.3);
  transform: translateY(-1px);
}

.kshama-trust .button-ghost {
  background: transparent;
  border-color: rgba(36, 125, 54, 0.42);
  color: var(--vidyaara-green);
  backdrop-filter: none;
}

.kshama-trust .button-ghost:hover,
.kshama-trust .button-ghost:focus-visible {
  background: rgba(36, 125, 54, 0.07);
  border-color: var(--vidyaara-green);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .founder-accordion-title { font-size: 12px; }
  .founder-accordion-trigger { padding: 11px 13px; }
  .kshama-trust .founder-actions { flex-direction: column; }
  .kshama-trust .button { width: 100%; justify-content: center; }
}

/* === EVENT WAITLIST CARD: FINAL REDESIGN === */

.event-section {
  background: transparent;
  padding: 72px 0;
}

.event-card {
  background: var(--teal);
  color: var(--white);
  border: none;
  box-shadow: none;
  border-radius: 22px;
  padding: 56px 64px;
  min-height: 360px;
  align-items: center;
  gap: 48px;
}

.event-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.event-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}

.event-section .section-kicker-on-color {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.event-card h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
  max-width: 540px;
}

.event-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.72;
  margin-top: 14px;
  max-width: 500px;
}

.event-facts li {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 6px 14px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.event-section .button-light {
  background: #fff;
  color: var(--vidyaara-green);
  border-color: transparent;
  font-weight: 900;
  white-space: nowrap;
  flex-shrink: 0;
}

.event-section .button-light:hover,
.event-section .button-light:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  opacity: 1;
  transform: translateY(-1px);
}

@media (max-width: 1020px) {
  .event-card {
    padding: 44px 40px;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .event-card {
    padding: 32px 28px;
    gap: 28px;
  }
  .event-card h2 {
    font-size: clamp(22px, 7vw, 28px);
  }
  .event-section .button-light {
    width: 100%;
    justify-content: center;
  }
}

/* === EVENT CARD BRIGHTNESS PATCH === */

.event-card {
  background: #247d36;
}

.event-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.95);
}

.event-facts li {
  color: rgba(255, 255, 255, 0.93);
  border-color: rgba(255, 255, 255, 0.45);
}

.event-eyebrow::before {
  background: rgba(255, 255, 255, 0.7);
}

/* === ABOUT PAGE: FOUNDER NARRATIVE SECTION === */

.founder-narrative-shell {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}

.founder-narrative-copy p {
  color: #4e5a52;
  line-height: 1.82;
  margin-bottom: 1.25rem;
  font-size: 0.97rem;
}

.founder-narrative-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.25rem) !important;
  color: #263128 !important;
  margin-bottom: 1.6rem !important;
}

.founder-narrative-close {
  font-family: var(--serif);
  font-style: italic;
  color: #263128 !important;
}

.founder-narrative-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.founder-narrative-pull {
  background: #f2f0eb;
  border-left: 3px solid var(--vidyaara-green);
  padding: 1.5rem 1.5rem 1.25rem;
  border-radius: 0 6px 6px 0;
  position: sticky;
  top: 100px;
}

.founder-narrative-pull p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.68;
  color: #263128;
  margin-bottom: 0.85rem;
}

.founder-narrative-pull cite {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--vidyaara-green);
  font-style: normal;
}

/* === ABOUT PAGE: CREDENTIALS 4-CARD GRID === */

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

/* === ABOUT PAGE: FOUNDER NARRATIVE + CREDENTIALS RESPONSIVE === */

@media (max-width: 1020px) {
  .founder-narrative-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-narrative-pull {
    position: static;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
  }
}

/* === ABOUT PAGE: HERO TWO-COLUMN LAYOUT === */

.about-hero .page-hero-sub {
  color: rgba(36, 51, 39, 0.68);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: center;
}

.about-hero-copy {
  min-width: 0;
}

.about-hero-copy h1,
.about-hero-copy .page-hero-sub {
  max-width: none;
}

.about-hero-emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 260px;
  flex-shrink: 0;
  position: relative;
}

.about-hero-emblem::before {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 125, 54, 0.09) 0%, transparent 66%);
  pointer-events: none;
}

.about-hero-mark {
  width: 200px;
  height: 200px;
  opacity: 0.14;
  position: relative;
  z-index: 1;
  display: block;
}

/* === ABOUT PAGE: BELIEF CARDS CLICK-EXPAND === */

.about-page .belief-block {
  cursor: pointer;
  transition: box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.about-page .belief-block .belief-content p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  transform: translateY(-4px);
  transition: max-height 0.38s ease, opacity 0.30s ease, margin-top 0.28s ease, transform 0.30s ease;
}

.about-page .belief-block.is-belief-open .belief-content p {
  max-height: 200px;
  opacity: 1;
  margin-top: 8px;
  transform: translateY(0);
}

.about-page .belief-block.is-belief-open {
  border-color: rgba(36, 125, 54, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 245, 241, 0.92));
  box-shadow: 0 16px 38px rgba(35, 51, 39, 0.085);
}

.about-page .belief-block.is-belief-open .belief-number {
  background: var(--vidyaara-green);
  color: white;
}

/* === ABOUT PAGE: OUR STORY EDITORIAL === */

.story-editorial-shell {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
  margin-top: 2.5rem;
}

.story-blocks-col {
  position: relative;
  padding-left: 1.75rem;
}

.story-blocks-col::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 32px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(36, 125, 54, 0.08), rgba(36, 125, 54, 0.22), rgba(36, 125, 54, 0.06));
}

.story-block {
  position: relative;
  padding-bottom: 2rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.story-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.story-block::before {
  content: '';
  position: absolute;
  left: -1.9rem;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid rgba(36, 125, 54, 0.30);
  transition: border-color 0.4s ease, background 0.4s ease;
}

.story-block.is-visible::before {
  border-color: var(--vidyaara-green);
  background: rgba(36, 125, 54, 0.10);
}

.story-block-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--vidyaara-green);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.story-block p {
  color: #4e5a52;
  line-height: 1.82;
  font-size: 0.96rem;
  margin: 0;
}

.story-aside-col {
  position: sticky;
  top: 100px;
}

.story-aside-card {
  background: #f2f0eb;
  border-left: 3px solid var(--vidyaara-green);
  padding: 1.5rem 1.5rem 1.25rem;
  border-radius: 0 8px 8px 0;
}

.story-aside-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.70;
  color: #263128;
  margin: 0 0 0.75rem;
}

.story-aside-card cite {
  display: block;
  font-size: 0.70rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--vidyaara-green);
  font-style: normal;
}

.story-editorial-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-left: 1.75rem;
}

/* === ABOUT PAGE: FOUNDER JOURNEY ACCORDION === */

.journey-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 2rem;
}

.journey-card {
  border: 1px solid rgba(36, 125, 54, 0.12);
  border-radius: 12px;
  background: white;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(35, 51, 39, 0.04);
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.journey-card.is-open {
  border-color: rgba(36, 125, 54, 0.22);
  box-shadow: 0 8px 28px rgba(35, 51, 39, 0.09);
}

.journey-card-header {
  display: grid;
  grid-template-columns: 80px 1fr 24px;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.25s ease;
}

.journey-card.is-open .journey-card-header {
  border-bottom-color: rgba(36, 125, 54, 0.10);
}

.journey-phase-num {
  font-size: 0.68rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--vidyaara-green);
  font-weight: 700;
  white-space: nowrap;
}

.journey-card-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: #263128;
  line-height: 1.3;
}

.journey-chevron {
  display: block;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid rgba(36, 125, 54, 0.45);
  border-bottom: 1.5px solid rgba(36, 125, 54, 0.45);
  transform: rotate(45deg);
  transition: transform 0.30s ease;
  justify-self: center;
}

.journey-card.is-open .journey-chevron {
  transform: rotate(-135deg);
}

.journey-card-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.40s ease, opacity 0.32s ease;
}

.journey-card-body p {
  padding: 1rem 1.5rem 1.25rem;
  color: #4e5a52;
  line-height: 1.78;
  font-size: 0.94rem;
  margin: 0;
}

.journey-card.is-open .journey-card-body {
  max-height: 200px;
  opacity: 1;
}

/* === ABOUT PAGE: SCROLL MARGIN FOR FIXED NAV === */

#about-hero,
#about-philosophy,
#about-story,
#about-journey,
#about-depth {
  scroll-margin-top: 100px;
}

/* === ABOUT PAGE: OVERHAUL RESPONSIVE === */

@media (max-width: 1020px) {
  .about-hero-grid {
    grid-template-columns: 1fr 200px;
    gap: 32px;
  }

  .about-hero-emblem {
    width: 200px;
    height: 200px;
  }

  .about-hero-mark {
    width: 160px;
    height: 160px;
  }

  .story-editorial-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-aside-col {
    position: static;
    order: -1;
  }

  .journey-card-header {
    grid-template-columns: 72px 1fr 20px;
  }
}

@media (max-width: 640px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-emblem {
    display: none;
  }

  .story-editorial-ctas {
    padding-left: 0;
  }

  .story-blocks-col {
    padding-left: 1.25rem;
  }

  .journey-card-header {
    grid-template-columns: 60px 1fr 20px;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
  }
}

/* === ABOUT PAGE: ROUND 2 FIXES === */

.about-hero-mark {
  opacity: 0.20;
}

.about-page .button-primary {
  background: linear-gradient(180deg, #2c914a, #247d36);
  color: #f8fbf4;
  border-color: rgba(36, 125, 54, 0.42);
  box-shadow: 0 8px 24px rgba(36, 125, 54, 0.20);
}

.about-page .button-primary:hover,
.about-page .button-primary:focus-visible {
  opacity: 0.94;
  box-shadow: 0 12px 32px rgba(36, 125, 54, 0.28);
}

.about-page .button-ghost {
  border-color: rgba(36, 125, 54, 0.34);
  color: #1f6e2f;
  background: rgba(255, 255, 255, 0.72);
}

.about-page .button-ghost:hover,
.about-page .button-ghost:focus-visible {
  border-color: rgba(36, 125, 54, 0.48);
  background: rgba(36, 125, 54, 0.08);
  color: #1f6e2f;
}

.about-page .beliefs-grid .belief-block {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease,
              box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.about-page .beliefs-grid .belief-block.is-scrolled-in {
  opacity: 1;
  transform: translateY(0);
}

.journey-accordion .journey-card {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease,
              box-shadow 0.28s ease, border-color 0.28s ease;
}

.journey-accordion .journey-card.is-scrolled-in {
  opacity: 1;
  transform: translateY(0);
}

.journey-accordion .journey-card.is-scrolled-in:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 125, 54, 0.20);
  box-shadow: 0 12px 32px rgba(35, 51, 39, 0.09);
}

.about-page .credential-block {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-page .credential-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(35, 51, 39, 0.09);
}

/* === ABOUT PAGE: LOGO MARK FLOAT ANIMATION === */

@keyframes aboutMarkFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.about-hero-mark {
  opacity: 0.55;
  animation: aboutMarkFloat 4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-mark {
    animation: none;
  }
}

/* Homepage executive coaching colour refinement */
.executive-coaching {
  background:
    linear-gradient(rgba(36, 125, 54, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 125, 54, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 82% 24%, rgba(210, 136, 53, 0.055), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(139, 166, 129, 0.09), transparent 32%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f5f1 100%);
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
}

.executive-coaching .section-kicker,
.executive-coaching .coaching-panel-kicker {
  color: #247d36;
}

.executive-coaching .coaching-lede {
  color: #2f4938 !important;
}

.coaching-founder-signal {
  border-color: rgba(36, 125, 54, 0.2);
  background: rgba(255, 255, 255, 0.68);
  color: #276b37 !important;
}

.coaching-founder-signal::before {
  background: #d28835;
  box-shadow:
    0 0 0 5px rgba(36, 125, 54, 0.09),
    0 0 18px rgba(210, 136, 53, 0.16);
}

.executive-coaching .coaching-cta {
  border-color: rgba(36, 125, 54, 0.42) !important;
  background: linear-gradient(180deg, #2c914a, #247d36) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 34px rgba(36, 125, 54, 0.18) !important;
}

.executive-coaching .coaching-cta:hover,
.executive-coaching .coaching-cta:focus-visible {
  box-shadow: 0 18px 42px rgba(36, 125, 54, 0.24) !important;
}

.coaching-panel {
  border-color: rgba(36, 125, 54, 0.14);
  background:
    radial-gradient(circle at 94% 92%, rgba(210, 136, 53, 0.045), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(251, 250, 246, 0.84));
  box-shadow: 0 28px 76px rgba(35, 51, 39, 0.09);
}

.coaching-panel::before {
  background: linear-gradient(90deg, rgba(36, 125, 54, 0.64), rgba(139, 166, 129, 0.48), rgba(210, 136, 53, 0.28));
}

.coaching-panel::after {
  background: rgba(36, 125, 54, 0.075);
}

.coaching-outcomes li {
  border-bottom-color: rgba(36, 125, 54, 0.095);
}

.coaching-outcomes li > span {
  border-color: rgba(36, 125, 54, 0.22);
  background: rgba(36, 125, 54, 0.075);
  color: #247d36;
}

/* Latest content refresh refinements */
.axis-hero-card .axis-card {
  opacity: 0.82;
}

.axis-hero-card .axis-wheel {
  opacity: 0.86;
}

.gap-card {
  min-height: 520px;
}

.gap-content {
  gap: 11px;
}

.gap-help {
  margin: 4px 0 0 !important;
  color: #536057 !important;
  font-size: 12.5px !important;
  line-height: 1.55 !important;
}

.gap-help span {
  display: block;
  margin-bottom: 4px;
  color: #247d36;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gap-card-orange .gap-help span {
  color: #9a642b;
}

.gap-card-green .gap-help span {
  color: #247d36;
}

.community-orbit::before {
  background: rgba(36, 125, 54, 0.16);
}

.orbit-line {
  opacity: 0.36;
  stroke-width: 1.35;
}

.orbit-node {
  opacity: 0.96;
}

.orbit-label {
  opacity: 0.76;
  fill: #247d36;
}

.community-orbit.is-visible .orbit-node {
  opacity: 0.96;
}

.community-orbit.is-visible .orbit-label {
  opacity: 0.76;
}

.community-page .community-request-section {
  background:
    linear-gradient(rgba(122, 92, 165, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 92, 165, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, #fbfaf6 0%, #f6f2f7 100%);
  background-size: 34px 34px, 34px 34px, auto;
}

.community-page .community-request-panel {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(145deg, #8062aa 0%, #7a5ca5 58%, #684b91 100%);
  color: #ffffff;
  box-shadow: 0 26px 70px rgba(80, 55, 122, 0.22);
}

.community-page .community-request-panel .section-kicker,
.community-page .community-request-panel h2,
.community-page .community-request-panel p,
.community-page .community-request-panel li {
  color: #ffffff;
}

.community-page .community-request-panel .access-flow li {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.community-page .community-request-form .form-submit button {
  background: linear-gradient(180deg, #2c914a, #247d36);
  border-color: rgba(36, 125, 54, 0.42);
  color: #ffffff;
}

.community-application-shell {
  display: grid;
  min-width: 0;
}

.community-application-form {
  gap: 28px;
  min-width: 0;
  height: 100%;
}

.community-form-progress {
  display: grid;
  grid-template-columns: 42px minmax(32px, 1fr) 42px minmax(32px, 1fr) 42px;
  align-items: center;
  width: 100%;
  margin: 0 0 36px;
}

.community-progress-step {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(36, 125, 54, 0.24);
  border-radius: 50%;
  background: #fffdf8;
  color: #247d36;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.community-progress-step.is-active {
  border-color: var(--vidyaara-green);
  background: var(--vidyaara-green);
  color: var(--white);
}

.community-progress-step.is-complete {
  border-color: rgba(105, 168, 142, 0.62);
  background: var(--green);
  color: var(--white);
}

.community-progress-line {
  height: 2px;
  background: rgba(45, 45, 45, 0.18);
}

.community-form-step {
  display: grid;
  gap: 24px;
}

.community-form-step[hidden] {
  display: none;
}

.community-page .community-application-form .form-row {
  grid-template-columns: 1fr;
  gap: 24px;
}

.community-page .community-application-form .form-field {
  gap: 10px;
}

.community-page .community-application-form .form-field label {
  color: #1f2a22;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.community-page .community-application-form .form-field:has(input[required]) label::after,
.community-page .community-application-form .form-field:has(select[required]) label::after,
.community-page .community-application-form .form-field:has(textarea[required]) label::after {
  content: " *";
  color: var(--orange);
}

.community-page .community-application-form .form-field input,
.community-page .community-application-form .form-field textarea,
.community-page .community-application-form .form-field select {
  min-height: 64px;
  border-color: rgba(45, 45, 45, 0.16);
  border-radius: 18px;
  background: #fffdf8;
  color: #1f2a22;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  padding: 18px 22px;
}

.community-page .community-application-form .form-field input::placeholder,
.community-page .community-application-form .form-field textarea::placeholder {
  color: rgba(31, 42, 34, 0.36);
  font-style: italic;
}

.community-page .community-application-form .form-field textarea {
  min-height: 142px;
}

.community-page .community-application-form .form-field input[aria-invalid="true"],
.community-page .community-application-form .form-field textarea[aria-invalid="true"],
.community-page .community-application-form .form-field select[aria-invalid="true"] {
  border-color: #9a4f2a;
  box-shadow: 0 0 0 3px rgba(154, 79, 42, 0.1);
}

.community-page .community-application-form .form-field-hint,
.community-page .community-application-form .form-field-error,
.community-page .community-application-form .community-disclaimer {
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
}

.community-page .community-application-form .form-field-hint {
  color: rgba(51, 51, 51, 0.58);
  font-style: italic;
}

.community-page .community-application-form .form-field-error {
  color: #9a4f2a;
  font-weight: 800;
}

.community-form-actions {
  display: flex;
  align-items: flex-start;
  justify-content: stretch;
  gap: 14px;
  margin-top: 10px;
}

.community-submit-wrap {
  display: grid;
  justify-items: stretch;
  flex: 1;
  width: 100%;
}

.community-page .community-application-form .community-step-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  border-radius: 100px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.community-page .community-application-form .community-step-button-primary {
  flex: 1;
  width: 100%;
}

.community-page .community-application-form .community-step-button:hover,
.community-page .community-application-form .community-step-button:focus-visible {
  opacity: 0.94;
  transform: translateY(-1px);
}

.community-page .community-application-form .community-step-button-primary {
  border: 1px solid rgba(36, 125, 54, 0.42) !important;
  background: linear-gradient(180deg, #2c914a, #247d36) !important;
  box-shadow: 0 13px 30px rgba(36, 125, 54, 0.2) !important;
  color: var(--white) !important;
}

.community-page .community-application-form .community-step-button-secondary {
  border: 1px solid rgba(36, 125, 54, 0.22) !important;
  background: rgba(255, 255, 255, 0.78) !important;
  box-shadow: none !important;
  color: #247d36 !important;
}

.community-page .community-application-form .community-disclaimer {
  max-width: 100%;
  color: rgba(51, 51, 51, 0.62);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

.community-application-success {
  display: grid;
  justify-items: center;
  gap: 14px;
  align-content: center;
  width: 100%;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.86);
  padding: clamp(30px, 5vw, 52px);
  text-align: center;
}

.community-success-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--vidyaara-green);
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.community-application-success h2 {
  color: var(--dgray);
  font-size: clamp(34px, 5vw, 52px);
}

.community-page .community-application-success p {
  max-width: 540px;
  color: #4d574d;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  margin: 0;
}

.community-page .community-application-success .community-success-signoff {
  color: var(--vidyaara-green);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .community-application-shell {
    width: 100%;
  }

  .community-application-form {
    padding: 28px 22px;
  }

  .community-form-progress {
    grid-template-columns: 34px minmax(24px, 1fr) 34px minmax(24px, 1fr) 34px;
    width: 100%;
    margin-bottom: 28px;
  }

  .community-progress-step {
    width: 34px;
    height: 34px;
  }

  .community-form-actions,
  .community-submit-wrap {
    align-items: stretch;
    justify-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .community-page .community-application-form .community-step-button,
  .community-submit-wrap {
    width: 100%;
  }

  .community-page .community-application-form .community-disclaimer {
    text-align: left;
  }
}

/* Homepage layout polish after content refresh */
.hero-premium {
  min-height: clamp(680px, 88vh, 840px);
}

.hero-premium .hero-inner {
  min-height: clamp(620px, 82vh, 780px);
  align-items: center;
}

.hero-premium .hero-content {
  max-width: min(760px, 58vw);
  padding-top: clamp(70px, 9vw, 112px);
  padding-bottom: clamp(80px, 10vw, 128px);
}

.hero-premium .hero-sub {
  max-width: 690px;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.72;
}

.hero-premium .hero-actions {
  margin-top: clamp(28px, 3.4vw, 42px);
  gap: 14px;
}

.axis-hero-card {
  width: min(38vw, 500px);
  right: clamp(22px, 5vw, 84px);
  top: 52%;
  transform: translateY(-50%);
}

.axis-hero-card .axis-card {
  padding: clamp(18px, 2vw, 28px);
  transform: scale(0.94);
  transform-origin: center right;
}

.axis-hero-card .axis-wheel {
  max-height: 390px;
}

.problem-section > .container {
  display: flex;
  flex-direction: column;
}

.gcc-stats-block {
  width: 100%;
  margin-top: 0;
  margin-bottom: clamp(54px, 7vw, 84px);
}

.gcc-stat-grid {
  align-items: stretch;
}

.gcc-stat-grid .gcc-stat-tile {
  min-height: 128px;
  align-content: start;
}

.gcc-stats-block > small {
  margin-top: 24px;
}

.problem-intro {
  margin-bottom: clamp(38px, 5.5vw, 62px);
}

.gap-grid {
  align-items: stretch;
  gap: clamp(20px, 2.4vw, 30px);
}

.gap-card {
  display: flex;
  flex-direction: column;
  height: auto !important;
  min-height: 560px;
  padding: 24px;
}

.gap-illustration-wrap {
  top: 25%;
  width: min(43%, 148px);
}

.gap-content {
  position: relative;
  inset: auto;
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-top: auto;
  min-height: 294px;
  padding: 20px;
}

.gap-content h3 {
  min-height: 54px;
}

.gap-content strong {
  margin-top: 14px;
}

.gap-help {
  border-top: 1px solid rgba(36, 125, 54, 0.09);
  margin-top: 12px !important;
  padding-top: 12px;
}

.gap-read-more {
  margin-top: auto;
  padding-top: 18px;
}

.community-home-intro {
  grid-template-columns: minmax(0, 0.98fr) minmax(250px, 360px);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}

.community-home-copy {
  max-width: 700px;
}

.community-orbit {
  width: min(100%, 330px);
  margin-right: clamp(0px, 1.5vw, 16px);
  transform: none;
}

.community-feature-grid {
  align-items: stretch;
  margin-top: clamp(32px, 4.2vw, 46px);
}

.community-feature-card {
  height: 100%;
  min-height: 250px;
}

.community-cta-card {
  margin-top: clamp(34px, 5vw, 52px);
  grid-template-columns: minmax(0, 1fr) minmax(190px, auto);
}

.community-cta-card .button {
  align-self: center;
}

.executive-coaching .coaching-grid {
  align-items: center;
  grid-template-columns: minmax(0, 0.98fr) minmax(380px, 520px);
}

.executive-coaching .coaching-copy {
  align-self: center;
}

.executive-coaching .coaching-copy h2 {
  max-width: 700px;
}

.executive-coaching .coaching-copy > p:not(.section-kicker) {
  max-width: 620px;
}

.coaching-founder-signal {
  margin-top: 20px !important;
}

.executive-coaching .coaching-cta {
  margin-top: 26px;
}

.coaching-panel {
  align-self: center;
}

.founder-letter .kshama-carousel-shell {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: clamp(42px, 6vw, 80px);
}

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

.founder-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
}

.founder-card p {
  margin-top: 10px;
  line-height: 1.65;
}

.founder-closing {
  margin-top: 26px;
}

.kshama-stack {
  align-self: center;
}

.event-card {
  align-items: center;
  gap: clamp(26px, 5vw, 56px);
}

.event-copy {
  max-width: 720px;
}

@media (max-width: 1100px) {
  .hero-premium .hero-content {
    max-width: 66vw;
  }

  .axis-hero-card {
    width: min(36vw, 430px);
    right: 24px;
  }

  .gap-card {
    min-height: 530px;
  }

  .gap-content {
    min-height: 286px;
  }
}

@media (max-width: 1020px) {
  .hero-premium {
    min-height: auto;
  }

  .hero-premium .hero-inner {
    min-height: auto;
  }

  .hero-premium .hero-content {
    max-width: 760px;
    padding-top: clamp(96px, 15vw, 142px);
    padding-bottom: clamp(64px, 10vw, 96px);
  }

  .axis-hero-card {
    position: relative;
    top: auto;
    right: auto;
    width: min(560px, calc(100% - 40px));
    margin: -42px auto 54px;
    transform: none;
  }

  .axis-hero-card .axis-card {
    transform: none;
  }

  .gap-grid {
    grid-template-columns: 1fr;
  }

  .gap-card {
    min-height: 0;
  }

  .gap-content {
    min-height: 0;
  }

  .gap-content h3 {
    min-height: 0;
  }

  .community-home-intro,
  .executive-coaching .coaching-grid,
  .founder-letter .kshama-carousel-shell {
    grid-template-columns: 1fr;
  }

  .community-orbit {
    justify-self: start;
    width: min(320px, 80vw);
  }

  .executive-coaching .coaching-panel,
  .founder-letter .kshama-stack {
    max-width: 720px;
  }

  .founder-story-cards {
    grid-template-columns: 1fr;
  }

  .founder-card {
    min-height: 0;
  }

  .event-card {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-premium .hero-content {
    max-width: 100%;
    padding-top: 112px;
    padding-bottom: 52px;
  }

  .hero-premium .hero-sub {
    font-size: 16px;
    line-height: 1.68;
  }

  .hero-premium .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .hero-premium .hero-actions .button {
    justify-content: center;
    width: 100%;
  }

  .axis-hero-card {
    display: none;
  }

  .gcc-stats-block {
    margin-bottom: 44px;
    padding: 26px 20px;
  }

  .gcc-stat-grid .gcc-stat-tile {
    min-height: 0;
  }

  .problem-intro {
    margin-bottom: 30px;
  }

  .gap-card {
    padding: 18px;
  }

  .gap-illustration-wrap {
    position: relative;
    top: auto;
    left: auto;
    width: min(190px, 70%);
    margin: 6px auto 16px;
    transform: none;
  }

  .gap-card:hover .gap-illustration-wrap {
    transform: translateY(-4px) scale(1.02);
  }

  .gap-content {
    padding: 18px;
  }

  .community-home-intro {
    gap: 24px;
  }

  .community-feature-card {
    min-height: 0;
  }

  .community-cta-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .community-cta-card .button {
    justify-self: stretch;
    justify-content: center;
    white-space: normal;
  }

  .executive-coaching .coaching-grid {
    gap: 30px;
  }

  .coaching-panel {
    padding: 28px 20px;
  }

  .founder-letter .kshama-carousel-shell {
    gap: 32px;
  }

  .event-card {
    gap: 24px;
  }

  .event-card .button {
    width: 100%;
    justify-content: center;
  }
}

/* Homepage visual issue fixes */
.gap-card {
  min-height: 510px;
  padding: 22px;
  overflow: visible;
}

.gap-card .gap-index {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(36, 125, 54, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #223128;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  opacity: 1;
  box-shadow: 0 10px 24px rgba(36, 45, 39, 0.08);
  backdrop-filter: blur(8px);
}

.gap-card-orange .gap-index {
  border-color: rgba(154, 100, 43, 0.18);
  color: #9a642b;
}

.gap-card-green .gap-index {
  border-color: rgba(36, 125, 54, 0.18);
  color: #247d36;
}

.gap-card .gap-illustration-wrap {
  top: 21%;
  width: min(39%, 132px);
  opacity: 0.52;
}

.gap-card .gap-content {
  flex: 0 0 auto;
  margin-top: auto;
  min-height: 0;
  padding: 22px;
  gap: 10px;
}

.gap-card .gap-content h3 {
  min-height: 0;
  margin-bottom: 10px;
}

.gap-card .gap-content p:not(.gap-help) {
  margin-bottom: 4px;
}

.gap-card .gap-content strong {
  margin-top: 8px;
}

.gap-card .gap-help {
  margin-top: 8px !important;
  padding-top: 10px;
}

.gap-card .gap-read-more {
  margin-top: 12px;
  padding-top: 0;
}

.gap-modal:not(.community-modal) {
  text-align: center;
}

.gap-modal:not(.community-modal) .modal-illustration {
  justify-content: center;
  padding-right: 54px;
  padding-left: 54px;
}

.gap-modal:not(.community-modal) .modal-content {
  text-align: center;
}

.gap-modal:not(.community-modal) h2,
.gap-modal:not(.community-modal) .modal-pain,
.gap-modal:not(.community-modal) .modal-body,
.gap-modal:not(.community-modal) .modal-evidence,
.gap-modal:not(.community-modal) .modal-source-footer {
  margin-right: auto;
  margin-left: auto;
}

.gap-modal:not(.community-modal) .modal-section-title {
  text-align: center;
}

.gap-modal:not(.community-modal) .modal-evidence {
  display: grid;
  justify-items: center;
  border-left-width: 1px;
  text-align: center;
}

.gap-modal:not(.community-modal) .modal-cta-row {
  justify-content: center;
}

.community-orbit {
  opacity: 1;
  filter: saturate(1.35) contrast(1.08);
}

.community-orbit::before {
  background: rgba(36, 125, 54, 0.26);
  filter: blur(26px);
}

.community-orbit .orbit-line {
  opacity: 0.58;
  stroke-width: 1.75;
}

.community-orbit .orbit-node {
  opacity: 1;
  filter: drop-shadow(0 7px 14px rgba(36, 125, 54, 0.2));
}

.community-orbit .orbit-node-center {
  opacity: 1;
}

.community-orbit .orbit-label {
  opacity: 0.96;
  fill: #247d36;
  font-weight: 900;
}

.community-orbit.is-visible .orbit-node {
  opacity: 1;
}

.community-orbit.is-visible .orbit-label {
  opacity: 0.96;
}

@keyframes communityNodeIn {
  from {
    opacity: 0;
    transform: scale(0.82);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes communityLabelIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 0.96;
    transform: translateY(0);
  }
}

.founder-story-cards {
  display: flex;
  grid-template-columns: none;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  padding: 4px 4px 16px;
  scroll-padding-left: 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.kshama-founder-copy {
  min-width: 0;
}

.founder-story-cards::-webkit-scrollbar {
  height: 8px;
}

.founder-story-cards::-webkit-scrollbar-track {
  background: rgba(36, 125, 54, 0.06);
  border-radius: 999px;
}

.founder-story-cards::-webkit-scrollbar-thumb {
  background: rgba(36, 125, 54, 0.24);
  border-radius: 999px;
}

.founder-card {
  flex: 0 0 clamp(300px, 33vw, 405px);
  min-height: 270px;
  scroll-snap-align: start;
  transform: translateY(12px) scale(0.985);
  opacity: 0.82;
  transition:
    flex-basis 0.42s ease,
    opacity 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.founder-card.is-open {
  flex-basis: clamp(360px, 43vw, 540px);
  border-color: rgba(36, 125, 54, 0.24);
  box-shadow: 0 22px 52px rgba(35, 51, 39, 0.11);
  transform: translateY(0) scale(1);
  opacity: 1;
}

.founder-card:not(.is-open) p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.founder-card.is-revealed {
  transform: translateY(0) scale(1);
  opacity: 1;
}

@media (max-width: 1020px) {
  .gap-card {
    min-height: 0;
    overflow: hidden;
  }

  .gap-card .gap-index {
    top: 18px;
    left: 18px;
  }

  .gap-card .gap-content {
    margin-top: 0;
  }

  .founder-story-cards {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .founder-card,
  .founder-card.is-open {
    flex-basis: auto;
    min-height: 0;
    opacity: 1;
    transform: none;
  }

  .founder-card:not(.is-open) p {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }
}

@media (max-width: 640px) {
  .gap-card .gap-index {
    position: relative;
    top: auto;
    left: auto;
    align-self: flex-start;
    margin-bottom: 12px;
  }

  .gap-card .gap-illustration-wrap {
    width: min(170px, 64%);
    opacity: 0.55;
  }

  .gap-modal:not(.community-modal) .modal-illustration {
    padding-right: 28px;
    padding-left: 28px;
  }

  .gap-modal:not(.community-modal) .modal-content {
    padding-right: 22px;
    padding-left: 22px;
  }
}

/* Founder stack correction */
.founder-story-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  padding: 0;
  scroll-padding-left: 0;
  scroll-snap-type: none;
}

.founder-story-cards::-webkit-scrollbar {
  display: none;
}

.founder-card,
.founder-card.is-open,
.founder-card.is-revealed {
  flex: none;
  width: 100%;
  min-height: 0;
  opacity: 1;
  transform: none;
  scroll-snap-align: none;
  cursor: pointer;
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease,
    transform 0.28s ease;
}

.founder-card:not(.is-open) p,
.founder-card p {
  display: block;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: visible;
  -webkit-box-orient: initial;
  -webkit-line-clamp: unset;
  transition:
    max-height 0.42s ease,
    margin-top 0.28s ease,
    opacity 0.32s ease;
}

.founder-card:not(.is-open) p {
  overflow: hidden;
}

.founder-card.is-open {
  border-color: rgba(36, 125, 54, 0.24);
  box-shadow: 0 18px 42px rgba(35, 51, 39, 0.1);
  transform: translateY(-2px);
}

.founder-card.is-open p {
  max-height: 360px;
  margin-top: 12px;
  opacity: 1;
  overflow: visible;
}

.founder-card:focus-visible {
  outline: 3px solid rgba(36, 125, 54, 0.22);
  outline-offset: 4px;
}

.founder-closing {
  display: grid;
  gap: 6px;
}

.founder-closing span {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .founder-card,
  .founder-card p {
    transition: none;
  }

  .founder-card p {
    max-height: none;
    margin-top: 12px;
    opacity: 1;
    overflow: visible;
  }
}

/* Executive coaching page spacing correction */
.coaching-page .coaching-approach-section {
  padding-top: clamp(110px, 12vw, 150px);
  scroll-margin-top: 120px;
}

.coaching-page .coaching-approach-section .section-heading {
  max-width: 980px;
}

.coaching-page .coaching-approach-section .section-heading h2 {
  max-width: 900px;
  font-size: clamp(46px, 5.7vw, 86px);
  line-height: 0.98;
}

.coaching-page .coaching-approach-section .section-heading p:not(.section-kicker) {
  max-width: 920px;
  margin-top: 28px;
}

@media (max-width: 720px) {
  .coaching-page .coaching-approach-section {
    padding-top: 78px;
  }

.coaching-page .coaching-approach-section .section-heading h2 {
    font-size: clamp(38px, 12vw, 58px);
    line-height: 1.04;
  }
}

/* About hero copy and brand mark refinement */
.about-hero {
  padding-top: clamp(142px, 13vw, 172px);
  padding-bottom: clamp(86px, 9vw, 118px);
}

.about-hero-grid {
  grid-template-columns: minmax(0, 780px) minmax(220px, 300px);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.about-hero-copy {
  max-width: 780px;
}

.about-hero-copy h1 {
  max-width: 720px;
  margin-bottom: 26px;
}

.about-hero-body {
  display: grid;
  gap: 18px;
  max-width: 720px;
}

.about-hero-body .page-hero-sub {
  max-width: 680px;
  margin: 0;
  color: rgba(36, 51, 39, 0.76);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.78;
}

.about-hero .page-hero-accent-line {
  margin-top: 34px;
}

.about-hero-emblem {
  width: clamp(220px, 22vw, 300px);
  height: clamp(220px, 22vw, 300px);
}

.about-hero-emblem::before {
  inset: -18px;
  background: radial-gradient(circle, rgba(36, 125, 54, 0.12) 0%, rgba(36, 125, 54, 0.045) 42%, transparent 70%);
}

.about-hero-mark {
  width: clamp(172px, 17vw, 230px);
  height: clamp(172px, 17vw, 230px);
  opacity: 0.86;
  filter: saturate(1.08) contrast(1.02);
}

@media (max-width: 1020px) {
  .about-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(170px, 220px);
    gap: 34px;
  }

  .about-hero-copy,
  .about-hero-body,
  .about-hero-body .page-hero-sub {
    max-width: 680px;
  }

  .about-hero-emblem {
    width: 210px;
    height: 210px;
  }

  .about-hero-mark {
    width: 168px;
    height: 168px;
  }
}

@media (max-width: 720px) {
  .about-hero {
    padding-top: 122px;
    padding-bottom: 72px;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-hero-body {
    gap: 15px;
  }

  .about-hero-emblem {
    display: flex;
    justify-self: start;
    width: 150px;
    height: 150px;
  }

  .about-hero-mark {
    width: 118px;
    height: 118px;
    opacity: 0.72;
  }
}

/* About hero logo emblem refinement */
.about-hero-emblem {
  width: clamp(300px, 25vw, 340px);
  height: clamp(300px, 25vw, 340px);
  border: 1px solid rgba(36, 125, 54, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78) 46%, rgba(246, 243, 235, 0.86) 100%);
  box-shadow:
    0 26px 74px rgba(35, 51, 39, 0.13),
    0 0 0 18px rgba(36, 125, 54, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  justify-self: center;
}

.about-hero-emblem::before {
  inset: -32px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(36, 125, 54, 0.18) 0%, rgba(36, 125, 54, 0.08) 34%, transparent 68%);
  filter: none;
}

.about-hero-emblem::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  border: 1px solid rgba(36, 125, 54, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.about-hero-mark {
  width: clamp(205px, 17vw, 232px);
  height: clamp(205px, 17vw, 232px);
  opacity: 1;
  filter: none;
  animation: none;
  display: block;
  object-fit: contain;
  transform: translate(5px, 0);
}

@media (max-width: 1020px) {
  .about-hero-emblem {
    width: 240px;
    height: 240px;
  }

  .about-hero-mark {
    width: 178px;
    height: 178px;
    transform: translate(4px, 0);
  }
}

@media (max-width: 720px) {
  .about-hero-emblem {
    justify-self: center;
    width: 176px;
    height: 176px;
    box-shadow:
      0 18px 42px rgba(35, 51, 39, 0.12),
      0 0 0 10px rgba(36, 125, 54, 0.035),
      inset 0 1px 0 rgba(255, 255, 255, 0.86);
  }

  .about-hero-emblem::before {
    inset: -20px;
  }

  .about-hero-emblem::after {
    inset: 12px;
  }

.about-hero-mark {
  width: 126px;
  height: 126px;
  opacity: 1;
  transform: translate(3px, 0);
  }
}

/* === FINAL SITE POLISH: HEADER LOGO AND LEGAL PAGES === */

.site-header .brand-logo-header {
  width: 92px;
  height: 92px;
  max-width: 92px;
}

.site-header .nav-shell {
  min-height: 112px;
  padding-left: clamp(26px, 3.2vw, 38px);
}

.site-header .brand-mark {
  gap: 14px;
}

.legal-page {
  background:
    linear-gradient(rgba(36, 125, 54, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 125, 54, 0.035) 1px, transparent 1px),
    var(--ivory);
  background-size: 88px 88px;
  color: var(--charcoal);
}

.legal-page .page-hero {
  padding-bottom: clamp(48px, 7vw, 76px);
}

.legal-content {
  padding: clamp(34px, 6vw, 70px) 0 clamp(84px, 10vw, 120px);
}

.legal-content-inner {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(36, 125, 54, 0.12);
  border-radius: 22px;
  padding: clamp(28px, 5vw, 54px);
  box-shadow: 0 24px 70px rgba(35, 51, 39, 0.08);
}

.legal-content-inner section + section {
  margin-top: 34px;
}

.legal-content-inner h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  margin-bottom: 12px;
}

.legal-content-inner p,
.legal-content-inner li {
  color: #556158;
  line-height: 1.78;
}

.legal-content-inner ul {
  margin: 12px 0 0;
  padding-left: 1.2rem;
}

.legal-updated {
  color: var(--vidyaara-green);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

@media (max-width: 720px) {
  .site-header .brand-logo-header {
    width: 52px;
    height: 52px;
    max-width: 52px;
  }

  .site-header .nav-shell {
    min-height: 66px;
    padding-left: 18px;
  }

  .site-header .brand-mark {
    gap: 9px;
  }

  .legal-content-inner {
    border-radius: 16px;
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  .site-header .brand-logo-header {
    width: 72px;
    height: 72px;
    max-width: 72px;
  }

  .site-header .nav-shell {
    min-height: 90px;
  }
}

/* === FINAL POLISH: NAV, LIGHT THEME, FORMS, AND WAITLIST === */
body {
  color-scheme: light;
}

.site-header .nav-shell {
  width: min(calc(100% - 64px), 1180px);
  gap: clamp(12px, 1.5vw, 22px);
  padding: 0 clamp(18px, 2vw, 28px) 0 clamp(22px, 2.4vw, 34px);
}

.site-header .brand-mark {
  gap: 6px;
  align-items: center;
}

.site-header .brand-text {
  transform: translateX(-4px);
}

.site-header .primary-nav {
  gap: clamp(16px, 2vw, 26px);
  align-items: center;
}

.site-header .primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.site-header .nav-actions {
  align-items: center;
}

.kshama-founder-meta::before {
  display: none;
}

.axis-caption {
  margin-top: 18px;
  padding-top: 6px;
}

.about-page .section-heading-wide {
  max-width: 980px;
}

.about-page #philosophy-title {
  white-space: nowrap;
  font-size: clamp(2.4rem, 4.2vw, 4.45rem);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 4px 0 6px;
  padding: 12px 15px;
  border: 1px solid rgba(36, 125, 54, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #425147;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.form-checkbox:hover,
.form-checkbox:focus-within {
  border-color: rgba(36, 125, 54, 0.34);
  box-shadow: 0 14px 34px rgba(35, 51, 39, 0.08);
  transform: translateY(-1px);
}

.form-checkbox input {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 0;
  appearance: none;
  border: 1.5px solid rgba(36, 125, 54, 0.34);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-checkbox input::after {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  opacity: 0;
  transform: translateY(-1px) rotate(-45deg) scale(0.82);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.form-checkbox input:checked {
  border-color: var(--vidyaara-green);
  background: var(--vidyaara-green);
  box-shadow: 0 5px 12px rgba(36, 125, 54, 0.18);
}

.form-checkbox input:checked::after {
  opacity: 1;
  transform: translateY(-1px) rotate(-45deg) scale(1);
}

.form-checkbox input:focus-visible {
  outline: 3px solid rgba(36, 125, 54, 0.16);
  outline-offset: 2px;
}

.waitlist-modal .community-modal-content {
  padding: clamp(26px, 4vw, 42px);
}

.waitlist-modal .page-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.waitlist-modal .page-form input,
.waitlist-modal .page-form textarea {
  width: 100%;
  border: 1px solid rgba(36, 125, 54, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: #2f3d34;
}

.waitlist-modal .page-form input:focus,
.waitlist-modal .page-form textarea:focus {
  outline: none;
  border-color: rgba(36, 125, 54, 0.48);
  box-shadow: 0 0 0 4px rgba(36, 125, 54, 0.08);
}

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

.waitlist-modal textarea {
  min-height: 104px;
}

.waitlist-modal .form-submit button {
  width: fit-content;
  border: 0;
  border-radius: 999px;
  background: var(--vidyaara-green);
  color: var(--white);
  padding: 13px 24px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(36, 125, 54, 0.18);
}

main {
  animation: vidyaaraPageEntry 0.48s ease both;
}

@keyframes vidyaaraPageEntry {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.community-advantage-grid {
  grid-auto-rows: 1fr;
}

.community-advantage-card {
  justify-content: flex-start;
  height: 100%;
  min-height: 244px;
  padding: 26px;
}

.community-advantage-card h3 {
  min-height: 0;
}

.community-advantage-card p {
  flex: 1;
}

.coaching-page .contact-hero-card {
  padding: clamp(26px, 3vw, 34px);
}

.coaching-page .contact-card-kicker {
  margin-bottom: 12px;
}

.coaching-page .contact-hero-card h2 {
  margin-bottom: 12px;
}

.coaching-page .contact-hero-card p:not(.contact-card-kicker) {
  margin-bottom: 18px;
}

.coaching-page .contact-preview-steps {
  gap: 10px;
  margin-top: 18px;
}

.coaching-page .contact-preview-steps li {
  padding-top: 10px;
}

.coaching-page .coaching-help-card,
.coaching-page .coaching-pillar {
  min-height: 178px;
  padding: 22px;
}

.coaching-page .coaching-pillar {
  min-height: 188px;
}

.coaching-page .coaching-help-card span {
  margin-bottom: 13px;
}

.coaching-page .coaching-help-card h3,
.coaching-page .coaching-pillar h3 {
  margin-bottom: 10px;
}

.coaching-page .coaching-help-card p,
.coaching-page .coaching-pillar p {
  line-height: 1.58;
}

.coaching-application-section .coaching-application-grid {
  align-items: start;
}

.coaching-application-section .contact-form-title {
  margin-bottom: 18px;
}

.coaching-application-section .contact-form-intro {
  margin-bottom: 30px;
}

.coaching-page .contact-form-card {
  margin-top: 0;
}

.about-hero-body {
  max-width: 820px;
}

@media (prefers-reduced-motion: reduce) {
  main {
    animation: none;
  }
}

.event-section .button-light {
  border: 0;
  cursor: pointer;
}

@media (forced-colors: active) {
  body {
    forced-color-adjust: none;
  }
}

@media (prefers-color-scheme: dark) {
  html,
  body {
    background: var(--soft);
    color: var(--dgray);
  }
}

@media (max-width: 1020px) {
  .site-header .nav-shell {
    width: min(calc(100% - 36px), 980px);
  }

  .about-page #philosophy-title {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .site-header .brand-mark {
    gap: 5px;
  }

  .site-header .brand-text {
    transform: translateX(-3px);
  }

  .waitlist-modal .form-row {
    grid-template-columns: 1fr;
  }

  .form-checkbox {
    width: 100%;
    align-items: flex-start;
    border-radius: 18px;
  }
}

/* === FINAL FORM CHECKBOX AND COMMUNITY CARD ALIGNMENT FIX === */
.form-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: auto;
  max-width: 100%;
  min-height: 54px;
  margin: 6px 0 10px;
  padding: 12px 24px 12px 18px;
  border: 1px solid rgba(36, 125, 54, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(35, 51, 39, 0.04);
}

.form-checkbox span {
  color: #405045;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}

.page-form .form-checkbox input,
.waitlist-modal .page-form .form-checkbox input,
.contact-form-card .form-checkbox input {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 22px;
  inline-size: 22px;
  block-size: 22px;
  min-width: 22px;
  width: 22px;
  max-width: 22px;
  height: 22px;
  min-height: 22px;
  margin: 0;
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: 7px;
  background: var(--vidyaara-green);
  box-shadow: 0 8px 16px rgba(36, 125, 54, 0.22);
}

.page-form .form-checkbox input::after,
.waitlist-modal .page-form .form-checkbox input::after,
.contact-form-card .form-checkbox input::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 5px;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  opacity: 0;
  transform: translate(-50%, -62%) rotate(-45deg) scale(0.9);
}

.page-form .form-checkbox input:checked::after,
.waitlist-modal .page-form .form-checkbox input:checked::after,
.contact-form-card .form-checkbox input:checked::after {
  opacity: 1;
}

.page-form .form-checkbox input:not(:checked),
.waitlist-modal .page-form .form-checkbox input:not(:checked),
.contact-form-card .form-checkbox input:not(:checked) {
  border: 1.5px solid rgba(36, 125, 54, 0.28);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.community-page .community-advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 22px;
  align-items: stretch;
}

.community-page .community-advantage-card,
.community-page .community-advantage-card:nth-child(1),
.community-page .community-advantage-card:nth-child(3),
.community-page .community-advantage-card:nth-child(n+4) {
  grid-column: auto;
  display: flex;
  flex-direction: column;
  width: auto;
  min-width: 0;
  min-height: 292px;
  height: 100%;
  padding: 30px 32px;
}

.community-page .community-advantage-card::before {
  margin-bottom: 26px;
}

.community-page .community-advantage-card h3 {
  min-height: auto;
  margin-bottom: 16px;
}

.community-page .community-advantage-card p {
  flex: 1;
  margin: 0;
}

@media (max-width: 1020px) {
  .community-page .community-advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .form-checkbox {
    align-items: center;
    width: 100%;
    min-height: 54px;
    border-radius: 18px;
    padding: 12px 16px;
  }

  .form-checkbox span {
    white-space: normal;
  }

  .community-page .community-advantage-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .community-page .community-advantage-card,
  .community-page .community-advantage-card:nth-child(1),
  .community-page .community-advantage-card:nth-child(3),
  .community-page .community-advantage-card:nth-child(n+4) {
    min-height: auto;
    padding: 26px 24px;
  }
}

/* === FINAL FORM VALIDATION, TEXT VISIBILITY, AND SUCCESS STATE === */
.page-form input,
.page-form textarea,
.page-form select,
.waitlist-modal .page-form input,
.waitlist-modal .page-form textarea,
.waitlist-modal .page-form select,
.community-page .community-access-form .form-field input,
.community-page .community-access-form .form-field textarea,
.community-page .community-access-form .form-field select {
  color: #1f2a22;
  caret-color: var(--vidyaara-green);
}

.page-form input::placeholder,
.page-form textarea::placeholder,
.waitlist-modal .page-form input::placeholder,
.waitlist-modal .page-form textarea::placeholder,
.community-page .community-access-form .form-field input::placeholder,
.community-page .community-access-form .form-field textarea::placeholder {
  color: rgba(31, 42, 34, 0.48);
}

.page-form select:invalid {
  color: rgba(31, 42, 34, 0.58);
}

.page-form input:-webkit-autofill,
.page-form textarea:-webkit-autofill,
.page-form select:-webkit-autofill {
  -webkit-text-fill-color: #1f2a22;
  box-shadow: 0 0 0 1000px #fffdf8 inset;
}

.form-success-panel {
  display: grid;
  justify-items: start;
  gap: 12px;
  border: 1px solid rgba(36, 125, 54, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 10%, rgba(36, 125, 54, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.76);
  padding: clamp(24px, 4vw, 34px);
  color: #1f2a22;
  box-shadow: 0 18px 48px rgba(35, 51, 39, 0.07);
}

.form-success-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--vidyaara-green);
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(36, 125, 54, 0.2);
}

.form-success-panel h3 {
  margin: 2px 0 0;
  color: #1f2a22;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.06;
}

.form-success-panel p {
  max-width: 560px;
  margin: 0;
  color: rgba(31, 42, 34, 0.72);
  font-size: 1rem;
  line-height: 1.68;
}

/* === FINAL SECTION SPACING POLISH === */
.home-page .kshama-trust.section-pad {
  padding-bottom: clamp(58px, 6.5vw, 84px);
}

.home-page .community-home-section {
  padding-top: clamp(58px, 6.5vw, 84px);
}

.community-page .community-hero {
  padding-top: clamp(154px, 13vw, 190px);
}

@media (max-width: 720px) {
  .home-page .kshama-trust.section-pad {
    padding-bottom: 50px;
  }

  .home-page .community-home-section {
    padding-top: 54px;
  }

  .community-page .community-hero {
    padding-top: 138px;
  }
}

/* === FINAL GAP CARD FRONT ALIGNMENT === */
.home-page .gap-card .gap-content {
  display: flex;
  flex-direction: column;
  height: 304px;
  min-height: 304px;
}

.home-page .gap-card .gap-content > p:not(.gap-help) {
  min-height: 52px;
}

.home-page .gap-card .gap-content strong {
  display: block;
  min-height: 42px;
}

.home-page .gap-card .gap-help {
  min-height: 88px;
  margin-top: 10px !important;
  padding-top: 12px;
  border-top: 1px solid rgba(36, 45, 39, 0.08);
}

.home-page .gap-card .gap-read-more {
  margin-top: auto;
}

@media (max-width: 1020px) {
  .home-page .gap-card .gap-content {
    height: auto;
    min-height: 0;
  }

  .home-page .gap-card .gap-content > p:not(.gap-help) {
    min-height: 0;
  }

  .home-page .gap-card .gap-content strong {
    min-height: 0;
  }

  .home-page .gap-card .gap-help {
    min-height: 0;
  }

  .home-page .gap-card .gap-read-more {
    margin-top: 12px;
  }
}
