:root {
  --home-purple-950: #1f0a38;
  --home-purple-900: #2e0b55;
  --home-purple-800: #43127a;
  --home-purple-700: #5f28a6;
  --home-purple-500: #8d5bd0;
  --home-purple-100: #eee5fb;
  --home-purple-50: #f8f4fd;
  --home-teal-700: #067b77;
  --home-teal-600: #078f89;
  --home-teal-500: #12aaa3;
  --home-teal-400: #28c8be;
  --home-teal-100: #d8f5f2;
  --home-gold: #f4bd32;
  --home-ink: #171126;
  --home-copy: #565064;
  --home-muted: #716b7b;
  --home-surface: #ffffff;
  --home-canvas: #fbf9fd;
  --home-line: rgba(46, 11, 85, 0.1);
  --home-line-strong: rgba(46, 11, 85, 0.16);
  --home-shadow-sm: 0 12px 30px rgba(39, 17, 63, 0.08);
  --home-shadow-md: 0 22px 56px rgba(39, 17, 63, 0.12);
  --home-shadow-lg: 0 32px 84px rgba(39, 17, 63, 0.16);
  --home-radius-sm: 16px;
  --home-radius-md: 24px;
  --home-radius-lg: 34px;
  --home-container: 1240px;
  --home-ease: cubic-bezier(0.2, 0.72, 0.24, 1);
}

html {
  scroll-behavior: smooth;
}

.home-page {
  overflow-x: hidden;
  background: var(--home-canvas);
  color: var(--home-ink);
}

.home-main {
  padding-top: 108px;
  overflow: clip;
  font-family: "Inter", sans-serif;
}

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

.home-container {
  width: min(calc(100% - 48px), var(--home-container));
  margin-inline: auto;
}

.home-section {
  position: relative;
  padding: clamp(86px, 8vw, 120px) 0;
}

.home-eyebrow,
.section-label {
  margin: 0;
  color: var(--home-teal-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--home-teal-500), var(--home-purple-700));
  content: "";
}

.section-copy h2,
.home-section-heading h2,
.recognition-panel h2,
.final-cta h2 {
  margin: 14px 0 18px;
  color: var(--home-ink);
  font-family: "Poppins", sans-serif;
  font-size: clamp(40px, 4.2vw, 60px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.home-section-heading {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.home-section-heading .section-label {
  justify-content: center;
}

.home-section-heading > p:not(.section-label) {
  max-width: 660px;
  margin: 0 auto;
  color: var(--home-copy);
  font-size: 17px;
  line-height: 1.75;
}

/* Hero */
.home-hero {
  position: relative;
  isolation: isolate;
  min-height: min(810px, calc(100svh - 92px));
  padding: clamp(58px, 6vw, 88px) 0 132px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 7% 14%, rgba(141, 91, 208, 0.15), transparent 25%),
    radial-gradient(circle at 92% 20%, rgba(244, 189, 50, 0.1), transparent 19%),
    radial-gradient(circle at 88% 84%, rgba(18, 170, 163, 0.16), transparent 29%),
    linear-gradient(145deg, #ffffff 0%, #ffffff 54%, #f8f5fc 100%);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(46, 11, 85, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 11, 85, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
  content: "";
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(52px, 6vw, 84px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero-live-pill {
  width: fit-content;
  margin-bottom: 16px;
  padding: 10px 15px;
  border: 1px solid rgba(7, 143, 137, 0.18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--home-teal-700);
  box-shadow: 0 10px 28px rgba(39, 17, 63, 0.06);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  backdrop-filter: blur(10px);
}

.hero-live-dot,
.hero-class-status span {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #22c55e;
  animation: livePulse 1.9s ease-out infinite;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 15px 0 24px;
  color: #101025;
  font-family: "Poppins", sans-serif;
  font-size: clamp(58px, 5.4vw, 84px);
  font-weight: 700;
  line-height: 0.99;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.word-purple,
.word-teal {
  position: relative;
  display: inline-block;
}

.word-purple {
  color: var(--home-purple-700);
}

.word-teal {
  color: var(--home-teal-500);
}

.word-teal::after {
  position: absolute;
  right: 0;
  bottom: -0.1em;
  left: 0;
  height: 0.09em;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--home-teal-500), #71e5dc);
  transform-origin: left;
  animation: underlineDraw 0.9s 0.45s var(--home-ease) both;
  content: "";
}

.hero-intro {
  max-width: 630px;
  margin: 0;
  color: var(--home-copy);
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.72;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.home-btn {
  position: relative;
  isolation: isolate;
  min-height: 56px;
  padding: 0 24px;
  overflow: hidden;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.24s var(--home-ease),
    box-shadow 0.24s ease,
    background-color 0.24s ease;
  touch-action: manipulation;
}

.home-btn::before {
  position: absolute;
  inset: -70% auto -70% -35%;
  z-index: -1;
  width: 31%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  transform: translateX(-230%) rotate(17deg);
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  content: "";
}

.home-btn:hover {
  transform: translateY(-3px);
}

.home-btn:hover::before {
  transform: translateX(540%) rotate(17deg);
}

.home-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--home-purple-900), var(--home-purple-700));
  box-shadow: 0 16px 34px rgba(67, 18, 122, 0.24);
}

.home-btn-secondary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--home-teal-700), var(--home-teal-500));
  box-shadow: 0 16px 34px rgba(7, 143, 137, 0.22);
}

.home-btn:focus-visible,
.subject-card:focus-visible {
  outline: 3px solid rgba(244, 189, 50, 0.95);
  outline-offset: 4px;
}

.hero-trust {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.hero-trust span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5f5969;
  font-size: 13px;
  font-weight: 600;
}

.hero-trust i {
  color: var(--home-teal-600);
}

.hero-media {
  position: relative;
  min-width: 0;
  min-height: 570px;
  perspective: 1100px;
}

.hero-photo-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 558px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.94);
  border-radius: 38px;
  background: #ffffff;
  box-shadow:
    0 32px 82px rgba(39, 17, 63, 0.17),
    0 0 0 1px rgba(67, 18, 122, 0.07);
  transform-style: preserve-3d;
  transition: transform 0.24s ease-out, box-shadow 0.3s ease;
  will-change: transform;
}

.hero-photo-wrap::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 32%, transparent 72%, rgba(67, 18, 122, 0.08));
  content: "";
}

.hero-photo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-photo-glow {
  position: absolute;
  inset: -52%;
  z-index: 0;
  background: conic-gradient(from 0deg, transparent, rgba(18, 170, 163, 0.2), transparent, rgba(141, 91, 208, 0.2), transparent);
  animation: photoGlowSpin 16s linear infinite;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(141, 91, 208, 0.12);
  box-shadow: inset 0 0 0 1px rgba(67, 18, 122, 0.05);
  animation: orbBreathe 6s ease-in-out infinite;
}

.hero-orb-a {
  width: 220px;
  height: 220px;
  top: -26px;
  left: -52px;
}

.hero-orb-b {
  width: 178px;
  height: 178px;
  top: 70px;
  right: -38px;
  animation-delay: 1.1s;
}

.hero-orb-c {
  width: 240px;
  height: 240px;
  right: 26px;
  bottom: -18px;
  animation-delay: 2s;
}

.hero-chip,
.hero-rating-badge,
.hero-class-status {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(67, 18, 122, 0.08);
  background: rgba(255, 255, 255, 0.94);
  color: var(--home-purple-900);
  box-shadow: var(--home-shadow-sm);
  backdrop-filter: blur(12px);
}

.hero-chip {
  min-height: 50px;
  padding: 0 17px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  animation: chipFloat 5s ease-in-out infinite;
}

.hero-chip i {
  color: var(--home-teal-600);
}

.chip-expert {
  top: 38px;
  left: -24px;
}

.chip-live {
  top: 180px;
  right: -24px;
  animation-delay: 0.8s;
}

.chip-group {
  bottom: 72px;
  left: -24px;
  animation-delay: 1.5s;
}

.chip-age {
  right: 24px;
  bottom: -1px;
  animation-delay: 2.1s;
}

.hero-rating-badge {
  top: 18px;
  right: 18px;
  padding: 12px 15px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero-rating-badge strong {
  font-size: 18px;
  line-height: 1;
}

.hero-rating-badge span {
  color: var(--home-muted);
  font-size: 10px;
}

.hero-class-status {
  bottom: 18px;
  left: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient-star,
.ambient-dot,
.ambient-swoop {
  position: absolute;
  display: block;
}

.ambient-star {
  width: 18px;
  aspect-ratio: 1;
  background: var(--home-gold);
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  filter: drop-shadow(0 8px 12px rgba(244, 189, 50, 0.24));
  animation: heroTwinkle 3.8s ease-in-out infinite;
}

.star-a {
  top: 20%;
  left: 4.5%;
}

.star-b {
  top: 17%;
  right: 4%;
  animation-delay: 0.9s;
}

.star-c {
  bottom: 10%;
  left: 46%;
  animation-delay: 1.7s;
}

.ambient-dot {
  border-radius: 50%;
  background: rgba(141, 91, 208, 0.23);
  animation: ambientDrift 7s ease-in-out infinite;
}

.dot-a {
  bottom: 26%;
  left: 2.6%;
  width: 14px;
  height: 14px;
}

.dot-b {
  right: 3%;
  bottom: 37%;
  width: 10px;
  height: 10px;
  background: rgba(18, 170, 163, 0.3);
  animation-delay: 1.8s;
}

.ambient-swoop {
  width: 170px;
  height: 170px;
  border: 18px solid rgba(141, 91, 208, 0.08);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  animation: swoopRotate 18s linear infinite;
}

.swoop-a {
  bottom: -72px;
  left: -105px;
}

.swoop-b {
  top: 3%;
  right: -95px;
  border-color: rgba(18, 170, 163, 0.08);
  border-top-color: transparent;
  border-right-color: transparent;
  animation-direction: reverse;
}

/* Benefit dock */
.home-benefits {
  position: relative;
  z-index: 5;
  margin-top: -78px;
  padding: 0 0 96px;
}

.benefit-grid {
  padding: 18px;
  border: 1px solid rgba(67, 18, 122, 0.08);
  border-radius: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--home-shadow-lg);
  backdrop-filter: blur(16px);
}

.benefit-card {
  position: relative;
  min-width: 0;
  min-height: 150px;
  padding: 24px 22px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  column-gap: 15px;
  align-content: center;
  text-align: left;
}

.benefit-card:not(:last-child)::after {
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 24px;
  width: 1px;
  background: var(--home-line);
  content: "";
}

.benefit-icon {
  grid-row: 1 / span 2;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 19px;
  box-shadow: 0 10px 24px rgba(67, 18, 122, 0.15);
}

.benefit-icon-purple {
  background: linear-gradient(145deg, var(--home-purple-900), var(--home-purple-500));
}

.benefit-icon-teal {
  background: linear-gradient(145deg, var(--home-teal-700), var(--home-teal-400));
}

.benefit-card h2 {
  margin: 0 0 8px;
  color: var(--home-ink);
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.benefit-card p {
  margin: 0;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.55;
}

.benefits-wave-divider {
  position: relative;
  z-index: 3;
  width: 100%;
  height: clamp(86px, 7.5vw, 120px);
  margin-top: clamp(-52px, -3.5vw, -38px);
  margin-bottom: -2px;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  scroll-margin-top: 180px;
}

.benefits-wave-divider svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 -10px 20px rgba(39, 17, 63, 0.045));
}

.benefits-wave-fill {
  fill: url(#benefitsWaveFill);
}

.benefits-wave-edge {
  fill: none;
  stroke: rgba(18, 170, 163, 0.13);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

@media (max-width: 620px) {
  .benefits-wave-divider {
    height: 78px;
    margin-top: -32px;
  }

  .benefits-wave-edge {
    stroke-width: 1;
  }
}

/* Purpose */
.home-purpose {
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 18%, rgba(18, 170, 163, 0.08), transparent 22%),
    linear-gradient(180deg, #fbf9fd 0%, #ffffff 100%);
}

.purpose-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(60px, 7vw, 96px);
  align-items: center;
}

.section-copy > p:not(.section-label) {
  max-width: 610px;
  margin: 0 0 14px;
  color: var(--home-copy);
  font-size: 17px;
  line-height: 1.75;
}

.check-list {
  margin: 27px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #433b4c;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
}

.check-list i {
  margin-top: 3px;
  color: var(--home-teal-600);
}

.section-button {
  margin-top: 28px;
}

.purpose-image {
  position: relative;
  isolation: isolate;
  min-height: 570px;
}

.purpose-image::before {
  position: absolute;
  inset: 34px -24px -24px 34px;
  z-index: -1;
  border-radius: 40px;
  background: linear-gradient(145deg, var(--home-purple-100), var(--home-teal-100));
  content: "";
}

.purpose-image > img {
  width: 100%;
  height: 570px;
  border-radius: 36px;
  object-fit: cover;
  box-shadow: var(--home-shadow-md);
}

.purpose-proof {
  position: absolute;
  z-index: 2;
  min-width: 154px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  display: grid;
  gap: 3px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--home-shadow-sm);
  backdrop-filter: blur(12px);
}

.purpose-proof strong {
  color: var(--home-purple-800);
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  line-height: 1;
}

.purpose-proof span {
  color: var(--home-muted);
  font-size: 11px;
  font-weight: 700;
}

.purpose-proof-rating {
  top: 26px;
  right: -22px;
}

.purpose-proof-subjects {
  bottom: 28px;
  left: -28px;
}

/* Process */
.home-process {
  background: #ffffff;
}

.process-grid {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.process-track {
  position: absolute;
  top: 53px;
  right: 8%;
  left: 8%;
  z-index: -1;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--home-purple-500), var(--home-teal-400), var(--home-purple-500));
  background-size: 220% 100%;
  opacity: 0.28;
  animation: processFlow 6s linear infinite;
}

.process-card {
  position: relative;
  min-width: 0;
  min-height: 235px;
  padding: 30px 20px 25px;
  border: 1px solid var(--home-line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--home-shadow-sm);
  text-align: center;
  transition:
    transform 0.28s var(--home-ease),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.process-card:hover {
  border-color: rgba(67, 18, 122, 0.2);
  box-shadow: var(--home-shadow-md);
  transform: translateY(-7px);
}

.process-card > span {
  width: 46px;
  height: 46px;
  margin: 0 auto 20px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(145deg, var(--home-purple-900), var(--home-purple-600, #6f35b5));
  box-shadow: 0 0 0 7px #ffffff, 0 11px 24px rgba(67, 18, 122, 0.2);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.process-card:nth-of-type(even) > span {
  background: linear-gradient(145deg, var(--home-teal-700), var(--home-teal-400));
}

.process-card h3 {
  margin: 0 0 10px;
  color: var(--home-purple-900);
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 1.35;
}

.process-card p {
  margin: 0;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.65;
}

/* Subjects */
.subjects-section {
  background:
    radial-gradient(circle at 4% 9%, rgba(141, 91, 208, 0.08), transparent 24%),
    #f6f2fa;
}

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

.subject-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 26px;
  color: #ffffff;
  background: var(--home-purple-900);
  box-shadow: var(--home-shadow-sm);
  text-decoration: none;
  transition:
    transform 0.34s var(--home-ease),
    box-shadow 0.34s ease;
}

.subject-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(19, 8, 32, 0.02) 20%, rgba(20, 7, 38, 0.92) 100%),
    linear-gradient(135deg, rgba(67, 18, 122, 0.15), rgba(7, 143, 137, 0.1));
  content: "";
}

.subject-card:hover {
  box-shadow: var(--home-shadow-lg);
  transform: translateY(-9px);
}

.subject-card > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--home-ease), filter 0.4s ease;
}

.subject-card:hover > img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.075);
}

.subject-body {
  min-height: 390px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.subject-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(95, 40, 166, 0.84);
  box-shadow: 0 10px 26px rgba(17, 7, 30, 0.18);
  font-size: 18px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s var(--home-ease), background-color 0.3s ease;
}

.subject-icon.icon-teal {
  background: rgba(7, 143, 137, 0.86);
}

.subject-card:hover .subject-icon {
  transform: rotate(-5deg) scale(1.06);
}

.subject-body h3 {
  margin: 0 0 9px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  line-height: 1.25;
}

.subject-body p {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
}

.subject-link {
  margin-top: 17px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.subject-link i {
  transition: transform 0.25s ease;
}

.subject-card:hover .subject-link i {
  transform: translateX(4px);
}

/* Recognition */
.recognition-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 11% 20%, rgba(141, 91, 208, 0.32), transparent 29%),
    radial-gradient(circle at 93% 78%, rgba(18, 170, 163, 0.2), transparent 28%),
    var(--home-purple-950);
}

.recognition-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    radial-gradient(circle at 1px 1px, #ffffff 1px, transparent 0);
  background-size: 34px 34px;
  content: "";
}

.recognition-panel {
  position: relative;
  z-index: 1;
}

.recognition-panel header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.recognition-panel .section-label {
  color: #74e0d8;
}

.recognition-panel .section-label::before {
  background: #74e0d8;
}

.recognition-panel h2 {
  color: #ffffff;
}

.recognition-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.recognition-grid > div {
  min-height: 154px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-content: center;
  column-gap: 14px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.28s var(--home-ease), background-color 0.28s ease;
  backdrop-filter: blur(10px);
}

.recognition-grid > div:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-5px);
}

.recognition-grid i {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  align-self: center;
  color: #ffffff;
  background: linear-gradient(145deg, rgba(141, 91, 208, 0.9), rgba(18, 170, 163, 0.9));
  font-size: 19px;
}

.recognition-grid strong {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.35;
}

.recognition-grid span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

/* Reviews */
.reviews-section {
  background: #ffffff;
}

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

.review-card {
  position: relative;
  min-height: 350px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  box-shadow: var(--home-shadow-sm);
  transition:
    transform 0.3s var(--home-ease),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.review-card::before {
  position: absolute;
  top: -48px;
  right: -48px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--home-purple-50);
  content: "";
}

.review-card:hover {
  border-color: rgba(67, 18, 122, 0.18);
  box-shadow: var(--home-shadow-md);
  transform: translateY(-7px);
}

.quote-mark {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--home-purple-700);
  background: var(--home-purple-50);
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.review-card p {
  margin: 24px 0 0;
  color: var(--home-copy);
  font-size: 16px;
  line-height: 1.75;
}

.stars {
  margin: auto 0 20px;
  padding-top: 24px;
  color: var(--home-gold);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author > span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(145deg, var(--home-purple-900), var(--home-teal-500));
  font-size: 12px;
  font-weight: 800;
}

.review-author div {
  display: grid;
  gap: 2px;
}

.review-author strong {
  color: var(--home-purple-900);
  font-size: 14px;
}

.review-author small {
  color: var(--home-muted);
  font-size: 11px;
}

.review-card > strong {
  color: var(--home-purple-900);
  font-size: 14px;
}

/* Final CTA */
.final-cta-section {
  padding-top: 42px;
  padding-bottom: 40px;
  background: #ffffff;
}

.final-cta {
  position: relative;
  isolation: isolate;
  min-height: 470px;
  overflow: hidden;
  border-radius: 34px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 16%, rgba(40, 200, 190, 0.26), transparent 24%),
    linear-gradient(130deg, var(--home-purple-950), var(--home-purple-800));
  box-shadow: var(--home-shadow-lg);
}

.final-cta::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.34) 1px, transparent 0);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent 30%, #000 100%);
  content: "";
}

.final-cta-image {
  min-width: 0;
  overflow: hidden;
}

.final-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--home-ease);
}

.final-cta:hover .final-cta-image img {
  transform: scale(1.045);
}

.final-cta-copy {
  padding: clamp(40px, 5vw, 66px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.final-cta .section-label {
  color: #7ce4dc;
}

.final-cta .section-label::before {
  background: #7ce4dc;
}

.final-cta h2 {
  max-width: 660px;
  color: #ffffff;
}

.final-cta-copy > p:not(.section-label) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

.cta-primary {
  color: var(--home-purple-950);
  background: #ffffff;
  box-shadow: 0 15px 32px rgba(8, 3, 15, 0.24);
}

.cta-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.cta-benefits {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 650;
}

.cta-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.cta-benefits i {
  color: #7ce4dc;
}

.cta-spark {
  position: absolute;
  z-index: 2;
  width: 20px;
  aspect-ratio: 1;
  background: #ffe27c;
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  animation: heroTwinkle 3.4s ease-in-out infinite;
}

.cta-spark-one {
  top: 12%;
  right: 5%;
}

.cta-spark-two {
  right: 34%;
  bottom: 13%;
  animation-delay: 1.4s;
}

/* Motion */
.home-scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10000;
  height: 3px;
  pointer-events: none;
}

.home-scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--home-purple-500), var(--home-teal-400), var(--home-gold));
  box-shadow: 0 0 14px rgba(18, 170, 163, 0.42);
  transform: scaleX(0);
  transform-origin: left center;
}

.ntk-home-reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(28px);
  transition:
    opacity 0.68s var(--home-ease),
    transform 0.68s var(--home-ease),
    filter 0.68s var(--home-ease);
  transition-delay: var(--home-delay, 0ms);
}

.ntk-home-reveal[data-reveal="left"] {
  transform: translateX(-34px);
}

.ntk-home-reveal[data-reveal="right"] {
  transform: translateX(34px);
}

.ntk-home-reveal.home-in-view {
  opacity: 1;
  filter: none;
  transform: none;
}

.home-ripple {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.42);
  transform: translate(-50%, -50%) scale(0);
  animation: rippleOut 0.68s ease-out forwards;
}

/* Preserve the existing footer presentation. */
.nt-footer {
  margin-top: 80px;
}

.home-main + .nt-footer {
  margin-top: 0;
}

.nt-footer-col a {
  transition: color 0.25s ease, transform 0.25s ease;
}

.nt-footer-col li a:hover {
  display: inline-block;
  transform: translateX(4px);
}

.nt-footer-socials a {
  transition: transform 0.3s var(--home-ease), background 0.3s ease;
}

.nt-footer-socials a:hover {
  transform: translateY(-4px) rotate(-5deg);
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  70% { box-shadow: 0 0 0 9px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes underlineDraw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes photoGlowSpin {
  to { transform: rotate(360deg); }
}

@keyframes orbBreathe {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(7px, -10px, 0) scale(1.04); }
}

@keyframes chipFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -6px; }
}

@keyframes heroTwinkle {
  0%, 100% { opacity: 0.55; transform: rotate(0deg) scale(0.76); }
  50% { opacity: 1; transform: rotate(45deg) scale(1.08); }
}

@keyframes ambientDrift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(9px, -15px, 0); }
}

@keyframes swoopRotate {
  to { transform: rotate(360deg); }
}

@keyframes processFlow {
  to { background-position: -220% 0; }
}

@keyframes rippleOut {
  to { opacity: 0; transform: translate(-50%, -50%) scale(12); }
}

/* Laptop and tablet */
@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
    gap: 46px;
  }

  .hero-copy h1 {
    font-size: clamp(52px, 5.5vw, 66px);
  }

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

  .benefit-card:nth-child(2)::after {
    display: none;
  }

  .benefit-card:nth-child(-n + 2)::before {
    position: absolute;
    right: 22px;
    bottom: 0;
    left: 22px;
    height: 1px;
    background: var(--home-line);
    content: "";
  }

  .purpose-layout {
    gap: 58px;
  }

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

  .process-track {
    display: none;
  }

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

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

@media (max-width: 1040px) {
  .home-main {
    padding-top: 96px;
  }

  .home-hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero-copy {
    max-width: 800px;
    margin-inline: auto;
    text-align: center;
  }

  .hero-live-pill {
    margin-inline: auto;
  }

  .hero-copy h1 {
    max-width: 780px;
    margin-inline: auto;
    font-size: clamp(56px, 8vw, 78px);
  }

  .hero-intro {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-media {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .purpose-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .section-copy {
    max-width: 760px;
  }

  .purpose-image {
    width: min(760px, 100%);
    margin-inline: auto;
    order: -1;
  }

  .final-cta {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

@media (max-width: 820px) {
  .home-container {
    width: min(calc(100% - 32px), var(--home-container));
  }

  .home-main {
    padding-top: 90px;
  }

  .home-hero {
    padding: 32px 0 104px;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 10.5vw, 68px);
  }

  .hero-media {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-photo-wrap {
    grid-column: 1 / -1;
    height: auto;
    aspect-ratio: 4 / 3;
    transform: none !important;
  }

  .hero-orb {
    display: none;
  }

  .hero-chip {
    position: static;
    min-width: 0;
    justify-content: center;
    text-align: center;
  }

  .hero-rating-badge {
    top: 12px;
    right: 12px;
  }

  .hero-class-status {
    bottom: 12px;
    left: 12px;
  }

  .home-benefits {
    margin-top: -60px;
  }

  .benefit-grid {
    padding: 12px;
  }

  .purpose-image,
  .purpose-image > img {
    min-height: 470px;
    height: 470px;
  }

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

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

  .review-card {
    min-height: 310px;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta-image {
    height: 360px;
  }
}

@media (max-width: 620px) {
  .home-main {
    padding-top: 86px;
  }

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

  .home-section-heading {
    margin-bottom: 36px;
  }

  .section-copy h2,
  .home-section-heading h2,
  .recognition-panel h2,
  .final-cta h2 {
    font-size: 36px;
    letter-spacing: -0.04em;
  }

  .hero-copy h1 {
    font-size: clamp(43px, 12.8vw, 58px);
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .home-btn {
    width: 100%;
  }

  .hero-trust {
    display: grid;
  }

  .hero-trust span {
    justify-content: center;
    text-align: center;
  }

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

  .hero-photo-wrap {
    border-width: 7px;
    border-radius: 26px;
  }

  .hero-chip {
    width: 100%;
    min-height: 48px;
  }

  .benefit-grid,
  .process-grid,
  .subject-grid,
  .recognition-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 128px;
    padding: 21px 18px;
  }

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

  .benefit-card:not(:last-child)::before {
    position: absolute;
    right: 18px;
    bottom: 0;
    left: 18px;
    height: 1px;
    background: var(--home-line);
    content: "";
  }

  .purpose-image,
  .purpose-image > img {
    min-height: 360px;
    height: 360px;
  }

  .purpose-image::before {
    inset: 22px -10px -12px 22px;
    border-radius: 30px;
  }

  .purpose-proof {
    min-width: 136px;
    padding: 12px 14px;
  }

  .purpose-proof-rating {
    top: 14px;
    right: -4px;
  }

  .purpose-proof-subjects {
    bottom: 16px;
    left: -4px;
  }

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

  .subject-card,
  .subject-body {
    min-height: 350px;
  }

  .recognition-grid > div {
    min-height: 132px;
  }

  .final-cta-section {
    padding-top: 24px;
    padding-bottom: 34px;
  }

  .final-cta {
    border-radius: 26px;
  }

  .final-cta-image {
    height: 290px;
  }

  .final-cta-copy {
    padding: 34px 22px 38px;
  }

  .cta-benefits {
    display: grid;
  }

  .ambient-swoop {
    display: none;
  }
}

@media (max-width: 380px) {
  .home-container {
    width: min(calc(100% - 24px), var(--home-container));
  }

  .hero-live-pill {
    width: 100%;
    justify-content: center;
    padding-inline: 10px;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: 41px;
  }

  .benefit-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  .benefit-icon {
    width: 44px;
    height: 44px;
  }
}

@media (hover: none), (pointer: coarse) {
  .home-btn:hover,
  .process-card:hover,
  .subject-card:hover,
  .recognition-grid > div:hover,
  .review-card:hover {
    transform: none;
  }
}

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

  .home-main *,
  .home-main *::before,
  .home-main *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .ntk-home-reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* =========================================================
   Homepage refinement v8 — original family stories concept
   ========================================================= */
.home-process {
  background:
    radial-gradient(circle at 8% 18%, rgba(18, 170, 163, 0.09), transparent 24%),
    radial-gradient(circle at 92% 76%, rgba(97, 58, 145, 0.06), transparent 24%),
    #eef9f7;
}

.reviews-section {
  z-index: 1;
  margin-bottom: 0;
  padding: clamp(96px, 8vw, 128px) 0 clamp(106px, 9vw, 146px);
  border-radius: 0;
  background:
    radial-gradient(circle at 10% 16%, rgba(255, 255, 255, 0.54), transparent 25%),
    radial-gradient(circle at 88% 86%, rgba(96, 56, 143, 0.07), transparent 24%),
    linear-gradient(180deg, #eefaf8 0%, #dff3f0 100%);
}

.reviews-heading {
  margin-bottom: 54px;
}

.reviews-heading h2 {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.family-voices {
  position: relative;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(10, 137, 131, 0.13);
  border-radius: 38px;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 80px rgba(36, 39, 55, 0.11);
  outline: 0;
}

.family-voices:focus-visible {
  box-shadow: 0 0 0 4px rgba(18, 170, 163, 0.18), 0 30px 80px rgba(36, 39, 55, 0.11);
}

.voices-summary {
  position: relative;
  z-index: 2;
  min-height: 520px;
  padding: clamp(38px, 4.4vw, 58px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 14%, rgba(101, 231, 221, 0.28), transparent 25%),
    radial-gradient(circle at 15% 92%, rgba(121, 80, 169, 0.34), transparent 30%),
    linear-gradient(145deg, #096e6a 0%, #078f88 58%, #126c71 100%);
}

.voices-summary::after {
  position: absolute;
  right: -48px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border: 30px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.voices-summary-icon {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #b9fff9;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-size: 22px;
}

.voices-kicker {
  margin: 30px 0 11px;
  color: #b9fff9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.voices-summary h3 {
  max-width: 390px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.voices-score {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 42px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.voices-score > strong {
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 58px;
  line-height: 0.84;
  letter-spacing: -0.07em;
}

.voices-score > div {
  display: grid;
  gap: 5px;
}

.voices-score span {
  display: flex;
  gap: 3px;
  color: #f5cc4a;
  font-size: 11px;
}

.voices-score small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.voices-trust {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.voices-trust > i {
  color: #62e4d9;
  font-size: 20px;
}

.voices-trust > span {
  display: grid;
  gap: 1px;
}

.voices-trust strong {
  color: #ffffff;
  font-size: 12px;
}

.voices-trust small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
}

.voices-content {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.82);
}

.family-voices .review-stage {
  min-height: 420px;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 12%, rgba(18, 170, 163, 0.08), transparent 22%),
    linear-gradient(145deg, #ffffff, #f8fcfb);
  box-shadow: inset 0 0 0 1px rgba(44, 36, 57, 0.055);
}

.family-voices .review-slide {
  min-height: 420px;
  padding: clamp(34px, 4.2vw, 54px);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  align-items: center;
}

.voices-story-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.voices-story-meta > span {
  color: #087d78;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.voices-story-meta > div {
  display: flex;
  gap: 4px;
  color: #efbd2d;
  font-size: 12px;
}

.family-voices .review-slide blockquote {
  max-width: 700px;
  margin: 34px 0;
  color: #211430;
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 650;
  line-height: 1.38;
  letter-spacing: -0.04em;
  text-align: left;
  text-wrap: balance;
}

.voices-author {
  display: flex;
  align-items: center;
  gap: 13px;
}

.voices-author > span {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(145deg, #4c1d78, #7650a5);
  box-shadow: 0 9px 22px rgba(74, 29, 119, 0.16);
  font-size: 12px;
  font-weight: 800;
}

.voices-author > div {
  display: grid;
  gap: 3px;
}

.voices-author strong {
  color: var(--home-purple-950);
  font-size: 14px;
}

.voices-author small {
  color: #6d6677;
  font-size: 11px;
}

.voices-author em {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #087d78;
  font-size: 10px;
  font-style: normal;
  font-weight: 750;
}

.voices-outcome {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(49, 33, 69, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.voices-outcome span {
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4f4660;
  background: #eef8f6;
  font-size: 10px;
  font-weight: 700;
}

.voices-outcome i {
  color: var(--home-teal-500);
}

.voices-controls {
  min-height: 64px;
  padding: 12px 6px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.family-voices .review-status {
  justify-self: start;
  color: #685d74;
}

.family-voices .review-dots {
  justify-self: center;
}

.voices-arrows {
  justify-self: end;
  display: flex;
  gap: 8px;
}

.family-voices .review-arrow {
  position: static;
  width: 48px;
  height: 48px;
  border-color: rgba(18, 170, 163, 0.16);
  color: #087d78;
  background: #eef9f7;
  box-shadow: none;
  transform: none;
}

.family-voices .review-arrow:hover,
.family-voices .review-arrow:focus-visible {
  color: #ffffff;
  background: var(--home-teal-500);
  transform: translateY(-2px);
}

.voices-orb {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

.voices-orb-one {
  top: -70px;
  right: 18%;
  width: 180px;
  height: 180px;
  background: rgba(18, 170, 163, 0.09);
}

.voices-orb-two {
  right: -40px;
  bottom: -55px;
  width: 140px;
  height: 140px;
  border: 24px solid rgba(97, 58, 145, 0.06);
}

/* Reverse the previous bend: the purple section now rises in the centre. */
.community-top-curve {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(74px, 8vw, 120px);
  margin: 0 0 -1px;
  display: block;
  background: #dff3f0;
}

.community-section {
  margin-top: 0;
  padding-top: clamp(92px, 8vw, 126px);
  border-radius: 0;
  background:
    radial-gradient(circle at 11% 28%, rgba(18, 170, 163, 0.17), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(126, 79, 180, 0.22), transparent 29%),
    linear-gradient(90deg, #241039 0%, #421866 52%, #291141 100%);
}

@media (max-width: 940px) {
  .family-voices {
    grid-template-columns: 1fr;
  }

  .voices-summary {
    min-height: 0;
    padding: 38px;
  }

  .voices-summary h3 {
    max-width: 660px;
  }

  .voices-score {
    margin-top: 34px;
    padding-top: 0;
  }

  .voices-trust {
    position: absolute;
    right: 38px;
    bottom: 38px;
  }
}

@media (max-width: 620px) {
  .reviews-section {
    padding-top: 78px;
    padding-bottom: 88px;
  }

  .reviews-heading {
    margin-bottom: 38px;
  }

  .family-voices {
    border-radius: 28px;
  }

  .voices-summary {
    padding: 28px 24px 30px;
  }

  .voices-summary-icon {
    width: 50px;
    height: 50px;
    border-radius: 17px;
  }

  .voices-kicker {
    margin-top: 22px;
  }

  .voices-summary h3 {
    font-size: 31px;
  }

  .voices-score > strong {
    font-size: 50px;
  }

  .voices-trust {
    position: static;
    margin-top: 22px;
  }

  .voices-content {
    padding: 12px;
  }

  .family-voices .review-stage,
  .family-voices .review-slide {
    min-height: 480px;
  }

  .family-voices .review-slide {
    padding: 28px 22px;
  }

  .voices-story-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .family-voices .review-slide blockquote {
    margin: 28px 0;
    font-size: 24px;
  }

  .voices-author {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .voices-author em {
    width: 100%;
    margin: 6px 0 0 63px;
  }

  .voices-outcome {
    margin-top: 22px;
  }

  .voices-controls {
    min-height: 72px;
  }

  .family-voices .review-dots {
    display: none;
  }

  .voices-controls {
    grid-template-columns: 1fr auto;
  }

  .voices-arrows {
    grid-column: 2;
  }

  .community-section {
    padding-top: 84px;
    border-radius: 0;
  }
}

/* Section composition refresh: masked learner story + lighter reasons index. */
.diaspora-section {
  padding: clamp(104px, 8.5vw, 142px) 0;
  background:
    radial-gradient(circle at 3% 16%, rgba(18, 170, 163, 0.15), transparent 25%),
    radial-gradient(circle at 92% 80%, rgba(102, 62, 159, 0.1), transparent 29%),
    linear-gradient(145deg, #ffffff 0%, #f5fbfa 58%, #e9f7f5 100%);
}

.diaspora-story {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  align-items: center;
  gap: clamp(52px, 6.5vw, 92px);
}

.diaspora-visual {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.diaspora-visual::before {
  position: absolute;
  inset: 54px 20px 58px 2px;
  z-index: -2;
  border-radius: 46% 54% 42% 58% / 54% 38% 62% 46%;
  background: linear-gradient(145deg, rgba(18, 170, 163, 0.2), rgba(95, 40, 166, 0.1));
  transform: rotate(-5deg);
  content: "";
}

.diaspora-visual::after {
  position: absolute;
  top: 16px;
  left: 42px;
  z-index: -1;
  width: 98px;
  height: 98px;
  border: 12px solid rgba(18, 170, 163, 0.1);
  border-radius: 50%;
  content: "";
  animation: learningOrbitSpin 18s linear infinite;
}

.learning-mask {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #dcefeb;
  box-shadow: 0 26px 68px rgba(39, 17, 63, 0.16);
  transform: translateZ(0);
}

.learning-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--home-ease);
}

.diaspora-visual:hover .learning-mask-main img {
  transform: scale(1.035);
}

.learning-mask-main {
  inset: 72px 34px 62px 28px;
  z-index: 1;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 44% 56% 43% 57% / 38% 42% 58% 62%;
  animation: learningMaskBreathe 9s ease-in-out infinite;
}

.learning-mask-main img {
  object-position: 52% center;
}

.learning-mask-reading {
  top: 18px;
  right: -12px;
  z-index: 3;
  width: 164px;
  aspect-ratio: 1;
  border: 7px solid #ffffff;
  border-radius: 50% 44% 54% 46% / 45% 54% 46% 55%;
  animation: learningPhotoFloat 6.8s ease-in-out infinite;
}

.learning-mask-reading img {
  object-position: 58% center;
}

.learning-mask-focus {
  bottom: 6px;
  left: -8px;
  z-index: 3;
  width: 182px;
  height: 152px;
  border: 7px solid #ffffff;
  border-radius: 34px 52% 38px 48%;
  animation: learningPhotoFloat 7.6s 0.9s ease-in-out infinite reverse;
}

.learning-mask-focus img {
  object-position: 58% center;
}

.learning-photo-badge {
  position: absolute;
  right: 2px;
  bottom: 48px;
  z-index: 4;
  min-width: 206px;
  padding: 15px 18px 15px 54px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  display: grid;
  color: var(--home-purple-950);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(39, 17, 63, 0.14);
  backdrop-filter: blur(12px);
}

.learning-photo-badge i {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 29px;
  height: 29px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--home-teal-500);
  font-size: 12px;
  transform: translateY(-50%);
}

.learning-photo-badge strong {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
}

.learning-photo-badge small {
  margin-top: 2px;
  color: #706779;
  font-size: 11px;
}

.learning-photo-orbit {
  position: absolute;
  top: 44%;
  right: -16px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 2px dashed rgba(95, 40, 166, 0.28);
  border-radius: 50%;
  animation: learningOrbitSpin 14s linear infinite reverse;
}

.learning-photo-orbit::after {
  position: absolute;
  top: -5px;
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--home-purple-500);
  box-shadow: 0 0 0 5px rgba(141, 91, 208, 0.1);
  content: "";
}

.diaspora-content {
  position: relative;
  z-index: 2;
}

.diaspora-content .diaspora-heading {
  max-width: 620px;
  margin: 0 0 34px;
  text-align: left;
}

.diaspora-content .diaspora-heading .section-label {
  justify-content: flex-start;
}

.diaspora-content .diaspora-heading h2 {
  max-width: 600px;
  margin: 20px 0 16px;
  font-size: clamp(40px, 4vw, 56px);
}

.diaspora-content .diaspora-heading > p:last-of-type {
  max-width: 580px;
  margin: 0;
}

.diaspora-content .diaspora-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.diaspora-content .diaspora-pillar,
.diaspora-content .diaspora-pillar:nth-child(2) {
  min-height: 0;
  margin: 0;
  padding: 22px 24px;
  grid-template-columns: 56px minmax(0, 1fr);
  align-content: center;
  gap: 16px;
  border-radius: 22px;
}

.diaspora-content .diaspora-pillar:nth-child(1) {
  width: calc(100% - 34px);
}

.diaspora-content .diaspora-pillar:nth-child(2) {
  width: calc(100% - 10px);
  margin-left: 10px;
}

.diaspora-content .diaspora-pillar:nth-child(3) {
  width: calc(100% - 42px);
  margin-left: 42px;
}

.diaspora-content .diaspora-pillar .pillar-icon {
  width: 52px;
  height: 52px;
}

.diaspora-content .diaspora-pillar .pillar-number {
  top: 20px;
  right: 22px;
}

.diaspora-content .diaspora-pillar h3 {
  margin: 0 42px 5px 0;
  font-size: 18px;
}

.diaspora-content .diaspora-pillar p {
  max-width: 46ch;
  font-size: 13px;
}

/* Ten reasons become a two-part editorial index instead of a full card wall. */
.trust-reasons-section {
  padding: clamp(104px, 8.5vw, 142px) 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(18, 170, 163, 0.15), transparent 25%),
    radial-gradient(circle at 88% 20%, rgba(95, 40, 166, 0.11), transparent 24%),
    linear-gradient(135deg, #f5fbfa 0%, #ffffff 46%, #f1f8f7 100%);
}

.reasons-shell {
  position: relative;
  z-index: 3;
  display: block;
}

.reasons-giant-number {
  position: absolute;
  top: -92px;
  left: -22px;
  z-index: -1;
  color: rgba(18, 170, 163, 0.055);
  font-family: "Poppins", sans-serif;
  font-size: clamp(190px, 23vw, 350px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.12em;
  pointer-events: none;
  animation: reasonsNumberDrift 12s ease-in-out infinite;
}

.trust-reasons-section .reasons-heading {
  max-width: 760px;
  margin: 0 auto 54px;
}

.trust-reasons-section .reasons-heading h2 {
  max-width: 700px;
  font-size: clamp(40px, 4vw, 56px);
}

.reasons-editorial {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
  gap: 22px;
}

.reasons-editorial::before {
  position: absolute;
  top: -34px;
  right: 8%;
  z-index: -1;
  width: 210px;
  height: 86px;
  opacity: 0.5;
  background-image: radial-gradient(circle, rgba(18, 170, 163, 0.26) 2px, transparent 2.8px);
  background-size: 16px 16px;
  transform: rotate(-6deg);
  content: "";
  animation: playfulDoodleBob 7s ease-in-out infinite;
}

.reasons-featured {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.reasons-featured .reason-feature {
  position: relative;
  min-height: 226px;
  padding: 30px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-content: end;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(18, 170, 163, 0.22);
  border-radius: 30px;
  color: #ffffff;
  background: linear-gradient(145deg, #087d78, #0aa89e);
  box-shadow: 0 24px 58px rgba(5, 115, 110, 0.19);
}

.reasons-featured .reason-feature::before {
  position: absolute;
  top: -58px;
  right: -46px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.035);
  content: "";
}

.reasons-featured .reason-feature-purple {
  border-color: rgba(95, 40, 166, 0.22);
  background: linear-gradient(145deg, #492078, #6839a3);
  box-shadow: 0 24px 58px rgba(67, 18, 122, 0.18);
}

.reasons-featured .reason-feature > span {
  position: static;
  width: 52px;
  height: 52px;
  margin: 0;
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.reasons-featured .reason-feature > i {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 18px;
}

.reasons-featured .reason-feature h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 22px;
}

.reasons-featured .reason-feature p {
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.62;
}

.reasons-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
  gap: 12px;
}

.reasons-index .reason-compact,
.reasons-index .reason-compact:nth-child(n) {
  grid-column: auto;
  min-height: 0;
  padding: 20px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(67, 18, 122, 0.08);
  border-radius: 21px;
  color: var(--home-purple-950);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 38px rgba(39, 17, 63, 0.07);
}

.reasons-index .reason-compact:nth-child(3n + 2) {
  border-color: rgba(18, 170, 163, 0.18);
  background: rgba(236, 250, 248, 0.94);
}

.reasons-index .reason-compact:nth-child(4n) {
  border-color: rgba(95, 40, 166, 0.13);
  background: rgba(248, 244, 252, 0.94);
}

.reasons-index .reason-compact > span {
  position: static;
  width: 42px;
  height: 42px;
  margin: 0;
  border: 1px solid rgba(18, 170, 163, 0.16);
  border-radius: 14px;
  color: #087d78;
  background: rgba(18, 170, 163, 0.08);
}

.reasons-index .reason-compact h3 {
  margin: 0 0 4px;
  color: var(--home-purple-950);
  font-size: 15px;
  line-height: 1.3;
}

.reasons-index .reason-compact p {
  color: #6e6677;
  font-size: 12px;
  line-height: 1.5;
}

.reasons-index .reason-compact:hover {
  border-color: rgba(18, 170, 163, 0.28);
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(39, 17, 63, 0.1);
  transform: translateY(-3px);
}

@keyframes learningMaskBreathe {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-0.7deg); }
  50% { transform: translate3d(0, -6px, 0) rotate(0.7deg); }
}

@keyframes learningPhotoFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-3deg); }
  50% { transform: translate3d(7px, -10px, 0) rotate(3deg); }
}

@keyframes learningOrbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes reasonsNumberDrift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(16px, -10px, 0); }
}

@media (max-width: 1080px) {
  .diaspora-story {
    grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
    gap: 42px;
  }

  .diaspora-visual {
    min-height: 570px;
  }

  .learning-mask-reading {
    right: -2px;
    width: 142px;
  }

  .learning-mask-focus {
    width: 160px;
    height: 136px;
  }

  .reasons-editorial {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  }
}

@media (max-width: 920px) {
  .diaspora-story,
  .reasons-editorial {
    grid-template-columns: 1fr;
  }

  .diaspora-visual {
    width: min(620px, 100%);
    min-height: 600px;
    margin: 0 auto;
  }

  .diaspora-content {
    width: min(700px, 100%);
    margin: 0 auto;
  }

  .reasons-editorial {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .reasons-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .reasons-featured .reason-feature {
    min-height: 220px;
  }
}

@media (max-width: 620px) {
  .diaspora-section,
  .trust-reasons-section {
    padding: 82px 0;
  }

  .diaspora-story {
    gap: 44px;
  }

  .diaspora-visual {
    min-height: 430px;
  }

  .learning-mask-main {
    inset: 54px 12px 46px 14px;
    border-width: 6px;
  }

  .learning-mask-reading {
    top: 10px;
    right: -2px;
    width: 108px;
    border-width: 5px;
  }

  .learning-mask-focus {
    bottom: 4px;
    left: -2px;
    width: 126px;
    height: 106px;
    border-width: 5px;
    border-radius: 24px 50% 26px 46%;
  }

  .learning-photo-badge {
    right: 3px;
    bottom: 22px;
    min-width: 174px;
    padding: 12px 14px 12px 46px;
  }

  .learning-photo-badge i {
    left: 12px;
  }

  .learning-photo-orbit {
    right: 0;
  }

  .diaspora-content .diaspora-heading {
    margin-bottom: 30px;
    text-align: center;
  }

  .diaspora-content .diaspora-heading .section-label {
    justify-content: center;
  }

  .diaspora-content .diaspora-heading h2,
  .diaspora-content .diaspora-heading > p:last-of-type {
    margin-right: auto;
    margin-left: auto;
  }

  .diaspora-content .diaspora-heading h2 {
    font-size: clamp(34px, 10vw, 43px);
  }

  .diaspora-content .diaspora-heading > p:last-of-type {
    font-size: 15px;
  }

  .diaspora-content .diaspora-pillar,
  .diaspora-content .diaspora-pillar:nth-child(n) {
    width: 100%;
    margin-left: 0;
    padding: 20px;
  }

  .reasons-giant-number {
    top: -34px;
    left: -10px;
    font-size: 170px;
  }

  .trust-reasons-section .reasons-heading {
    margin-bottom: 38px;
  }

  .trust-reasons-section .reasons-heading h2 {
    font-size: clamp(35px, 10vw, 44px);
  }

  .reasons-featured,
  .reasons-index {
    grid-template-columns: 1fr;
  }

  .reasons-featured .reason-feature {
    min-height: 204px;
    padding: 25px;
  }

  .reasons-featured .reason-feature > i {
    top: 25px;
    right: 25px;
  }

  .reasons-index .reason-compact,
  .reasons-index .reason-compact:nth-child(n) {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .learning-mask-main,
  .learning-mask-reading,
  .learning-mask-focus,
  .learning-photo-orbit,
  .diaspora-visual::after,
  .reasons-giant-number,
  .reasons-editorial::before {
    animation: none !important;
  }
}

/* Playful learning scenes for the second and third homepage sections. */
.diaspora-section,
.trust-reasons-section {
  isolation: isolate;
  overflow: hidden;
}

.diaspora-story,
.reasons-shell {
  position: relative;
  z-index: 3;
}

.section-play-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.section-play-scene::before,
.section-play-scene::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  will-change: transform;
}

.play-scene-learning::before {
  top: -130px;
  left: -110px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(18, 170, 163, 0.17);
  box-shadow:
    0 0 0 38px rgba(18, 170, 163, 0.025),
    0 0 0 76px rgba(95, 40, 166, 0.018);
  animation: playfulSceneOrbit 17s ease-in-out infinite alternate;
}

.play-scene-learning::after {
  right: -130px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle at 35% 35%, rgba(40, 200, 190, 0.14), rgba(141, 91, 208, 0.035) 58%, transparent 72%);
  animation: playfulSceneBreathe 11s ease-in-out infinite;
}

.play-scene-confidence::before {
  top: -170px;
  right: -90px;
  width: 410px;
  height: 410px;
  border: 1px dashed rgba(95, 40, 166, 0.14);
  box-shadow: inset 0 0 82px rgba(18, 170, 163, 0.06);
  animation: playfulSceneSpin 32s linear infinite;
}

.play-scene-confidence::after {
  bottom: -180px;
  left: -120px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(18, 170, 163, 0.13), rgba(95, 40, 166, 0.035) 58%, transparent 72%);
  animation: playfulSceneBreathe 13s 1.4s ease-in-out infinite reverse;
}

.play-object {
  position: absolute;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  color: var(--home-purple-700);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 34px rgba(39, 17, 63, 0.1);
  font-size: 18px;
  backdrop-filter: blur(10px);
  will-change: transform;
}

.play-object::after {
  position: absolute;
  inset: -7px;
  border: 1px solid currentColor;
  border-radius: 23px;
  opacity: 0.11;
  content: "";
}

.play-book {
  top: 21%;
  left: 4.5%;
  color: #087f79;
  animation: playfulDriftOne 7.4s ease-in-out infinite;
}

.play-pencil {
  top: 11%;
  right: 8%;
  color: #6b34a4;
  animation: playfulDriftTwo 8.6s 0.8s ease-in-out infinite;
}

.play-globe {
  right: 3.5%;
  bottom: 16%;
  color: #087f79;
  animation: playfulDriftThree 9.2s 0.2s ease-in-out infinite;
}

.play-rocket {
  top: 17%;
  left: 4.2%;
  color: #6b34a4;
  animation: playfulDriftTwo 8.8s ease-in-out infinite;
}

.play-lightbulb {
  top: 10%;
  right: 5.5%;
  color: #aa7815;
  background: rgba(255, 250, 226, 0.84);
  animation: playfulDriftOne 7.7s 0.6s ease-in-out infinite reverse;
}

.play-chart {
  right: 3.4%;
  bottom: 12%;
  color: #087f79;
  animation: playfulDriftThree 9.6s 1.2s ease-in-out infinite;
}

.play-doodle {
  position: absolute;
  display: block;
  opacity: 0.52;
  will-change: transform;
}

.play-doodle-ring {
  top: 40%;
  left: 1.8%;
  width: 26px;
  height: 26px;
  border: 4px solid rgba(18, 170, 163, 0.25);
  border-radius: 50%;
  animation: playfulDoodleBob 6.2s ease-in-out infinite;
}

.play-doodle-star,
.play-doodle-spark {
  width: 28px;
  height: 28px;
  background: rgba(95, 40, 166, 0.2);
  clip-path: polygon(50% 0, 61% 37%, 100% 50%, 61% 63%, 50% 100%, 39% 63%, 0 50%, 39% 37%);
}

.play-doodle-star {
  right: 14%;
  bottom: 11%;
  animation: playfulSceneSpin 13s linear infinite;
}

.play-doodle-dots {
  top: 17%;
  right: 20%;
  width: 52px;
  height: 32px;
  background-image: radial-gradient(circle, rgba(18, 170, 163, 0.28) 2px, transparent 2.6px);
  background-size: 13px 13px;
  animation: playfulDoodleBob 6.8s 0.7s ease-in-out infinite reverse;
}

.play-doodle-zigzag {
  bottom: 14%;
  left: 3%;
  width: 70px;
  height: 18px;
  background: linear-gradient(135deg, transparent 0 33%, rgba(18, 170, 163, 0.22) 34% 43%, transparent 44% 63%, rgba(95, 40, 166, 0.19) 64% 73%, transparent 74%);
  animation: playfulDoodleBob 7.2s ease-in-out infinite;
}

.play-doodle-orbit {
  top: 36%;
  right: 1.8%;
  width: 44px;
  height: 44px;
  border: 2px dashed rgba(18, 170, 163, 0.24);
  border-radius: 50%;
  animation: playfulSceneSpin 18s linear infinite reverse;
}

.play-doodle-orbit::after {
  position: absolute;
  top: -5px;
  left: 17px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--home-teal-500);
  box-shadow: 0 0 0 5px rgba(18, 170, 163, 0.08);
  content: "";
}

.play-doodle-spark {
  bottom: 8%;
  left: 24%;
  background: rgba(18, 170, 163, 0.22);
  animation: playfulSpark 4.8s ease-in-out infinite;
}

/* Recognition uses an intentionally gentle, staggered award pulse. */
.home-main .recognition-panel .section-label {
  position: relative;
  animation: recognitionPillGlow 3.4s ease-in-out infinite;
}

.home-main .recognition-panel .section-label::after {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(243, 200, 91, 0.34);
  border-radius: inherit;
  opacity: 0;
  content: "";
  animation: recognitionPing 2.8s ease-out infinite;
}

.recognition-grid > div {
  will-change: transform, box-shadow;
  animation: awardFramePulse 4.2s ease-in-out infinite;
}

.recognition-grid > div:nth-child(2) { animation-delay: 0.7s; }
.recognition-grid > div:nth-child(3) { animation-delay: 1.4s; }
.recognition-grid > div:nth-child(4) { animation-delay: 2.1s; }

.recognition-grid i {
  animation: awardIconGlow 4.2s ease-in-out infinite;
}

.recognition-grid > div:nth-child(2) i { animation-delay: 0.7s; }
.recognition-grid > div:nth-child(3) i { animation-delay: 1.4s; }
.recognition-grid > div:nth-child(4) i { animation-delay: 2.1s; }

@keyframes playfulDriftOne {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-7deg); }
  50% { transform: translate3d(12px, -18px, 0) rotate(5deg); }
}

@keyframes playfulDriftTwo {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(8deg); }
  50% { transform: translate3d(-13px, 16px, 0) rotate(-5deg); }
}

@keyframes playfulDriftThree {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-12px, -13px, 0) scale(1.07); }
}

@keyframes playfulDoodleBob {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.35; }
  50% { transform: translate3d(7px, -12px, 0); opacity: 0.72; }
}

@keyframes playfulSceneOrbit {
  0% { transform: translate3d(-8px, 8px, 0) rotate(-6deg); }
  100% { transform: translate3d(24px, -18px, 0) rotate(8deg); }
}

@keyframes playfulSceneBreathe {
  0%, 100% { transform: translate3d(0, 0, 0) scale(0.94); opacity: 0.68; }
  50% { transform: translate3d(16px, -12px, 0) scale(1.08); opacity: 1; }
}

@keyframes playfulSceneSpin {
  to { transform: rotate(360deg); }
}

@keyframes playfulSpark {
  0%, 100% { transform: scale(0.74) rotate(0deg); opacity: 0.28; }
  50% { transform: scale(1.14) rotate(45deg); opacity: 0.66; }
}

@keyframes recognitionPillGlow {
  0%, 100% { box-shadow: 0 10px 28px rgba(7, 3, 14, 0.16), 0 0 0 rgba(243, 200, 91, 0); }
  50% { box-shadow: 0 10px 28px rgba(7, 3, 14, 0.16), 0 0 24px rgba(243, 200, 91, 0.22); }
}

@keyframes recognitionPing {
  0% { transform: scale(0.96); opacity: 0.62; }
  75%, 100% { transform: scale(1.12); opacity: 0; }
}

@keyframes awardFramePulse {
  0%, 100% { transform: translate3d(0, 0, 0); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 0 rgba(243, 200, 91, 0); }
  50% { transform: translate3d(0, -3px, 0); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 34px rgba(243, 200, 91, 0.1), 0 0 0 1px rgba(243, 200, 91, 0.1); }
}

@keyframes awardIconGlow {
  0%, 100% { filter: brightness(1); box-shadow: 0 12px 28px rgba(243, 200, 91, 0.16); }
  50% { filter: brightness(1.08); box-shadow: 0 12px 32px rgba(243, 200, 91, 0.34); }
}

@media (max-width: 1080px) {
  .play-book,
  .play-rocket {
    left: 2%;
  }

  .play-pencil,
  .play-lightbulb {
    right: 2%;
  }

  .play-globe,
  .play-chart {
    right: 1.5%;
  }
}

@media (max-width: 760px) {
  .play-object {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    font-size: 15px;
    opacity: 0.75;
  }

  .play-book,
  .play-rocket {
    top: 4.5%;
    left: 4%;
  }

  .play-pencil,
  .play-lightbulb {
    top: 6%;
    right: 4%;
  }

  .play-globe,
  .play-chart,
  .play-doodle-dots,
  .play-doodle-zigzag {
    display: none;
  }

  .play-doodle-star,
  .play-doodle-spark {
    right: 6%;
    bottom: 3%;
    left: auto;
  }
}

@media (max-width: 420px) {
  .play-doodle-ring,
  .play-doodle-orbit,
  .play-doodle-star,
  .play-doodle-spark {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-play-scene::before,
  .section-play-scene::after,
  .play-object,
  .play-doodle,
  .home-main .recognition-panel .section-label,
  .home-main .recognition-panel .section-label::after,
  .recognition-grid > div,
  .recognition-grid i {
    animation: none !important;
  }

  .recognition-grid > div {
    transform: none !important;
  }
}

.home-motion-paused .home-main *,
.home-motion-paused .home-main *::before,
.home-motion-paused .home-main *::after {
  animation-play-state: paused !important;
}

/* =========================================================
   Homepage direction v2 — editorial hero + diaspora trust
   ========================================================= */
.home-hero {
  min-height: min(790px, calc(100svh - 86px));
  padding: clamp(62px, 6vw, 88px) 0 132px;
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 12%, rgba(141, 91, 208, 0.32), transparent 27%),
    radial-gradient(circle at 86% 20%, rgba(40, 200, 190, 0.2), transparent 23%),
    radial-gradient(circle at 82% 88%, rgba(95, 40, 166, 0.42), transparent 29%),
    linear-gradient(132deg, #170729 0%, #251044 53%, #102e3d 100%);
}

.home-hero::before {
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.65) 1px, transparent 0);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 94%);
}

.home-hero::after {
  position: absolute;
  right: -7%;
  bottom: -176px;
  left: -7%;
  z-index: -1;
  height: 290px;
  border-radius: 50% 46% 0 0 / 66% 62% 0 0;
  background: linear-gradient(90deg, rgba(40, 200, 190, 0.1), rgba(40, 200, 190, 0.24), rgba(101, 228, 218, 0.12));
  transform: rotate(-1.5deg);
  content: "";
}

.hero-layout {
  grid-template-columns: minmax(0, 1.04fr) minmax(520px, 0.96fr);
  gap: clamp(58px, 6vw, 84px);
}

.hero-copy h1 {
  max-width: 720px;
  margin-top: 17px;
  color: #ffffff;
  font-size: clamp(58px, 4.7vw, 72px);
  line-height: 1.01;
  letter-spacing: -0.058em;
}

.home-hero .word-purple {
  color: #c7a8f5;
}

.home-hero .word-teal {
  color: #65e4da;
}

.home-hero .word-teal::after {
  height: 0.075em;
  bottom: -0.08em;
  background: linear-gradient(90deg, #28c8be, #8df5ed);
  opacity: 0.86;
}

.home-hero .home-eyebrow {
  color: #9beee8;
}

.home-hero .hero-live-pill {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #d8fffb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-hero .hero-intro {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.75);
}

.home-hero .home-btn-primary {
  color: var(--home-purple-950);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(6, 2, 12, 0.28);
}

.home-hero .home-btn-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.home-hero .hero-trust span {
  color: rgba(255, 255, 255, 0.72);
}

.home-hero .hero-trust i {
  color: #65e4da;
}

.home-hero .hero-media {
  min-height: 570px;
}

.home-hero .hero-photo-wrap {
  height: 548px;
  border: 8px solid rgba(255, 255, 255, 0.12);
  border-radius: 38px 38px 86px 38px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 36px 90px rgba(5, 2, 12, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    36px 36px 0 rgba(40, 200, 190, 0.12);
}

.home-hero .hero-photo-wrap::after {
  background:
    linear-gradient(180deg, transparent 52%, rgba(17, 7, 30, 0.32) 100%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 28%, transparent 76%, rgba(101, 228, 218, 0.12));
}

.home-hero .hero-photo-wrap img {
  object-position: 54% center;
}

.home-hero .hero-photo-glow {
  background: conic-gradient(from 0deg, transparent, rgba(101, 228, 218, 0.18), transparent, rgba(199, 168, 245, 0.22), transparent);
  animation-duration: 22s;
}

.home-hero .hero-orb {
  background: rgba(199, 168, 245, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.home-hero .hero-orb-b {
  background: rgba(101, 228, 218, 0.12);
}

.home-hero .hero-chip,
.home-hero .hero-rating-badge,
.home-hero .hero-class-status {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 42px rgba(5, 2, 12, 0.25);
}

.home-hero .hero-chip {
  min-height: 52px;
  padding-inline: 18px;
}

.home-hero .hero-chip i {
  color: var(--home-teal-600);
}

.home-hero .chip-expert {
  top: 42px;
  left: -34px;
}

.home-hero .chip-live {
  top: 188px;
  right: -30px;
}

.home-hero .chip-group {
  bottom: 72px;
  left: -26px;
}

.home-hero .chip-age {
  right: 20px;
  bottom: -6px;
}

.home-hero .hero-rating-badge {
  top: 18px;
  right: 18px;
}

.home-hero .hero-class-status {
  bottom: 18px;
  left: 18px;
}

.home-hero .ambient-swoop {
  border-color: rgba(101, 228, 218, 0.1);
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.home-hero .swoop-b {
  border-color: rgba(199, 168, 245, 0.11);
  border-top-color: transparent;
  border-right-color: transparent;
}

.home-benefits {
  margin-top: -74px;
}

.benefit-grid {
  border-color: rgba(67, 18, 122, 0.1);
  box-shadow: 0 30px 76px rgba(31, 10, 56, 0.16);
}

.benefit-card {
  transition: background-color 0.25s ease;
}

.benefit-card:hover {
  background: var(--home-purple-50);
}

/* What we do */
.diaspora-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(248, 242, 255, 0.96), rgba(222, 249, 245, 0.98)),
    #f8f5fb;
}

.diaspora-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(67, 18, 122, 0.14) 1px, transparent 0);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 32%, transparent 70%, #000);
  content: "";
}

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

.diaspora-orb-purple {
  top: -140px;
  left: -110px;
  width: 340px;
  height: 340px;
  background: rgba(141, 91, 208, 0.16);
}

.diaspora-orb-teal {
  right: -120px;
  bottom: -170px;
  width: 390px;
  height: 390px;
  background: rgba(40, 200, 190, 0.16);
}

.diaspora-heading {
  max-width: 1080px;
  margin: 0 auto 54px;
  text-align: center;
}

.diaspora-heading .section-label {
  justify-content: center;
}

.diaspora-heading h2 {
  margin: 17px 0 24px;
  color: var(--home-ink);
  font-family: "Poppins", sans-serif;
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.diaspora-heading > p:not(.section-label) {
  max-width: 930px;
  margin: 0 auto;
  color: var(--home-copy);
  font-size: 17px;
  line-height: 1.8;
}

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

.diaspora-pillar {
  position: relative;
  min-height: 290px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(67, 18, 122, 0.09);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--home-shadow-sm);
  text-align: left;
  transition:
    transform 0.3s var(--home-ease),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.diaspora-pillar::after {
  position: absolute;
  right: -44px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--home-purple-50);
  transition: transform 0.4s var(--home-ease);
  content: "";
}

.diaspora-pillar:hover {
  border-color: rgba(67, 18, 122, 0.18);
  box-shadow: var(--home-shadow-md);
  transform: translateY(-7px);
}

.diaspora-pillar:hover::after {
  transform: scale(1.2);
}

.pillar-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(145deg, var(--home-purple-900), var(--home-purple-500));
  box-shadow: 0 14px 28px rgba(67, 18, 122, 0.2);
  font-size: 21px;
}

.pillar-icon-teal {
  background: linear-gradient(145deg, var(--home-teal-700), var(--home-teal-400));
}

.pillar-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: rgba(67, 18, 122, 0.38);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.diaspora-pillar h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--home-purple-950);
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  line-height: 1.35;
}

.diaspora-pillar p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--home-copy);
  font-size: 15px;
  line-height: 1.7;
}

/* Ten reasons */
.trust-reasons-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(101, 228, 218, 0.22), transparent 25%),
    radial-gradient(circle at 92% 90%, rgba(67, 18, 122, 0.24), transparent 31%),
    linear-gradient(135deg, #057b77 0%, #07938c 56%, #087d79 100%);
}

.trust-reasons-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.72) 1px, transparent 0);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, #000, transparent 88%);
  content: "";
}

.trust-reasons-section::after {
  position: absolute;
  top: 35%;
  right: -125px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(101, 228, 218, 0.16);
  content: "";
}

.reasons-heading {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.reasons-heading h2 {
  max-width: 860px;
  margin-inline: auto;
  color: #ffffff;
}

.reasons-heading .section-label {
  color: #cffffa;
}

.reasons-heading .section-label::before {
  background: #cffffa;
}

.reasons-heading > p:not(.section-label) {
  color: rgba(255, 255, 255, 0.78);
}

.reasons-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.reason-card {
  position: relative;
  min-height: 194px;
  padding: 25px 22px 24px;
  overflow: hidden;
  border: 1px solid rgba(67, 18, 122, 0.09);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(4, 55, 52, 0.14);
  text-align: left;
  transition:
    transform 0.28s var(--home-ease),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.reason-card::after {
  position: absolute;
  right: -35px;
  bottom: -54px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(141, 91, 208, 0.055);
  content: "";
}

.reason-card:hover {
  border-color: rgba(67, 18, 122, 0.18);
  box-shadow: var(--home-shadow-md);
  transform: translateY(-6px);
}

.reason-card > span {
  width: 42px;
  height: 36px;
  margin-bottom: 20px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--home-purple-700);
  background: var(--home-purple-50);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.reason-card h3 {
  margin: 0 0 8px;
  color: var(--home-purple-950);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.35;
}

.reason-card p {
  margin: 0;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.58;
}

@media (max-width: 1180px) {
  .home-hero .hero-layout {
    grid-template-columns: minmax(0, 0.96fr) minmax(470px, 1.04fr);
    gap: 46px;
  }

  .home-hero .hero-copy h1 {
    font-size: clamp(52px, 5.5vw, 62px);
  }

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

@media (max-width: 1040px) {
  .home-hero {
    min-height: auto;
    padding-top: 54px;
  }

  .home-hero .hero-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .home-hero .hero-copy {
    max-width: 820px;
  }

  .home-hero .hero-copy h1 {
    max-width: 820px;
    font-size: clamp(56px, 7.7vw, 72px);
  }

  .home-hero .hero-intro {
    max-width: 720px;
  }

  .home-hero .hero-media {
    width: min(760px, 100%);
  }

  .diaspora-heading h2 {
    font-size: clamp(42px, 5.8vw, 58px);
  }
}

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

  .diaspora-pillar {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .home-hero {
    padding: 38px 0 104px;
  }

  .home-hero .hero-copy h1 {
    font-size: clamp(46px, 9.5vw, 64px);
  }

  .home-hero .hero-media {
    min-height: auto;
  }

  .home-hero .hero-photo-wrap {
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 30px 30px 58px 30px;
    box-shadow:
      0 28px 68px rgba(5, 2, 12, 0.38),
      0 0 0 1px rgba(255, 255, 255, 0.08),
      20px 20px 0 rgba(40, 200, 190, 0.1);
  }

  .home-hero .hero-chip {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.94);
  }

  .diaspora-heading {
    margin-bottom: 40px;
  }

  .diaspora-heading h2 {
    font-size: clamp(38px, 7.4vw, 52px);
  }

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

@media (max-width: 620px) {
  .home-hero {
    padding-bottom: 92px;
  }

  .home-hero .hero-copy h1 {
    font-size: clamp(42px, 12vw, 52px);
  }

  .home-hero .hero-live-pill {
    background: rgba(255, 255, 255, 0.1);
  }

  .home-hero .hero-trust span {
    color: rgba(255, 255, 255, 0.78);
  }

  .diaspora-heading h2 {
    font-size: 36px;
  }

  .diaspora-heading > p:not(.section-label) {
    font-size: 16px;
    line-height: 1.72;
  }

  .diaspora-pillar {
    padding: 28px 24px;
    border-radius: 24px;
  }

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

  .reason-card {
    min-height: 0;
    padding: 24px;
  }
}

@media (hover: none), (pointer: coarse) {
  .diaspora-pillar:hover,
  .reason-card:hover {
    transform: none;
  }
}

/* =========================================================
   Hero direction v3 — white editorial stage + teal brand wave
   ========================================================= */
.home-hero {
  min-height: auto;
  padding: clamp(32px, 3.8vw, 48px) 0 96px;
  color: var(--home-ink);
  background:
    radial-gradient(circle at 6% 16%, rgba(141, 91, 208, 0.1), transparent 24%),
    radial-gradient(circle at 93% 18%, rgba(40, 200, 190, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 72%, #f3fbfa 100%);
}

.home-hero::before {
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(46, 11, 85, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 11, 85, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 68%);
}

.home-hero::after {
  display: none;
}

.home-hero .hero-layout {
  display: block;
}

.home-hero .hero-copy {
  max-width: 1040px;
  margin-inline: auto;
  text-align: center;
}

.home-hero .hero-live-pill {
  margin-inline: auto;
  margin-bottom: 11px;
  border-color: rgba(7, 143, 137, 0.16);
  background: rgba(232, 249, 247, 0.9);
  color: var(--home-teal-700);
  box-shadow: 0 10px 30px rgba(7, 143, 137, 0.07);
}

.home-hero .home-eyebrow {
  color: var(--home-teal-700);
}

.home-hero .hero-copy h1 {
  max-width: 980px;
  margin: 11px auto 18px;
  color: var(--home-ink);
  font-size: clamp(56px, 5vw, 72px);
  line-height: 1.01;
  letter-spacing: -0.06em;
}

.home-hero .word-teal {
  color: var(--home-teal-500);
}

.home-hero .word-teal::after {
  height: 0.07em;
  bottom: -0.07em;
  background: linear-gradient(90deg, var(--home-teal-500), #72e9df);
}

.home-hero .hero-intro {
  max-width: 790px;
  margin-inline: auto;
  color: var(--home-copy);
  line-height: 1.65;
}

.home-hero .hero-actions,
.home-hero .hero-trust {
  justify-content: center;
}

.home-hero .hero-actions {
  margin-top: 24px;
}

.home-hero .hero-trust {
  margin-top: 20px;
}

.home-hero .home-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--home-teal-700), var(--home-teal-500));
  box-shadow: 0 16px 34px rgba(7, 143, 137, 0.22);
}

.home-hero .home-btn-secondary {
  color: var(--home-purple-900);
  border: 1px solid var(--home-line-strong);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(39, 17, 63, 0.08);
}

.home-hero .hero-trust span {
  color: #5f5969;
}

.home-hero .hero-trust i {
  color: var(--home-teal-600);
}

.home-hero .hero-media {
  width: 100%;
  min-height: 500px;
  margin: 42px auto 0;
  display: block;
}

.home-hero .hero-photo-wrap {
  width: 100%;
  height: 480px;
  border: 9px solid #ffffff;
  border-radius: 38px;
  background: #ffffff;
  box-shadow:
    0 30px 78px rgba(39, 17, 63, 0.17),
    0 0 0 1px rgba(67, 18, 122, 0.07);
}

.home-hero .hero-photo-wrap::after {
  background:
    linear-gradient(180deg, rgba(17, 7, 30, 0.02) 34%, rgba(7, 123, 119, 0.26) 100%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 30%, transparent 74%, rgba(40, 200, 190, 0.08));
}

.home-hero .hero-photo-wrap img {
  object-position: 50% 48%;
}

.home-hero .hero-photo-glow,
.home-hero .hero-orb {
  display: none;
}

.hero-wave {
  position: absolute;
  right: 9px;
  bottom: 20px;
  left: 9px;
  z-index: 3;
  width: calc(100% - 18px);
  height: 174px;
  overflow: visible;
  pointer-events: none;
}

.hero-wave-back {
  fill: rgba(40, 200, 190, 0.47);
  animation: heroWaveBack 8s ease-in-out infinite;
  transform-origin: center bottom;
}

.hero-wave-front {
  fill: rgba(7, 143, 137, 0.58);
  animation: heroWaveFront 6.4s ease-in-out infinite;
  transform-origin: center bottom;
}

.home-hero .hero-rating-badge {
  display: none;
}

.home-hero .hero-class-status {
  right: auto;
  bottom: 30px;
  left: 50%;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 15px 34px rgba(4, 55, 52, 0.2);
  transform: translateX(-50%);
}

.home-hero .hero-chip {
  min-height: 52px;
  padding-inline: 18px;
  border-color: rgba(67, 18, 122, 0.09);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 38px rgba(39, 17, 63, 0.16);
}

.home-hero .chip-expert {
  top: 30px;
  left: 30px;
}

.home-hero .chip-live {
  top: 30px;
  right: 30px;
}

.home-hero .chip-group {
  bottom: 112px;
  left: 32px;
}

.home-hero .chip-age {
  right: 32px;
  bottom: 112px;
}

.home-hero .ambient-swoop {
  border-color: rgba(7, 143, 137, 0.08);
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.home-hero .swoop-b {
  border-color: rgba(141, 91, 208, 0.08);
  border-top-color: transparent;
  border-right-color: transparent;
}

.home-hero .hero-copy .hero-live-pill,
.home-hero .hero-copy .home-eyebrow,
.home-hero .hero-copy h1,
.home-hero .hero-copy .hero-intro,
.home-hero .hero-copy .hero-actions,
.home-hero .hero-copy .hero-trust {
  opacity: 0;
  transform: translateY(18px);
}

.home-hero .hero-copy.home-in-view .hero-live-pill {
  animation: heroContentRise 0.55s 0.04s var(--home-ease) both;
}

.home-hero .hero-copy.home-in-view .home-eyebrow {
  animation: heroContentRise 0.55s 0.11s var(--home-ease) both;
}

.home-hero .hero-copy.home-in-view h1 {
  animation: heroContentRise 0.62s 0.18s var(--home-ease) both;
}

.home-hero .hero-copy.home-in-view .hero-intro {
  animation: heroContentRise 0.58s 0.28s var(--home-ease) both;
}

.home-hero .hero-copy.home-in-view .hero-actions {
  animation: heroContentRise 0.58s 0.37s var(--home-ease) both;
}

.home-hero .hero-copy.home-in-view .hero-trust {
  animation: heroContentRise 0.58s 0.46s var(--home-ease) both;
}

.home-benefits {
  margin-top: -64px;
}

.home-benefits .benefit-card.ntk-home-reveal {
  filter: none;
  animation: heroContentRise 0.58s var(--home-ease) both;
}

.home-benefits .benefit-card:nth-child(1) {
  animation-delay: 2s;
}

.home-benefits .benefit-card:nth-child(2) {
  animation-delay: 2.1s;
}

.home-benefits .benefit-card:nth-child(3) {
  animation-delay: 2.2s;
}

.home-benefits .benefit-card:nth-child(4) {
  animation-delay: 2.3s;
}

@keyframes heroContentRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroWaveBack {
  0%, 100% { transform: translate3d(0, 2px, 0) scaleY(1); }
  50% { transform: translate3d(0, -7px, 0) scaleY(1.035); }
}

@keyframes heroWaveFront {
  0%, 100% { transform: translate3d(0, 0, 0) scaleY(1); }
  50% { transform: translate3d(0, 8px, 0) scaleY(0.96); }
}

@media (max-width: 1040px) {
  .home-hero .hero-copy h1 {
    font-size: clamp(56px, 7vw, 70px);
  }

  .home-hero .hero-media {
    min-height: 500px;
    margin-top: 44px;
  }

  .home-hero .hero-photo-wrap {
    height: 480px;
  }

  .hero-wave {
    height: 172px;
  }
}

@media (max-width: 820px) {
  .home-hero {
    padding: 38px 0 94px;
  }

  .home-hero .hero-copy h1 {
    font-size: clamp(47px, 9.2vw, 62px);
  }

  .home-hero .hero-media {
    min-height: auto;
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-hero .hero-photo-wrap {
    grid-column: 1 / -1;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 28px;
    box-shadow:
      0 24px 58px rgba(39, 17, 63, 0.15),
      0 0 0 1px rgba(67, 18, 122, 0.06);
  }

  .hero-wave,
  .home-hero .hero-class-status {
    display: none;
  }

  .home-hero .hero-chip {
    position: static;
    width: 100%;
    justify-content: center;
    animation-duration: 5.4s;
  }

  .home-benefits {
    margin-top: -48px;
  }
}

@media (max-width: 620px) {
  .home-hero {
    padding-bottom: 86px;
  }

  .home-hero .hero-copy h1 {
    font-size: clamp(41px, 11.8vw, 50px);
  }

  .home-hero .hero-intro {
    font-size: 16px;
  }

  .home-hero .hero-live-pill {
    background: rgba(232, 249, 247, 0.94);
  }

  .home-hero .hero-trust span {
    color: #5f5969;
  }

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

  .home-hero .hero-photo-wrap {
    aspect-ratio: 4 / 3;
  }
}

/* =========================================================
   Homepage direction v4 — cinematic image hero + editorial story
   ========================================================= */
.home-hero {
  min-height: clamp(680px, calc(100svh - 110px), 790px);
  padding: 0;
  display: grid;
  place-items: stretch;
  overflow: hidden;
  color: #ffffff;
  background: #173d3f url("images/hero-online-learning.webp") center 46% / cover no-repeat;
}

.home-hero::before {
  display: block;
  z-index: 0;
  opacity: 1;
  background:
    radial-gradient(circle at 50% 42%, rgba(5, 24, 28, 0.3) 0%, rgba(5, 24, 28, 0.1) 38%, transparent 66%),
    linear-gradient(90deg, rgba(8, 31, 34, 0.72) 0%, rgba(10, 29, 33, 0.54) 42%, rgba(7, 52, 53, 0.36) 100%),
    linear-gradient(180deg, rgba(11, 7, 19, 0.22) 0%, rgba(7, 21, 24, 0.14) 58%, rgba(5, 57, 57, 0.55) 100%);
  background-size: auto;
  mask-image: none;
  content: "";
}

.home-hero::after {
  position: absolute;
  right: -5%;
  bottom: -116px;
  left: -5%;
  z-index: 0;
  display: block;
  height: 220px;
  border-radius: 48% 52% 0 0 / 56% 58% 0 0;
  background: rgba(22, 190, 178, 0.28);
  transform: rotate(-1.5deg);
  animation: heroTide 8s ease-in-out infinite;
  content: "";
}

.home-hero .hero-ambient {
  z-index: 1;
  opacity: 0.76;
}

.home-hero .ambient-swoop,
.home-hero .ambient-dot {
  display: none;
}

.home-hero .ambient-star {
  color: #ffe266;
  filter: drop-shadow(0 0 14px rgba(255, 226, 102, 0.35));
}

.home-hero .hero-layout {
  position: relative;
  z-index: 2;
  min-height: inherit;
  padding-top: clamp(54px, 7vh, 82px);
  padding-bottom: clamp(112px, 14vh, 138px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
}

.home-hero .hero-copy {
  width: min(1100px, 100%);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.home-hero .hero-live-pill {
  margin-right: auto;
  margin-bottom: 16px;
  margin-left: auto;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #f3fffd;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 12px 36px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.home-hero .home-eyebrow {
  color: #a4fff7;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
}

.home-hero .hero-copy h1 {
  max-width: 1100px;
  margin: 12px auto 22px;
  color: #ffffff;
  font-size: clamp(56px, 5.35vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.058em;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.home-hero .word-teal {
  color: #80eee5;
}

.home-hero .word-teal::after {
  bottom: -0.08em;
  height: 0.065em;
  background: linear-gradient(90deg, rgba(128, 238, 229, 0.95), rgba(255, 255, 255, 0.68));
}

.home-hero .hero-intro {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.32);
}

.home-hero .hero-actions,
.home-hero .hero-trust {
  justify-content: center;
}

.home-hero .hero-actions {
  margin-top: 30px;
}

.home-hero .home-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0a9e96, #1fc8bc);
  box-shadow: 0 18px 40px rgba(1, 69, 67, 0.34);
}

.home-hero .home-btn-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 15px 36px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(14px);
}

.home-hero .hero-trust {
  margin-top: 25px;
}

.home-hero .hero-trust span {
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.home-hero .hero-trust i {
  color: #75eee4;
}

.home-hero .hero-media {
  display: none !important;
}

.home-benefits {
  position: relative;
  z-index: 4;
  margin-top: -76px;
}

.home-benefits .benefit-grid {
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 28px 70px rgba(25, 12, 38, 0.16);
}

@keyframes heroTide {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1.5deg) scaleX(1); }
  50% { transform: translate3d(0, -10px, 0) rotate(0.5deg) scaleX(1.03); }
}

/* What we do: an editorial story, not a copied card row. */
.diaspora-section {
  padding: clamp(100px, 9vw, 148px) 0;
  background:
    radial-gradient(circle at 6% 10%, rgba(145, 99, 213, 0.12), transparent 26%),
    radial-gradient(circle at 92% 88%, rgba(25, 194, 181, 0.18), transparent 29%),
    linear-gradient(135deg, #fbf9fd 0%, #f3fbfa 52%, #e9f8f6 100%);
}

.diaspora-section::before {
  opacity: 0.28;
  background-size: 34px 34px;
}

.diaspora-story {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: start;
  gap: clamp(56px, 7vw, 108px);
}

.diaspora-heading {
  max-width: 560px;
  margin: 0;
  text-align: left;
}

.diaspora-heading .section-label {
  justify-content: flex-start;
}

.diaspora-heading h2 {
  margin-top: 20px;
  font-size: clamp(42px, 4.25vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.052em;
}

.diaspora-heading > p:last-of-type {
  margin-top: 26px;
  color: #625b6c;
  font-size: 16px;
  line-height: 1.78;
}

.diaspora-promise {
  margin-top: 34px;
  padding: 25px 26px;
  border-left: 4px solid var(--home-teal-500);
  border-radius: 0 20px 20px 0;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 42px rgba(39, 17, 63, 0.08);
  backdrop-filter: blur(10px);
}

.diaspora-promise span {
  display: block;
  margin-bottom: 8px;
  color: var(--home-teal-700);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.diaspora-promise strong {
  color: var(--home-purple-950);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.diaspora-pillars {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.diaspora-pillars::before {
  position: absolute;
  top: 54px;
  bottom: 54px;
  left: 35px;
  width: 2px;
  background: linear-gradient(var(--home-purple-500), var(--home-teal-500));
  opacity: 0.28;
  content: "";
}

.diaspora-pillar {
  min-height: 0;
  padding: 28px 30px 28px 24px;
  display: grid;
  grid-template-columns: 70px 46px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  overflow: visible;
  border: 1px solid rgba(68, 22, 119, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 52px rgba(39, 17, 63, 0.09);
  backdrop-filter: blur(12px);
}

.diaspora-pillar:nth-child(2) {
  margin-left: 44px;
  border-color: rgba(25, 194, 181, 0.32);
  background: linear-gradient(135deg, #087f7a, #0ba39a);
  box-shadow: 0 24px 58px rgba(5, 115, 110, 0.23);
}

.diaspora-pillar::after {
  display: none;
}

.diaspora-pillar .pillar-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin: 0;
}

.diaspora-pillar .pillar-number {
  position: static;
  top: auto;
  right: auto;
  align-self: start;
  padding-top: 7px;
  color: rgba(67, 18, 122, 0.36);
  font-size: 12px;
}

.diaspora-pillar h3,
.diaspora-pillar p {
  margin: 0;
}

.diaspora-pillar h3 {
  margin-bottom: 7px;
  font-size: clamp(18px, 1.55vw, 22px);
}

.diaspora-pillar p {
  font-size: 14px;
  line-height: 1.68;
}

.diaspora-pillar:nth-child(2) .pillar-number,
.diaspora-pillar:nth-child(2) h3,
.diaspora-pillar:nth-child(2) p {
  color: #ffffff;
}

.diaspora-pillar:nth-child(2) .pillar-number,
.diaspora-pillar:nth-child(2) p {
  color: rgba(255, 255, 255, 0.78);
}

/* Ten reasons: split editorial index with paired reason rows. */
.trust-reasons-section {
  padding: clamp(100px, 9vw, 148px) 0;
  background:
    radial-gradient(circle at 4% 10%, rgba(122, 239, 228, 0.14), transparent 25%),
    radial-gradient(circle at 98% 90%, rgba(198, 160, 244, 0.16), transparent 28%),
    linear-gradient(145deg, #075f5c 0%, #087f79 46%, #096c68 100%);
}

.trust-reasons-section::before {
  opacity: 0.1;
}

.trust-reasons-section::after {
  width: 460px;
  height: 460px;
  opacity: 0.26;
}

.reasons-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(48px, 7vw, 100px);
}

.reasons-heading {
  position: static;
  top: auto;
  max-width: 440px;
  text-align: left;
}

.reasons-heading .section-label {
  justify-content: flex-start;
  color: #aafff7;
}

.reasons-heading h2 {
  margin: 22px 0 18px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(42px, 4.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.052em;
}

.reasons-heading > p {
  max-width: 410px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.72;
}

.reasons-count {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.reasons-count strong {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 92px;
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.reasons-count span {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  color: #aafff7;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

.reason-card {
  min-height: 156px;
  padding: 24px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.reason-card:nth-child(4n + 1),
.reason-card:nth-child(4n + 4) {
  background: rgba(255, 255, 255, 0.14);
}

.reason-card::after {
  right: -46px;
  bottom: -76px;
  display: block;
  width: 120px;
  height: 120px;
  background: rgba(128, 238, 229, 0.08);
}

.reason-card > span {
  width: 44px;
  height: 44px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(128, 238, 229, 0.22);
  border-radius: 14px;
  background: rgba(128, 238, 229, 0.1);
  color: #aafff7;
}

.reason-card h3 {
  margin: 1px 0 7px;
  color: #ffffff;
  font-size: 16px;
}

.reason-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.6;
}

.reason-card:hover {
  border-color: rgba(128, 238, 229, 0.36);
  background: rgba(255, 255, 255, 0.17);
  box-shadow: 0 22px 46px rgba(2, 50, 49, 0.22);
  transform: translateY(-4px);
}

@media (max-width: 1080px) {
  .diaspora-story,
  .reasons-shell {
    grid-template-columns: 1fr;
  }

  .diaspora-heading,
  .reasons-heading {
    max-width: 760px;
  }

  .diaspora-heading h2,
  .reasons-heading h2 {
    max-width: 740px;
  }

  .reasons-heading {
    position: static;
  }

  .reasons-heading > p {
    max-width: 650px;
  }

  .reasons-count {
    position: absolute;
    top: 8px;
    right: 0;
    margin: 0;
  }
}

@media (max-width: 820px) {
  .home-hero {
    min-height: 720px;
    padding: 0;
    background-position: 38% center;
  }

  .home-hero .hero-layout {
    padding-top: 72px;
    padding-bottom: 126px;
  }

  .home-hero .hero-copy h1 {
    font-size: clamp(48px, 7vw, 54px);
  }

  .home-benefits {
    margin-top: -52px;
  }

  .diaspora-pillar:nth-child(2) {
    margin-left: 24px;
  }

  .reasons-count {
    position: static;
    margin-top: 32px;
  }
}

@media (max-width: 680px) {
  .home-hero {
    min-height: 700px;
    background-position: 42% center;
  }

  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(5, 23, 27, 0.62) 0%, rgba(5, 23, 27, 0.52) 50%, rgba(4, 52, 52, 0.68) 100%),
      radial-gradient(circle at 50% 40%, rgba(4, 24, 27, 0.18), rgba(4, 24, 27, 0.46) 72%);
  }

  .home-hero .hero-layout {
    padding-top: 56px;
    padding-bottom: 116px;
  }

  .home-hero .hero-copy h1 {
    font-size: clamp(42px, 12vw, 52px);
    line-height: 1.02;
  }

  .home-hero .hero-live-pill {
    background: rgba(255, 255, 255, 0.12);
  }

  .home-hero .hero-intro {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
  }

  .home-hero .hero-trust span {
    color: rgba(255, 255, 255, 0.82);
  }

  .diaspora-section,
  .trust-reasons-section {
    padding: 86px 0;
  }

  .diaspora-heading h2,
  .reasons-heading h2 {
    font-size: clamp(36px, 10.5vw, 46px);
  }

  .diaspora-pillar,
  .diaspora-pillar:nth-child(2) {
    margin-left: 0;
    padding: 23px 20px;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 13px;
  }

  .diaspora-pillars::before,
  .diaspora-pillar .pillar-number {
    display: none;
  }

  .diaspora-pillar .pillar-icon {
    width: 50px;
    height: 50px;
  }

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

  .reason-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero::after {
    animation: none;
  }
}

/* =========================================================
   Homepage direction v5 — global, playful and brand-led
   ========================================================= */
:root {
  --home-pink: #f42786;
  --home-pink-bright: #ff69ae;
  --home-pink-soft: #fff0f7;
}

.home-main {
  padding-top: 0 !important;
}

.home-hero {
  min-height: clamp(720px, 100svh, 900px);
  background: #173d3f;
}

.hero-scene {
  position: absolute;
  inset: -4%;
  z-index: -2;
  background: url("images/hero-online-learning.webp") center 46% / cover no-repeat;
  transform: scale(1.035);
  animation: heroSceneBreathe 14s ease-in-out infinite alternate;
  will-change: transform;
}

.home-hero::before {
  z-index: -1;
  background:
    radial-gradient(circle at 82% 23%, rgba(244, 39, 134, 0.2), transparent 24%),
    radial-gradient(circle at 50% 42%, rgba(5, 24, 28, 0.26) 0%, rgba(5, 24, 28, 0.08) 38%, transparent 67%),
    linear-gradient(90deg, rgba(8, 31, 34, 0.7) 0%, rgba(10, 29, 33, 0.48) 44%, rgba(7, 52, 53, 0.34) 100%),
    linear-gradient(180deg, rgba(11, 7, 19, 0.18) 0%, rgba(7, 21, 24, 0.1) 56%, rgba(5, 57, 57, 0.54) 100%);
}

.home-hero::after {
  background: linear-gradient(90deg, rgba(22, 190, 178, 0.3), rgba(244, 39, 134, 0.16), rgba(22, 190, 178, 0.3));
}

.home-hero .hero-layout {
  min-height: clamp(720px, 100svh, 900px);
  padding-top: clamp(138px, 19vh, 180px);
  padding-bottom: clamp(118px, 16vh, 152px);
}

.home-hero .hero-copy {
  max-width: 1040px;
}

.home-hero .hero-live-pill {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(22, 31, 35, 0.34);
}

.home-hero .hero-live-dot {
  background: var(--home-pink-bright);
  box-shadow: 0 0 0 5px rgba(255, 105, 174, 0.15), 0 0 20px rgba(255, 105, 174, 0.64);
}

.home-hero .home-eyebrow {
  color: #b9fff9;
}

.home-hero .hero-copy h1 {
  max-width: 1040px;
  margin-bottom: 20px;
  font-size: clamp(58px, 5.45vw, 78px);
  line-height: 1;
}

.home-hero .word-pink {
  color: #ff91c4;
  text-shadow: 0 8px 32px rgba(85, 6, 46, 0.3);
}

.home-hero .word-pink::after,
.home-hero .hero-copy h1::after {
  display: none !important;
}

.home-hero .hero-intro {
  max-width: 690px;
  font-size: clamp(17px, 1.35vw, 20px);
}

.home-hero .home-btn-primary {
  background: linear-gradient(135deg, #0a9e96 0%, #18c5b9 58%, #42d8cd 100%);
}

.home-hero .home-btn-secondary:hover {
  border-color: rgba(255, 145, 196, 0.56);
  background: rgba(244, 39, 134, 0.18);
}

.home-hero .hero-trust {
  gap: 22px;
}

.home-hero .hero-trust i {
  color: #ff91c4;
}

.hero-learning-object {
  position: absolute;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: #ffffff;
  font-size: 21px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 18px 44px rgba(5, 21, 24, 0.2);
  backdrop-filter: blur(12px);
  pointer-events: none;
  will-change: transform;
}

.learning-book {
  top: 26%;
  left: 6%;
  color: #fff0f7;
  background: rgba(244, 39, 134, 0.2);
  animation: learningFloatOne 6.8s ease-in-out infinite;
}

.learning-pencil {
  top: 24%;
  right: 7%;
  color: #fff1ac;
  animation: learningFloatTwo 7.6s ease-in-out infinite;
}

.learning-globe {
  right: 13%;
  bottom: 24%;
  color: #9afff7;
  background: rgba(25, 183, 179, 0.2);
  animation: learningFloatThree 8.2s ease-in-out infinite;
}

.learning-calculator {
  bottom: 23%;
  left: 12%;
  color: #ffc4df;
  background: rgba(244, 39, 134, 0.16);
  animation: learningFloatTwo 7.2s 0.8s ease-in-out infinite reverse;
}

.learning-star {
  top: 48%;
  right: 3.2%;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: #ffe568;
  font-size: 16px;
  animation: learningSpinFloat 9s linear infinite;
}

@keyframes heroSceneBreathe {
  0% { transform: scale(1.035) translate3d(-0.4%, 0, 0); }
  100% { transform: scale(1.085) translate3d(0.7%, -0.6%, 0); }
}

@keyframes learningFloatOne {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-7deg); }
  50% { transform: translate3d(10px, -18px, 0) rotate(5deg); }
}

@keyframes learningFloatTwo {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(7deg); }
  50% { transform: translate3d(-12px, 16px, 0) rotate(-5deg); }
}

@keyframes learningFloatThree {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(14px, -12px, 0) scale(1.08); }
}

@keyframes learningSpinFloat {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(-8px, -14px, 0) rotate(180deg); }
  100% { transform: translate3d(0, 0, 0) rotate(360deg); }
}

/* Branded section label used by the two redesigned reference sections. */
.diaspora-section .section-label,
.trust-reasons-section .section-label {
  min-height: 38px;
  padding: 9px 15px;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(244, 39, 134, 0.18);
  border-radius: 999px;
  color: #7a1850;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(244, 39, 134, 0.1);
  letter-spacing: 0.12em;
  backdrop-filter: blur(10px);
}

.diaspora-section .section-label::before,
.trust-reasons-section .section-label::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-pink);
  box-shadow: 0 0 0 5px rgba(244, 39, 134, 0.1);
}

/* What we do — compact, bright three-part story. */
.diaspora-section {
  padding: clamp(94px, 8vw, 128px) 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(244, 39, 134, 0.1), transparent 26%),
    radial-gradient(circle at 92% 84%, rgba(25, 183, 179, 0.13), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #fff8fc 48%, #f1fbfa 100%);
}

.diaspora-story {
  display: block;
}

.diaspora-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.diaspora-heading .section-label {
  justify-content: center;
}

.diaspora-heading h2 {
  max-width: 720px;
  margin: 20px auto 16px;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.diaspora-heading > p:last-of-type {
  max-width: 660px;
  margin: 0 auto;
  color: #61596b;
  font-size: 17px;
  line-height: 1.65;
}

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

.diaspora-pillars::before {
  display: none;
}

.diaspora-pillar,
.diaspora-pillar:nth-child(2) {
  min-height: 250px;
  margin: 0;
  padding: 32px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-content: center;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(67, 18, 122, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 58px rgba(39, 17, 63, 0.1);
}

.diaspora-pillar:nth-child(2) {
  border-color: rgba(25, 183, 179, 0.28);
  background: linear-gradient(145deg, #087d78, #0aa49a);
  box-shadow: 0 24px 60px rgba(5, 115, 110, 0.22);
}

.diaspora-pillar:nth-child(3) {
  border-color: rgba(244, 39, 134, 0.15);
  background: linear-gradient(145deg, #ffffff, #fff0f7);
}

.diaspora-pillar::after {
  right: -38px;
  bottom: -50px;
  display: block;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: rgba(244, 39, 134, 0.07);
  transform: none;
}

.diaspora-pillar .pillar-icon {
  width: 58px;
  height: 58px;
}

.diaspora-pillar .pillar-number {
  position: absolute;
  top: 26px;
  right: 27px;
  display: block;
  padding: 0;
  color: rgba(67, 18, 122, 0.3);
}

.diaspora-pillar h3 {
  margin-bottom: 8px;
  font-size: clamp(19px, 1.55vw, 22px);
}

.diaspora-pillar p {
  font-size: 14px;
  line-height: 1.62;
}

.diaspora-pillar:hover {
  transform: translateY(-8px) rotate(-0.35deg);
}

/* Why families choose us — light bento rhythm with pink accents. */
.trust-reasons-section {
  padding: clamp(96px, 8vw, 132px) 0;
  background:
    radial-gradient(circle at 12% 4%, rgba(244, 39, 134, 0.11), transparent 25%),
    radial-gradient(circle at 90% 88%, rgba(25, 183, 179, 0.14), transparent 26%),
    linear-gradient(145deg, #fffafd 0%, #f9f7fc 48%, #effaf9 100%);
}

.trust-reasons-section::before {
  opacity: 0.18;
}

.trust-reasons-section::after {
  background: rgba(244, 39, 134, 0.12);
}

.reasons-shell {
  display: block;
}

.reasons-heading {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

.reasons-heading .section-label {
  justify-content: center;
  color: #7a1850;
}

.reasons-heading h2 {
  max-width: 720px;
  margin: 20px auto 16px;
  color: var(--home-purple-950);
  font-size: clamp(40px, 4.15vw, 56px);
  line-height: 1.07;
  letter-spacing: -0.048em;
}

.reasons-heading > p {
  max-width: 600px;
  margin: 0 auto;
  color: #625a6d;
  font-size: 17px;
  line-height: 1.62;
}

.trust-reasons-section .reasons-heading > p:not(.section-label) {
  color: #625a6d;
}

.reasons-count {
  display: none;
}

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

.reason-card {
  min-height: 158px;
  padding: 24px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  gap: 15px;
  border: 1px solid rgba(67, 18, 122, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(39, 17, 63, 0.08);
  backdrop-filter: blur(10px);
}

.reason-card:nth-child(1),
.reason-card:nth-child(5) {
  grid-column: span 2;
}

.reason-card:nth-child(1) {
  border-color: rgba(25, 183, 179, 0.25);
  background: linear-gradient(135deg, #087e79, #0aa79d);
  box-shadow: 0 22px 54px rgba(5, 115, 110, 0.2);
}

.reason-card:nth-child(3),
.reason-card:nth-child(10) {
  border-color: rgba(244, 39, 134, 0.16);
  background: linear-gradient(145deg, #fff8fc, #ffeaf4);
}

.reason-card:nth-child(5) {
  border-color: rgba(121, 66, 183, 0.22);
  background: linear-gradient(135deg, #54218d, #8c3bb8 58%, #d83f98 100%);
  box-shadow: 0 22px 54px rgba(84, 33, 141, 0.19);
}

.reason-card:nth-child(7) {
  background: linear-gradient(145deg, #ffffff, #edfafa);
}

.reason-card:nth-child(9) {
  background: linear-gradient(145deg, #ffffff, #f5edfc);
}

.reason-card:nth-child(1) h3,
.reason-card:nth-child(1) p,
.reason-card:nth-child(5) h3,
.reason-card:nth-child(5) p {
  color: #ffffff;
}

.reason-card:nth-child(1) p,
.reason-card:nth-child(5) p {
  color: rgba(255, 255, 255, 0.76);
}

.reason-card > span {
  border-color: rgba(244, 39, 134, 0.16);
  background: rgba(244, 39, 134, 0.09);
  color: #bd1f6a;
}

.reason-card:nth-child(1) > span,
.reason-card:nth-child(5) > span {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
}

.reason-card h3 {
  color: var(--home-purple-950);
  font-size: 16px;
}

.reason-card p {
  color: #686071;
  line-height: 1.55;
}

.reason-card::after {
  background: rgba(244, 39, 134, 0.06);
}

.reason-card:hover {
  border-color: rgba(244, 39, 134, 0.28);
  background-color: #ffffff;
  box-shadow: 0 24px 56px rgba(67, 18, 122, 0.14);
  transform: translateY(-6px);
}

@media (max-width: 1080px) {
  .diaspora-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .reason-card:nth-child(1),
  .reason-card:nth-child(5) {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .home-hero,
  .home-hero .hero-layout {
    min-height: 760px;
  }

  .home-hero .hero-layout {
    padding-top: 132px;
    padding-bottom: 112px;
  }

  .home-hero .hero-copy h1 {
    font-size: clamp(46px, 7vw, 54px);
  }

  .learning-book {
    top: 20%;
    left: 4%;
  }

  .learning-pencil {
    top: 22%;
    right: 4%;
  }

  .learning-calculator,
  .learning-globe {
    bottom: 18%;
  }

  .diaspora-pillars {
    grid-template-columns: 1fr;
  }

  .diaspora-pillar,
  .diaspora-pillar:nth-child(2) {
    min-height: 190px;
  }
}

@media (max-width: 620px) {
  .home-hero,
  .home-hero .hero-layout {
    min-height: 760px;
  }

  .hero-scene {
    background-position: 42% center;
  }

  .home-hero .hero-layout {
    padding-top: 120px;
    padding-bottom: 106px;
  }

  .home-hero .hero-copy h1 {
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(36px, 10vw, 40px);
    line-height: 1.03;
    overflow-wrap: anywhere;
  }

  .home-hero .hero-intro {
    max-width: 300px;
  }

  .home-hero .hero-trust {
    gap: 11px 15px;
  }

  .hero-learning-object {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    font-size: 16px;
    opacity: 0.82;
  }

  .learning-book {
    top: 19%;
    left: 3%;
  }

  .learning-pencil {
    top: 23%;
    right: 3%;
  }

  .learning-globe,
  .learning-calculator,
  .learning-star {
    display: none;
  }

  .diaspora-section,
  .trust-reasons-section {
    padding: 82px 0;
  }

  .diaspora-heading,
  .reasons-heading {
    margin-bottom: 38px;
  }

  .diaspora-heading h2,
  .reasons-heading h2 {
    font-size: clamp(34px, 9.6vw, 42px);
  }

  .diaspora-heading > p:last-of-type,
  .reasons-heading > p {
    font-size: 16px;
  }

  .diaspora-pillar,
  .diaspora-pillar:nth-child(2) {
    min-height: 0;
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 25px 22px;
  }

  .diaspora-pillar .pillar-number {
    display: block;
    top: 20px;
    right: 22px;
  }

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

  .reason-card:nth-child(1),
  .reason-card:nth-child(5) {
    grid-column: span 1;
  }

  .reason-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scene,
  .hero-learning-object {
    animation: none !important;
  }
}

/* =========================================================
   Homepage refinement v6 — teal system, award gold, pre-footer
   ========================================================= */
:root {
  --home-gold: #f3c85b;
  --home-gold-soft: #fff0b9;
}

/* Keep one compact visual language for every section eyebrow. */
.home-main .section-label {
  min-height: 38px;
  padding: 9px 15px;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(9, 158, 151, 0.2);
  border-radius: 999px;
  color: #087d78;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 26px rgba(7, 126, 121, 0.09);
  letter-spacing: 0.12em;
  backdrop-filter: blur(10px);
}

.home-main .section-label::before {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--home-teal-500);
  box-shadow: 0 0 0 5px rgba(18, 170, 163, 0.1);
}

.home-btn i {
  font-size: 0.92em;
  transition: transform 0.25s var(--home-ease);
}

.home-btn:hover i {
  transform: translateX(3px);
}

.home-hero .hero-live-dot {
  background: #2cd7cb;
  box-shadow: 0 0 0 5px rgba(44, 215, 203, 0.16), 0 0 20px rgba(44, 215, 203, 0.68);
}

/* Remove the extra pink wash outside the approved hero. */
.diaspora-section {
  background:
    radial-gradient(circle at 9% 10%, rgba(25, 183, 179, 0.11), transparent 26%),
    radial-gradient(circle at 92% 84%, rgba(111, 67, 165, 0.1), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f8fbfb 50%, #effaf9 100%);
}

.diaspora-pillar:nth-child(3) {
  border-color: rgba(18, 170, 163, 0.17);
  background: linear-gradient(145deg, #ffffff, #eefaf9);
}

.diaspora-pillar::after {
  background: rgba(18, 170, 163, 0.07);
}

.trust-reasons-section {
  background:
    radial-gradient(circle at 12% 4%, rgba(115, 76, 171, 0.09), transparent 25%),
    radial-gradient(circle at 90% 88%, rgba(25, 183, 179, 0.14), transparent 26%),
    linear-gradient(145deg, #ffffff 0%, #f8f7fb 48%, #effaf9 100%);
}

.trust-reasons-section::after {
  background: rgba(18, 170, 163, 0.11);
}

.reason-card:nth-child(3),
.reason-card:nth-child(10) {
  border-color: rgba(105, 70, 157, 0.14);
  background: linear-gradient(145deg, #ffffff, #f4eff9);
}

.reason-card:nth-child(5) {
  border-color: rgba(16, 160, 153, 0.24);
  background: linear-gradient(135deg, #54218d 0%, #613497 48%, #087f7a 100%);
  box-shadow: 0 22px 54px rgba(66, 31, 108, 0.19);
}

.reason-card > span {
  border-color: rgba(18, 170, 163, 0.18);
  color: #087d78;
  background: rgba(18, 170, 163, 0.09);
}

.reason-card::after {
  background: rgba(18, 170, 163, 0.06);
}

.reason-card:hover {
  border-color: rgba(18, 170, 163, 0.3);
}

/* Recognition receives a restrained award-gold treatment. */
.recognition-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 200, 91, 0.18), transparent 27%),
    radial-gradient(circle at 91% 78%, rgba(18, 170, 163, 0.2), transparent 28%),
    linear-gradient(145deg, #201032 0%, var(--home-purple-950) 54%, #171328 100%);
}

.recognition-section::after {
  position: absolute;
  top: -90px;
  left: 50%;
  width: min(640px, 70vw);
  height: 180px;
  border-radius: 50%;
  background: rgba(243, 200, 91, 0.11);
  filter: blur(44px);
  transform: translateX(-50%);
  content: "";
}

.home-main .recognition-panel .section-label {
  border-color: rgba(243, 200, 91, 0.32);
  color: var(--home-gold-soft);
  background: rgba(243, 200, 91, 0.1);
  box-shadow: 0 10px 28px rgba(7, 3, 14, 0.16);
}

.home-main .recognition-panel .section-label::before {
  background: var(--home-gold);
  box-shadow: 0 0 0 5px rgba(243, 200, 91, 0.11), 0 0 16px rgba(243, 200, 91, 0.52);
}

.recognition-grid > div {
  border-color: rgba(243, 200, 91, 0.19);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(243, 200, 91, 0.055));
}

.recognition-grid > div:hover {
  border-color: rgba(243, 200, 91, 0.36);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(243, 200, 91, 0.09));
}

.recognition-grid i {
  border: 1px solid rgba(255, 226, 146, 0.4);
  color: #301b48;
  background: linear-gradient(145deg, #fff1bd 0%, var(--home-gold) 62%, #dca63d 100%);
  box-shadow: 0 12px 28px rgba(243, 200, 91, 0.16);
}

/* Referral and contact experience inspired by the supplied pre-footer. */
.community-section {
  isolation: isolate;
  overflow: hidden;
  padding: clamp(94px, 8vw, 128px) 0 clamp(120px, 11vw, 168px);
  color: #ffffff;
  background:
    radial-gradient(circle at 11% 28%, rgba(18, 170, 163, 0.17), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(126, 79, 180, 0.22), transparent 29%),
    linear-gradient(135deg, #241039 0%, #421866 52%, #291141 100%);
}

.community-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.12;
  background-image: radial-gradient(circle at 1px 1px, #ffffff 1px, transparent 0);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
  content: "";
}

.community-wave {
  position: absolute;
  z-index: -1;
  left: -10%;
  width: 120%;
  height: 190px;
  border-radius: 50%;
  pointer-events: none;
  animation: communityWave 9s ease-in-out infinite alternate;
}

.community-wave-one {
  bottom: -105px;
  background: rgba(120, 80, 160, 0.48);
  transform: rotate(2deg);
}

.community-wave-two {
  bottom: -145px;
  background: rgba(18, 170, 163, 0.16);
  transform: rotate(-2deg);
  animation-delay: -3s;
}

.community-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
  gap: clamp(54px, 7vw, 100px);
  align-items: center;
}

.referral-panel {
  max-width: 560px;
}

.home-main .community-section .section-label {
  border-color: rgba(87, 228, 218, 0.24);
  color: #b9fff9;
  background: rgba(18, 170, 163, 0.11);
  box-shadow: none;
}

.home-main .community-section .section-label::before {
  background: #4de0d5;
  box-shadow: 0 0 0 5px rgba(77, 224, 213, 0.1);
}

.referral-panel h2,
.community-form h2 {
  color: #ffffff;
}

.referral-panel h2 {
  max-width: 560px;
  margin: 22px 0 18px;
  font-size: clamp(42px, 4.5vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.referral-panel > p:not(.section-label) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 17px;
  line-height: 1.72;
}

.referral-button {
  margin-top: 32px;
  color: #ffffff;
  background: linear-gradient(135deg, #07938c, #19bdb3);
  box-shadow: 0 18px 38px rgba(2, 20, 28, 0.24);
}

.referral-note {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.referral-note i {
  color: var(--home-gold);
}

.community-form {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 28px 70px rgba(9, 3, 17, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.community-form header {
  margin-bottom: 28px;
}

.community-form h2 {
  margin: 17px 0 0;
  font-size: clamp(32px, 3vw, 44px);
  letter-spacing: -0.04em;
}

.community-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.community-field {
  min-width: 0;
  padding: 12px 15px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: rgba(34, 12, 54, 0.28);
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.community-field:focus-within {
  border-color: rgba(77, 224, 213, 0.68);
  background: rgba(34, 12, 54, 0.44);
  box-shadow: 0 0 0 4px rgba(77, 224, 213, 0.09);
}

.community-field > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.community-field input,
.community-field select,
.community-field textarea {
  width: 100%;
  min-height: 24px;
  padding: 0;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  font: inherit;
  font-size: 14px;
}

.community-field select {
  min-height: 28px;
  padding-right: 36px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.25 5.75 8 10.25l4.75-4.5' stroke='%23E9FFFD' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 16px 16px;
  cursor: pointer;
}

.community-field select::-ms-expand {
  display: none;
}

.community-field select option {
  color: #241039;
  background: #ffffff;
}

.community-field textarea {
  min-height: 94px;
  resize: vertical;
}

.community-field-wide {
  grid-column: 1 / -1;
}

.community-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  border: 0;
  color: #211030;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(7, 3, 14, 0.19);
  cursor: pointer;
}

.community-submit:hover {
  color: #ffffff;
  background: var(--home-teal-500);
}

@keyframes communityWave {
  0% { transform: translate3d(-1.5%, 0, 0) rotate(2deg); }
  100% { transform: translate3d(1.5%, -10px, 0) rotate(-1deg); }
}

@media (max-width: 1040px) {
  .community-grid {
    grid-template-columns: minmax(0, 0.72fr) minmax(470px, 1.28fr);
    gap: 42px;
  }

  .referral-panel h2 {
    font-size: clamp(38px, 4.4vw, 48px);
  }
}

@media (max-width: 880px) {
  .community-section {
    padding-bottom: 136px;
  }

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

  .referral-panel {
    max-width: 680px;
    text-align: center;
    justify-self: center;
  }

  .referral-panel h2,
  .referral-panel > p:not(.section-label) {
    margin-right: auto;
    margin-left: auto;
  }

  .referral-note,
  .home-main .community-section .referral-panel .section-label {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .home-main .section-label {
    min-height: 35px;
    padding: 8px 12px;
    font-size: 10px;
  }

  .community-section {
    padding-top: 78px;
    padding-bottom: 120px;
  }

  .community-grid {
    gap: 42px;
  }

  .referral-panel h2 {
    margin-top: 18px;
    font-size: 38px;
  }

  .referral-panel > p:not(.section-label) {
    font-size: 15px;
  }

  .community-form {
    padding: 24px 18px;
    border-radius: 24px;
  }

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

  .community-field-wide {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .community-wave {
    animation: none !important;
  }
}

/* =========================================================
   Homepage refinement v7 — testimonial carousel and reactions
   ========================================================= */
.reviews-section {
  z-index: 2;
  isolation: isolate;
  overflow: hidden;
  margin-bottom: -78px;
  padding: clamp(100px, 8vw, 132px) 0 clamp(174px, 13vw, 210px);
  border-radius: 0 0 50% 50% / 0 0 82px 82px;
  background:
    radial-gradient(circle at 8% 14%, rgba(18, 170, 163, 0.08), transparent 23%),
    radial-gradient(circle at 92% 78%, rgba(110, 70, 164, 0.08), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
}

.review-experience {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 7vw, 104px);
  align-items: center;
}

.review-intro {
  max-width: 470px;
}

.review-satisfaction {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #181326;
  font-size: 14px;
}

.review-satisfaction > span {
  width: 48px;
  height: 48px;
  margin-right: 2px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(145deg, #087f7a, #22c7bc);
  box-shadow: 0 12px 25px rgba(7, 143, 137, 0.17);
  font-size: 19px;
}

.review-satisfaction strong {
  font-size: 18px;
}

.review-intro h2 {
  margin: 22px 0 18px;
  color: var(--home-purple-950);
  font-size: clamp(44px, 4.2vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.review-intro h2 span {
  color: #0aa39b;
}

.review-intro > p:not(.section-label) {
  max-width: 450px;
  margin: 0;
  color: #4f485c;
  font-size: 17px;
  line-height: 1.7;
}

.trustpilot-lockup {
  margin-top: 32px;
  display: grid;
  justify-items: start;
  gap: 8px;
}

.trustpilot-wordmark {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #191822;
}

.trustpilot-wordmark i {
  color: #00b67a;
  font-size: 27px;
}

.trustpilot-wordmark strong {
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.trustpilot-stars {
  display: flex;
  gap: 3px;
}

.trustpilot-stars span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #00b67a;
  font-size: 13px;
}

.trustpilot-lockup small {
  color: #655e70;
  font-size: 12px;
}

.review-carousel-shell {
  position: relative;
  min-width: 0;
  padding: 0 20px 42px;
  outline: 0;
}

.review-carousel-shell:focus-visible {
  border-radius: 32px;
  box-shadow: 0 0 0 4px rgba(18, 170, 163, 0.16);
}

.review-stack-card {
  position: absolute;
  right: 7%;
  bottom: 14px;
  left: 7%;
  height: 86%;
  border: 1px solid rgba(91, 65, 129, 0.08);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(50, 29, 78, 0.06);
}

.review-stack-card-one {
  transform: translateY(18px) scale(0.96);
  opacity: 0.82;
}

.review-stack-card-two {
  transform: translateY(38px) scale(0.9);
  opacity: 0.52;
}

.review-carousel {
  position: relative;
  z-index: 2;
}

.review-stage {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(78, 49, 117, 0.09);
  border-top: 6px solid var(--home-teal-500);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 72px rgba(55, 32, 88, 0.14);
}

.review-slide {
  min-height: 424px;
  padding: 42px 58px 0;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  align-items: center;
  animation: reviewSlideIn 0.42s var(--home-ease) both;
}

.review-slide[hidden] {
  display: none;
}

.review-slide-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.review-five-stars {
  display: inline-flex;
  gap: 5px;
  color: #f2bd23;
  font-size: 16px;
}

.review-slide-top > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #087d78;
  font-size: 12px;
  font-weight: 750;
}

.review-slide blockquote {
  max-width: 650px;
  margin: 30px auto;
  color: #16394e;
  font-family: "Manrope", sans-serif;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 560;
  line-height: 1.45;
  letter-spacing: -0.025em;
  text-align: center;
  text-wrap: balance;
}

.review-slide-author {
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.review-slide-author > span {
  width: 54px;
  height: 54px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(145deg, #4d1d7f, #10a49c);
  box-shadow: 0 8px 20px rgba(49, 22, 82, 0.16);
  font-size: 13px;
  font-weight: 800;
}

.review-slide-author div {
  display: grid;
  gap: 3px;
}

.review-slide-author strong {
  color: var(--home-purple-950);
  font-size: 14px;
}

.review-slide-author small {
  color: #6d6677;
  font-size: 11px;
}

.review-slide-brand {
  min-height: 70px;
  margin: 0 -58px;
  padding: 15px 38px;
  border-top: 1px solid #eeeaf3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #716879;
  font-size: 11px;
}

.review-slide-brand img {
  width: 108px;
  height: 34px;
  object-fit: contain;
}

.review-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(73, 45, 111, 0.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--home-purple-900);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(49, 29, 76, 0.14);
  transform: translateY(-50%);
  transition: color 0.22s ease, background-color 0.22s ease, transform 0.22s var(--home-ease);
  cursor: pointer;
}

.review-arrow:hover,
.review-arrow:focus-visible {
  color: #ffffff;
  background: var(--home-teal-500);
  outline: 0;
  transform: translateY(-50%) scale(1.07);
}

.review-arrow-prev {
  left: -8px;
}

.review-arrow-next {
  right: -8px;
}

.review-carousel-footer {
  position: relative;
  z-index: 3;
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.review-dots {
  display: flex;
  gap: 8px;
}

.review-dots button {
  width: 10px;
  height: 10px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  display: grid;
  place-items: center;
  background: transparent;
  cursor: pointer;
}

.review-dots button::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d5d0dd;
  transition: width 0.24s ease, background-color 0.24s ease;
  content: "";
}

.review-dots button.is-active::before {
  width: 24px;
  background: var(--home-teal-500);
}

.review-status {
  color: #786f82;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.review-floater {
  position: absolute;
  z-index: 1;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(103, 66, 153, 0.1);
  border-radius: 17px;
  display: grid;
  place-items: center;
  color: var(--home-purple-800);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(49, 29, 76, 0.09);
  pointer-events: none;
  animation: reviewFloat 4.8s ease-in-out infinite;
}

.review-floater-clap {
  top: 38px;
  left: 42%;
  color: #e7a831;
  transform: rotate(-8deg);
}

.review-floater-star {
  top: 21%;
  right: 4%;
  width: 40px;
  height: 40px;
  color: #f0bd2b;
  animation-delay: -1.7s;
}

.review-floater-chat {
  bottom: 24%;
  left: 3%;
  color: var(--home-teal-500);
  animation-delay: -2.8s;
}

/* The white review surface curves into the pre-footer instead of ending flat. */
.community-section {
  z-index: 1;
  padding-top: clamp(166px, 13vw, 206px);
}

/* Small reactions make each section feel responsive to the visitor. */
.benefit-icon,
.process-card > span,
.reason-card > span,
.recognition-grid i {
  transform-origin: center;
}

.benefit-card:hover .benefit-icon,
.recognition-grid > div:hover i {
  animation: happyIconBounce 0.48s var(--home-ease);
}

.process-card:hover > span {
  transform: rotate(-7deg) scale(1.08);
}

.reason-card:hover > span {
  animation: happyBadgeWiggle 0.42s ease;
}

.benefit-card:active,
.process-card:active,
.subject-card:active,
.reason-card:active,
.recognition-grid > div:active {
  transform: scale(0.985);
}

.ntk-home-reveal.home-in-view .section-label::before {
  animation: sectionDotHello 0.58s var(--home-ease) both;
}

.home-process,
.subjects-section {
  overflow: hidden;
}

.home-process::before {
  position: absolute;
  top: 9%;
  left: 4%;
  width: 30px;
  height: 30px;
  opacity: 0.36;
  background: #f1c84d;
  clip-path: polygon(50% 0, 61% 36%, 100% 50%, 61% 64%, 50% 100%, 39% 64%, 0 50%, 39% 36%);
  animation: learningShapeDrift 5.8s ease-in-out infinite;
  content: "";
}

.subjects-section::after {
  position: absolute;
  top: 8%;
  right: 3%;
  width: 66px;
  height: 66px;
  border: 10px solid rgba(18, 170, 163, 0.12);
  border-radius: 50%;
  animation: learningShapeDrift 7s -2s ease-in-out infinite reverse;
  content: "";
}

@keyframes reviewSlideIn {
  from { opacity: 0; transform: translateX(22px) scale(0.985); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes reviewFloat {
  0%, 100% { translate: 0 0; rotate: -3deg; }
  50% { translate: 5px -12px; rotate: 5deg; }
}

@keyframes happyIconBounce {
  0%, 100% { transform: translateY(0) rotate(0) scale(1); }
  45% { transform: translateY(-8px) rotate(-7deg) scale(1.08); }
  72% { transform: translateY(2px) rotate(4deg) scale(0.98); }
}

@keyframes happyBadgeWiggle {
  0%, 100% { transform: rotate(0) scale(1); }
  35% { transform: rotate(-9deg) scale(1.08); }
  70% { transform: rotate(7deg) scale(1.04); }
}

@keyframes sectionDotHello {
  0% { transform: scale(0.45); opacity: 0.35; }
  65% { transform: scale(1.45); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes learningShapeDrift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  50% { transform: translate3d(8px, -12px, 0) rotate(18deg); }
}

@media (max-width: 1020px) {
  .review-experience {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .review-intro {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .review-intro > p:not(.section-label) {
    margin-right: auto;
    margin-left: auto;
  }

  .review-satisfaction,
  .trustpilot-lockup,
  .review-intro .section-label {
    justify-content: center;
    justify-items: center;
  }

  .review-carousel-shell {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .review-floater-clap {
    left: 13%;
  }
}

@media (max-width: 620px) {
  .reviews-section {
    margin-bottom: -42px;
    padding-top: 78px;
    padding-bottom: 118px;
    border-radius: 0 0 50% 50% / 0 0 42px 42px;
  }

  .review-experience {
    gap: 42px;
  }

  .review-satisfaction {
    margin-bottom: 24px;
    font-size: 12px;
  }

  .review-satisfaction > span {
    width: 44px;
    height: 44px;
  }

  .review-intro h2 {
    font-size: 40px;
  }

  .review-intro > p:not(.section-label) {
    font-size: 15px;
  }

  .trustpilot-lockup {
    margin-top: 26px;
  }

  .review-carousel-shell {
    padding: 0 0 54px;
  }

  .review-stage,
  .review-slide {
    min-height: 472px;
  }

  .review-slide {
    padding: 30px 22px 0;
  }

  .review-slide-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .review-slide blockquote {
    margin: 24px auto;
    font-size: 19px;
  }

  .review-slide-brand {
    min-height: 74px;
    margin-right: -22px;
    margin-left: -22px;
    padding: 15px 20px;
  }

  .review-slide-brand span {
    max-width: 130px;
    text-align: right;
  }

  .review-arrow {
    top: auto;
    bottom: -52px;
    width: 48px;
    height: 48px;
    transform: none;
  }

  .review-arrow:hover,
  .review-arrow:focus-visible {
    transform: scale(1.05);
  }

  .review-arrow-prev {
    left: 0;
  }

  .review-arrow-next {
    right: 0;
  }

  .review-carousel-footer {
    margin-top: 12px;
  }

  .review-floater-clap {
    top: 20px;
    left: 8%;
  }

  .review-floater-star {
    right: 5%;
  }

  .review-floater-chat,
  .home-process::before,
  .subjects-section::after {
    display: none;
  }

  .community-section {
    padding-top: 120px;
  }
}

@media (hover: none), (pointer: coarse) {
  .benefit-card:active,
  .process-card:active,
  .subject-card:active,
  .reason-card:active,
  .recognition-grid > div:active {
    transform: scale(0.985);
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-slide,
  .review-floater,
  .benefit-card:hover .benefit-icon,
  .recognition-grid > div:hover i,
  .reason-card:hover > span,
  .ntk-home-reveal.home-in-view .section-label::before,
  .home-process::before,
  .subjects-section::after {
    animation: none !important;
  }
}

/* Final surface rhythm and the corrected upward purple arch. */
.home-process {
  background:
    radial-gradient(circle at 8% 18%, rgba(18, 170, 163, 0.09), transparent 24%),
    radial-gradient(circle at 92% 76%, rgba(97, 58, 145, 0.06), transparent 24%),
    #eef9f7;
}

.reviews-section {
  z-index: 1;
  margin-bottom: 0;
  padding: clamp(96px, 8vw, 128px) 0 clamp(106px, 9vw, 146px);
  border-radius: 0;
  background:
    radial-gradient(circle at 10% 16%, rgba(255, 255, 255, 0.54), transparent 25%),
    radial-gradient(circle at 88% 86%, rgba(96, 56, 143, 0.07), transparent 24%),
    linear-gradient(180deg, #eefaf8 0%, #dff3f0 100%);
}

.community-top-curve {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(74px, 8vw, 120px);
  margin: 0 0 -1px;
  display: block;
  background: #dff3f0;
}

.community-section {
  margin-top: 0;
  padding-top: clamp(92px, 8vw, 126px);
  border-radius: 0;
}

@media (max-width: 620px) {
  .reviews-section {
    margin-bottom: 0;
    padding-top: 78px;
    padding-bottom: 88px;
    border-radius: 0;
  }

  .community-section {
    padding-top: 84px;
    border-radius: 0;
  }
}

/* Keep the latest section compositions above the legacy homepage layers. */
.diaspora-section {
  padding: clamp(104px, 8.5vw, 142px) 0;
  background:
    radial-gradient(circle at 3% 16%, rgba(18, 170, 163, 0.15), transparent 25%),
    radial-gradient(circle at 92% 80%, rgba(102, 62, 159, 0.1), transparent 29%),
    linear-gradient(145deg, #ffffff 0%, #f5fbfa 58%, #e9f7f5 100%);
}

.diaspora-story {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  align-items: center;
  gap: clamp(52px, 6.5vw, 92px);
}

.trust-reasons-section {
  padding: clamp(104px, 8.5vw, 142px) 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(18, 170, 163, 0.15), transparent 25%),
    radial-gradient(circle at 88% 20%, rgba(95, 40, 166, 0.11), transparent 24%),
    linear-gradient(135deg, #f5fbfa 0%, #ffffff 46%, #f1f8f7 100%);
}

.reasons-featured .reason-feature,
.reasons-featured .reason-feature:nth-child(1) {
  grid-column: auto;
  border-color: rgba(18, 170, 163, 0.22);
  color: #ffffff;
  background: linear-gradient(145deg, #087d78, #0aa89e);
  box-shadow: 0 24px 58px rgba(5, 115, 110, 0.19);
}

.reasons-featured .reason-feature-purple,
.reasons-featured .reason-feature-purple:nth-child(2) {
  border-color: rgba(95, 40, 166, 0.22);
  background: linear-gradient(145deg, #492078, #6839a3);
  box-shadow: 0 24px 58px rgba(67, 18, 122, 0.18);
}

@media (max-width: 1080px) and (min-width: 921px) {
  .diaspora-story {
    grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
    gap: 42px;
  }
}

@media (max-width: 920px) {
  .diaspora-story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .diaspora-section,
  .trust-reasons-section {
    padding: 82px 0;
  }
}

.reasons-index .reason-compact:nth-child(n) h3 {
  color: var(--home-purple-950);
}

.reasons-index .reason-compact:nth-child(n) p {
  color: #6e6677;
}

.reasons-index .reason-compact:nth-child(n) > span {
  border-color: rgba(18, 170, 163, 0.16);
  color: #087d78;
  background: rgba(18, 170, 163, 0.08);
}

/* Larger, clearer hero facts for parents scanning the landing section. */
.home-hero .hero-trust {
  gap: 12px;
}

.home-hero .hero-trust span {
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  gap: 9px;
  color: rgba(255, 255, 255, 0.96);
  background: rgba(20, 34, 38, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 24px rgba(0, 0, 0, 0.1);
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.home-hero .hero-trust i {
  color: #8ff8ef;
  font-size: 1.05em;
}

@media (max-width: 620px) {
  .home-hero .hero-trust {
    max-width: 350px;
    margin-right: auto;
    margin-left: auto;
    gap: 9px;
  }

  .home-hero .hero-trust span {
    min-height: 40px;
    padding: 8px 11px;
    font-size: 14px;
  }
}

/* Final hero hierarchy: plain facts, with the live label lifted slightly. */
.home-hero .hero-live-pill {
  position: relative;
  top: -12px;
}

.home-hero .hero-trust {
  gap: 14px 24px;
}

.home-hero .hero-trust span {
  min-height: 0;
  padding: 4px 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.96);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

/* Private and group learning options */
.class-formats {
  margin: 0 0 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.class-format {
  position: relative;
  min-height: 144px;
  padding: 20px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(18, 170, 163, 0.17);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(39, 17, 63, 0.08);
  backdrop-filter: blur(10px);
}

.class-format::after {
  position: absolute;
  right: -34px;
  bottom: -50px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(18, 170, 163, 0.07);
  content: "";
}

.class-format-group {
  border-color: rgba(95, 40, 166, 0.15);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(242, 236, 249, 0.94));
}

.class-format-group::after {
  background: rgba(95, 40, 166, 0.07);
}

.class-format-icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(145deg, #078f89, #20c6bb);
  box-shadow: 0 12px 24px rgba(7, 143, 137, 0.18);
}

.class-format-group .class-format-icon {
  background: linear-gradient(145deg, #512082, #7444aa);
  box-shadow: 0 12px 24px rgba(67, 18, 122, 0.16);
}

.class-format > div {
  position: relative;
  z-index: 1;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.class-format-kicker {
  display: block;
  margin-bottom: 5px;
  color: #087d78;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.class-format-group .class-format-kicker {
  color: #5f28a6;
}

.class-format h3 {
  margin: 0 0 6px;
  color: var(--home-purple-950);
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 1.3;
}

.class-format p {
  margin: 0;
  color: #675f70;
  font-size: 12px;
  line-height: 1.55;
}

.diaspora-content .diaspora-pillar,
.diaspora-content .diaspora-pillar:nth-child(2) {
  padding-top: 18px;
  padding-bottom: 18px;
}

@media (max-width: 620px) {
  .home-hero .hero-live-pill {
    top: -8px;
  }

  .home-hero .hero-trust {
    gap: 8px 16px;
  }

  .home-hero .hero-trust span {
    min-height: 0;
    padding: 3px 0;
  }

  .class-formats {
    grid-template-columns: 1fr;
  }

  .class-format {
    min-height: 0;
  }

}

/* The What We Offer heading leads the section from a centered top row. */
.diaspora-story {
  column-gap: clamp(52px, 6.5vw, 92px);
  row-gap: clamp(42px, 5vw, 64px);
}

.diaspora-story > .diaspora-heading {
  grid-column: 1 / -1;
  width: min(820px, 100%);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.diaspora-story > .diaspora-heading .section-label {
  justify-content: center;
}

.diaspora-story > .diaspora-heading h2 {
  max-width: 760px;
  margin: 20px auto 16px;
  font-size: clamp(40px, 4vw, 56px);
}

.diaspora-story > .diaspora-heading > p:last-of-type {
  max-width: 700px;
  margin: 0 auto;
  color: #61596b;
  font-size: 17px;
  line-height: 1.65;
}

@media (max-width: 620px) {
  .diaspora-story {
    row-gap: 38px;
  }

  .diaspora-story > .diaspora-heading h2 {
    font-size: clamp(34px, 10vw, 43px);
  }

  .diaspora-story > .diaspora-heading > p:last-of-type {
    font-size: 15px;
  }
}

/* Paired private and group class icon in the brand pink accent. */
.benefit-icon-duo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid rgba(244, 39, 134, 0.18);
  color: #f42786;
  background: linear-gradient(145deg, #fff7fb, #ffe4f0);
  box-shadow: 0 10px 24px rgba(244, 39, 134, 0.13);
}

.benefit-icon-duo i:first-child {
  font-size: 13px;
}

.benefit-icon-duo i:last-child {
  font-size: 16px;
}

/* 2026 home refresh: image-led diaspora hero and flexible global scheduling. */
.home-hero.home-hero-refresh {
  position: relative;
  min-height: clamp(680px, calc(100svh - 108px), 820px);
  padding: clamp(54px, 5vw, 78px) 0 clamp(72px, 7vw, 104px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--home-ink);
  background:
    radial-gradient(circle at 9% 16%, rgba(112, 65, 181, 0.17), transparent 27%),
    radial-gradient(circle at 92% 18%, rgba(18, 170, 163, 0.2), transparent 26%),
    radial-gradient(circle at 64% 88%, rgba(244, 189, 50, 0.1), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #fbf9ff 52%, #f2fcfb 100%);
}

.home-hero.home-hero-refresh::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(67, 18, 122, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67, 18, 122, 0.026) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.62) 68%, transparent 100%);
  content: "";
}

.home-hero.home-hero-refresh::after {
  position: absolute;
  right: -10%;
  bottom: -38%;
  z-index: 0;
  width: 72%;
  height: 66%;
  border-radius: 50%;
  opacity: 0.75;
  background: linear-gradient(135deg, rgba(112, 65, 181, 0.1), rgba(18, 170, 163, 0.13));
  filter: blur(2px);
  content: "";
}

.home-hero-refresh .hero-layout {
  position: relative;
  z-index: 2;
  min-height: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(460px, 0.96fr);
  gap: clamp(38px, 5vw, 74px);
  align-items: center;
  justify-items: stretch;
}

.home-hero-refresh .hero-copy {
  width: auto;
  max-width: 700px;
  margin: 0;
  color: var(--home-ink);
  text-align: left;
}

.home-hero-refresh .home-eyebrow {
  margin: 0 0 22px;
  color: var(--home-purple-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.home-hero-refresh .hero-live-pill {
  position: static;
  top: auto;
  min-height: 40px;
  margin: 0 0 22px;
  padding: 9px 14px;
  border: 1px solid rgba(18, 170, 163, 0.2);
  color: #087d78;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(39, 17, 63, 0.08);
  font-size: 12px;
  backdrop-filter: blur(12px);
}

.home-hero-refresh .hero-live-dot {
  background: var(--home-teal-500);
  box-shadow: 0 0 0 5px rgba(18, 170, 163, 0.12), 0 0 18px rgba(18, 170, 163, 0.42);
}

.home-hero-refresh .hero-copy h1 {
  max-width: 720px;
  margin: 0 0 24px;
  color: var(--home-purple-950);
  font-size: clamp(48px, 4.15vw, 66px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-shadow: none;
}

.home-hero-refresh .word-teal {
  color: var(--home-teal-600);
  text-shadow: none;
}

.home-hero-refresh .word-teal::after,
.home-hero-refresh .hero-copy h1::after {
  display: none;
}

.home-hero-refresh .hero-intro {
  max-width: 610px;
  margin: 0;
  color: #5d5668;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.72;
  text-shadow: none;
}

.home-hero-refresh .hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.home-hero-refresh .hero-actions .home-btn {
  min-width: 196px;
  justify-content: center;
}

.home-hero-refresh .home-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #54208b 0%, #7041b5 100%);
  box-shadow: 0 18px 34px rgba(84, 32, 139, 0.22);
}

.home-hero-refresh .home-btn-primary:hover {
  box-shadow: 0 22px 42px rgba(84, 32, 139, 0.28);
}

.home-hero-refresh .home-btn-secondary {
  border-color: rgba(18, 170, 163, 0.28);
  color: #087d78;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px rgba(39, 17, 63, 0.07);
}

.home-hero-refresh .home-btn-secondary:hover {
  border-color: rgba(18, 170, 163, 0.44);
  color: #066e6a;
  background: #ffffff;
}

.home-hero-refresh .hero-social-proof {
  width: min(100%, 680px);
  min-height: 76px;
  margin-top: 30px;
  padding: 13px 16px;
  display: grid;
  grid-template-columns: minmax(190px, 1.35fr) 1px minmax(125px, 0.92fr) 1px minmax(120px, 0.86fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 46px rgba(52, 26, 79, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.home-hero-refresh .social-proof-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #342a40;
  text-align: left;
}

.home-hero-refresh .social-proof-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.home-hero-refresh .social-proof-copy strong {
  color: var(--home-purple-950);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}

.home-hero-refresh .social-proof-copy small {
  color: #746c7d;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
}

.home-hero-refresh .parent-avatars {
  width: 66px;
  flex: 0 0 66px;
  display: flex;
  align-items: center;
}

.home-hero-refresh .parent-avatars > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #5a3e27;
  background: #ffd6b8;
  box-shadow: 0 5px 14px rgba(56, 30, 74, 0.12);
  font-size: 10px;
}

.home-hero-refresh .parent-avatars > span + span {
  margin-left: -11px;
}

.home-hero-refresh .parent-avatars > span:nth-child(2) {
  color: #294466;
  background: #c8dbff;
}

.home-hero-refresh .parent-avatars > span:nth-child(3) {
  color: #245c48;
  background: #c8f1dc;
}

.home-hero-refresh .social-proof-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  font-size: 14px;
}

.home-hero-refresh .social-proof-safe {
  color: #087d78;
  background: rgba(18, 170, 163, 0.12);
}

.home-hero-refresh .social-proof-rating {
  color: #9f7304;
  background: rgba(244, 189, 50, 0.18);
}

.home-hero-refresh .social-proof-divider {
  width: 1px;
  height: 38px;
  background: rgba(67, 18, 122, 0.12);
}

.home-hero-refresh .hero-copy:not(.home-in-view) .hero-social-proof {
  opacity: 0;
  transform: translateY(18px);
}

.home-hero-refresh .hero-copy.home-in-view .hero-social-proof {
  animation: heroContentRise 0.58s 0.46s var(--home-ease) both;
}

.home-hero-refresh .hero-media {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 510px;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  place-items: center;
  margin: 0;
}

.hero-picture-shell {
  position: relative;
  z-index: 3;
  width: min(100%, 610px);
  transform: translateZ(0);
  transform-origin: center;
  transition: transform 450ms var(--home-ease);
}

.hero-picture-shell:hover {
  transform: translateY(-4px);
}

.hero-picture-frame {
  position: relative;
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.96);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 0 0 2px rgba(18, 170, 163, 0.12), 0 36px 84px rgba(49, 28, 76, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.hero-picture-frame::after {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(86, 33, 139, 0.05), transparent 42%, rgba(18, 170, 163, 0.1));
  content: "";
}

.hero-picture-frame img {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transition: transform 900ms var(--home-ease);
}

.hero-picture-shell:hover .hero-picture-frame img {
  transform: scale(1.045);
}

.home-hero-refresh .hero-class-status {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: auto;
  z-index: 5;
  width: fit-content;
  min-height: 42px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(34, 18, 54, 0.76);
  box-shadow: 0 16px 34px rgba(24, 11, 39, 0.24);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.home-hero-refresh .hero-class-status span {
  background: #44e1a6;
  box-shadow: 0 0 0 5px rgba(68, 225, 166, 0.15);
}

.hero-visual-orb {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(0.2px);
}

.hero-visual-orb-purple {
  top: 2%;
  left: -9%;
  width: 260px;
  height: 260px;
  background: linear-gradient(145deg, rgba(112, 65, 181, 0.22), rgba(112, 65, 181, 0.04));
  animation: heroOrbDrift 9s ease-in-out infinite;
}

.hero-visual-orb-teal {
  right: -13%;
  bottom: 0;
  width: 220px;
  height: 220px;
  background: linear-gradient(145deg, rgba(18, 170, 163, 0.23), rgba(18, 170, 163, 0.04));
  animation: heroOrbDrift 10s 1s ease-in-out infinite reverse;
}

.refresh-float-card {
  position: absolute;
  z-index: 5;
  min-height: 68px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  color: var(--home-purple-950);
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 20px 42px rgba(45, 24, 69, 0.16);
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.refresh-float-card > i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(145deg, var(--home-purple-700), #8b5ac6);
  box-shadow: 0 10px 22px rgba(95, 40, 166, 0.18);
}

.refresh-float-card span {
  display: grid;
  gap: 2px;
}

.refresh-float-card strong {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.25;
}

.refresh-float-card small {
  color: #6b6373;
  font-size: 10px;
  line-height: 1.35;
  white-space: nowrap;
}

.float-expert {
  top: 7%;
  left: -3%;
  animation: heroCardFloat 6.8s ease-in-out infinite;
}

.float-classes {
  right: -7%;
  top: 34%;
  animation: heroCardFloat 7.6s 0.8s ease-in-out infinite reverse;
}

.float-classes > i {
  background: linear-gradient(145deg, var(--home-teal-600), var(--home-teal-400));
  box-shadow: 0 10px 22px rgba(18, 170, 163, 0.2);
}

.float-interactive {
  left: 2%;
  bottom: 3%;
  animation: heroCardFloat 7.1s 1.2s ease-in-out infinite;
}

.float-interactive > i {
  color: #5e4510;
  background: linear-gradient(145deg, #f4bd32, #ffd96f);
  box-shadow: 0 10px 22px rgba(244, 189, 50, 0.22);
}

.home-hero-refresh .hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.home-hero-refresh .hero-learning-object {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(67, 18, 122, 0.08);
  border-radius: 16px;
  color: var(--home-purple-700);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(39, 17, 63, 0.09);
  font-size: 17px;
  backdrop-filter: blur(12px);
}

.home-hero-refresh .learning-book {
  top: 18%;
  left: 1.4%;
  color: var(--home-purple-700);
  background: rgba(255, 255, 255, 0.76);
}

.home-hero-refresh .learning-pencil {
  top: 13%;
  right: 1.8%;
  color: #c18b09;
}

.home-hero-refresh .learning-globe {
  right: 43%;
  bottom: 7%;
  color: var(--home-teal-600);
  background: rgba(237, 255, 253, 0.82);
}

.home-hero-refresh .learning-star {
  top: 60%;
  right: 1.5%;
  color: #d49a0a;
  background: rgba(255, 250, 229, 0.85);
}

/* Flexible scheduling section, adapted from the reference site's useful content. */
.schedule-section {
  padding: clamp(82px, 8vw, 116px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 14%, rgba(18, 170, 163, 0.13), transparent 24%),
    radial-gradient(circle at 96% 88%, rgba(112, 65, 181, 0.1), transparent 27%),
    linear-gradient(180deg, #f4fcfb 0%, #edf9f8 100%);
}

.schedule-shell {
  position: relative;
  min-height: 470px;
  padding: clamp(34px, 5vw, 66px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(18, 170, 163, 0.16);
  border-radius: 44px;
  background:
    radial-gradient(circle at 86% 16%, rgba(112, 65, 181, 0.1), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 255, 254, 0.9));
  box-shadow: 0 30px 78px rgba(24, 80, 79, 0.11);
}

.schedule-shell::before {
  position: absolute;
  top: -140px;
  right: -100px;
  width: 330px;
  height: 330px;
  border: 54px solid rgba(18, 170, 163, 0.055);
  border-radius: 50%;
  content: "";
}

.schedule-copy {
  position: relative;
  z-index: 2;
}

.schedule-copy .section-label {
  color: var(--home-teal-700);
}

.schedule-copy h2 {
  max-width: 540px;
  margin: 18px 0 18px;
  color: var(--home-purple-950);
  font-family: "Poppins", sans-serif;
  font-size: clamp(38px, 3.8vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.schedule-copy > p:not(.section-label) {
  max-width: 560px;
  margin: 0;
  color: #5f5868;
  font-size: 17px;
  line-height: 1.72;
}

.schedule-highlights {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.schedule-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4d4656;
  font-size: 14px;
  font-weight: 750;
}

.schedule-highlights i {
  color: var(--home-teal-600);
}

.schedule-board {
  position: relative;
  z-index: 2;
  min-height: 340px;
}

.schedule-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  border: 1px dashed rgba(18, 170, 163, 0.34);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: scheduleOrbit 28s linear infinite;
}

.schedule-orbit::before,
.schedule-orbit::after {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--home-teal-500);
  box-shadow: 0 0 0 7px rgba(18, 170, 163, 0.1);
  content: "";
}

.schedule-orbit::before {
  top: 18px;
  left: 45px;
}

.schedule-orbit::after {
  right: 22px;
  bottom: 38px;
  background: var(--home-purple-500);
  box-shadow: 0 0 0 7px rgba(141, 91, 208, 0.1);
}

.schedule-centre {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(18, 170, 163, 0.16);
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: #ffffff;
  background: linear-gradient(145deg, #067b77, #20bdb4);
  box-shadow: 0 22px 46px rgba(7, 143, 137, 0.24);
  transform: translate(-50%, -50%);
  text-align: center;
}

.schedule-centre i {
  font-size: 25px;
}

.schedule-centre span {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
}

.schedule-slot {
  position: absolute;
  z-index: 4;
  width: min(220px, 45%);
  min-height: 100px;
  padding: 15px 17px;
  display: grid;
  align-content: center;
  gap: 3px;
  border: 1px solid rgba(67, 18, 122, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(39, 17, 63, 0.11);
  backdrop-filter: blur(10px);
}

.schedule-slot span {
  color: var(--home-teal-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-slot strong {
  color: var(--home-purple-950);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.schedule-slot small {
  color: #746c7c;
  font-size: 11px;
}

.schedule-slot-one {
  top: 4px;
  left: 0;
  animation: scheduleCardFloat 7s ease-in-out infinite;
}

.schedule-slot-two {
  top: 58px;
  right: 0;
  animation: scheduleCardFloat 7.8s 0.8s ease-in-out infinite reverse;
}

.schedule-slot-three {
  right: 12%;
  bottom: 2px;
  animation: scheduleCardFloat 7.4s 1.3s ease-in-out infinite;
}

@keyframes heroCardFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes heroOrbDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(12px, -14px, 0) scale(1.05); }
}

@keyframes scheduleOrbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes scheduleCardFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(0, -8px, 0) rotate(1deg); }
}

@media (min-width: 1181px) {
  .home-hero-refresh .word-teal {
    white-space: nowrap;
  }
}

@media (max-width: 1180px) {
  .home-hero-refresh .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
    gap: 32px;
  }

  .home-hero-refresh .hero-copy h1 {
    font-size: clamp(44px, 5vw, 58px);
  }

  .refresh-float-card {
    transform: scale(0.92);
  }

  .float-expert {
    left: -1%;
  }

  .float-classes {
    right: -2%;
  }

  .schedule-shell {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 30px;
  }
}

@media (max-width: 1060px) {
  .home-hero.home-hero-refresh {
    min-height: 0;
    padding-top: 84px;
    padding-bottom: 78px;
  }

  .home-hero-refresh .hero-layout {
    min-height: 0;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .home-hero-refresh .hero-copy {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }

  .home-hero-refresh .home-eyebrow,
  .home-hero-refresh .hero-live-pill {
    margin-right: auto;
    margin-left: auto;
  }

  .home-hero-refresh .hero-copy h1,
  .home-hero-refresh .hero-intro {
    margin-right: auto;
    margin-left: auto;
  }

  .home-hero-refresh .hero-copy h1 {
    max-width: 680px;
    font-size: clamp(46px, 7.1vw, 62px);
  }

  .home-hero-refresh .hero-actions,
  .home-hero-refresh .hero-social-proof {
    justify-content: center;
  }

  .home-hero-refresh .hero-social-proof {
    margin-right: auto;
    margin-left: auto;
  }

  .home-hero-refresh .hero-media {
    width: min(680px, 100%);
    min-height: 480px;
    margin-inline: auto;
  }

  .schedule-shell {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .schedule-copy {
    max-width: 680px;
    text-align: center;
    margin-inline: auto;
  }

  .schedule-copy .section-label,
  .schedule-highlights {
    justify-content: center;
  }

  .schedule-copy h2,
  .schedule-copy > p:not(.section-label) {
    margin-right: auto;
    margin-left: auto;
  }

  .schedule-board {
    width: min(600px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .home-container {
    width: min(calc(100% - 32px), var(--home-container));
  }

  .home-hero.home-hero-refresh {
    padding-top: 88px;
    padding-bottom: 68px;
  }

  .home-hero-refresh .hero-layout {
    gap: 38px;
  }

  .home-hero-refresh .home-eyebrow {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .home-hero-refresh .hero-live-pill {
    top: auto;
    min-height: 38px;
    margin-bottom: 18px;
    font-size: 11px;
  }

  .home-hero-refresh .hero-copy h1 {
    max-width: 410px;
    margin-bottom: 18px;
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.04;
    overflow-wrap: normal;
  }

  .home-hero-refresh .hero-intro {
    max-width: 440px;
    font-size: 15px;
    line-height: 1.66;
  }

  .home-hero-refresh .hero-actions {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-hero-refresh .hero-actions .home-btn {
    width: 100%;
    min-height: 50px;
    justify-content: center;
  }

  .home-hero-refresh .hero-social-proof {
    width: min(100%, 420px);
    min-height: 0;
    margin: 24px auto 0;
    padding: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
    border-radius: 20px;
  }

  .home-hero-refresh .social-proof-families {
    padding-bottom: 12px;
    grid-column: 1 / -1;
    justify-content: center;
    border-bottom: 1px solid rgba(67, 18, 122, 0.1);
  }

  .home-hero-refresh .social-proof-item:not(.social-proof-families) {
    justify-content: center;
  }

  .home-hero-refresh .social-proof-divider {
    display: none;
  }

  .home-hero-refresh .social-proof-copy strong {
    font-size: 10px;
  }

  .home-hero-refresh .social-proof-copy small {
    font-size: 9px;
  }

  .home-hero-refresh .hero-media {
    min-height: 350px;
  }

  .hero-picture-shell {
    width: calc(100% - 18px);
  }

  .hero-picture-frame {
    border-width: 6px;
    border-radius: 24px;
  }

  .hero-picture-frame::after {
    inset: 0;
    border-radius: 18px;
  }

  .hero-picture-frame img {
    border-radius: 18px;
  }

  .home-hero-refresh .hero-class-status {
    right: 15px;
    bottom: 14px;
    min-height: 36px;
    padding: 8px 11px;
    font-size: 10px;
  }

  .refresh-float-card {
    min-height: 54px;
    padding: 9px 10px;
    gap: 8px;
    border-radius: 14px;
    transform: none;
  }

  .refresh-float-card > i {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
    border-radius: 10px;
    font-size: 12px;
  }

  .refresh-float-card strong {
    font-size: 10px;
  }

  .refresh-float-card small {
    display: none;
  }

  .float-expert {
    top: -1%;
    left: 0;
  }

  .float-classes {
    top: 34%;
    right: -1%;
  }

  .float-interactive {
    bottom: 0;
    left: 4%;
  }

  .home-hero-refresh .hero-learning-object {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    font-size: 14px;
    opacity: 0.78;
  }

  .home-hero-refresh .learning-book {
    top: 3%;
    left: -7px;
  }

  .home-hero-refresh .learning-pencil {
    top: 30%;
    right: -7px;
  }

  .home-hero-refresh .learning-globe,
  .home-hero-refresh .learning-star {
    display: none;
  }

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

  .schedule-shell {
    min-height: 0;
    padding: 32px 20px;
    gap: 34px;
    border-radius: 30px;
  }

  .schedule-copy h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .schedule-copy > p:not(.section-label) {
    font-size: 15px;
  }

  .schedule-highlights {
    gap: 10px 14px;
  }

  .schedule-highlights span {
    font-size: 12px;
  }

  .schedule-board {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .schedule-orbit,
  .schedule-centre {
    display: none;
  }

  .schedule-slot {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 88px;
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-picture-shell,
  .hero-picture-frame img,
  .hero-visual-orb,
  .refresh-float-card,
  .hero-social-proof,
  .schedule-orbit,
  .schedule-slot {
    animation: none !important;
    transition: none !important;
  }
}

/* Minimal responsive guards: retain the original layout and keep key panels off the edges. */
@media (min-width: 1061px) and (max-width: 1366px) {
  .home-hero.home-hero-refresh {
    min-height: 0;
  }

  .home-hero-refresh .hero-layout {
    width: 100%;
    max-width: 960px;
    min-height: 0;
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
    justify-items: center;
  }

  .home-hero-refresh .hero-copy {
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }

  .home-hero-refresh .home-eyebrow,
  .home-hero-refresh .hero-copy h1,
  .home-hero-refresh .hero-intro,
  .home-hero-refresh .hero-social-proof {
    margin-right: auto;
    margin-left: auto;
  }

  .home-hero-refresh .hero-actions,
  .home-hero-refresh .hero-social-proof {
    justify-content: center;
  }

  .home-hero-refresh .hero-media {
    width: min(720px, calc(100% - 48px));
    max-width: 720px;
    min-height: 0;
    margin-inline: auto;
    padding-block: clamp(38px, 4vw, 48px);
    box-sizing: border-box;
    place-items: center;
    justify-self: center;
  }

  .home-hero-refresh .hero-picture-shell {
    width: min(610px, calc(100% - clamp(56px, 8vw, 88px)));
    max-width: 100%;
    margin-inline: auto;
    place-self: center;
    transform: none !important;
  }

  .home-hero-refresh .float-expert {
    left: 0;
  }

  .home-hero-refresh .float-classes {
    right: 0;
  }

  .home-hero-refresh .float-interactive {
    left: 4%;
  }

  .home-hero-refresh .hero-social-proof {
    width: min(720px, calc(100% - 32px));
  }
}

@media (max-width: 1060px) {
  .home-hero-refresh .hero-media {
    width: min(680px, 100%);
    max-width: 680px;
    min-height: 0;
    margin-inline: auto;
    padding-block: clamp(36px, 5vw, 46px);
    box-sizing: border-box;
    place-items: center;
    justify-self: center;
  }

  .home-hero-refresh .hero-picture-shell {
    width: min(610px, calc(100% - clamp(28px, 7vw, 56px)));
    max-width: 100%;
    margin-inline: auto;
    place-self: center;
    transform: none !important;
  }

  .home-hero-refresh .refresh-float-card {
    max-width: min(230px, 62%);
  }

  .home-hero-refresh .refresh-float-card span {
    min-width: 0;
  }

  .home-hero-refresh .refresh-float-card small {
    white-space: normal;
  }

  .home-hero-refresh .float-expert {
    left: 0;
  }

  .home-hero-refresh .float-classes {
    right: 0;
  }

  .home-hero-refresh .float-interactive {
    left: 4%;
  }

  .home-hero-refresh .hero-social-proof {
    width: min(720px, calc(100% - 32px));
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 620px) {
  .home-hero-refresh .hero-media {
    width: 100%;
    min-height: 0;
    padding-block: clamp(36px, 9vw, 44px);
  }

  .home-hero-refresh .hero-picture-shell {
    width: min(100%, calc(100% - clamp(24px, 7vw, 36px)));
  }

  .home-hero-refresh .hero-social-proof {
    width: min(420px, calc(100% - 16px));
  }
}

@media (max-width: 1366px) {
  .home-hero-refresh .hero-picture-frame {
    border-width: clamp(6px, 0.65vw, 8px);
    border-radius: clamp(24px, 2.4vw, 34px);
  }

  .home-hero-refresh .hero-picture-frame::after,
  .home-hero-refresh .hero-picture-frame img {
    border-radius: clamp(18px, 2vw, 26px);
  }

  .home-hero-refresh .hero-class-status {
    max-width: calc(100% - 24px);
  }
}

/* Award announcement modal */
body.nt-award-modal-open {
  overflow: hidden;
}

/* Keep the live-chat control from covering the announcement. It returns as
   soon as the modal closes because the rule is scoped to the body state. */
body.nt-award-modal-open #zsiq_float,
body.nt-award-modal-open #zsiq_chat_wrap {
  visibility: hidden !important;
  pointer-events: none !important;
}

.nt-award-modal[hidden] {
  display: none;
}

.nt-award-modal {
  position: fixed;
  inset: 0;
  z-index: 2147482000;
  padding: clamp(14px, 3vw, 34px);
  display: grid;
  place-items: center;
}

.nt-award-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 8, 17, 0.76);
  backdrop-filter: blur(8px) saturate(0.85);
  opacity: 0;
  transition: opacity 220ms ease;
}

.nt-award-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(88dvh, 760px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(380px, 1.1fr);
  border: 1px solid rgba(249, 209, 95, 0.48);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 38px 110px rgba(9, 4, 18, 0.48);
  opacity: 0;
  transform: translateY(20px) scale(0.965);
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(67, 18, 122, 0.28) transparent;
}

.nt-award-modal.is-open .nt-award-backdrop,
.nt-award-modal.is-open .nt-award-dialog {
  opacity: 1;
}

.nt-award-modal.is-open .nt-award-dialog {
  transform: translateY(0) scale(1);
}

.nt-award-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #21102e;
  box-shadow: 0 12px 28px rgba(15, 5, 26, 0.2);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.nt-award-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nt-award-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nt-award-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nt-award-close:hover {
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 5, 26, 0.26);
  transform: rotate(5deg) scale(1.05);
}

.nt-award-close:focus-visible,
.nt-award-continue:focus-visible {
  outline: 3px solid rgba(25, 190, 181, 0.46);
  outline-offset: 3px;
}

.nt-award-visual {
  position: relative;
  min-height: 610px;
  padding: 72px 34px 38px;
  overflow: hidden;
  display: grid;
  align-content: center;
  justify-items: center;
  color: #fff5cb;
  text-align: center;
  background:
    radial-gradient(circle at 50% 37%, rgba(42, 193, 226, 0.23), transparent 29%),
    radial-gradient(circle at 18% 14%, rgba(250, 211, 92, 0.17), transparent 24%),
    linear-gradient(155deg, #151f56 0%, #101c4f 42%, #091238 100%);
}

.nt-award-visual::before {
  position: absolute;
  inset: 0;
  opacity: 0.56;
  background-image:
    radial-gradient(circle, rgba(255, 224, 132, 0.88) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 255, 255, 0.7) 0 1px, transparent 1.5px);
  background-position: 0 0, 17px 21px;
  background-size: 34px 34px, 43px 43px;
  mask-image: linear-gradient(#000, transparent 74%);
  content: "";
}

.nt-award-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 226, 136, 0.24);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.nt-award-medallion {
  position: relative;
  z-index: 1;
  width: min(285px, 80%);
  aspect-ratio: 1;
  padding: 54px 24px 34px;
  border: 12px solid #e7b842;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 32%, #1eb9de 0%, #087fbf 22%, #073b91 53%, #080f55 82%);
  box-shadow:
    0 0 0 5px #ffdf79,
    0 0 0 12px rgba(159, 100, 21, 0.84),
    0 28px 54px rgba(0, 0, 0, 0.34),
    inset 0 0 0 4px rgba(255, 255, 255, 0.16);
}

.nt-award-medallion::before,
.nt-award-medallion::after {
  position: absolute;
  top: 52%;
  width: 42px;
  height: 100px;
  border: solid rgba(250, 211, 92, 0.9);
  border-width: 0 5px;
  border-radius: 50%;
  content: "";
}

.nt-award-medallion::before {
  left: 15px;
  transform: translateY(-50%) rotate(-18deg);
}

.nt-award-medallion::after {
  right: 15px;
  transform: translateY(-50%) rotate(18deg);
}

.nt-award-medallion-brand {
  position: absolute;
  top: 23px;
  left: 50%;
  width: 78%;
  color: #301604;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transform: translateX(-50%);
}

.nt-award-stars {
  margin-bottom: 10px;
  display: flex;
  gap: 7px;
  color: #ffd35f;
  font-size: 17px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.34));
}

.nt-award-medallion strong {
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  line-height: 1.2;
}

.nt-award-medallion > span:not(.nt-award-medallion-brand) {
  margin-top: 7px;
  color: #fff4c8;
  font-size: 12px;
  font-weight: 700;
}

.nt-award-medallion b {
  margin-top: 3px;
  color: #ffd457;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  line-height: 1;
}

.nt-award-visual > p {
  position: relative;
  z-index: 1;
  margin: 32px 0 0;
  color: rgba(255, 245, 203, 0.88);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nt-award-spark {
  position: absolute;
  z-index: 1;
  width: 7px;
  aspect-ratio: 1;
  background: #ffd661;
  box-shadow: 0 0 18px rgba(255, 214, 97, 0.8);
  transform: rotate(45deg);
  animation: ntAwardSpark 2.6s ease-in-out infinite;
}

.nt-award-spark-one {
  top: 18%;
  left: 13%;
}

.nt-award-spark-two {
  top: 12%;
  right: 15%;
  animation-delay: -0.8s;
}

.nt-award-spark-three {
  right: 11%;
  bottom: 19%;
  animation-delay: -1.6s;
}

.nt-award-copy {
  padding: clamp(52px, 6vw, 80px) clamp(34px, 5vw, 66px) clamp(42px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #251037;
  background:
    radial-gradient(circle at 94% 8%, rgba(18, 170, 163, 0.11), transparent 26%),
    linear-gradient(145deg, #ffffff, #fbf8ff);
}

.nt-award-copy > img {
  width: 138px;
  height: auto;
  margin-bottom: 34px;
}

.nt-award-kicker {
  width: fit-content;
  margin: 0 0 18px;
  padding: 9px 13px;
  border: 1px solid rgba(215, 167, 46, 0.34);
  border-radius: 999px;
  color: #8a6300;
  background: #fff8df;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nt-award-kicker i {
  margin-right: 6px;
}

.nt-award-copy h2 {
  max-width: 460px;
  margin: 0;
  color: #210a39;
  font-family: "Poppins", sans-serif;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.nt-award-copy > p:not(.nt-award-kicker) {
  max-width: 520px;
  margin: 24px 0 0;
  color: #62586d;
  font-size: 16px;
  line-height: 1.72;
}

.nt-award-highlights {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.nt-award-highlights span {
  min-height: 72px;
  padding: 13px;
  border: 1px solid rgba(67, 18, 122, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
}

.nt-award-highlights i {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #815a00;
  background: linear-gradient(145deg, #fff2bd, #efc554);
}

.nt-award-highlights strong {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  line-height: 1.35;
}

.nt-award-continue {
  min-height: 52px;
  width: fit-content;
  margin-top: 30px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #5820a0, #733bc2);
  box-shadow: 0 14px 32px rgba(88, 32, 160, 0.24);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nt-award-continue:hover {
  box-shadow: 0 18px 36px rgba(88, 32, 160, 0.32);
  transform: translateY(-2px);
}

@keyframes ntAwardSpark {
  0%,
  100% {
    opacity: 0.45;
    transform: rotate(45deg) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) scale(1.35);
  }
}

@media (max-width: 760px) {
  .nt-award-modal {
    padding: 12px;
  }

  .nt-award-dialog {
    width: min(560px, 100%);
    max-height: calc(100dvh - 24px);
    grid-template-columns: minmax(0, 1fr);
    border-radius: 24px;
  }

  .nt-award-visual {
    min-height: 355px;
    padding: 52px 24px 28px;
  }

  .nt-award-medallion {
    width: min(220px, 72vw);
    padding: 44px 20px 26px;
    border-width: 9px;
    box-shadow: 0 0 0 4px #ffdf79, 0 0 0 9px rgba(159, 100, 21, 0.84), 0 22px 40px rgba(0, 0, 0, 0.3);
  }

  .nt-award-medallion-brand {
    top: 17px;
    font-size: 8px;
  }

  .nt-award-stars {
    margin-bottom: 7px;
    gap: 5px;
    font-size: 13px;
  }

  .nt-award-medallion strong {
    font-size: 15px;
  }

  .nt-award-medallion b {
    font-size: 26px;
  }

  .nt-award-visual > p {
    margin-top: 24px;
    font-size: 9px;
  }

  .nt-award-copy {
    padding: 32px 24px 28px;
  }

  .nt-award-copy > img {
    width: 116px;
    margin-bottom: 22px;
  }

  .nt-award-copy h2 {
    font-size: clamp(31px, 9.2vw, 42px);
  }

  .nt-award-copy > p:not(.nt-award-kicker) {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.65;
  }

  .nt-award-highlights {
    margin-top: 22px;
    grid-template-columns: minmax(0, 1fr);
  }

  .nt-award-highlights span {
    min-height: 60px;
  }

  .nt-award-continue {
    width: 100%;
    margin-top: 24px;
  }
}

@media (max-height: 720px) and (min-width: 761px) {
  .nt-award-dialog {
    max-height: calc(100dvh - 24px);
  }

  .nt-award-visual {
    min-height: 590px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nt-award-backdrop,
  .nt-award-dialog,
  .nt-award-close,
  .nt-award-continue {
    transition: none !important;
  }

  .nt-award-spark {
    animation: none !important;
  }
}

/* Compact award card: the entire announcement always fits inside the viewport. */
.nt-award-modal {
  padding: 16px;
}

.nt-award-dialog {
  width: min(780px, calc(100vw - 32px));
  height: min(520px, calc(100dvh - 32px));
  max-height: none;
  overflow: hidden;
  grid-template-columns: minmax(280px, 0.88fr) minmax(330px, 1.12fr);
  border-radius: 26px;
}

.nt-award-visual {
  min-height: 0;
  height: 100%;
  padding: 48px 28px 28px;
}

.nt-award-medallion {
  width: min(230px, 78%);
  padding: 46px 22px 28px;
  border-width: 10px;
  box-shadow:
    0 0 0 4px #ffdf79,
    0 0 0 10px rgba(159, 100, 21, 0.84),
    0 22px 44px rgba(0, 0, 0, 0.3),
    inset 0 0 0 3px rgba(255, 255, 255, 0.16);
}

.nt-award-medallion-brand {
  top: 19px;
  font-size: 8px;
}

.nt-award-stars {
  margin-bottom: 7px;
  gap: 5px;
  font-size: 14px;
}

.nt-award-medallion strong {
  font-size: 16px;
}

.nt-award-medallion b {
  font-size: 27px;
}

.nt-award-visual > p {
  margin-top: 24px;
  font-size: 9px;
}

.nt-award-copy {
  min-height: 0;
  padding: 38px 44px;
}

.nt-award-copy > img {
  width: 118px;
  margin-bottom: 22px;
}

.nt-award-kicker {
  margin-bottom: 14px;
  padding: 8px 12px;
  font-size: 10px;
}

.nt-award-copy h2 {
  font-size: clamp(35px, 4vw, 45px);
  line-height: 1.06;
}

.nt-award-copy > p:not(.nt-award-kicker) {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.58;
}

@media (max-width: 760px) {
  .nt-award-modal {
    padding: 10px;
  }

  .nt-award-dialog {
    width: min(390px, calc(100vw - 20px));
    height: min(590px, calc(100dvh - 20px));
    max-height: none;
    overflow: hidden;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 42%) minmax(0, 58%);
    border-radius: 22px;
  }

  .nt-award-close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
  }

  .nt-award-visual {
    height: auto;
    min-height: 0;
    padding: 28px 20px 18px;
  }

  .nt-award-medallion {
    width: min(178px, 48vw);
    padding: 35px 16px 22px;
    border-width: 7px;
    box-shadow:
      0 0 0 3px #ffdf79,
      0 0 0 7px rgba(159, 100, 21, 0.84),
      0 16px 30px rgba(0, 0, 0, 0.28),
      inset 0 0 0 2px rgba(255, 255, 255, 0.16);
  }

  .nt-award-medallion::before,
  .nt-award-medallion::after {
    width: 30px;
    height: 68px;
    border-width: 0 3px;
  }

  .nt-award-medallion-brand {
    top: 13px;
    font-size: 6px;
  }

  .nt-award-stars {
    margin-bottom: 4px;
    gap: 4px;
    font-size: 10px;
  }

  .nt-award-medallion strong {
    font-size: 12px;
  }

  .nt-award-medallion > span:not(.nt-award-medallion-brand) {
    margin-top: 4px;
    font-size: 9px;
  }

  .nt-award-medallion b {
    margin-top: 2px;
    font-size: 21px;
  }

  .nt-award-visual > p {
    margin-top: 15px;
    font-size: 7px;
  }

  .nt-award-copy {
    padding: 22px 24px 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .nt-award-copy > img {
    width: 100px;
    margin-bottom: 13px;
  }

  .nt-award-kicker {
    margin-bottom: 11px;
    padding: 7px 10px;
    font-size: 9px;
  }

  .nt-award-copy h2 {
    max-width: 320px;
    font-size: clamp(28px, 8vw, 33px);
    line-height: 1.06;
  }

  .nt-award-copy > p:not(.nt-award-kicker) {
    max-width: 325px;
    margin-top: 13px;
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 760px) and (max-height: 560px) {
  .nt-award-dialog {
    height: calc(100dvh - 16px);
    width: min(390px, calc(100vw - 16px));
    grid-template-rows: minmax(0, 40%) minmax(0, 60%);
  }

  .nt-award-copy {
    padding: 15px 20px 17px;
  }

  .nt-award-copy > img {
    display: none;
  }

  .nt-award-kicker {
    margin-bottom: 8px;
  }

  .nt-award-copy h2 {
    font-size: 25px;
  }

  .nt-award-copy > p:not(.nt-award-kicker) {
    margin-top: 9px;
    font-size: 12px;
    line-height: 1.42;
  }

  .nt-award-medallion {
    box-sizing: border-box;
    width: 120px;
    height: 120px;
    padding: 24px 10px 12px;
    border-width: 5px;
    box-shadow:
      0 0 0 2px #ffdf79,
      0 0 0 5px rgba(159, 100, 21, 0.84),
      0 12px 24px rgba(0, 0, 0, 0.26),
      inset 0 0 0 2px rgba(255, 255, 255, 0.16);
  }

  .nt-award-medallion-brand {
    top: 9px;
    font-size: 5px;
  }

  .nt-award-stars {
    margin-bottom: 3px;
    gap: 3px;
    font-size: 8px;
  }

  .nt-award-medallion strong {
    font-size: 9px;
  }

  .nt-award-medallion > span:not(.nt-award-medallion-brand) {
    font-size: 7px;
  }

  .nt-award-medallion b {
    font-size: 17px;
  }

  .nt-award-visual > p {
    display: none;
  }
}

@media (min-width: 761px) and (max-height: 560px) {
  .nt-award-dialog {
    height: calc(100dvh - 24px);
  }

  .nt-award-copy {
    padding: 28px 36px;
  }

  .nt-award-copy > img {
    margin-bottom: 14px;
  }

  .nt-award-copy h2 {
    font-size: 34px;
  }

  .nt-award-copy > p:not(.nt-award-kicker) {
    margin-top: 12px;
  }
}

/* Reserve clear space below the fixed nav through the desktop/tablet transition. */
@media (min-width: 981px) and (max-width: 1366px) {
  .home-hero.home-hero-refresh {
    padding-top: 112px;
  }
}

/* Spacious action hierarchy beneath the two class cards. */
.diaspora-section {
  padding-top: clamp(72px, 6vw, 94px);
  padding-bottom: clamp(96px, 8vw, 132px);
}

.diaspora-story {
  align-items: start;
  row-gap: clamp(34px, 4vw, 50px);
}

@media (min-width: 921px) {
  .diaspora-visual {
    transform: translateY(-18px);
  }
}

.class-action-area {
  margin: 18px 0 26px;
}

.class-booking-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  justify-items: center;
}

.tutor-action-row {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.class-action-btn {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 54px;
  padding: 0 10px 0 21px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(7, 143, 137, 0.18);
  cursor: pointer;
  touch-action: manipulation;
  transition:
    transform 0.24s var(--home-ease),
    box-shadow 0.24s ease;
}

.class-action-btn::before {
  position: absolute;
  inset: -70% auto -70% -35%;
  z-index: 0;
  width: 31%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  transform: translateX(-230%) rotate(17deg);
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  content: "";
}

.class-action-btn > * {
  position: relative;
  z-index: 1;
}

.class-action-private,
.class-action-tutor {
  background: linear-gradient(135deg, #078d87 0%, #15b8af 62%, #38cbc2 100%);
}

.class-action-group {
  background: linear-gradient(135deg, #512082 0%, #6f38aa 62%, #8b58c7 100%);
  box-shadow: 0 16px 34px rgba(81, 32, 130, 0.18);
}

.class-action-private,
.class-action-group,
.class-action-tutor {
  width: min(230px, 100%);
}

.class-action-btn i {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #087d78;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(3, 79, 76, 0.17);
  font-size: 12px;
  transition: transform 0.24s var(--home-ease);
}

.class-action-group i {
  color: #5f28a6;
}

.class-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(7, 143, 137, 0.27);
}

.class-action-btn:hover::before {
  transform: translateX(540%) rotate(17deg);
}

.class-action-group:hover {
  box-shadow: 0 20px 40px rgba(81, 32, 130, 0.26);
}

.class-action-btn:hover i {
  transform: none;
}

.class-action-btn:focus-visible {
  outline: 3px solid rgba(244, 189, 50, 0.95);
  outline-offset: 4px;
}

#class-actions,
#become-tutor-cta {
  scroll-margin-top: 122px;
}

@media (max-width: 620px) {
  .diaspora-section {
    padding-top: 60px;
    padding-bottom: 84px;
  }

  .diaspora-story {
    row-gap: 30px;
  }

  .class-action-area {
    margin-top: 16px;
    margin-bottom: 24px;
  }

  .class-booking-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .class-action-btn,
  .class-action-tutor {
    width: 100%;
    min-height: 56px;
    font-size: 14px;
  }

  .tutor-action-row {
    margin-top: 20px;
  }

  #class-actions,
  #become-tutor-cta {
    scroll-margin-top: 84px;
  }
}

@media (hover: none), (pointer: coarse) {
  .class-action-btn:hover {
    transform: none;
  }
}
