

/* Rows 2, 3, and 4 Margin Logic */
 /* =========================================================
   PRO SECTION — Layout + visuals (base.css)
   (Keep typography out of here)
========================================================= */

.pro-section{
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* ✅ background glow stays behind everything */
.pro-section::before{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(60% 40% at 50% 20%, rgba(157,150,239,0.14), transparent 60%),
    radial-gradient(50% 35% at 50% 80%, rgba(124,240,200,0.10), transparent 65%);
  filter: blur(22px);
  opacity: 0.9;
  pointer-events:none;
  z-index: 0;
}

/* ✅ ensure content sits above the glow */
.pro-section > *{
  position: relative;
  z-index: 2;
}

/* ---------------------------------------------------------
   SAFE ROW 2/3/4 SPACING
   - Let Bootstrap handle horizontal gutters (.container / .row)
   - This wrapper only handles vertical rhythm
--------------------------------------------------------- */
.pro-wrap{
  width: 100%;
  margin-left:auto;
  margin-right:auto;
}

/* ✅ stop double-gutters (Bootstrap already has them) */
.pro-wrap--row234{
  padding-left: 0;
  padding-right: 0;

  /* your “row 2/3/4” vertical spacing, responsive + consistent */
  padding-block: clamp(24px, 4vw, 56px);
}

/* OPTIONAL: if you insist on using container-fluid + p-0 + g-0
   and want controlled gutters without .container,
   add this class to .pro-wrap--row234:  pro-wrap--gutters
--------------------------------------------------------- */
/*
.pro-wrap--gutters{
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px){
  .pro-wrap--gutters{ padding-left: 15px; padding-right: 15px; }
}
@media (min-width: 992px){
  .pro-wrap--gutters{ padding-left: 20px; padding-right: 20px; }
}
@media (min-width: 1200px){
  .pro-wrap--gutters{ padding-left: 30px; padding-right: 30px; }
}
*/

/* ---------------------------------------------------------
   PANEL SHELL (glass + rim)
--------------------------------------------------------- */
.pro-shell{
  position: relative;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  box-shadow: 0 20px 70px rgba(0,0,0,0.35);
  overflow: hidden;
}

.pro-shell::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: inherit;
  background: linear-gradient(135deg,
    rgba(79,108,255,0.30),
    rgba(124,240,200,0.16),
    rgba(157,150,239,0.20),
    rgba(255,255,255,0.04)
  );
  filter: blur(14px);
  opacity: 0.55;
  pointer-events:none;
  z-index: 0;
}

.pro-grid{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  padding: clamp(18px, 3.2vw, 40px);
}

@media (max-width: 900px){
  .pro-grid{ grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   COPY AREA (layout only)
--------------------------------------------------------- */
.pro-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

@media (max-width: 900px){
  .pro-actions{ justify-content: center; }
}

/* ---------------------------------------------------------
   MEDIA STAGE (the missing “why doesn't it look right” part)
--------------------------------------------------------- */
.pro-media{
  position: relative;
  min-height: min(70vh, 640px);
  width: 100%;
  display: grid;
  place-items: center;
}

.pro-media::before{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(closest-side at 30% 30%, rgba(124,240,200,0.12), transparent 60%),
    radial-gradient(closest-side at 70% 55%, rgba(79,108,255,0.12), transparent 62%),
    radial-gradient(closest-side at 55% 85%, rgba(157,150,239,0.10), transparent 60%);
  filter: blur(18px);
  opacity: 0.75;
  z-index: 0;
  pointer-events:none;
}

.pro-media-main,
.pro-media-float{
  margin: 0;
  position: relative;
  z-index: 2;
}

.pro-media-main{
  width: min(640px, 92%);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,0.03);
  transform: translateZ(0);
}

.pro-media-main img{
  display:block;
  width:100%;
  height:auto;
}

.pro-media-float{
  position: absolute;
  right: 0;
  bottom: 6%;
  width: min(360px, 55%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(0,0,0,0.40);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  transform: translateZ(0);
}

.pro-media-float img{
  display:block;
  width:100%;
  height:auto;
}

/* responsive “stack” behavior like the standalone */
@media (max-width: 900px){
  .pro-media{ min-height: auto; }

  .pro-media-float{
    position: relative;
    right: auto;
    bottom: auto;
    width: min(420px, 100%);
    margin-top: 14px;
  }
}

/* ---------------------------------------------------------
   Reveal/parallax hooks (same behavior as standalone)
--------------------------------------------------------- */
.js-reveal-img{
  opacity: 0;
  transform: translateY(10px) scale(0.99);
  transition: opacity 650ms ease, transform 800ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}

.is-visible .js-reveal-img{
  opacity: 1;
  transform: translateY(0) scale(1);
}

.js-parallax-opposite{
  will-change: transform;
  transform: translate3d(0,0,0);
}

@media (prefers-reduced-motion: reduce){
  .js-reveal-img{ transition:none; opacity:1; transform:none; }
  .js-parallax-opposite{ transform:none !important; }
}

/* =========================================================
   PRO SECTION — Left alignment (desktop only)
========================================================= */

/* Desktop / tablet */
@media (min-width: 768px){

  .pro-section .pro-copy{
    text-align: left;
    align-items: flex-start;
  }

  .pro-section .pro-kicker{
    text-align: left;
  }

  .pro-section .pro-heading{
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .pro-section .pro-lead{
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .pro-section .pro-actions{
    justify-content: flex-start;
  }
}

/* Mobile stays centered (intentional) */
@media (max-width: 767.98px){

  .pro-section .pro-copy{
    text-align: center;
  }

  .pro-section .pro-actions{
    justify-content: center;
  }
}

/* =========================================================
   MASTER PARAGRAPH — high-impact, calm, readable
   Mirrors: .pit-p + .pro-lead + .pit-impact-line
========================================================= */

.masterp{
  /* Typography */
  font-size: clamp(1.15rem, 1.2vw, 1.45rem);
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: 0.01em;

  /* Colour + depth */
  color: rgba(255,255,255,0.88);
  text-shadow:
    0 1px 0 rgba(0,0,0,0.45),
    0 12px 40px rgba(0,0,0,0.35);

  /* Layout */
  max-width: 60ch;
  margin-top: 1.5rem;
}



/* Highlighted words inside masterp */
.masterp span{
  text-shadow:
    0 0 18px rgba(157,150,239,0.35);
}

/* =========================================================
   TARGET STAGE — isolated SVG presentation
   Scope: .target-stage only
========================================================= */

.target-stage{
  display: grid;
  place-items: center;
  justify-self: end;
  padding: clamp(10px, 1.5vw, 18px);
}

/* Center on smaller screens */
@media (max-width: 900px){
  .target-stage{
    justify-self: center;
  }
}

/* =========================================================
   TARGET WRAP — circular plate + aura
========================================================= */

.target-wrap{
  width: min(320px, 56vw);
  aspect-ratio: 1 / 1;

  display: grid;
  place-items: center;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.02)
    );

  box-shadow:
    0 18px 60px rgba(0,0,0,0.30);

  position: relative;
  overflow: hidden;
}

/* =========================================================
   TARGET SWEEP — subtle animated light pass
========================================================= */

.target-wrap::before{
  content:"";
  position:absolute;
  inset:-40%;

  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,0.08),
    rgba(255,255,255,0)
  );

  transform: translateX(-55%) rotate(20deg);
  opacity: 0.35;

  animation: targetSweep 4.6s cubic-bezier(.2,.8,.2,1) infinite;
  pointer-events: none;
}

@keyframes targetSweep{
  0%   { transform: translateX(-65%) rotate(20deg); }
  60%  { transform: translateX(90%)  rotate(20deg); }
  100% { transform: translateX(90%)  rotate(20deg); }
}

/* Reduced motion safety */
@media (prefers-reduced-motion: reduce){
  .target-wrap::before{
    animation: none;
  }
}

/* =========================================================
   TARGET SVG — scale + depth
========================================================= */

.target-svg{
  width: 82%;
  height: 82%;
  opacity: 0.95;

  filter:
    drop-shadow(0 10px 30px rgba(0,0,0,0.25));
}


/* =========================================================
   TEXT HERO — Background extracted from <body> and applied
   Scope: .text-hero only (no global overrides)
========================================================= */

.text-hero{
  position: relative;
  overflow: hidden;
  isolation: isolate;

  /* ✅ extracted background stack (from your body) */
  background:
    radial-gradient(1200px 700px at 12% 18%, rgba(79,108,255,0.16), transparent 60%),
    radial-gradient(900px 650px at 78% 30%, rgba(124,240,200,0.10), transparent 55%),
    radial-gradient(900px 700px at 55% 90%, rgba(157,150,239,0.10), transparent 60%),
    var(--bg, #0b1020);
}

/* Keep all section content above the background */
.text-hero > *{
  position: relative;
  z-index: 2;
}

/* Optional: match the body padding behavior, but scoped */
.text-hero .container-fluid{
  padding: clamp(18px, 4vw, 56px);
}

/* Optional: center the overall block like the body grid did (safe) */
.text-hero .container-fluid{
  min-height: 100%;
  display: grid;
  align-content: start; /* keeps layout natural */
}

/* If you want the first row to feel “centered” vertically, swap to: */
/*
.text-hero .container-fluid{
  min-height: 100vh;
  display: grid;
  place-items: center;
}
*/

/* =========================================================
  NEBULA PURCHASE CARD (component-only)
  Namespace: nebula-
  Depends on Bootstrap for .btn, .collapse, .form-select etc.
  EDIT: fully namespaced tokens (no :root pollution) + glassier card
========================================================= */

/* ✅ Component-scoped tokens (avoid global :root collisions) */
.nebula{
  --nebula-mint: #7CB7A0;
  --nebula-stroke: rgba(255,255,255,0.18);
  --nebula-stroke-hover: rgba(255,255,255,0.30);
  --nebula-panel-bg: rgba(255,255,255,0.035);

  --nebula-max: 520px;
  --nebula-pad: 1.75rem;
  --nebula-radius: 20px;
  --nebula-media-radius: 14px;

  --nebula-title: 1.7rem;
  --nebula-body: 1rem;
  --nebula-price: 1.25rem;

  --nebula-reveal-pad: 1.25rem;
  --nebula-hover-lift: -10px;
  --nebula-img-hover: 1.05;
  --nebula-reveal-y: 12px;

  --nebula-gap-title-media: .75rem;
  --nebula-gap-media-text: .85rem;
  --nebula-gap-text-price: .65rem;
  --nebula-gap-price-btn: .9rem;
  --nebula-gap-btn-reveal: .75rem;

  --nebula-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* outer clamp so columns can’t stretch it */
.nebula-pricing-shell{
  width: 100%;
  max-width: var(--nebula-max);
  margin-inline: auto;
}

/* card */
.nebula-card{
  position: relative;
  border-radius: var(--nebula-radius);

  /* ✅ glassier */
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  /* ✅ nicer depth */
  box-shadow:
    0 15px 35px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.06);

  transition:
    transform .4s var(--nebula-ease),
    border-color .4s var(--nebula-ease),
    box-shadow .4s var(--nebula-ease);

  overflow: hidden;
  padding: var(--nebula-pad);
  text-align: center;
  height: 100%;
}

/* subtle rim glow */
.nebula-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: inherit;
  background: linear-gradient(135deg,
    rgba(79,108,255,0.28),
    rgba(124,240,200,0.14),
    rgba(157,150,239,0.18),
    rgba(255,255,255,0.03)
  );
  filter: blur(16px);
  opacity: 0.50;
  pointer-events:none;
}

.nebula-card > *{
  position: relative;
  z-index: 1;
}

.nebula-card:hover{
  transform: translateY(var(--nebula-hover-lift));
  border-color: var(--nebula-mint);
  box-shadow:
    0 25px 55px rgba(0,0,0,0.62),
    inset 0 1px 0 rgba(255,255,255,0.09);
}

/* title */
.nebula-title{
  font-size: var(--nebula-title);
  margin: 0 0 var(--nebula-gap-title-media);
  font-weight: 800;
  letter-spacing: 0.2px;
}

/* unique gradient (not your old pit-* class) */
.nebula-title-gradient{
  display: inline-block;
  background: linear-gradient(90deg, #9d96ef 0%, #4facfe 35%, #56f0c1 70%, #00ff88 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 2px 10px rgba(86,240,193,0.14));
}

/* media */
.nebula-media{
  border-radius: var(--nebula-media-radius);
  overflow: hidden;
  margin-bottom: var(--nebula-gap-media-text);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
}

.nebula-img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--nebula-media-radius);
  transition: transform 0.6s ease;
}

.nebula-card:hover .nebula-img{
  transform: scale(var(--nebula-img-hover));
}

/* copy */
.nebula-desc{
  font-size: var(--nebula-body);
  margin: 0 0 var(--nebula-gap-text-price);
  opacity: .78;
}

.nebula-price{
  color: var(--nebula-mint);
  font-size: var(--nebula-price);
  letter-spacing: 0.5px;
  font-weight: 800;
  margin-bottom: var(--nebula-gap-price-btn);
}

/* toggle button (outline matches reveal) */
.nebula-toggle{
  font-weight: 800;
  font-size: calc(var(--nebula-body) * .98);
  border-radius: 12px;
  border-color: var(--nebula-stroke) !important;
  color: #fff !important;
  background: rgba(255,255,255,0.015);
  transition:
    transform .35s var(--nebula-ease),
    border-color .35s var(--nebula-ease),
    background .35s var(--nebula-ease),
    box-shadow .35s var(--nebula-ease);
}

.nebula-toggle:hover,
.nebula-toggle:focus{
  border-color: var(--nebula-stroke-hover) !important;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 0 0.15rem rgba(255,255,255,0.07);
}

/* reveal */
.nebula-reveal{
  margin-top: var(--nebula-gap-btn-reveal);
}

.nebula-reveal-inner{
  background: var(--nebula-panel-bg);
  border-radius: calc(var(--nebula-radius) - 5px);
  padding: var(--nebula-reveal-pad);
  border: 1px solid var(--nebula-stroke) !important;

  /* subtle glass */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

/* pay button states */
.nebula-pay{
  font-weight: 800;
  border-radius: 12px;
  padding: .75rem 1rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  font-size: calc(var(--nebula-body) * .98);
}

.nebula-pay:active{
  transform: translateY(1px);
}

.nebula-pay.is-disabled{
  background: rgba(255,255,255,0.10) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  color: rgba(255,255,255,0.30) !important;
  pointer-events: none;
  opacity: 0.55;
}

.nebula-pay.is-ready{
  background: linear-gradient(135deg,#5b86e5 0%,#36d1dc 45%,#4ecdc4 75%,#21c55d 100%) !important;
  background-size: 200% auto;
  box-shadow: 0 4px 15px rgba(91,134,229,0.40), 0 0 20px rgba(78,205,196,0.20);
  animation: nebulaShimmer 4s ease infinite;
  border: none !important;
}

@keyframes nebulaShimmer{
  0%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}

/* ✅ responsive tweaks (component only) */
@media (max-width: 575.98px){
  .nebula{
    --nebula-max: 380px;
    --nebula-pad: 1.25rem;
    --nebula-radius: 18px;
    --nebula-media-radius: 10px;
    --nebula-title: 1.35rem;
    --nebula-body: .95rem;
    --nebula-price: 1.05rem;
    --nebula-reveal-pad: 1.05rem;
    --nebula-hover-lift: -7px;
    --nebula-reveal-y: 9px;
  }

  .nebula-card{ backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}
/* ================================
   PSP PRICING CARD (Namespaced)
   ================================ */

:root{
  --psp-mint: #7CB7A0;
  --psp-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Size tokens */
  --psp-card-max: 520px;
  --psp-card-pad: 1.75rem;
  --psp-card-radius: 20px;
  --psp-media-radius: 14px;

  --psp-title-size: 1.75rem;
  --psp-body-size: 1rem;
  --psp-price-size: 1.25rem;

  --psp-btn-pad-y: .75rem;
  --psp-btn-pad-x: 1rem;
  --psp-btn-radius: 12px;

  --psp-reveal-pad: 1.25rem;
  --psp-img-scale-hover: 1.05;
  --psp-hover-lift: -10px;
  --psp-reveal-y: 12px;

  /* Tight spacing */
  --psp-gap-title-media: .75rem;
  --psp-gap-media-text: .85rem;
  --psp-gap-text-price: .65rem;
  --psp-gap-price-btn: .9rem;
  --psp-gap-btn-reveal: .75rem;

  /* Shared stroke */
  --psp-ui-stroke: rgba(255,255,255,0.18);
  --psp-ui-stroke-hover: rgba(255,255,255,0.28);
  --psp-ui-panel-bg: rgba(255,255,255,0.03);
}

/* Outer clamp so Bootstrap columns can't stretch card */
.psp-shell{
  width: 100%;
  max-width: var(--psp-card-max);
  margin-inline: auto;
}

/* Title gradient span */
.psp-title-gradient{
  display: inline-block;
  background: linear-gradient(90deg, #9d96ef 0%, #4facfe 35%, #56f0c1 70%, #00ff88 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 2px 10px rgba(86, 240, 193, 0.14));
  letter-spacing: 0.2px;
}

/* Card */
.psp-card{
  border-radius: var(--psp-card-radius);
  background: rgba(255, 255, 255, 0.055); /* slightly lifted from page black */
  border: 1px solid rgba(255, 255, 255, 0.18); /* clearer outer edge */
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0,0,0,0.45) inset; /* edge definition */
  transition: var(--psp-transition);
  overflow: hidden;
  padding: var(--psp-card-pad);
  text-align: center;
  height: 100%;
}

.psp-card:hover{
  transform: translateY(var(--psp-hover-lift));
  border-color: var(--psp-mint);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

/* H3 */
.psp-card h3{
  font-size: var(--psp-title-size);
  margin: 0 0 var(--psp-gap-title-media);
  font-weight: 800;
}

.psp-card p{
  font-size: var(--psp-body-size);
  margin: 0;
}

/* Media wrapper */
.psp-media-wrap{
  border-radius: var(--psp-media-radius);
  overflow: hidden;
  margin-bottom: var(--psp-gap-media-text);
}

.psp-img{
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--psp-media-radius);
  transition: transform 0.6s ease;
}

.psp-card:hover .psp-img{
  transform: scale(var(--psp-img-scale-hover));
}

/* Description — equal height alignment on desktop, flexible on mobile */
.psp-desc{
  font-size: var(--psp-body-size);
  line-height: 1.5;
  margin-bottom: var(--psp-gap-text-price);
}

    .pit-multishdeeleci{
      display: inline-block;
      background: linear-gradient(90deg, #9d96ef 0%, #4facfe 35%, #56f0c1 70%, #00ff88 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      filter: drop-shadow(0 2px 10px rgba(86, 240, 193, 0.14));
      letter-spacing: 0.2px;
    } 
.psp-price{
  color: var(--psp-mint);
  font-size: var(--psp-price-size);
  letter-spacing: 0.5px;
  font-weight: 800;
  margin-bottom: var(--psp-gap-price-btn);
}

/* Toggle button — outline matches reveal panel */
.psp-toggle{
  padding: var(--psp-btn-pad-y) var(--psp-btn-pad-x);
  border-radius: var(--psp-btn-radius);
  font-weight: 800;
  font-size: calc(var(--psp-body-size) * .98);
  border-color: var(--psp-ui-stroke) !important;
  color: #fff !important;
  background: rgba(255,255,255,0.01);
  transition: var(--psp-transition);
}

.psp-toggle:hover,
.psp-toggle:focus{
  border-color: var(--psp-ui-stroke-hover) !important;
  color: #fff !important;
  background: rgba(255,255,255,0.03);
  box-shadow: 0 0 0 0.15rem rgba(255,255,255,0.06);
}

/* Reveal panel */
.psp-reveal{
  margin-top: var(--psp-gap-btn-reveal);
}

.psp-reveal .psp-reveal-inner{
  background: var(--psp-ui-panel-bg);
  border-radius: calc(var(--psp-card-radius) - 5px);
  padding: var(--psp-reveal-pad);
  border: 1px solid var(--psp-ui-stroke) !important;
}

/* Pay button states */
.psp-pay{
  font-weight: 800;
  border-radius: var(--psp-btn-radius);
  padding: var(--psp-btn-pad-y) var(--psp-btn-pad-x);
  transition: all 0.3s ease;
  font-size: calc(var(--psp-body-size) * .98);
}

.psp-pay.psp-disabled{
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.3) !important;
  pointer-events: none;
  opacity: 0.5;
}

.psp-pay.psp-ready{
  background: linear-gradient(135deg,
    #5b86e5 0%,
    #36d1dc 45%,
    #4ecdc4 75%,
    #21c55d 100%
  ) !important;
  background-size: 200% auto;
  box-shadow:
    0 4px 15px rgba(91, 134, 229, 0.4),
    0 0 20px rgba(78, 205, 196, 0.2);
  animation: psp-gradient-shimmer 4s ease infinite;
  border: none !important;
}

@keyframes psp-gradient-shimmer{
  0%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}


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

.sigil-stage {
  max-height: 220px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden; /* hard stop */
}

/* SVG container */
.sigil-placeholder {
  max-height: 220px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* SVG itself */
.sigil-placeholder svg {
  max-height: 220px;
  width: auto;
  height: auto;
  display: block;
}

/* Optional meta pills stay visible */
.sigil-meta {
  margin-top: 0.75rem;
}

.sigil-pill {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  margin: 0 0.25rem;
  font-size: 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.12);
}



.pit-kicker--padTop40{ padding-top:40px; }

#programs{
  scroll-margin-top: 90px; /* adjust to your header height */
}



.capitalise {
  font-variant: small-caps;
  letter-spacing: 0.06em;
}



.padding-bottom-10 {
  padding-bottom: 10px;
}

/* =========================================
   PITSTOP SLAB — scoped layout controls
   (won't clash with previous CSS)
========================================= */

.pitstop-slab{
  position: relative;
}

/* Row 1: ensure paragraph spans full width and aligns left */
.pitstop-slab__lead{
  max-width: none !important;
  width: 100%;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* Shared row behavior */
.pitstop-slab__row{
  width: 100%;
}

/* ✅ Insets only apply to Row 2 + Row 3 */
.pitstop-slab__row--inset{
  padding-left: 0;
  padding-right: 0;
}

/* Default column padding behavior (keeps things neat) */
.pitstop-slab__col{
  padding-top: 14px;
  padding-bottom: 14px;
}

/* =========================================
   Insets: 40px desktop, taper down, none on mobile
========================================= */

/* Large screens (desktop) */
@media (min-width: 992px){
  .pitstop-slab__row--inset{
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Medium screens (tablet) */
@media (min-width: 768px) and (max-width: 991.98px){
  .pitstop-slab__row--inset{
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* Small screens (mobile) */
@media (max-width: 767.98px){
  .pitstop-slab__row--inset{
    padding-left: 0;
    padding-right: 0;
  }
}

/* =========================================
   SVG containers (separate sizing rules)
========================================= */

/* Pitstop emblem (bigger, expressive) */
/* Pitstop emblem (smaller, supports the copy) */
.pitstop-emblem{
  padding: 14px;
  display: grid;
  place-items: center;
  width: 100%;
}

.pitstop-emblem__svg{
  display:block;
  width: min(100%, 360px);
  height: auto;
  max-height: 320px; /* hard cap */
}

/* md: keep it modest */
@media (min-width: 768px){
  .pitstop-emblem__svg{
    width: min(100%, 320px);
    max-height: 280px;
  }
}

/* lg+: slightly larger, but not ridiculous */
@media (min-width: 992px){
  .pitstop-emblem__svg{
    width: min(100%, 360px);
    max-height: 320px;
  }
}

/* xl+: allow a touch more if you want */
@media (min-width: 1200px){
  .pitstop-emblem__svg{
    width: min(100%, 400px);
    max-height: 360px;
  }
}

/* MBH mark (smaller, supporting) */
.mbh-mark{
  padding: 20px;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.mbh-mark__svg{
  display: block;
  width: min(100%, 280px);
  height: auto;
}

/* Desktop: restrained height so it fits the right text box */
@media (min-width: 992px){
  .mbh-mark__svg{
    width: auto;
    height: clamp(220px, 30vh, 320px);
  }
}
/* =========================================
   PITSTOP STATEMENT (isolated; no hero clash)
========================================= */

.pitstop-statement{
  position: relative;
  background: transparent;
}

/* In case any global section glows/pseudos exist */
.pitstop-statement::before,
.pitstop-statement::after{
  content: none !important;
  display: none !important;
}

.pitstop-statement__inner{
  /* Keep it clean: no glow, no gradient */
  background: transparent;
  background-image: none;
  box-shadow: none;
}

/* Center kicker reliably */
.pitstop-statement__kicker{
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Copy block: keep readable width but centered */
.pitstop-statement__copy{
  max-width: 70ch;        /* nice readable line-length */
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Highlight word */
.pitstop-statement__highlight{
  color: var(--lavender);
  font-weight: 700;
}

/* Optional: tighten vertical rhythm on small screens */
@media (max-width: 575.98px){
  .pitstop-statement__inner{ padding: 1.25rem !important; } /* ~p-3 */
  .pitstop-statement__copy{ max-width: 62ch; }
}

/* =========================================================
   ⬆️ SCROLL TO TOP BUTTON — Pitstop Style
========================================================= */

#scrollTopBtn{
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(80px);
  width: 56px;
  height: 56px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(12, 14, 20, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 10px 28px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.08);

  cursor: pointer;
  opacity: 0;
  z-index: 2000;

  transition:
    opacity 240ms ease,
    transform 240ms ease,
    box-shadow 240ms ease;

  -webkit-tap-highlight-color: transparent;
}

/* Icon */
#scrollTopBtn i{
  font-size: 1.8rem;
  line-height: 1;
  color: rgba(255,255,255,0.92);
  position: relative;
  z-index: 1;
}

/* Visible state (toggle this via JS or scroll logic) */
#scrollTopBtn.visible{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Hover lift (desktop only) */
@media (hover:hover){
  #scrollTopBtn:hover{
    transform: translateX(-50%) translateY(-4px);
    box-shadow:
      0 16px 36px rgba(0,0,0,0.55),
      inset 0 1px 0 rgba(255,255,255,0.12);
  }
}

/* Light theme tweak */
[data-bs-theme="light"] #scrollTopBtn{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.12);
}

[data-bs-theme="light"] #scrollTopBtn i{
  color: rgba(10,12,18,0.85);
}

/* =========================================================
   🌐 SOCIAL STRIP — BASE
========================================================= */

.social-strip {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.social-strip-inner {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Icon base */
.social-icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  transition:
    transform 0.45s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.45s ease,
    background 0.45s ease;
}

/* Hover — gentle elevation */
.social-icon:hover {
  transform: translateY(-6px);
  box-shadow:
    0 10px 25px rgba(0,0,0,0.35),
    0 0 0 6px rgba(255,255,255,0.04);
}

/* =========================================================
   🎨 BRAND COLOURS (DEFAULT STATE)
========================================================= */

.social-icon.linkedin i { color: #0a66c2; }
.social-icon.soundcloud i { color: #ff5500; }
.social-icon.twitter i { color: #ffffff; } /* X is white-on-dark */
.social-icon.facebook i { color: #1877f2; }
.social-icon.researchgate i { color: #00ccbb; }
.social-icon.youtube i { color: #ff0033; }
.social-icon.amazon i { color: #ff9900; }

/* Optional: subtle brand-tinted hover background */
.social-icon.linkedin:hover { background: rgba(10,102,194,0.15); }
.social-icon.soundcloud:hover { background: rgba(255,85,0,0.15); }
.social-icon.twitter:hover { background: rgba(255,255,255,0.08); }
.social-icon.facebook:hover { background: rgba(24,119,242,0.15); }
.social-icon.researchgate:hover { background: rgba(0,204,187,0.15); }
.social-icon.youtube:hover { background: rgba(255,0,51,0.15); }
.social-icon.amazon:hover { background: rgba(255,153,0,0.15); }

/* Accessibility */
.social-icon:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* =========================================================
   ♿ ACCESSIBILITY ICON BUTTON — B/W + HARD OVERRIDES
   Put this at the END of main.css
   Markup: <button class="icon-btn icon-btn--access">...</button>
========================================================= */
/* =========================================================
   RIGHT HAMBURGER — "MENU2" (different design, line-only)
========================================================= */

.icon-btn--menu2{
  margin-right: .5rem; /* space before ♿ */
  position: relative;
  overflow: hidden;
}

/* A subtle “glass sweep” on hover */
.icon-btn--menu2::before{
  content:"";
  position:absolute;
  inset:-40% -60%;
  background: radial-gradient(closest-side, rgba(255,255,255,.16), rgba(255,255,255,0));
  transform: translateX(-30%) rotate(12deg);
  opacity: 0;
  transition: opacity .25s ease, transform .35s ease;
  pointer-events:none;
}

.icon-btn--menu2:hover::before{
  opacity: 1;
  transform: translateX(20%) rotate(12deg);
}

.menu2{
  width: 20px;
  height: 14px;
  display: grid;
  align-content: space-between;
}

.menu2-line{
  display:block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: .95;
  transform-origin: left center;
  transition: transform .22s ease, opacity .22s ease, width .22s ease;
}

/* Make it feel “designed”, not generic */
.menu2-line:nth-child(1){ width: 18px; }
.menu2-line:nth-child(2){ width: 14px; opacity: .75; }
.menu2-line:nth-child(3){ width: 18px; }

/* Hover = slight “snap” */
.icon-btn--menu2:hover .menu2-line:nth-child(1){ transform: translateX(1px) scaleX(1.03); }
.icon-btn--menu2:hover .menu2-line:nth-child(2){ transform: translateX(4px) scaleX(1.02); opacity: .9; }
.icon-btn--menu2:hover .menu2-line:nth-child(3){ transform: translateX(2px) scaleX(1.03); }

/* When offcanvas is open, turn into an X (still line-based) */
.icon-btn--menu2.is-open .menu2-line:nth-child(1){
  transform: translateY(6px) rotate(45deg);
  width: 18px;
}
.icon-btn--menu2.is-open .menu2-line:nth-child(2){
  opacity: 0;
  transform: scaleX(.6);
}
.icon-btn--menu2.is-open .menu2-line:nth-child(3){
  transform: translateY(-6px) rotate(-45deg);
  width: 18px;
}

/* Page starts hidden until ready */
.page-wrap{
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s ease;
}

/* When ready, show it */
html.is-ready .page-wrap{
  opacity: 1;
  visibility: visible;
}