/* Vikāra Institute — official palette + brand tokens */
:root {
  --color-navy: #042961;
  --color-royal: #264fad;
  --color-sky: #2c89d6;
  --color-cyan: #2cb5d6;
  --color-teal: #2cc5bc;
  --color-mint: #2ad6a2;

  --primary: var(--color-navy);
  --accent: var(--color-royal);
  --mid-blue: var(--color-sky);
  --aqua: var(--color-cyan);
  --teal: var(--color-teal);

  --gradient-accent: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-royal) 100%);
  --gradient-hero-mesh: radial-gradient(ellipse 75% 55% at 72% 18%, rgba(44, 181, 214, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 12% 88%, rgba(42, 214, 162, 0.12), transparent 50%);

  --bg: #fff;
  --bg-alt: #f5f7fa;
  --bg-deep: #e8eef5;
  --border: rgba(44, 137, 214, 0.22);
  --text: #334155;
  --text-muted: #64748b;

  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow: 0 4px 24px rgba(4, 41, 97, 0.08);
  --radius: 12px;
  --radius-btn: 12px;
  --container: 68rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); line-height: 1.65; background: var(--bg); font-weight: 400; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s, background 0.2s; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--color-cyan); outline-offset: 2px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }

.skip-link {
  position: absolute; left: -999px; top: 0.5rem; background: var(--primary); color: #fff;
  padding: 0.5rem 1rem; z-index: 200; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { left: 0.5rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-sky), var(--color-royal));
  opacity: 0.9;
  pointer-events: none;
}
.site-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  flex-wrap: nowrap;
}
.site-header__menu-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}
.site-header__toggle-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0.5rem;
  margin-right: -0.25rem;
  cursor: pointer;
  border-radius: 8px;
  color: #fff;
}
.site-header__burger:hover { background: rgba(255,255,255,0.1); }
.site-header__burger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}
.site-header__brand {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}
.site-header__brand:hover { text-decoration: none; opacity: 0.94; }
.site-header__logo {
  height: 40px;
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: lighten;
}
.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.85rem;
  justify-content: flex-end;
}
.site-header__nav a {
  color: rgba(255,255,255,0.92);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
}
.site-header__nav a:hover { background: rgba(255,255,255,0.12); color: #fff; text-decoration: none; }
.site-header .btn--primary:focus-visible { outline-color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, filter 0.2s;
}
.btn:focus-visible { outline: 2px solid var(--color-cyan); outline-offset: 2px; }
.btn--nav {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  border-radius: var(--radius-btn);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 2px 14px rgba(38, 79, 173, 0.38);
}
.btn--primary:hover { text-decoration: none; filter: brightness(1.06); transform: translateY(-1px); }
.btn--secondary { background: #fff; color: var(--primary); border: 2px solid rgba(255,255,255,0.9); }
.btn--secondary:hover { text-decoration: none; background: rgba(255,255,255,0.97); }
.btn--ghost { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn--ghost:hover { background: rgba(38, 79, 173, 0.06); text-decoration: none; }
.btn--on-deep { border-color: var(--primary); color: var(--primary); }
.btn--on-deep:hover { background: rgba(4, 41, 97, 0.06); }
.hero {
  background: linear-gradient(160deg, var(--primary) 0%, #063a7a 52%, #0c4d72 100%);
  color: #fff;
  padding: 3rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-mesh);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero__badge {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-cyan);
  margin-bottom: 0.45rem;
}
.hero__badge-line2 {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.85rem;
}
.hero .hero__badge {
  margin-bottom: 0.85rem;
}
.hero__kicker {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.98;
  max-width: 42rem;
  margin-bottom: 1rem;
  line-height: 1.45;
}
.hero__kicker strong { color: #fff; font-weight: 700; }
.hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 36rem;
  margin-bottom: 1rem;
}
.hero__bullets {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  max-width: 44rem;
}
.hero__bullets li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.65rem;
  font-size: 1rem;
  opacity: 0.96;
  line-height: 1.5;
}
.hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-cyan);
}
.hero__bullets strong { color: #fff; font-weight: 700; }
.hero__bullets--compact {
  margin-bottom: 1.35rem;
}
.hero__bullets--compact li {
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  line-height: 1.45;
}
.hero__lead {
  font-size: 1.05rem;
  opacity: 0.96;
  max-width: 38rem;
  margin: 0 0 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.hero__cta-block { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.hero__cta-sub { font-size: 0.82rem; opacity: 0.88; max-width: 30rem; margin: 0; line-height: 1.45; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 0.75rem 1rem; margin-bottom: 0; }
.hero__note { font-size: 0.85rem; opacity: 0.88; max-width: 38rem; }

section { padding: 3.25rem 0; }
.section--muted { background: var(--bg-alt); }
.section--deep { background: var(--bg-deep); }
.section__title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}
.section__subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 44rem;
  margin-bottom: 1.5rem;
}
.section__subtitle--tight { margin-bottom: 1rem; }

.prose p { margin-bottom: 1rem; max-width: 48rem; }
.prose p:last-child { margin-bottom: 0; }
.prose ul { margin: 1rem 0 1rem 1.25rem; max-width: 48rem; }
.prose li { margin-bottom: 0.45rem; }
.prose strong { color: var(--primary); }

.stat-strip { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2rem 0 2.5rem; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.25rem; }
.stat { text-align: center; padding: 0.75rem; }
.stat__value { font-size: clamp(1.4rem, 3.5vw, 1.85rem); font-weight: 700; color: var(--primary); line-height: 1.1; }
.stat__label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.35rem; line-height: 1.35; }

.at-a-glance {
  margin-top: 2.25rem;
  padding: 1.5rem 1.35rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.at-a-glance__title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mid-blue);
  margin-bottom: 1rem;
}
.at-a-glance__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem 1.25rem;
}
.at-a-glance__item dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.at-a-glance__item dd {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}
.at-a-glance__item {
  min-width: 0;
}
.at-a-glance__item--emphasis {
  grid-column: span 1;
  padding: 0.65rem 0.75rem;
  background: linear-gradient(135deg, rgba(44, 181, 214, 0.12), rgba(38, 79, 173, 0.1));
  border-radius: 10px;
  border: 1px solid var(--border);
  min-width: 0;
  overflow: hidden;
}
.at-a-glance__item--emphasis dd { color: var(--accent); word-break: break-word; }
.at-a-glance__item--span {
  grid-column: 1 / -1;
}
.at-a-glance__item--span dd {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
}

.at-a-glance__grid--metrics {
  margin: 0 0 0;
  grid-template-columns: 1fr;
}
@media (min-width: 520px) {
  .at-a-glance__grid--metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.at-a-glance .budget-bar--in-glance {
  margin: 1.15rem 0 0;
  width: 100%;
  max-width: none;
}
.at-a-glance__covers {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.at-a-glance__covers-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.at-a-glance__covers-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
  max-width: none;
}
.budget-bar__lbl-short { display: none; }
@media (max-width: 520px) {
  .budget-bar__lbl-long { display: none; }
  .budget-bar__lbl-short { display: inline; }
  .budget-bar.budget-bar--in-glance {
    font-size: 0.68rem;
  }
}

.zigzag {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .zigzag {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
  }
  .zigzag--reverse .zigzag__media { order: 2; }
  .zigzag--reverse .zigzag__content { order: 1; }
}
.zigzag__media {
  margin: 0;
  min-width: 0;
}
.zigzag__media img {
  width: 100%;
  height: auto;
  max-height: min(340px, 42vw);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.zigzag__media img[src$=".svg"] {
  object-fit: contain;
  background: var(--bg-alt);
  max-height: 280px;
}
.zigzag__content.prose--narrow { max-width: none; }
.zigzag__content .section__title:first-child { margin-top: 0; }

.pull-quote {
  margin: 2rem 0 0;
  padding: 1.35rem 1.5rem;
  background: #fff;
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}
.pull-quote blockquote { margin: 0; padding: 0; border: none; }
.pull-quote blockquote p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.45;
  font-style: italic;
}
.pull-quote figcaption {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.callout {
  border-left: 4px solid var(--teal);
  background: rgba(44, 197, 188, 0.09);
  padding: 1.25rem 1.35rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  max-width: 48rem;
}
.callout--urgent { border-left-color: var(--accent); background: rgba(38, 79, 173, 0.08); }
.callout__headline {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.65rem;
  line-height: 1.35;
}
.callout--urgent p { margin-bottom: 0.65rem; }
.callout--urgent p:last-child { margin-bottom: 0; }

.mid-cta { margin-top: 1.75rem; margin-bottom: 0; }

.funding-split {
  display: grid;
  gap: 1.5rem 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .funding-split {
    grid-template-columns: 1fr minmax(260px, 38%);
  }
}
.funding-split__main .section__title { margin-top: 0; }
.funding-split__aside {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}
.funding-split__aside-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.funding-split__aside-body {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.55;
}
.funding-split__aside-body p {
  margin: 0 0 0.75rem;
}
.funding-split__aside-body p:last-child {
  margin-bottom: 0;
}


.sponsor-lens {
  margin: 1.75rem 0;
  padding: 1.35rem 1.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.sponsor-lens__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.sponsor-lens__intro {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.85rem;
  max-width: 48rem;
}
.sponsor-lens__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 48rem;
}
.sponsor-lens__list li {
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
  position: relative;
  font-size: 0.93rem;
}
.sponsor-lens__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mid-blue);
}

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

.figure-placeholder {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1.5rem 0;
  max-width: 48rem;
}
.figure-placeholder--soft {
  border-style: solid;
  background: rgba(245, 247, 250, 0.85);
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1.75rem 0;
}
.tier-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow);
}
.tier-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.tier-card__price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.35rem;
  font-variant-numeric: tabular-nums;
}
.tier-card--featured {
  border: 2px solid var(--mid-blue);
  box-shadow: 0 6px 28px rgba(44, 137, 214, 0.18);
}
.tier-card__for {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  line-height: 1.4;
}
.tier-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tier-card__list li {
  font-size: 0.88rem;
  padding-left: 1rem;
  margin-bottom: 0.45rem;
  position: relative;
  line-height: 1.45;
}
.tier-card__list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--mid-blue);
  font-weight: 700;
}

.budget-table-wrap { overflow-x: auto; margin: 1.5rem 0; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); }
.budget-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; background: var(--bg); }
.budget-table th, .budget-table td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
.budget-table th { background: var(--primary); color: #fff; font-weight: 600; }
.budget-table tbody tr:last-child td { border-bottom: 1px solid var(--border); }
.budget-table tfoot tr:last-child td { border-bottom: none; }
.budget-table .num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.budget-table tfoot td { font-weight: 700; background: var(--bg-alt); color: var(--primary); }
.budget-table__gap td { background: linear-gradient(90deg, rgba(44, 181, 214, 0.14), rgba(38, 79, 173, 0.1)) !important; color: var(--primary) !important; font-size: 1rem; }

.prose--after-table { margin-top: 1rem; max-width: 48rem; }
.cta-row { margin-top: 1.25rem; }

details.accordion--prose { margin-top: 1rem; max-width: 48rem; }
details.accordion--prose .accordion__body p { margin-bottom: 0.75rem; }
details.accordion--prose .accordion__body p:last-child { margin-bottom: 0; }

.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.video-card { background: var(--bg); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow); }
.video-card__embed { position: relative; aspect-ratio: 16/9; background: linear-gradient(145deg, #1e3a5f 0%, var(--primary) 100%); }
.video-card__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem; padding: 1rem; color: rgba(255,255,255,0.88); text-align: center;
}
.video-placeholder__icon {
  width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.video-placeholder kbd { font-family: ui-monospace, monospace; font-size: 0.68rem; background: rgba(0,0,0,0.25); padding: 0.2rem 0.45rem; border-radius: 4px; }
.video-card__speaker {
  padding: 0.85rem 1.1rem 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid-blue);
}
.video-card__caption { padding: 0.35rem 1.1rem 0; font-size: 0.95rem; color: var(--primary); font-weight: 600; line-height: 1.35; }
.video-card__hint { font-size: 0.78rem; color: var(--text-muted); padding: 0.5rem 1.1rem 1rem; line-height: 1.4; }

.logo-strip { margin-top: 1.5rem; }
.logo-strip__label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1rem; }
.logo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1rem; }
.logo-placeholder {
  aspect-ratio: 5/3; border: 2px dashed var(--border); border-radius: var(--radius); background: var(--bg);
  display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.8rem; font-weight: 600;
}

details.accordion { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.5rem; background: var(--bg); }
details.accordion summary {
  padding: 1rem 1.15rem; font-weight: 600; color: var(--primary); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
details.accordion summary::-webkit-details-marker { display: none; }
details.accordion summary::after { content: "+"; color: var(--accent); font-size: 1.2rem; font-weight: 400; flex-shrink: 0; }
details.accordion[open] summary::after { content: "–"; }
details.accordion .accordion__body { padding: 0 1.15rem 1.15rem; color: var(--text); font-size: 0.95rem; }
details.accordion .accordion__body a { font-weight: 600; }

.cta-banner { background: linear-gradient(135deg, var(--primary) 0%, #0a3d6b 100%); color: #fff; padding: 3rem 0; text-align: center; }
.cta-banner h2 { color: #fff; font-size: clamp(1.35rem, 3vw, 1.85rem); margin-bottom: 0.75rem; }
.cta-banner p { opacity: 0.92; max-width: 36rem; margin: 0 auto 1.5rem; }
.cta-banner .btn { margin-bottom: 0; }
.cta-banner__sub { font-size: 0.88rem !important; opacity: 0.85 !important; margin-top: 1rem !important; margin-bottom: 0 !important; }

.site-footer { background: #031d40; color: rgba(255,255,255,0.78); padding: 2.25rem 0; font-size: 0.88rem; }
.site-footer a { color: var(--aqua); }
.site-footer a:hover { color: #fff; }
.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-footer__logo { height: 42px; width: auto; max-width: min(260px, 85vw); object-fit: contain; object-position: left center; mix-blend-mode: lighten; }
.site-footer__tagline { font-weight: 500; color: rgba(255,255,255,0.9); letter-spacing: 0.02em; max-width: 28rem; }
.site-footer__inner { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-footer__links a { font-weight: 600; }

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 38%);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}
.hero__copy { min-width: 0; }
.hero__visual { min-width: 0; }
.hero__photo {
  width: 100%;
  height: auto;
  max-height: min(420px, 52vh);
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}
.hero h1 { max-width: none; }

.logo-marquee-section {
  padding: 2rem 0 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.logo-marquee-section__title {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1.25rem;
  line-height: 1.3;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee__track {
  display: flex;
  width: max-content;
  animation: logo-marquee 32s linear infinite;
}
.logo-marquee__group {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}
.logo-marquee__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 52px;
  padding: 0 1.25rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
@keyframes logo-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.section__title--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__subtitle--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 36rem;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}
.theme-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.theme-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.65rem;
  color: var(--mid-blue);
}
.theme-card__icon svg { width: 100%; height: 100%; display: block; }
.theme-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.theme-card__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
  flex: 1;
}

.diagram-card {
  margin: 2rem 0;
  padding: 1.5rem 1.35rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.diagram-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}
.diagram-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
}
.diagram-flow__node {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  min-width: min(100%, 200px);
  text-align: center;
  box-shadow: var(--shadow);
}
.diagram-flow__node--accent {
  border-color: var(--mid-blue);
  background: linear-gradient(145deg, rgba(44, 137, 214, 0.08), #fff);
}
.diagram-flow__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.35rem;
  color: var(--mid-blue);
}
.diagram-flow__label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary);
}
.diagram-flow__hint {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  line-height: 1.35;
}
.diagram-flow__arrow {
  font-size: 1.5rem;
  color: var(--mid-blue);
  font-weight: 700;
}
.diagram-card__caption {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
  line-height: 1.45;
}

.prose--narrow p,
.prose--narrow ul,
.prose--narrow .section__subtitle { max-width: 40rem; }
.section__h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2rem 0 0.5rem;
}
.section__lede { margin-bottom: 1rem; color: var(--text-muted); font-size: 0.95rem; }

.modalities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0 1.75rem;
}
.modality-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.modality-card__icon {
  display: flex;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 0.65rem;
  color: var(--mid-blue);
}
.modality-card__icon svg { width: 100%; height: 100%; }
.modality-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.modality-card__text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.budget-diagram {
  margin: 1.75rem 0;
  padding: 1.25rem 1.35rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 40rem;
}
.budget-diagram__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.budget-diagram__note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  line-height: 1.45;
}
.budget-bar {
  display: flex;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  font-size: 0.72rem;
  font-weight: 700;
}
.budget-bar__seg {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.35rem;
  text-align: center;
  line-height: 1.2;
  color: #fff;
  min-width: 0;
}
.budget-bar__seg--secured {
  background: linear-gradient(135deg, var(--color-teal), var(--color-sky));
}
.budget-bar__seg--gap {
  background: linear-gradient(135deg, var(--color-royal), var(--primary));
}
.budget-bar__lbl { overflow: hidden; text-overflow: ellipsis; }

.addon-accordion { margin: 1rem 0 0.75rem; max-width: 48rem; }
.addon-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.addon-list li {
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.addon-list li:last-child { border-bottom: none; }
.addon-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.6rem;
  margin: 0 0 1.5rem;
  max-width: 48rem;
}
.addon-chip {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(44, 137, 214, 0.12);
  color: var(--primary);
  border: 1px solid var(--border);
}

#faq .section__title { margin-bottom: 1.25rem; }

@media (max-width: 900px) {
  .site-header__burger { display: flex; }
  .site-header__menu-wrap {
    position: relative;
    flex: 0 0 auto;
  }
  .site-header__nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: min(100vw - 2rem, 320px);
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.75rem;
    background: #052d5c;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.12);
  }
  .site-header__nav a {
    text-align: center;
    padding: 0.6rem 0.75rem;
  }
  .site-header__nav button.btn--nav {
    width: 100%;
    justify-content: center;
    padding: 0.6rem 0.75rem;
  }
  .site-header__nav .btn--nav {
    margin-top: 0.35rem;
    justify-content: center;
  }
  .site-header__toggle-input:checked ~ .site-header__nav {
    display: flex;
  }
}

@media (max-width: 720px) {
  .site-header__inner { flex-wrap: wrap; }
  .hero__actions { flex-direction: column; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 28rem; margin: 0 auto; }
  .hero__photo { max-height: 260px; }
  .hero__actions .btn { width: 100%; }
  .hero__cta-block { width: 100%; align-items: stretch; }
  .hero__cta-block .btn { width: 100%; justify-content: center; }
  .site-footer__top { flex-direction: column; align-items: flex-start; }
  .zigzag__media img:not([src$=".svg"]) { max-height: 240px; }
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header__nav button.btn--nav {
  font-family: var(--font);
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.92);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  background: transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-header__nav button.btn--nav:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
}

.hero__trust {
  font-size: 0.88rem;
  opacity: 0.9;
  max-width: 40rem;
  margin: 1rem 0 0;
  line-height: 1.45;
}

.btn--secondary-solid {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: none;
}
.btn--secondary-solid:hover {
  text-decoration: none;
  background: rgba(255,255,255,0.22);
  filter: none;
  transform: none;
}

.at-a-glance__lede {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.55;
  margin: 0 0 1.1rem;
  max-width: none;
}
.at-a-glance__lede strong { color: var(--primary); }

.budget-bar--animated .budget-bar__seg--secured,
.budget-bar--animated .budget-bar__seg--gap {
  width: 0;
  transition: width 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}
.budget-bar--animated.is-visible .budget-bar__seg--secured,
.budget-bar--animated.is-visible .budget-bar__seg--gap {
  width: var(--target-width, 0%);
}

.tier-compare-wrap {
  margin: 2rem 0 1.5rem;
}
.tier-compare__heading {
  margin-top: 0;
}
.tier-compare__hint {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
  max-width: 48rem;
}
.tier-compare__check {
  color: var(--teal);
  font-weight: 700;
}
.tier-compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 0.5rem;
}
.tier-compare {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.85rem;
  background: var(--bg);
}
.tier-compare th,
.tier-compare td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.tier-compare thead th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}
.tier-compare tbody th[scope="row"] {
  font-weight: 600;
  color: var(--primary);
  background: var(--bg-alt);
  white-space: nowrap;
}
.tier-compare tbody tr:last-child th,
.tier-compare tbody tr:last-child td {
  border-bottom: none;
}
.tier-compare__price {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 0.2rem;
}
.tier-compare__yes {
  font-weight: 700;
  color: var(--accent);
}

.video-card__embed--bg {
  background-size: cover;
  background-position: center;
  position: relative;
}
.video-card__embed--bg-1 {
  background-image: linear-gradient(145deg, rgba(4, 41, 97, 0.75) 0%, rgba(4, 41, 97, 0.45) 100%),
    url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=900&q=80");
}
.video-card__embed--bg-2 {
  background-image: linear-gradient(145deg, rgba(4, 41, 97, 0.78) 0%, rgba(38, 79, 173, 0.4) 100%),
    url("https://images.unsplash.com/photo-1515187029135-18ee286d815b?auto=format&fit=crop&w=900&q=80");
}
.video-card__embed--bg-3 {
  background-image: linear-gradient(145deg, rgba(4, 41, 97, 0.8) 0%, rgba(44, 137, 214, 0.35) 100%),
    url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=900&q=80");
}
.video-card__embed--bg-4 {
  background-image: linear-gradient(145deg, rgba(4, 41, 97, 0.76) 0%, rgba(44, 197, 188, 0.3) 100%),
    url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=900&q=80");
}
.video-card__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, transparent 30%, rgba(4, 41, 97, 0.35) 100%);
  pointer-events: none;
}
.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.video-card__play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.15), 0 8px 32px rgba(0,0,0,0.25);
  animation: video-play-pulse 2.4s ease-in-out infinite;
}
@keyframes video-play-pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255,255,255,0.15), 0 8px 32px rgba(0,0,0,0.25); transform: scale(1); }
  50% { box-shadow: 0 0 0 14px rgba(44, 181, 214, 0.25), 0 10px 36px rgba(0,0,0,0.3); transform: scale(1.04); }
}
.video-card__embed-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.68rem;
  font-family: ui-monospace, monospace;
  color: rgba(255,255,255,0.95);
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
}

.sticky-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.65rem 0;
  padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0));
  background: rgba(255,255,255,0.96);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(4, 41, 97, 0.12);
  backdrop-filter: blur(8px);
}
.sticky-cta-bar__inner {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.btn--sticky-main {
  flex: 1 1 140px;
  min-width: 0;
  max-width: 220px;
}
.btn--sticky-secondary {
  flex: 1 1 120px;
  min-width: 0;
  max-width: 200px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-btn);
  border: 2px solid var(--accent);
  background: var(--bg);
  color: var(--accent);
  cursor: pointer;
}
.btn--sticky-secondary:hover {
  background: rgba(38, 79, 173, 0.06);
}

.site-dialog {
  border: none;
  border-radius: var(--radius);
  padding: 0;
  max-width: 26rem;
  width: calc(100% - 2rem);
  box-shadow: 0 24px 60px rgba(4, 41, 97, 0.25);
}
.site-dialog::backdrop {
  background: rgba(4, 41, 97, 0.45);
}
.site-dialog__inner {
  position: relative;
  padding: 1.5rem 1.35rem 1.35rem;
}
.site-dialog__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 8px;
  background: var(--bg-alt);
  color: var(--primary);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-dialog__close:hover {
  background: var(--bg-deep);
}
.site-dialog__title {
  font-size: 1.2rem;
  color: var(--primary);
  margin: 0 2rem 0.75rem 0;
  line-height: 1.25;
}
.site-dialog__lede {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0 0 0.85rem;
  line-height: 1.5;
}
.site-dialog__note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}
.site-dialog__embed-placeholder {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  background: var(--bg-alt);
}
.site-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.site-dialog__fineprint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 1rem 0 0;
  line-height: 1.45;
}
.site-dialog__form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.site-dialog__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.site-dialog__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
}
.site-dialog__field input {
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
}

@media (max-width: 900px) {
  .sticky-cta-bar { display: block; }
  body { padding-bottom: 4.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
  .logo-marquee__track { animation: none; }
  .budget-bar--animated .budget-bar__seg--secured,
  .budget-bar--animated .budget-bar__seg--gap {
    transition: none;
    width: var(--target-width, 0%);
  }
  .video-card__play-icon { animation: none; }
}

/* MSS page updates: official logo, why-heading, single sticky CTA */
.site-header__logo[src*="vikara-logo-horizontal-official"],
.site-footer__logo[src*="vikara-logo-horizontal-official"] {
  mix-blend-mode: normal;
}

.at-a-glance__why-heading {
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-align: left;
}

h3.at-a-glance__title--after-why {
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 900px) {
  .btn--sticky-main {
    max-width: min(100%, 360px);
    flex: 1 1 auto;
  }
  .sticky-cta-bar__inner {
    justify-content: center;
  }
}

