:root {
  /* Brand colours */
  --brand-navy: #102a43;
  --brand-navy-dark: #0a1d31;
  --brand-teal: #087f78;
  --brand-teal-dark: #056a65;
  --brand-saffron: #e4a72c;
  --brand-gold: #f4a91f;
  --brand-green: #678b5b;
  --brand-ivory: #faf7f0;
  --brand-aqua: #eaf6f3;

  /* Neutral colours */
  --ink: #263442;
  --muted: #667784;
  --border: #dde5e8;
  --surface: #ffffff;
  --surface-soft: #f5f8f8;

  /* Typography */
  --font-heading: "Lora", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;

  /* Layout */
  --section-space: clamp(3rem, 5vw, 5rem);
  --content-width: 44rem;
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --shadow-sm: 0 0.5rem 1.5rem rgba(16, 42, 67, 0.08);
  --shadow-md: 0 1.25rem 3rem rgba(16, 42, 67, 0.12);
  --transition: 220ms ease;

  /* Bootstrap component overrides */
  --bs-primary: var(--brand-teal);
  --bs-primary-rgb: 8, 127, 120;
  --bs-secondary: var(--brand-navy);
  --bs-secondary-rgb: 16, 42, 67;
  --bs-body-font-family: var(--font-body);
  --bs-body-color: var(--ink);
  --bs-body-bg: var(--surface);
  --bs-border-color: var(--border);
  --bs-link-color: var(--brand-teal);
  --bs-link-hover-color: var(--brand-teal-dark);
}

html {
  scroll-behavior: smooth;
}

.reveal-ready .scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 0.9rem, 0);
  transition:
    opacity 1400ms cubic-bezier(0.2, 0.65, 0.25, 1),
    transform 1400ms cubic-bezier(0.2, 0.65, 0.25, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready .scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

body {
  min-width: 20rem;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

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

a {
  color: var(--brand-teal);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

a:hover {
  color: var(--brand-teal-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  color: #ffffff;
  background: var(--brand-teal);
}

:focus-visible {
  outline: 0.2rem solid var(--brand-saffron);
  outline-offset: 0.2rem;
}

.skip-link {
  position: fixed;
  z-index: 1080;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: #ffffff;
  background: var(--brand-navy);
  font-weight: 700;
  transform: translateY(-180%);
}

.skip-link:focus {
  color: #ffffff;
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 1030;
}

.announcement-bar {
  color: #ffffff;
  background: var(--brand-navy);
  font-size: var(--text-xs);
}

.announcement-bar-inner {
  display: flex;
  min-height: 2.35rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.announcement-message {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  letter-spacing: 0.01em;
}

.announcement-message strong {
  font-weight: 800;
}

.announcement-message-extra {
  margin-left: 0.3rem;
  color: rgba(255, 255, 255, 0.72);
}

.announcement-icon {
  display: inline-grid;
  width: 1.6rem;
  height: 1.6rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-saffron);
  background: rgba(255, 255, 255, 0.09);
}

.announcement-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  white-space: nowrap;
}

.announcement-contact a,
.announcement-contact > span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.announcement-contact a:hover {
  color: #ffffff;
}

.announcement-contact i {
  color: var(--brand-saffron);
}

.site-navbar {
  --navbar-height: 4.5rem;
  min-height: var(--navbar-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #061637;
  box-shadow: 0 0.45rem 1.5rem rgba(6, 22, 55, 0.15);
  transition:
    min-height var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.site-navbar.is-stuck {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  min-height: 4.15rem;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(6, 22, 55, 0.96);
  box-shadow: 0 0.7rem 2rem rgba(6, 22, 55, 0.22);
  -webkit-backdrop-filter: blur(0.9rem);
  backdrop-filter: blur(0.9rem);
}

.site-brand {
  display: inline-flex;
  max-width: min(14rem, 36vw);
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}

.site-brand:hover {
  color: #ffffff;
}

.site-brand-mark {
  width: 14rem;
  height: 3.45rem;
  flex: 0 0 auto;
  padding: 0;
  overflow: hidden;
  border-radius: 0.7rem;
  background: transparent;
  box-shadow: none;
}

.site-brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
}

.site-brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.site-brand-copy strong {
  overflow: hidden;
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-brand-copy > span {
  overflow: hidden;
  margin-top: 0.12rem;
  color: var(--brand-teal-dark);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-brand-copy small {
  overflow: hidden;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.47rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.07em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-navbar .navbar-nav {
  gap: 0.15rem;
}

.site-navbar .nav-link {
  position: relative;
  padding: 0.7rem 0.68rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.79rem;
  font-weight: 700;
  text-decoration: none;
}

.site-navbar .nav-link::after {
  position: absolute;
  right: 0.68rem;
  bottom: 0.35rem;
  left: 0.68rem;
  height: 0.13rem;
  border-radius: 999px;
  background: var(--brand-saffron);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: #ffffff;
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-navbar .nav-link-support {
  color: #f4ca73;
}

.site-navbar .navbar-cta {
  --bs-btn-padding-x: 1.15rem;
  --bs-btn-color: #061637;
  --bs-btn-bg: var(--brand-saffron);
  --bs-btn-border-color: var(--brand-saffron);
  --bs-btn-hover-color: #061637;
  --bs-btn-hover-bg: #f1bd52;
  --bs-btn-hover-border-color: #f1bd52;
  --bs-btn-active-color: #061637;
  --bs-btn-active-bg: #f1bd52;
  --bs-btn-active-border-color: #f1bd52;
  min-height: 2.85rem;
  box-shadow: 0 0.55rem 1.35rem rgba(228, 167, 44, 0.2);
  white-space: nowrap;
}

.navbar-toggler {
  display: inline-flex;
  width: 2.9rem;
  height: 2.9rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(8, 127, 120, 0.14);
}

.navbar-toggler span {
  display: block;
  width: 1.15rem;
  height: 0.12rem;
  border-radius: 999px;
  background: #ffffff;
}

.navbar-call {
  display: inline-grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--brand-saffron);
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
}

.mobile-navigation {
  --bs-offcanvas-width: min(26rem, 92vw);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 100% 0, rgba(8, 127, 120, 0.28), transparent 18rem),
    #061637;
}

.mobile-navigation .offcanvas-header {
  padding: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-navigation .offcanvas-body {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.mobile-navigation .btn-close {
  flex: 0 0 auto;
  border-radius: 50%;
  filter: invert(1) grayscale(1) brightness(2);
}

.mobile-nav-list {
  gap: 0;
}

.mobile-nav-list .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav-list .nav-link::after {
  color: var(--brand-saffron);
  font-family: "Font Awesome 6 Free";
  font-size: 0.75rem;
  font-weight: 900;
  content: "\f061";
}

.mobile-nav-list .nav-link.active {
  color: #ffffff;
}

.mobile-nav-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.mobile-nav-actions .btn-primary {
  --bs-btn-color: #061637;
  --bs-btn-bg: var(--brand-saffron);
  --bs-btn-border-color: var(--brand-saffron);
  --bs-btn-hover-color: #061637;
  --bs-btn-hover-bg: #f1bd52;
  --bs-btn-hover-border-color: #f1bd52;
}

.mobile-nav-actions .btn-outline-primary {
  --bs-btn-color: #ffffff;
  --bs-btn-border-color: rgba(255, 255, 255, 0.3);
  --bs-btn-hover-color: #061637;
  --bs-btn-hover-bg: #ffffff;
  --bs-btn-hover-border-color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.mobile-nav-contact {
  display: flex;
  flex-direction: column;
  margin: auto 0 0;
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  font-style: normal;
}

.mobile-nav-contact strong {
  color: #ffffff;
}

.mobile-nav-contact a {
  margin-top: 0.45rem;
  color: #8fddd6;
  overflow-wrap: anywhere;
}

.navbar-spacer {
  height: 4.5rem;
}

.section-space {
  padding-block: var(--section-space);
}

.section-space-sm {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.section-heading {
  max-width: var(--content-width);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.display-title {
  max-width: 56rem;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.section-title {
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
}

.card-title {
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--brand-teal-dark);
  font-size: var(--text-xs);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.75rem;
  height: 0.16rem;
  border-radius: 999px;
  background: var(--brand-saffron);
  content: "";
}

.lead-copy {
  max-width: 48rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.75;
}

.body-copy {
  color: var(--muted);
  font-size: var(--text-base);
}

.text-link {
  display: inline-flex;
  align-items: center;
  align-self: center;
  padding: 0.75rem 0;
  color: var(--brand-navy);
  font-size: var(--text-sm);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  color: var(--brand-teal);
}

.text-link:hover i {
  transform: translateX(0.25rem);
}

.text-link i {
  transition: transform var(--transition);
}

.btn {
  --bs-btn-padding-x: 1.4rem;
  --bs-btn-padding-y: 0.85rem;
  --bs-btn-font-size: var(--text-sm);
  --bs-btn-font-weight: 800;
  --bs-btn-line-height: 1.5;
  --bs-btn-border-radius: 999px;
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.01em;
}

.btn:hover {
  transform: translateY(-0.125rem);
}

.btn-primary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: var(--brand-teal);
  --bs-btn-border-color: var(--brand-teal);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: var(--brand-teal-dark);
  --bs-btn-hover-border-color: var(--brand-teal-dark);
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: var(--brand-teal-dark);
  --bs-btn-active-border-color: var(--brand-teal-dark);
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: var(--brand-teal);
  --bs-btn-disabled-border-color: var(--brand-teal);
  box-shadow: 0 0.65rem 1.5rem rgba(8, 127, 120, 0.2);
}

.btn-secondary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: var(--brand-navy);
  --bs-btn-border-color: var(--brand-navy);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: var(--brand-navy-dark);
  --bs-btn-hover-border-color: var(--brand-navy-dark);
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: var(--brand-navy-dark);
  --bs-btn-active-border-color: var(--brand-navy-dark);
}

.btn-outline-primary {
  --bs-btn-color: var(--brand-navy);
  --bs-btn-border-color: rgba(16, 42, 67, 0.3);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: var(--brand-navy);
  --bs-btn-hover-border-color: var(--brand-navy);
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: var(--brand-navy);
  --bs-btn-active-border-color: var(--brand-navy);
  background: rgba(255, 255, 255, 0.75);
}

.content-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.content-card-tinted {
  border-color: transparent;
  background: var(--brand-aqua);
  box-shadow: none;
}

.icon-box {
  display: inline-grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border-radius: 1rem;
  color: var(--brand-teal);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  font-size: 1.35rem;
}

.form-control,
.form-select {
  min-height: 3.25rem;
  border-color: var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background-color: var(--surface);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 0.25rem rgba(8, 127, 120, 0.12);
}

.form-label {
  color: var(--brand-navy);
  font-size: var(--text-sm);
  font-weight: 700;
}

.bg-brand-navy {
  background-color: var(--brand-navy);
}

.bg-brand-teal {
  background-color: var(--brand-teal);
}

.bg-brand-saffron {
  background-color: var(--brand-saffron);
}

.bg-brand-green {
  background-color: var(--brand-green);
}

.bg-brand-ivory {
  background-color: var(--brand-ivory);
}

.bg-brand-aqua {
  background-color: var(--brand-aqua);
}

.colour-swatch {
  display: flex;
  min-height: 8.5rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  border-radius: var(--radius-sm);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.colour-swatch span {
  font-size: var(--text-sm);
  font-weight: 800;
}

.colour-swatch small {
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  opacity: 0.78;
}

.colour-swatch-dark {
  border: 1px solid rgba(16, 42, 67, 0.08);
  color: var(--brand-navy);
}

.hero-section {
  position: relative;
  min-height: auto;
  display: flex;
  overflow: hidden;
  align-items: center;
  padding-block: clamp(2.75rem, 5vw, 4.25rem) 1.25rem;
  background:
    radial-gradient(circle at 88% 28%, rgba(8, 127, 120, 0.2), transparent 24rem),
    radial-gradient(circle at 73% 82%, rgba(228, 167, 44, 0.12), transparent 19rem),
    radial-gradient(circle at 9% 7%, rgba(255, 255, 255, 0.98), transparent 27rem),
    linear-gradient(118deg, #ffffff 0%, var(--brand-ivory) 48%, #eaf6f3 100%);
  isolation: isolate;
}

.hero-section::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 127, 120, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 127, 120, 0.035) 1px, transparent 1px);
  background-position: center;
  background-size: 2.75rem 2.75rem;
  content: "";
  opacity: 0.65;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 42%,
    #000000 68%,
    #000000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 42%,
    #000000 68%,
    #000000 100%
  );
}

.hero-section::after {
  position: absolute;
  z-index: 0;
  top: -32%;
  right: -14%;
  width: min(58rem, 62vw);
  height: 165%;
  border: 1px solid rgba(8, 127, 120, 0.08);
  border-radius: 48% 0 0 48%;
  background:
    radial-gradient(circle at 35% 48%, rgba(255, 255, 255, 0.56), transparent 34%),
    linear-gradient(145deg, rgba(8, 127, 120, 0.04), rgba(255, 255, 255, 0.18));
  box-shadow:
    inset 1rem 0 4rem rgba(255, 255, 255, 0.25),
    -2rem 0 5rem rgba(8, 127, 120, 0.035);
  content: "";
  pointer-events: none;
}

.hero-section > .container {
  position: relative;
  z-index: 2;
}

.hero-shape {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}

.hero-shape-one {
  top: -15rem;
  right: -12rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(8, 127, 120, 0.12);
  box-shadow:
    0 0 0 4rem rgba(8, 127, 120, 0.032),
    0 0 0 8rem rgba(8, 127, 120, 0.022);
}

.hero-shape-two {
  bottom: -13rem;
  left: -11rem;
  width: 26rem;
  height: 26rem;
  background:
    radial-gradient(circle at 66% 30%, rgba(255, 255, 255, 0.42), transparent 24%),
    rgba(228, 167, 44, 0.065);
}

.hero-content {
  max-width: 47rem;
}

.hero-initiative-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(8, 127, 120, 0.14);
  border-radius: 999px;
  color: var(--brand-teal-dark);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 0.4rem 1.2rem rgba(16, 42, 67, 0.04);
  font-size: var(--text-xs);
  font-weight: 800;
  line-height: 1.35;
}

.hero-initiative-label i {
  color: var(--brand-green);
}

.hero-programme-name {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1rem 0 0.55rem;
  color: var(--brand-navy);
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-programme-name span {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
}

.hero-programme-name span::before {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--brand-saffron);
  content: "";
}

.hero-title {
  max-width: 48rem;
  margin-bottom: 1rem;
  font-size: clamp(1.85rem, 3.3vw, 3rem);
  line-height: 1.12;
}

.hero-title span {
  display: block;
  color: var(--brand-teal-dark);
}

.hero-description {
  max-width: 43rem;
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.hero-actions .btn {
  width: auto;
}

.hero-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.1rem;
  margin: 0;
  padding: 0;
  color: var(--brand-navy);
  font-size: var(--text-sm);
  font-weight: 700;
  list-style: none;
}

.hero-audience li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-audience i {
  color: var(--brand-green);
}

.hero-safety-note {
  display: flex;
  max-width: 42rem;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.9rem 0 0;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(16, 42, 67, 0.1);
  color: var(--muted);
  font-size: var(--text-xs);
  line-height: 1.55;
}

.hero-safety-note i {
  margin-top: 0.15rem;
  color: var(--brand-teal);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  width: min(100%, 28rem);
  aspect-ratio: 1;
  margin-inline: auto;
  transform: translateX(-1.25rem);
}

.hero-visual::before {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    conic-gradient(
      from 25deg,
      rgba(8, 127, 120, 0.12),
      rgba(228, 167, 44, 0.14),
      rgba(103, 139, 91, 0.12),
      rgba(8, 127, 120, 0.12)
    );
  content: "";
  filter: blur(0.15rem);
  animation: hero-aura-spin 34s linear infinite;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(8, 127, 120, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-outer {
  inset: 8%;
  border-style: dashed;
  animation: hero-orbit-spin 28s linear infinite;
}

.hero-orbit-inner {
  inset: 21%;
  border-color: rgba(228, 167, 44, 0.35);
  animation: hero-orbit-spin 20s linear infinite reverse;
}

.hero-orbit-outer::before,
.hero-orbit-outer::after,
.hero-orbit-inner::before {
  position: absolute;
  border: 0.22rem solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0.3rem 0.8rem rgba(16, 42, 67, 0.15);
}

.hero-orbit-outer::before {
  top: 7%;
  right: 14%;
  width: 1.15rem;
  height: 1.15rem;
  background: var(--brand-teal);
}

.hero-orbit-outer::after {
  bottom: 16%;
  left: 4%;
  width: 1rem;
  height: 1rem;
  background: var(--brand-saffron);
}

.hero-orbit-inner::before {
  top: 43%;
  right: -0.5rem;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--brand-green);
}

.hero-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  width: 47%;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  border: 0.65rem solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.14), transparent 35%),
    linear-gradient(145deg, var(--brand-teal), var(--brand-navy));
  box-shadow: var(--shadow-md);
  text-align: center;
  transform: translate(-50%, -50%);
}

.hero-core::after {
  position: absolute;
  right: -12%;
  bottom: -30%;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(228, 167, 44, 0.12);
  content: "";
}

.hero-snj-emblem {
  border-width: 0.45rem;
  background-color: #ffffff;
  background-image: url("../assets/images/snj-emblem-source.png");
  background-repeat: no-repeat;
  background-position: 48% 16%;
  background-size: 300% auto;
}

.hero-snj-emblem::after {
  display: none;
}

.hero-core-kicker {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.5rem, 1vw, 0.65rem);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-core strong {
  position: relative;
  z-index: 1;
  margin-block: 0.2rem;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.08em;
}

.hero-core > span:not(.hero-core-kicker) {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 1.4vw, 1.05rem);
  font-weight: 600;
}

.hero-core small {
  position: relative;
  z-index: 1;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.4rem, 0.85vw, 0.57rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-dimensions {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-dimension {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 8.25rem;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.hero-dimension-icon {
  display: inline-grid;
  width: 2.1rem;
  height: 2.1rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.75rem;
  color: var(--brand-teal);
  background: var(--brand-aqua);
}

.hero-dimension > span:last-child {
  display: flex;
  flex-direction: column;
}

.hero-dimension strong {
  color: var(--brand-navy);
  font-size: var(--text-xs);
  line-height: 1.35;
}

.hero-dimension small {
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 600;
}

.hero-dimension-body {
  top: 4%;
  left: 4%;
}

.hero-dimension-mind {
  top: 12%;
  right: 0;
}

.hero-dimension-intelligence {
  bottom: 12%;
  left: -1%;
}

.hero-dimension-soul {
  right: 3%;
  bottom: 5%;
}

.hero-dimension-body .hero-dimension-icon {
  color: var(--brand-green);
  background: #eef5eb;
}

.hero-dimension-mind .hero-dimension-icon {
  color: #77569b;
  background: #f2ecf8;
}

.hero-dimension-intelligence .hero-dimension-icon {
  color: #b4760e;
  background: #fff5dc;
}

.hero-free-badge {
  position: absolute;
  z-index: 4;
  top: 49%;
  right: -1%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand-navy);
  box-shadow: var(--shadow-md);
}

.hero-free-badge > i {
  color: var(--brand-saffron);
}

.hero-free-badge span {
  display: flex;
  flex-direction: column;
}

.hero-free-badge strong {
  color: #ffffff;
  font-size: 0.68rem;
  line-height: 1.3;
}

.hero-free-badge small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.55rem;
}

.hero-footnote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding: 0.75rem 1rem;
  border: 1px solid rgba(8, 127, 120, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0.5rem 1.6rem rgba(16, 42, 67, 0.05);
  -webkit-backdrop-filter: blur(0.8rem);
  backdrop-filter: blur(0.8rem);
}

.hero-footnote > div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-footnote > div > i {
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-teal);
  background: var(--brand-aqua);
}

.hero-footnote span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: var(--text-xs);
}

.hero-footnote strong {
  color: var(--brand-navy);
  font-size: var(--text-sm);
}

.hero-footnote > a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--brand-teal-dark);
  font-size: var(--text-sm);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.hero-footnote > a:hover i {
  transform: translateX(0.25rem);
}

.hero-footnote > a i {
  transition: transform var(--transition);
}

.trust-strip {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 10% 0%, rgba(8, 127, 120, 0.34), transparent 21rem),
    radial-gradient(circle at 90% 120%, rgba(228, 167, 44, 0.13), transparent 20rem),
    linear-gradient(112deg, var(--brand-navy-dark), var(--brand-navy) 56%, #123b4b);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.05),
    0 0.8rem 2.2rem rgba(16, 42, 67, 0.12);
}

.trust-strip::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 3rem 3rem;
  content: "";
  pointer-events: none;
}

.trust-strip .container {
  position: relative;
  z-index: 1;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  gap: 0.7rem;
  padding: 0.85rem 0;
  list-style: none;
}

.trust-item {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.045);
  transition:
    border-color var(--transition),
    background-color var(--transition),
    transform var(--transition);
}

.trust-item:first-child {
  padding-left: 0.8rem;
}

.trust-item:last-child {
  padding-right: 0.8rem;
}

.trust-item:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-0.12rem);
}

.trust-item:not(:last-child)::after {
  display: none;
}

.trust-icon {
  display: inline-grid;
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.8rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.08),
    0 0.45rem 1.1rem rgba(0, 0, 0, 0.12);
  font-size: 1rem;
}

.trust-icon-free {
  color: #ffd56d;
  background: rgba(228, 167, 44, 0.15);
}

.trust-icon-people {
  color: #75ddd4;
  background: rgba(8, 127, 120, 0.2);
}

.trust-icon-guidance {
  color: #b9dafa;
  background: rgba(108, 166, 214, 0.14);
}

.trust-icon-care {
  color: #b9dfad;
  background: rgba(103, 139, 91, 0.18);
}

.trust-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.trust-copy strong {
  overflow: hidden;
  color: #ffffff;
  font-size: 0.82rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trust-copy small {
  overflow: hidden;
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.about-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 95%, rgba(228, 167, 44, 0.07), transparent 20rem),
    #ffffff;
}

.about-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(80rem, 90vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  content: "";
  transform: translateX(-50%);
}

.about-content {
  max-width: 39rem;
}

.about-lead {
  margin-bottom: 0.9rem;
  color: var(--brand-navy);
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  font-weight: 600;
  line-height: 1.65;
}

.about-principles {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.about-principles li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-principles li > span {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.75rem;
  color: var(--brand-teal);
  background: var(--brand-aqua);
}

.about-principles li:nth-child(2) > span {
  color: #b4760e;
  background: #fff6df;
}

.about-principles li:nth-child(3) > span {
  color: var(--brand-green);
  background: #eef5eb;
}

.about-principles li > div {
  display: flex;
  flex-direction: column;
}

.about-principles strong {
  color: var(--brand-navy);
  font-size: 0.82rem;
}

.about-principles small {
  margin-top: 0.05rem;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 600;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-top: 1.65rem;
}

.about-image-card {
  position: relative;
  max-width: 34rem;
  margin: 0 0 0 auto;
}

.about-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 0.45rem solid #ffffff;
  border-radius: var(--radius-lg);
  background: var(--brand-aqua);
  box-shadow: var(--shadow-md);
}

.about-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 48%,
    rgba(6, 22, 55, 0.1) 72%,
    rgba(6, 22, 55, 0.5) 100%
  );
  content: "";
  pointer-events: none;
}

.about-image-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.about-image-card:hover .about-image-frame > img {
  transform: scale(1.025);
}

.about-image-accent {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  width: 3.25rem;
  height: 3.25rem;
  border: 0.4rem solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: rgba(8, 127, 120, 0.72);
  box-shadow:
    0 0 0 0.5rem rgba(8, 127, 120, 0.14),
    0 0.6rem 1.2rem rgba(6, 22, 55, 0.16);
}

.about-image-badge {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.9rem;
  color: #ffffff;
  background: rgba(6, 22, 55, 0.88);
  box-shadow: 0 0.6rem 1.5rem rgba(6, 22, 55, 0.2);
  -webkit-backdrop-filter: blur(0.6rem);
  backdrop-filter: blur(0.6rem);
}

.about-image-badge > i {
  color: var(--brand-saffron);
}

.about-image-badge > span {
  display: flex;
  flex-direction: column;
}

.about-image-badge strong {
  color: #ffffff;
  font-size: 0.7rem;
}

.about-image-badge small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.58rem;
}

.about-image-card figcaption {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0.8rem 0 0 1rem;
  padding-left: 0.9rem;
  border-left: 0.16rem solid var(--brand-saffron);
}

.about-image-card figcaption i {
  margin-top: 0.16rem;
  color: var(--brand-teal);
  font-size: 0.75rem;
}

.about-image-card figcaption p {
  max-width: 27rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.55;
}

.snj-wheel-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 22%, rgba(8, 127, 120, 0.1), transparent 25rem),
    radial-gradient(circle at 8% 88%, rgba(228, 167, 44, 0.08), transparent 22rem),
    var(--brand-ivory);
}

.snj-wheel-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 127, 120, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 127, 120, 0.025) 1px, transparent 1px);
  background-size: 3rem 3rem;
  content: "";
  pointer-events: none;
}

.snj-wheel-section .container {
  position: relative;
  z-index: 1;
}

.snj-wheel-heading {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.snj-wheel-heading .body-copy {
  max-width: 40rem;
  margin-inline: auto;
}

.snj-wheel-detail {
  --active-dimension: #ad3e93;
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 2.8vw, 1.8rem);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--active-dimension) 28%, transparent), transparent 20rem),
    linear-gradient(145deg, #061637, var(--brand-navy));
  box-shadow: var(--shadow-md);
  transition: --active-dimension 300ms ease;
}

.snj-wheel-detail::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.28rem;
  height: 100%;
  background: var(--active-dimension);
  content: "";
}

.snj-detail-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.snj-detail-count,
.snj-detail-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.snj-detail-count {
  color: var(--brand-saffron);
}

.snj-detail-label {
  color: rgba(255, 255, 255, 0.5);
}

.snj-detail-heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.snj-detail-icon {
  display: inline-grid;
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.9rem;
  color: #ffffff;
  background: color-mix(in srgb, var(--active-dimension) 62%, transparent);
  box-shadow: 0 0.5rem 1.3rem rgba(0, 0, 0, 0.14);
  font-size: 1.15rem;
}

.snj-detail-heading > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.snj-detail-heading > div > span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.snj-detail-heading h3 {
  margin: 0.15rem 0 0;
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.snj-detail-description {
  min-height: 5.2rem;
  margin: 1.1rem 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.7;
}

.snj-detail-practices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.snj-detail-practices span {
  padding: 0.42rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.61rem;
  font-weight: 700;
}

.snj-detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.snj-detail-footer p {
  display: flex;
  max-width: 18rem;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.59rem;
  line-height: 1.5;
}

.snj-detail-footer p i {
  margin-top: 0.12rem;
  color: var(--brand-saffron);
}

.snj-wheel-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 0.4rem;
}

.snj-wheel-control {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  transition:
    color var(--transition),
    background-color var(--transition),
    transform var(--transition);
}

.snj-wheel-control:hover,
.snj-wheel-control:focus-visible {
  color: #061637;
  background: var(--brand-saffron);
  transform: translateY(-0.1rem);
}

.snj-wheel-toggle {
  color: #061637;
  background: var(--brand-saffron);
}

.snj-wheel-experience {
  --wheel-size: 34rem;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.snj-wheel-stage {
  position: relative;
  width: min(100%, var(--wheel-size));
  aspect-ratio: 1;
  margin-inline: auto;
}

.snj-wheel-halo,
.snj-wheel-track,
.snj-wheel-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.snj-wheel-halo {
  width: 83%;
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 0 44%, transparent 45%),
    conic-gradient(
      from -22.5deg,
      rgba(173, 62, 147, 0.16),
      rgba(40, 126, 59, 0.16),
      rgba(79, 159, 190, 0.16),
      rgba(223, 61, 50, 0.16),
      rgba(88, 170, 163, 0.16),
      rgba(239, 125, 0, 0.16),
      rgba(52, 70, 149, 0.16),
      rgba(217, 163, 29, 0.16),
      rgba(173, 62, 147, 0.16)
    );
  box-shadow:
    0 0 0 1px rgba(8, 127, 120, 0.08),
    0 1.2rem 3rem rgba(16, 42, 67, 0.1);
}

.snj-wheel-track {
  width: 69%;
  aspect-ratio: 1;
  border: 1px solid rgba(8, 127, 120, 0.2);
  box-shadow:
    0 0 0 1.4rem rgba(255, 255, 255, 0.55),
    0 0 0 1.48rem rgba(228, 167, 44, 0.24);
}

.snj-wheel-spinner {
  width: 76%;
  aspect-ratio: 1;
  border: 0.18rem dashed rgba(8, 127, 120, 0.38);
  animation: snj-wheel-spin 28s linear infinite;
}

.snj-wheel-spinner::before,
.snj-wheel-spinner::after {
  position: absolute;
  width: 0.95rem;
  height: 0.95rem;
  border: 0.22rem solid #ffffff;
  border-radius: 50%;
  content: "";
  box-shadow: 0 0.4rem 0.9rem rgba(16, 42, 67, 0.16);
}

.snj-wheel-spinner::before {
  top: 7%;
  right: 16%;
  background: var(--brand-teal);
}

.snj-wheel-spinner::after {
  bottom: 14%;
  left: 6%;
  background: var(--brand-saffron);
}

.snj-wheel-centre {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 36%;
  aspect-ratio: 1;
  padding: 0.42rem;
  border: 0.35rem solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background:
    linear-gradient(145deg, #ffd968, var(--brand-saffron));
  box-shadow:
    0 0 0 0.24rem rgba(244, 169, 31, 0.2),
    0 1.1rem 2.8rem rgba(16, 42, 67, 0.2);
  transform: translate(-50%, -50%);
}

.snj-wheel-centre::before {
  position: absolute;
  inset: -0.78rem;
  border: 1px solid rgba(244, 169, 31, 0.5);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.snj-wheel-person {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0.16rem solid #ffffff;
  border-radius: 50%;
  background: var(--brand-aqua);
}

.snj-wheel-person img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  filter: saturate(0.94) contrast(1.02);
  transform: scale(1.04);
}

.snj-wheel-node {
  --wheel-radius: 13.2rem;
  --counter-angle: 0deg;
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 7.6rem;
  padding: 0;
  border: 0;
  color: var(--brand-navy);
  background: transparent;
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(calc(var(--wheel-radius) * -1))
    rotate(var(--counter-angle));
}

.snj-wheel-node-inner {
  display: flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 0.6rem;
  border: 1px solid rgba(16, 42, 67, 0.1);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  font-size: 0.66rem;
  font-weight: 800;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.snj-wheel-node i {
  color: var(--node-color);
  font-size: 0.86rem;
}

.snj-wheel-node:hover .snj-wheel-node-inner,
.snj-wheel-node:focus-visible .snj-wheel-node-inner,
.snj-wheel-node.is-active .snj-wheel-node-inner {
  border-color: color-mix(in srgb, var(--node-color) 55%, white);
  box-shadow:
    0 0 0 0.2rem color-mix(in srgb, var(--node-color) 14%, transparent),
    var(--shadow-sm);
  transform: scale(1.08);
}

.snj-wheel-node.is-active .snj-wheel-node-inner {
  color: #ffffff;
  background: var(--node-color);
}

.snj-wheel-node.is-active i {
  color: #ffffff;
}

.snj-wheel-instruction {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: -0.2rem 0 0;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
}

.snj-wheel-instruction i {
  color: var(--brand-teal);
}

.snj-wheel-experience.is-paused .snj-wheel-spinner {
  animation-play-state: paused;
}

.snj-wheel-experience:hover .snj-wheel-spinner,
.snj-wheel-experience:focus-within .snj-wheel-spinner {
  animation-play-state: paused;
}

.purpose-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(8, 127, 120, 0.07), transparent 20rem),
    #ffffff;
}

.purpose-section::before {
  position: absolute;
  right: -9rem;
  bottom: -12rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(8, 127, 120, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(8, 127, 120, 0.02),
    0 0 0 8rem rgba(228, 167, 44, 0.018);
  content: "";
  pointer-events: none;
}

.purpose-section .container {
  position: relative;
  z-index: 1;
}

.purpose-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.purpose-heading .body-copy {
  max-width: 29rem;
  padding-left: 1rem;
  border-left: 0.16rem solid var(--brand-saffron);
}

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

.purpose-card {
  position: relative;
  display: flex;
  min-height: 22rem;
  overflow: hidden;
  flex-direction: column;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
}

.purpose-card-number {
  position: absolute;
  top: 0.65rem;
  right: 1.2rem;
  color: rgba(16, 42, 67, 0.06);
  font-family: var(--font-heading);
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1;
}

.purpose-card-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 0.9rem;
  font-size: 1.05rem;
}

.purpose-card-copy {
  position: relative;
  z-index: 1;
  max-width: 31rem;
  margin-top: 1.25rem;
}

.purpose-card-label {
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.purpose-card-copy h3 {
  margin: 0.4rem 0 0.8rem;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.purpose-card-copy p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.75;
}

.purpose-card-focus {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.4rem;
}

.purpose-card-focus span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  font-size: 0.61rem;
  font-weight: 700;
}

.purpose-card-mission {
  border: 1px solid rgba(8, 127, 120, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(8, 127, 120, 0.1), transparent 18rem),
    linear-gradient(145deg, #ffffff, var(--brand-aqua));
  box-shadow: var(--shadow-sm);
}

.purpose-card-mission .purpose-card-icon {
  color: var(--brand-teal);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.purpose-card-mission .purpose-card-label {
  color: var(--brand-teal-dark);
}

.purpose-card-mission .purpose-card-copy p {
  color: var(--muted);
}

.purpose-card-mission .purpose-card-focus span {
  border: 1px solid rgba(8, 127, 120, 0.12);
  color: var(--brand-teal-dark);
  background: rgba(255, 255, 255, 0.72);
}

.purpose-card-vision {
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(8, 127, 120, 0.34), transparent 21rem),
    linear-gradient(145deg, #061637, var(--brand-navy));
  box-shadow: var(--shadow-md);
}

.purpose-card-vision .purpose-card-number {
  color: rgba(255, 255, 255, 0.045);
}

.purpose-card-vision .purpose-card-icon {
  color: var(--brand-saffron);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.purpose-card-vision .purpose-card-label {
  color: var(--brand-saffron);
}

.purpose-card-vision .purpose-card-copy h3 {
  color: #ffffff;
}

.purpose-card-vision .purpose-card-copy p {
  color: rgba(255, 255, 255, 0.65);
}

.purpose-card-vision .purpose-card-focus span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
}

.purpose-card-focus i {
  color: var(--brand-saffron);
}

.purpose-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 1rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.purpose-values li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.3rem 1.25rem;
}

.purpose-values li:first-child {
  padding-left: 0;
}

.purpose-values li:last-child {
  padding-right: 0;
}

.purpose-values li:not(:last-child)::after {
  position: absolute;
  top: 12%;
  right: 0;
  width: 1px;
  height: 76%;
  background: var(--border);
  content: "";
}

.purpose-values li > span {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.75rem;
  color: var(--brand-teal);
  background: var(--brand-aqua);
}

.purpose-values li:nth-child(2) > span {
  color: #b4760e;
  background: #fff6df;
}

.purpose-values li:nth-child(3) > span {
  color: var(--brand-green);
  background: #eef5eb;
}

.purpose-values li > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.purpose-values strong {
  color: var(--brand-navy);
  font-size: 0.73rem;
}

.purpose-values small {
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 600;
  line-height: 1.4;
}

.journey-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 15%, rgba(8, 127, 120, 0.1), transparent 22rem),
    linear-gradient(180deg, var(--brand-aqua), #f8fbfa 56%, var(--brand-ivory));
}

.journey-section::before {
  position: absolute;
  top: -13rem;
  left: -12rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(8, 127, 120, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(8, 127, 120, 0.018);
  content: "";
  pointer-events: none;
}

.journey-section .container {
  position: relative;
  z-index: 1;
}

.journey-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.journey-heading .body-copy {
  max-width: 29rem;
  padding-left: 1rem;
  border-left: 0.16rem solid var(--brand-saffron);
}

.journey-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-timeline::before {
  position: absolute;
  z-index: 0;
  top: 2.1rem;
  right: 10%;
  left: 10%;
  height: 0.16rem;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      var(--brand-teal),
      var(--brand-green),
      var(--brand-saffron),
      var(--brand-navy)
    );
  content: "";
}

.journey-step {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.journey-step-marker {
  position: relative;
  display: grid;
  width: 4.2rem;
  height: 4.2rem;
  margin-bottom: 1rem;
  place-items: center;
  border: 0.38rem solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand-teal);
  box-shadow: var(--shadow-sm);
}

.journey-step:nth-child(2) .journey-step-marker {
  background: var(--brand-green);
}

.journey-step:nth-child(3) .journey-step-marker {
  color: #061637;
  background: var(--brand-saffron);
}

.journey-step:nth-child(4) .journey-step-marker {
  background: var(--brand-navy);
}

.journey-step-marker > span {
  position: absolute;
  top: -0.45rem;
  right: -0.45rem;
  display: inline-grid;
  width: 1.45rem;
  height: 1.45rem;
  place-items: center;
  border: 0.16rem solid #ffffff;
  border-radius: 50%;
  color: var(--brand-navy);
  background: #ffffff;
  box-shadow: 0 0.25rem 0.6rem rgba(16, 42, 67, 0.12);
  font-size: 0.49rem;
  font-weight: 800;
}

.journey-step-marker i {
  font-size: 1rem;
}

.journey-step-copy {
  padding-right: 0.5rem;
}

.journey-step-copy > span {
  color: var(--brand-teal-dark);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-step-copy h3 {
  margin: 0.28rem 0 0.5rem;
  font-size: 1.05rem;
}

.journey-step-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.65;
}

.journey-practical {
  margin-top: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  border: 1px solid rgba(16, 42, 67, 0.09);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(0.6rem);
  backdrop-filter: blur(0.6rem);
}

.journey-practical-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
}

.journey-practical-icon {
  display: inline-grid;
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.75rem;
  color: var(--brand-teal);
  background: var(--brand-aqua);
}

.journey-practical-heading > div {
  display: flex;
  flex-direction: column;
}

.journey-practical-heading > div > span {
  color: var(--brand-teal-dark);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.journey-practical-heading h3 {
  margin: 0.12rem 0 0;
  font-size: 1rem;
}

.journey-info-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.journey-info-item {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 1rem;
}

.journey-info-item:not(:last-child)::after {
  position: absolute;
  top: 18%;
  right: 0;
  width: 1px;
  height: 64%;
  background: var(--border);
  content: "";
}

.journey-info-item > span {
  display: inline-grid;
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.65rem;
  color: var(--brand-teal);
  background: var(--brand-aqua);
  font-size: 0.8rem;
}

.journey-info-item:nth-child(2) > span {
  color: #b4760e;
  background: #fff6df;
}

.journey-info-item:nth-child(3) > span {
  color: var(--brand-green);
  background: #eef5eb;
}

.journey-info-item:nth-child(4) > span {
  color: #77569b;
  background: #f2ecf8;
}

.journey-info-item:nth-child(5) > span {
  color: var(--brand-navy);
  background: #edf2f7;
}

.journey-info-item > div {
  min-width: 0;
}

.journey-info-item strong {
  display: block;
  color: var(--brand-navy);
  font-size: 0.68rem;
  line-height: 1.35;
}

.journey-info-item p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.59rem;
  line-height: 1.55;
}

.upcoming-retreat-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff, var(--brand-ivory));
  scroll-margin-top: 5.5rem;
}

.upcoming-retreat-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(25rem, 0.98fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(8, 127, 120, 0.42), transparent 29rem),
    radial-gradient(circle at 0% 100%, rgba(228, 167, 44, 0.12), transparent 22rem),
    linear-gradient(132deg, #061637, var(--brand-navy) 62%, #0b4a56);
  box-shadow:
    0 1.6rem 4rem rgba(6, 22, 55, 0.22),
    inset 0 1px rgba(255, 255, 255, 0.05);
  isolation: isolate;
}

.upcoming-retreat-panel::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  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: 3rem 3rem;
  content: "";
}

.upcoming-retreat-glow {
  position: absolute;
  z-index: -1;
  top: -13rem;
  left: 36%;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(143, 221, 214, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(143, 221, 214, 0.025),
    0 0 0 8rem rgba(143, 221, 214, 0.018);
}

.upcoming-retreat-intro {
  align-self: center;
  max-width: 39rem;
}

.upcoming-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(143, 221, 214, 0.2);
  border-radius: 999px;
  color: #a9ebe5;
  background: rgba(8, 127, 120, 0.16);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.upcoming-status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 0.12rem solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: #59d4a6;
  box-shadow: 0 0 0 0.25rem rgba(89, 212, 166, 0.12);
  animation: upcoming-status-pulse 2.2s ease-out infinite;
}

.upcoming-eyebrow {
  display: block;
  color: var(--brand-saffron);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.upcoming-retreat-intro h2 {
  max-width: 36rem;
  margin: 0.55rem 0 0.8rem;
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.upcoming-retreat-intro > p {
  max-width: 36rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  line-height: 1.75;
}

.upcoming-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.1rem;
  margin-top: 1.4rem;
}

.upcoming-primary-action {
  --bs-btn-color: #061637;
  --bs-btn-bg: var(--brand-saffron);
  --bs-btn-border-color: var(--brand-saffron);
  --bs-btn-hover-color: #061637;
  --bs-btn-hover-bg: #f1bd52;
  --bs-btn-hover-border-color: #f1bd52;
  box-shadow: 0 0.7rem 1.6rem rgba(228, 167, 44, 0.22);
}

.upcoming-call-action {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #ffffff;
  text-decoration: none;
}

.upcoming-call-action:hover {
  color: #ffffff;
}

.upcoming-call-action > span:first-child {
  display: inline-grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--brand-saffron);
  background: rgba(255, 255, 255, 0.06);
}

.upcoming-call-action > span:last-child {
  display: flex;
  flex-direction: column;
}

.upcoming-call-action small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.56rem;
  font-weight: 700;
}

.upcoming-call-action strong {
  margin-top: 0.05rem;
  color: #ffffff;
  font-size: 0.74rem;
}

.upcoming-retreat-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 0.75rem;
}

.upcoming-detail-card {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  transition:
    border-color var(--transition),
    background-color var(--transition),
    transform var(--transition);
}

.upcoming-detail-card:hover {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-0.12rem);
}

.upcoming-detail-icon {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.7rem;
  color: #8fddd6;
  background: rgba(8, 127, 120, 0.2);
  font-size: 0.85rem;
}

.upcoming-detail-card:nth-child(2) .upcoming-detail-icon {
  color: #f4ca73;
  background: rgba(228, 167, 44, 0.14);
}

.upcoming-detail-card:nth-child(3) .upcoming-detail-icon {
  color: #b9dfad;
  background: rgba(103, 139, 91, 0.17);
}

.upcoming-detail-status .upcoming-detail-icon {
  color: #d5c5ed;
  background: rgba(119, 86, 155, 0.18);
}

.upcoming-detail-card > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.upcoming-detail-card small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.upcoming-detail-card strong {
  margin-top: 0.18rem;
  color: #ffffff;
  font-size: 0.76rem;
}

.upcoming-detail-card div > span {
  margin-top: 0.18rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.58rem;
  line-height: 1.45;
}

@keyframes upcoming-status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(89, 212, 166, 0.35);
  }

  70%,
  100% {
    box-shadow: 0 0 0 0.55rem rgba(89, 212, 166, 0);
  }
}

.evidence-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 94% 12%, rgba(8, 127, 120, 0.08), transparent 24rem),
    #ffffff;
}

.evidence-section::before {
  position: absolute;
  bottom: -14rem;
  left: -13rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(8, 127, 120, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(8, 127, 120, 0.018),
    0 0 0 8rem rgba(228, 167, 44, 0.015);
  content: "";
  pointer-events: none;
}

.evidence-section .container {
  position: relative;
  z-index: 1;
}

.evidence-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.evidence-heading .body-copy {
  max-width: 30rem;
  padding-left: 1rem;
  border-left: 0.16rem solid var(--brand-saffron);
}

.evidence-safety-panel {
  position: sticky;
  top: 6rem;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(8, 127, 120, 0.34), transparent 20rem),
    linear-gradient(145deg, #061637, var(--brand-navy));
  box-shadow: var(--shadow-md);
}

.evidence-safety-panel::after {
  position: absolute;
  right: -5rem;
  bottom: -6rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(228, 167, 44, 0.07);
  content: "";
  pointer-events: none;
}

.evidence-safety-icon {
  display: inline-grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.9rem;
  color: var(--brand-saffron);
  background: rgba(255, 255, 255, 0.07);
  font-size: 1.15rem;
}

.evidence-panel-label {
  display: block;
  margin-top: 1rem;
  color: #8fddd6;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.evidence-safety-panel h3 {
  margin: 0.35rem 0 0.8rem;
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.evidence-safety-statement {
  margin: 0;
  padding: 0.8rem 0.9rem;
  border-left: 0.2rem solid var(--brand-saffron);
  border-radius: 0 0.7rem 0.7rem 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.065);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.65;
}

.evidence-safety-note {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.67rem;
  line-height: 1.6;
}

.evidence-governance {
  position: relative;
  z-index: 1;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.evidence-governance > span {
  color: var(--brand-saffron);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-governance ul {
  display: grid;
  gap: 0.6rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.evidence-governance li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.65rem;
  line-height: 1.5;
}

.evidence-governance li i {
  margin-top: 0.15rem;
  color: #75d4c8;
}

.evidence-approach-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.1rem;
  color: #ffffff;
  font-size: 0.69rem;
  font-weight: 800;
  text-decoration: none;
}

.evidence-approach-link:hover {
  color: var(--brand-saffron);
}

.evidence-content-heading > span {
  color: var(--brand-teal-dark);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.evidence-content-heading h3 {
  margin: 0.25rem 0 0.45rem;
  font-size: 1.25rem;
}

.evidence-content-heading p {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.6;
}

.evidence-modalities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}

.evidence-modality {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  background: #ffffff;
  box-shadow: 0 0.35rem 1rem rgba(16, 42, 67, 0.045);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.evidence-modality:hover {
  border-color: rgba(8, 127, 120, 0.24);
  box-shadow: var(--shadow-sm);
  transform: translateY(-0.12rem);
}

.evidence-modality > span {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.75rem;
  color: var(--brand-teal);
  background: var(--brand-aqua);
}

.evidence-modality:nth-child(2) > span {
  color: #77569b;
  background: #f2ecf8;
}

.evidence-modality:nth-child(3) > span {
  color: var(--brand-green);
  background: #eef5eb;
}

.evidence-modality:nth-child(4) > span {
  color: #b4760e;
  background: #fff6df;
}

.evidence-modality:nth-child(5) > span {
  color: var(--brand-navy);
  background: #edf2f7;
}

.evidence-modality:nth-child(6) > span {
  color: #b04b56;
  background: #fbecef;
}

.evidence-modality > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.evidence-modality strong {
  color: var(--brand-navy);
  font-size: 0.68rem;
  line-height: 1.4;
}

.evidence-modality small {
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1.4;
}

.evidence-guidelines {
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(8, 127, 120, 0.13);
  border-radius: var(--radius-md);
  background: var(--brand-aqua);
  scroll-margin-top: 6rem;
}

.evidence-guidelines-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.evidence-guidelines-heading > div {
  display: flex;
  flex-direction: column;
}

.evidence-guidelines-heading > div > span {
  color: var(--brand-teal-dark);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-guidelines-heading h3 {
  margin: 0.12rem 0 0;
  font-size: 1rem;
}

.evidence-reviewed-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.6rem;
  border: 1px solid rgba(8, 127, 120, 0.14);
  border-radius: 999px;
  color: var(--brand-teal-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.57rem;
  font-weight: 800;
  white-space: nowrap;
}

.evidence-guideline-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.68rem 0;
  border-top: 1px solid rgba(8, 127, 120, 0.12);
  color: var(--brand-navy);
  text-decoration: none;
}

.evidence-guideline-year {
  display: inline-grid;
  width: 2.65rem;
  height: 2.2rem;
  place-items: center;
  border-radius: 0.6rem;
  color: #ffffff;
  background: var(--brand-teal);
  font-size: 0.56rem;
  font-weight: 800;
}

.evidence-guideline-link > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.evidence-guideline-link strong {
  color: var(--brand-navy);
  font-size: 0.65rem;
  line-height: 1.4;
}

.evidence-guideline-link small {
  margin-top: 0.08rem;
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 600;
}

.evidence-guideline-link > i {
  color: var(--brand-teal);
  font-size: 0.7rem;
  transition: transform var(--transition);
}

.evidence-guideline-link:hover > i {
  transform: translate(0.12rem, -0.12rem);
}

.evidence-guideline-scope {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.7rem 0 0;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(8, 127, 120, 0.12);
  color: var(--muted);
  font-size: 0.56rem;
  line-height: 1.55;
}

.evidence-guideline-scope i {
  margin-top: 0.12rem;
  color: var(--brand-saffron);
}

.team-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 10%, rgba(8, 127, 120, 0.09), transparent 24rem),
    linear-gradient(180deg, var(--brand-ivory), #ffffff);
}

.team-section::before {
  position: absolute;
  top: -10rem;
  left: -11rem;
  width: 26rem;
  height: 26rem;
  border: 1px solid rgba(8, 127, 120, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(8, 127, 120, 0.018);
  content: "";
  pointer-events: none;
}

.team-section .container {
  position: relative;
  z-index: 1;
}

.team-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.team-heading .body-copy {
  max-width: 39rem;
}

.team-carousel-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 0.5rem;
}

.team-carousel-button {
  display: inline-grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid rgba(16, 42, 67, 0.14);
  border-radius: 50%;
  color: var(--brand-navy);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.team-carousel-button:hover,
.team-carousel-button:focus-visible {
  border-color: var(--brand-teal);
  color: #ffffff;
  background: var(--brand-teal);
  transform: translateY(-0.1rem);
}

.team-carousel-button.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.team-swiper {
  overflow: visible;
}

.team-card {
  height: auto;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 67, 0.09);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 0.6rem 1.7rem rgba(16, 42, 67, 0.07);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.team-card:hover {
  border-color: rgba(8, 127, 120, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-0.25rem);
}

.team-portrait {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.92), transparent 42%),
    var(--brand-aqua);
}

.team-portrait::after {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(transparent, rgba(6, 22, 55, 0.2));
  content: "";
  pointer-events: none;
}

.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92);
  transition:
    filter 500ms ease,
    transform 500ms ease;
}

.team-card:hover .team-portrait img {
  filter: saturate(1);
  transform: scale(1.035);
}

.team-portrait > span {
  position: absolute;
  z-index: 2;
  right: 0.7rem;
  bottom: 0.7rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(6, 22, 55, 0.82);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(0.4rem);
  backdrop-filter: blur(0.4rem);
}

.team-card-body {
  position: relative;
  display: flex;
  min-height: 13rem;
  flex-direction: column;
  padding: 1rem;
}

.team-card-index {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  color: rgba(16, 42, 67, 0.08);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.team-card h3 {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 2rem);
  margin: 0;
  font-size: 1rem;
}

.team-card-role {
  position: relative;
  z-index: 1;
  min-height: 2.4rem;
  margin: 0.35rem 0 0;
  color: var(--brand-teal-dark);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.45;
}

.team-card-credentials {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.55;
}

.team-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.8rem;
  color: var(--brand-navy);
  font-size: 0.63rem;
  font-weight: 800;
  text-decoration: none;
}

.team-profile-link i {
  color: var(--brand-teal);
  transition: transform var(--transition);
}

.team-profile-link:hover i {
  transform: translateX(0.2rem);
}

.team-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
}

.team-carousel-pagination {
  position: static;
  display: flex;
  width: auto !important;
  align-items: center;
}

.team-carousel-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 600;
}

.team-profile-modal .modal-content {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 1.5rem 4rem rgba(6, 22, 55, 0.28);
}

.team-profile-modal .btn-close {
  position: absolute;
  z-index: 3;
  top: 0.8rem;
  right: 0.8rem;
  padding: 0.65rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.team-modal-layout {
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  min-height: 20rem;
}

.team-modal-portrait {
  overflow: hidden;
  background: var(--brand-aqua);
}

.team-modal-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-modal-copy {
  align-self: center;
  padding: 2rem;
}

.team-modal-copy > span {
  color: var(--brand-teal-dark);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-modal-copy h2 {
  margin: 0.35rem 0;
  font-size: 1.45rem;
}

.team-modal-role {
  margin: 0;
  color: var(--brand-teal-dark);
  font-size: 0.68rem;
  font-weight: 800;
}

.team-modal-credentials {
  margin: 1rem 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.65;
}

.team-modal-copy a {
  display: inline-flex;
  align-items: center;
  color: var(--brand-navy);
  font-size: 0.65rem;
  font-weight: 800;
  text-decoration: none;
}

.partners-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 12%, rgba(34, 197, 188, 0.15), transparent 21rem),
    radial-gradient(circle at 92% 88%, rgba(244, 169, 31, 0.13), transparent 22rem),
    var(--brand-navy);
}

.partners-section::before {
  position: absolute;
  inset: 0;
  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: 3.5rem 3.5rem;
  content: "";
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000000 22%, #000000 78%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000000 22%, #000000 78%, transparent);
}

.partners-section .container {
  position: relative;
  z-index: 1;
}

.partners-section .eyebrow {
  color: var(--brand-gold);
}

.partners-section .section-title,
.partners-section .body-copy {
  color: #ffffff;
}

.partners-section .body-copy {
  max-width: 43rem;
  color: rgba(255, 255, 255, 0.68);
}

.partners-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.partners-carousel-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 0.5rem;
}

.partners-carousel-button {
  display: inline-grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.partners-carousel-button:hover,
.partners-carousel-button:focus-visible {
  border-color: var(--brand-gold);
  color: var(--brand-navy);
  background: var(--brand-gold);
  transform: translateY(-0.1rem);
}

.partners-carousel-button.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.partners-swiper {
  overflow: visible;
}

.partners-group {
  height: auto;
  padding: clamp(1rem, 2.8vw, 1.6rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 1.4rem 3.5rem rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(0.7rem);
  backdrop-filter: blur(0.7rem);
}

.partners-group-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-group-icon {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 0.85rem;
  color: #6ee7df;
  background: rgba(34, 197, 188, 0.13);
}

.partners-group-icon-saffron {
  color: var(--brand-gold);
  background: rgba(244, 169, 31, 0.13);
}

.partners-group-icon-violet {
  color: #d7b8ff;
  background: rgba(170, 108, 230, 0.13);
}

.partners-group-header div > span {
  display: block;
  margin-bottom: 0.15rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partners-group-header h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
}

.partners-group-count {
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.55rem;
  font-weight: 700;
}

.partners-logo-grid,
.partners-advisor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.partners-logo-grid-clinical {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-logo-card,
.partner-advisor-card {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.055);
  transition:
    border-color var(--transition),
    background-color var(--transition),
    transform var(--transition);
}

.partner-logo-card:hover,
.partner-advisor-card:hover {
  border-color: rgba(110, 231, 223, 0.32);
  background: rgba(255, 255, 255, 0.085);
  transform: translateY(-0.12rem);
}

.partner-logo-frame,
.partner-logo-placeholder,
.partner-advisor-mark {
  display: inline-grid;
  width: 3.7rem;
  height: 3.7rem;
  flex: 0 0 3.7rem;
  place-items: center;
  overflow: hidden;
  border-radius: 0.8rem;
  background: #ffffff;
}

.partner-logo-frame img {
  width: 100%;
  height: 100%;
  padding: 0.3rem;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.partner-logo-frame-wide img {
  padding: 0.2rem;
}

.partner-logo-placeholder,
.partner-advisor-mark {
  color: var(--brand-navy);
  background:
    radial-gradient(circle at 30% 20%, #ffffff, #dff5f2);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
}

.partner-advisor-mark {
  border-radius: 50%;
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--brand-teal), #15546b);
  box-shadow: inset 0 0 0 0.25rem rgba(255, 255, 255, 0.12);
}

.partner-logo-card > div:last-child,
.partner-advisor-card > div {
  min-width: 0;
}

.partner-logo-card strong,
.partner-advisor-card strong {
  display: block;
  color: #ffffff;
  font-size: 0.65rem;
  line-height: 1.35;
}

.partner-logo-card small,
.partner-advisor-card small {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.54rem;
  line-height: 1.45;
}

.partners-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
}

.partners-carousel-pagination {
  position: static;
  display: flex;
  width: auto !important;
  align-items: center;
}

.partners-section .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.42);
}

.partners-section .swiper-pagination-bullet-active {
  background: var(--brand-gold);
}

.partners-carousel-footer p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 39rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.55rem;
  line-height: 1.5;
}

.partners-carousel-footer i {
  color: var(--brand-gold);
}

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(8, 127, 120, 0.08), transparent 20rem),
    radial-gradient(circle at 92% 84%, rgba(244, 169, 31, 0.09), transparent 22rem),
    linear-gradient(180deg, #ffffff, var(--brand-ivory));
}

.faq-section::before {
  position: absolute;
  top: 5rem;
  right: -8rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(8, 127, 120, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 3.5rem rgba(8, 127, 120, 0.025),
    0 0 0 7rem rgba(8, 127, 120, 0.015);
  content: "";
  pointer-events: none;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-heading {
  max-width: 42rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.faq-accordion {
  max-width: 58rem;
  margin-inline: auto;
}

.faq-accordion .accordion-item {
  overflow: hidden;
  margin-bottom: 0.65rem;
  border: 1px solid rgba(16, 42, 67, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0.45rem 1.25rem rgba(16, 42, 67, 0.045);
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-button {
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  color: var(--brand-navy);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.4;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--brand-teal-dark);
  background:
    linear-gradient(90deg, rgba(8, 127, 120, 0.09), rgba(8, 127, 120, 0.025));
}

.faq-accordion .accordion-button:focus {
  z-index: 2;
  border-color: transparent;
  box-shadow: inset 0 0 0 0.13rem rgba(8, 127, 120, 0.22);
}

.faq-accordion .accordion-button::after {
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 1.8rem;
  margin-left: auto;
  border-radius: 50%;
  background-color: rgba(8, 127, 120, 0.08);
  background-position: center;
  background-size: 0.68rem;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  background-color: rgba(8, 127, 120, 0.13);
}

.faq-number {
  display: inline-grid;
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 1.9rem;
  place-items: center;
  border-radius: 0.55rem;
  color: var(--brand-teal-dark);
  background: var(--brand-aqua);
  font-size: 0.52rem;
  font-weight: 900;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-number {
  color: #ffffff;
  background: var(--brand-teal);
}

.faq-accordion .accordion-body {
  padding: 0.2rem 1rem 1rem 3.7rem;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.7;
}

.faq-accordion .accordion-body a {
  color: var(--brand-teal-dark);
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.15em;
}

.faq-support {
  display: grid;
  max-width: 58rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  margin: 1rem auto 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.faq-support-icon {
  display: inline-grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 0.8rem;
  color: var(--brand-saffron);
  background: var(--brand-saffron-soft);
}

.faq-support strong {
  display: block;
  color: var(--brand-navy);
  font-size: 0.7rem;
}

.faq-support p {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.58rem;
}

.faq-support .btn {
  min-height: 2.65rem;
  padding-inline: 1rem;
  font-size: 0.62rem;
}

.final-cta-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.7rem, 5vw, 4.25rem);
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 20%, rgba(8, 127, 120, 0.25), transparent 24rem),
    linear-gradient(115deg, #061637 0%, #082849 60%, #0b3d52 100%);
}

.final-cta-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.035) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(255, 255, 255, 0.035) 50%, transparent 50.2%);
  background-size: 4.5rem 4.5rem;
  content: "";
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle at center, #000000, transparent 72%);
  mask-image: radial-gradient(circle at center, #000000, transparent 72%);
}

.final-cta-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(1.5rem, 4vw, 2.7rem);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    0 1.5rem 4rem rgba(0, 0, 0, 0.16),
    inset 0 1px rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(0.65rem);
  backdrop-filter: blur(0.65rem);
}

.final-cta-content,
.final-cta-actions {
  position: relative;
  z-index: 2;
}

.final-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-gold);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.final-cta-content h2 {
  max-width: 40rem;
  margin: 0.65rem 0 0;
  color: #ffffff;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.16;
}

.final-cta-content p {
  max-width: 35rem;
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.7rem;
  line-height: 1.65;
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.final-cta-buttons .btn {
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 850;
}

.final-cta-primary {
  --bs-btn-color: #061637;
  --bs-btn-bg: var(--brand-gold);
  --bs-btn-border-color: var(--brand-gold);
  --bs-btn-hover-color: #061637;
  --bs-btn-hover-bg: #ffc34d;
  --bs-btn-hover-border-color: #ffc34d;
  --bs-btn-active-color: #061637;
  --bs-btn-active-bg: #e99b0e;
  --bs-btn-active-border-color: #e99b0e;
  border-color: var(--brand-gold);
  color: #061637;
  background-color: var(--brand-gold);
  box-shadow: 0 0.8rem 1.8rem rgba(244, 169, 31, 0.16);
}

.final-cta-primary:hover,
.final-cta-primary:focus-visible {
  border-color: #ffd36e;
  color: #061637;
  background-color: #ffd36e;
  transform: translateY(-0.1rem);
}

.final-cta-primary:active {
  border-color: #e99b0e;
  color: #061637;
  background-color: #e99b0e;
}

.final-cta-secondary {
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

.final-cta-secondary:hover,
.final-cta-secondary:focus-visible {
  border-color: #ffffff;
  color: var(--brand-navy);
  background: #ffffff;
  transform: translateY(-0.1rem);
}

.final-cta-contact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.final-cta-contact a {
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 850;
  text-decoration: none;
}

.final-cta-contact > span {
  width: 0.25rem;
  height: 0.25rem;
  flex: 0 0 0.25rem;
  border-radius: 50%;
  background: var(--brand-gold);
}

.final-cta-contact small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.52rem;
  line-height: 1.45;
}

.final-cta-orbit {
  position: absolute;
  border: 1px solid rgba(110, 231, 223, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-orbit-one {
  top: -7rem;
  right: -5rem;
  width: 18rem;
  height: 18rem;
}

.final-cta-orbit-two {
  right: 2rem;
  bottom: -9rem;
  width: 15rem;
  height: 15rem;
  border-color: rgba(244, 169, 31, 0.1);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2.6rem, 5vw, 4rem);
  color: rgba(255, 255, 255, 0.68);
  background:
    radial-gradient(circle at 8% 0%, rgba(8, 127, 120, 0.12), transparent 23rem),
    #030e22;
}

.site-footer::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 169, 31, 0.7), transparent);
  content: "";
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(15rem, 1.35fr) 0.7fr 0.85fr minmax(16rem, 1.2fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-bottom: 2rem;
}

.footer-brand > a {
  display: inline-flex;
  overflow: hidden;
  max-width: 18rem;
  border-radius: 0.35rem;
}

.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-brand p {
  max-width: 27rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.62rem;
  line-height: 1.7;
}

.footer-brand-note {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
  color: var(--brand-gold);
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column h2 {
  margin: 0 0 0.85rem;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li,
.footer-column a {
  font-size: 0.58rem;
  line-height: 1.5;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition:
    color var(--transition),
    transform var(--transition);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #ffffff;
}

.footer-contact address {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  font-style: normal;
}

.footer-contact address > a,
.footer-contact address > div {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.57rem;
  line-height: 1.55;
}

.footer-contact address > a > span:first-child,
.footer-contact address > div > span:first-child {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.6rem;
  color: var(--brand-gold);
  background: rgba(255, 255, 255, 0.045);
}

.footer-contact small {
  display: block;
  margin-bottom: 0.1rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-safety {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
}

.footer-safety > span {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 0.7rem;
  color: #6ee7df;
  background: rgba(34, 197, 188, 0.11);
}

.footer-safety p {
  margin: 0;
  color: rgba(255, 255, 255, 0.49);
  font-size: 0.54rem;
  line-height: 1.55;
}

.footer-safety strong {
  color: rgba(255, 255, 255, 0.82);
}

.footer-safety a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--brand-gold);
  font-size: 0.54rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-block: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.5rem;
}

.footer-bottom > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.5rem;
  text-decoration: none;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #ffffff;
}

.footer-back-top {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

@keyframes snj-wheel-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes hero-orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes hero-aura-spin {
  to {
    transform: rotate(-360deg);
  }
}

.swiper-button-next,
.swiper-button-prev {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--brand-navy);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 0.9rem;
  font-weight: 800;
}

.swiper-pagination-bullet {
  width: 0.65rem;
  height: 0.65rem;
  background: var(--muted);
  opacity: 0.35;
}

.swiper-pagination-bullet-active {
  width: 1.75rem;
  border-radius: 999px;
  background: var(--brand-teal);
  opacity: 1;
}

@media (min-width: 1200px) {
  .container {
    --bs-gutter-x: 2rem;
    max-width: 82.5rem;
  }
}

@media (max-width: 1199.98px) {
  .site-brand {
    max-width: 11.5rem;
  }

  .site-brand-mark {
    width: 11.5rem;
    height: 3.1rem;
  }

  .site-navbar .nav-link {
    padding-inline: 0.5rem;
    font-size: 0.75rem;
  }

  .site-navbar .nav-link::after {
    right: 0.5rem;
    left: 0.5rem;
  }

  .site-brand-copy small {
    max-width: 14rem;
  }

  .hero-title {
    font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  }

  .hero-dimension {
    min-width: 7.75rem;
    padding: 0.5rem 0.65rem;
  }

  .hero-visual {
    transform: translateX(-0.75rem);
  }

  .snj-wheel-experience {
    --wheel-size: 30rem;
  }

  .snj-wheel-node {
    --wheel-radius: 11.6rem;
    width: 6.7rem;
  }

  .snj-wheel-node-inner {
    font-size: 0.6rem;
  }

  .journey-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .journey-info-item:nth-child(3)::after,
  .journey-info-item:last-child::after {
    display: none;
  }

  .journey-info-item:nth-child(-n + 3) {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 991.98px) {
  .announcement-bar-inner {
    min-height: 2.3rem;
  }

  .announcement-message-extra {
    display: none;
  }

  .site-navbar {
    --navbar-height: 4.25rem;
  }

  .navbar-spacer {
    height: 4.25rem;
  }

  .hero-section {
    min-height: auto;
    padding-top: 2.75rem;
  }

  .hero-section::before {
    opacity: 0.42;
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0%,
      transparent 40%,
      #000000 72%,
      #000000 100%
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0%,
      transparent 40%,
      #000000 72%,
      #000000 100%
    );
  }

  .hero-section::after {
    top: 35%;
    right: -38%;
    width: 118vw;
    height: 75%;
    border-radius: 50% 0 0;
    opacity: 0.7;
  }

  .hero-content {
    max-width: 48rem;
    margin-inline: auto;
    text-align: center;
  }

  .hero-initiative-label {
    justify-content: center;
  }

  .hero-programme-name,
  .hero-actions,
  .hero-audience {
    justify-content: center;
  }

  .hero-title,
  .hero-description,
  .hero-safety-note {
    margin-inline: auto;
  }

  .hero-safety-note {
    justify-content: center;
    text-align: left;
  }

  .hero-visual {
    width: min(100%, 27rem);
    margin-top: 0.5rem;
    transform: none;
  }

  .trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .trust-item {
    padding: 0.7rem 0.8rem;
  }

  .trust-item:first-child {
    padding-left: 0.8rem;
  }

  .trust-item:last-child {
    padding-right: 0.8rem;
  }

  .about-content {
    max-width: 44rem;
  }

  .about-image-card {
    max-width: 44rem;
    margin: 0.5rem auto 0;
  }

  .snj-wheel-experience {
    --wheel-size: 31rem;
  }

  .snj-wheel-detail {
    max-width: 40rem;
    margin-inline: auto;
  }

  .snj-wheel-node {
    --wheel-radius: 12rem;
    width: 6.8rem;
  }

  .purpose-heading {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .purpose-heading .body-copy {
    max-width: 38rem;
  }

  .purpose-card {
    min-height: 21rem;
  }

  .purpose-values {
    grid-template-columns: 1fr;
  }

  .purpose-values li {
    padding: 0.75rem 0;
  }

  .purpose-values li:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
  }

  .journey-heading {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .journey-heading .body-copy {
    max-width: 38rem;
  }

  .journey-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1rem;
  }

  .journey-timeline::before {
    display: none;
  }

  .journey-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.75rem;
  }

  .journey-step-marker {
    width: 3.6rem;
    height: 3.6rem;
    margin-bottom: 0;
  }

  .upcoming-retreat-panel {
    grid-template-columns: 1fr;
  }

  .upcoming-retreat-intro {
    max-width: 44rem;
  }

  .upcoming-retreat-details {
    max-width: 44rem;
  }

  .evidence-heading {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .evidence-heading .body-copy {
    max-width: 40rem;
  }

  .evidence-safety-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 767.98px) {
  :root {
    --section-space: 3rem;
  }

  body {
    line-height: 1.65;
  }

  .display-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .btn {
    --bs-btn-padding-x: 1.2rem;
    width: 100%;
  }

  .colour-swatch {
    min-height: 7.25rem;
  }

  .hero-section {
    padding-block: 2.5rem 1rem;
  }

  .hero-initiative-label {
    border-radius: var(--radius-sm);
  }

  .hero-programme-name {
    flex-direction: column;
    gap: 0.2rem;
  }

  .hero-programme-name span {
    gap: 0;
  }

  .hero-programme-name span::before {
    display: none;
  }

  .hero-title {
    font-size: clamp(1.85rem, 7.5vw, 2.5rem);
  }

  .hero-description {
    font-size: 0.94rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-audience {
    max-width: 28rem;
    margin-inline: auto;
    gap: 0.5rem 0.9rem;
  }

  .hero-visual {
    width: min(100%, 24rem);
  }

  .hero-dimension {
    min-width: 7.7rem;
  }

  .hero-dimension-icon {
    width: 2rem;
    height: 2rem;
  }

  .hero-free-badge {
    top: 47%;
    right: 0;
  }

  .hero-footnote {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-footnote > a {
    justify-content: space-between;
    padding-top: 0.9rem;
    border-top: 1px solid var(--border);
  }

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

  .purpose-card {
    min-height: auto;
  }

  .purpose-card-focus {
    margin-top: 0;
  }

  .journey-timeline {
    grid-template-columns: 1fr;
  }

  .journey-info-grid {
    grid-template-columns: 1fr;
  }

  .journey-info-item,
  .journey-info-item:nth-child(-n + 3) {
    border-bottom: 1px solid var(--border);
  }

  .journey-info-item:last-child {
    border-bottom: 0;
  }

  .journey-info-item::after {
    display: none;
  }

  .team-heading {
    align-items: center;
  }

  .team-modal-layout {
    grid-template-columns: 10rem minmax(0, 1fr);
    min-height: 18rem;
  }

  .team-modal-copy {
    padding: 1.5rem;
  }

  .partners-logo-grid,
  .partners-logo-grid-clinical,
  .partners-advisor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta-panel {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .announcement-message {
    max-width: calc(100vw - 7rem);
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .announcement-contact {
    margin-left: auto;
  }

  .announcement-contact a span {
    display: none;
  }

  .announcement-contact a {
    display: inline-grid;
    width: 1.8rem;
    height: 1.8rem;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
  }

  .site-brand {
    max-width: calc(100vw - 8.5rem);
    gap: 0.6rem;
  }

  .site-brand-mark {
    width: min(11rem, calc(100vw - 9rem));
    height: 2.8rem;
  }

  .site-brand-copy strong {
    font-size: 0.92rem;
  }

  .site-brand-copy > span {
    font-size: 0.68rem;
  }

  .site-brand-copy small {
    display: none;
  }

  .hero-initiative-label {
    font-size: 0.66rem;
  }

  .hero-audience {
    justify-content: flex-start;
    text-align: left;
  }

  .hero-visual {
    min-height: 19rem;
    aspect-ratio: auto;
  }

  .hero-visual::before {
    inset: 12% 5%;
  }

  .hero-orbit-outer {
    inset: 11% 4%;
  }

  .hero-orbit-inner {
    inset: 24% 17%;
  }

  .hero-core {
    width: 47%;
  }

  .hero-dimension {
    min-width: 0;
    gap: 0.45rem;
    padding: 0.5rem 0.6rem;
  }

  .hero-dimension-body {
    top: 7%;
    left: 0;
  }

  .hero-dimension-mind {
    top: 9%;
    right: 0;
  }

  .hero-dimension-intelligence {
    bottom: 8%;
    left: 0;
  }

  .hero-dimension-soul {
    right: 0;
    bottom: 6%;
  }

  .hero-free-badge {
    top: 52%;
    right: -0.25rem;
    padding: 0.55rem 0.7rem;
  }

  .hero-free-badge strong {
    font-size: 0.62rem;
  }

  .trust-list {
    gap: 0.5rem;
    padding: 0.7rem 0;
  }

  .trust-item {
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.65rem 0.55rem;
    border-radius: 0.75rem;
  }

  .trust-item:first-child,
  .trust-item:last-child {
    padding-inline: 0.55rem;
  }

  .trust-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.65rem;
    font-size: 0.82rem;
  }

  .trust-copy strong {
    font-size: 0.72rem;
    white-space: normal;
  }

  .trust-copy small {
    font-size: 0.61rem;
    white-space: normal;
  }

  .about-principles small {
    line-height: 1.4;
  }

  .about-actions {
    display: grid;
  }

  .about-actions .btn {
    width: 100%;
  }

  .about-actions .text-link {
    justify-content: center;
  }

  .about-image-frame {
    border-radius: var(--radius-md);
  }

  .about-image-card figcaption {
    margin-left: 0.25rem;
  }

  .snj-wheel-heading {
    margin-bottom: 1rem;
  }

  .snj-wheel-experience {
    --wheel-size: min(100%, 22rem);
  }

  .snj-wheel-stage {
    width: var(--wheel-size);
  }

  .snj-wheel-node {
    --wheel-radius: clamp(7.8rem, 38vw, 8.5rem);
    width: 2.7rem;
  }

  .snj-wheel-node-inner {
    width: 2.7rem;
    min-height: 2.7rem;
    padding: 0;
    border-radius: 50%;
  }

  .snj-wheel-node-inner > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .snj-wheel-node i {
    font-size: 0.82rem;
  }

  .snj-wheel-centre {
    width: 39%;
    border-width: 0.3rem;
  }

  .snj-wheel-centre strong {
    font-size: 0.58rem;
  }

  .snj-wheel-centre small {
    font-size: 0.36rem;
  }

  .snj-wheel-spinner::before,
  .snj-wheel-spinner::after {
    width: 0.75rem;
    height: 0.75rem;
    border-width: 0.16rem;
  }

  .snj-detail-description {
    min-height: 0;
  }

  .snj-detail-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .snj-wheel-controls {
    align-self: flex-end;
  }

  .journey-step {
    gap: 0.6rem;
  }

  .journey-step-marker {
    width: 3.25rem;
    height: 3.25rem;
    border-width: 0.28rem;
  }

  .journey-practical {
    border-radius: var(--radius-md);
  }

  .upcoming-retreat-panel {
    padding: 1.25rem;
    border-radius: var(--radius-md);
  }

  .upcoming-retreat-intro {
    text-align: center;
  }

  .upcoming-status,
  .upcoming-actions {
    justify-content: center;
  }

  .upcoming-actions {
    display: grid;
  }

  .upcoming-primary-action {
    width: 100%;
  }

  .upcoming-call-action {
    justify-content: center;
  }

  .upcoming-retreat-details {
    grid-template-columns: 1fr;
  }

  .upcoming-retreat-glow {
    left: 25%;
  }

  .upcoming-status-dot {
    animation: none;
  }

  .evidence-safety-panel {
    border-radius: var(--radius-md);
  }

  .evidence-modalities {
    grid-template-columns: 1fr;
  }

  .evidence-guidelines-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .evidence-guideline-link {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .evidence-guideline-link > i {
    display: none;
  }

  .team-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .team-carousel-controls {
    align-self: flex-end;
  }

  .team-carousel-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-card-body {
    min-height: 12.5rem;
  }

  .team-profile-modal {
    padding-inline: 0.5rem;
  }

  .team-profile-modal .modal-content {
    border-radius: var(--radius-md);
  }

  .team-modal-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .team-modal-portrait {
    height: 12rem;
  }

  .team-modal-copy {
    padding: 1.25rem;
  }

  .team-modal-copy h2 {
    font-size: 1.2rem;
  }

  .partners-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .partners-carousel-controls {
    align-self: flex-end;
  }

  .partners-group {
    border-radius: var(--radius-md);
  }

  .partners-group-header {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .partners-group-count {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .partners-logo-grid,
  .partners-logo-grid-clinical,
  .partners-advisor-grid {
    grid-template-columns: 1fr;
  }

  .partners-carousel-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-accordion .accordion-button {
    gap: 0.6rem;
    padding: 0.8rem;
    font-size: 0.7rem;
  }

  .faq-accordion .accordion-body {
    padding: 0.15rem 0.8rem 0.9rem;
  }

  .faq-support {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .faq-support .btn {
    width: 100%;
    grid-column: 1 / -1;
  }

  .final-cta-panel {
    padding: 1.25rem;
    border-radius: var(--radius-md);
  }

  .final-cta-content h2 {
    font-size: 1.35rem;
  }

  .final-cta-buttons {
    display: grid;
  }

  .final-cta-buttons .btn {
    width: 100%;
  }

  .final-cta-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
  }

  .final-cta-contact > span {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .footer-brand > a {
    max-width: 15rem;
  }

  .footer-safety {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .footer-safety > a {
    grid-column: 2;
    justify-self: start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom > div {
    justify-content: flex-start;
  }
}

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

  .reveal-ready .scroll-reveal,
  .reveal-ready .scroll-reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-visual::before,
  .hero-orbit,
  .snj-wheel-spinner,
  .upcoming-status-dot {
    animation: none !important;
  }
}
