@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

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

/* ---------------------------------------------------------------------
   2. Design tokens
   --------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --r180-periwinkle: #4e5af4;
  --r180-white: #ffffff;
  --r180-surface: #fafafe;
  --r180-green: #7ede9d;
  --r180-tint: #eff0fe;
  --r180-ink: #0a0e2e;
  --r180-muted: #52566f;
  --r180-border: #e6e8f4;

  /* Layout */
  --r180-container: 1240px;
  --r180-gutter: 20px;
}


html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Archivo" !important;
  color: var(--r180-ink);
  background: var(--r180-white);
  overflow-x: hidden;
  box-sizing: border-box;
}

.bg-white {
  background-color: white !important;
}

main {
  overflow-x: hidden;
}

.dsk-br {
  display: none;
}

@media (min-width:768px) {
  .mob-br {
    display: none;
  }

  .dsk-br {
    display: block;
  }
}

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


body.r180-no-scroll {
  overflow: hidden;
}

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

/* =====================================================================
   UTILITIES — compose design from classes (Bootstrap-style naming).
   Single source of truth for the declarations that repeat across the
   site. Add a class in the HTML instead of writing component CSS.
   Keep alphabetised within each group when adding new ones.
   ===================================================================== */

/* Display */
.no-scale {
  transform: scale(1) !important;
}

.school-video,
.acess-video {
  background: #fff;
  isolation: isolate;
}

.bg-multiply {
  mix-blend-mode: multiply;
  filter: brightness(1.05) contrast(1.05);
}

.access_bg-multiply {
  mix-blend-mode: multiply;
  filter: brightness(1.15) contrast(1.3);
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-grid {
  display: grid;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-none {
  display: none;
}

/* Flex direction / behaviour */
.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-1 {
  flex: 1 1 0;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.min-w-0 {
  min-width: 0;
}

/* Align / justify */
.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: flex-start;
}

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

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-start {
  justify-content: flex-start;
}

/* Gap (px scale used across components) */
.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-18 {
  gap: 18px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.gap-48 {
  gap: 48px;
}

/* Position */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z-1 {
  z-index: 1;
}

/* Sizing */
.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

/* Spacing */
.m-0 {
  margin: 0;
}

.p-0 {
  padding: 0;
}

/* Text alignment */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* Text colour */
.text-white {
  color: var(--r180-white);
}

.text-ink {
  color: var(--r180-ink);
}

.text-muted {
  color: var(--r180-muted);
}

.text-periwinkle {
  color: var(--r180-periwinkle);
}

/* Font weight */
.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

/* Font size */
.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

/* Line height */
.lh-24 {
  line-height: 24px;
}

/* Misc */
.overflow-hidden {
  overflow: hidden;
}

.rounded-circle {
  border-radius: 50%;
}

.cursor-pointer {
  cursor: pointer;
}

.pointer-events-none {
  pointer-events: none;
}

.text-decoration-none {
  text-decoration: none;
}

/* ---------------------------------------------------------------------
   5. FAQ (shared base — extended by .faq-v2 below)
   --------------------------------------------------------------------- */
.faq-section {
  background: linear-gradient(180deg, #FFF 0%, #FAFAFE 50%, #FFF 100%);
}

#education .faq-section {
  background: linear-gradient(180deg, #FFF 0%, #FAFAFE 3.77%, #FFF 95.81%, #FAFAFE 100%);
  position: relative;
}

#education .faq-section::before {
  content: '';
  position: absolute;
  width: 157.255px;
  height: 541.633px;
  top: -22%;
  right: -5%;
  transform: rotate(14.485deg);
  border-radius: 50%;
  background: var(--r180-green, #7EDE9D);
  filter: blur(250px);
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 99;
}

.faq-item {
  border-bottom: 1px solid #E5E7EB;
  margin-bottom: 1rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1F2937;
  margin: 0;
  padding-right: 2rem;
}

.faq-icon {
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: var(--r180-periwinkle);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 1.5rem;
}

.faq-answer p {
  margin: 0;
  color: #4B5563;
  font-size: 17px;
  line-height: 1.6;
}

/* ---------------------------------------------------------------------
   6. Components
   --------------------------------------------------------------------- */

/* =====================================================================
   Header — transparent over hero, sticky-on-scroll-up (Figma 723-98663)
   Default: absolute & transparent (scrolls away with the page).
   .is-fixed  : fixed to top with surface background (added on scroll up).
   .is-hidden : slid out of view (added while scrolling down).
   ===================================================================== */
.r180-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: transform 0.35s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.r180-header.is-fixed {
  position: fixed;
  background: rgba(250, 250, 254, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(10, 14, 46, 0.07);
}

.r180-header.is-hidden {
  transform: translateY(-100%);
}

.r180-header__bar {
  width: 1240px;
  max-width: 100%;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.r180-header__logo {
  display: inline-flex;
  flex-shrink: 0;
}

.r180-header__logo img {
  height: 24px;
  width: auto;
  display: block;
}

.r180-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.r180-nav__item {
  position: relative;
}

.r180-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font: 500 16px/1 "Archivo", sans-serif;
  letter-spacing: -0.32px;
  color: var(--r180-ink);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.18s ease;
}

.r180-nav__link:hover,
.r180-nav__link:focus-visible {
  color: var(--r180-periwinkle);
}

.r180-nav__chevron {
  display: inline-flex;
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.r180-nav__item.is-open .r180-nav__chevron {
  transform: rotate(180deg);
}

/* Book a demo button */
.r180-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 12px 24px;
  border-radius: 80px;
  background: var(--r180-periwinkle);
  color: #fff;
  font: 500 16px/1 "Archivo", sans-serif;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.r180-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.r180-btn:hover,
.r180-btn:focus-visible {
  background: #3f47ce;
}

.r180-btn--block {
  width: 100%;
  justify-content: center;
}

.r180-btn--outline {
  background: var(--r180-white);
  color: var(--r180-periwinkle);
  border-color: var(--r180-periwinkle);
  font-weight: 600;
}

.r180-btn--outline:hover,
.r180-btn--outline:focus-visible {
  background: var(--r180-tint);
}

/* Solutions mega-dropdown */
.r180-solutions {
  position: absolute;
  top: calc(100% + 18px);
  left: 0%;
  transform: translateX(0%) translateY(8px);
  width: 424px;
  max-width: calc(100vw - 48px);
  display: grid;
  grid-template-columns: repeat(1, 3fr);
  gap: 8px;
  padding: 12px;
  background: #fff;
  border: 1px solid #e6e8f4;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(10, 14, 46, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.r180-nav__item.is-open .r180-solutions {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0%) translateY(0);
}

.r180-solutions__card {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.r180-solutions__card:hover {
  background: var(--r180-tint);
}

.r180-solutions__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--r180-tint);
  color: var(--r180-periwinkle);
}

.r180-solutions__icon svg {
  width: 22px;
  height: 22px;
}

.r180-solutions__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.r180-solutions__title {
  font: 500 15px/1.3 "Archivo", sans-serif;
  color: var(--r180-ink);
}

.r180-solutions__desc {
  font: 400 13px/1.4 "Archivo", sans-serif;
  color: var(--r180-muted);
}

/* ------------------------------------------------------------------ */
/* Shared section heading                                             */
/* Common style for every section title (challenge, feature, report,  */
/* engage, faq, team, foundation, atlas, threeps, story, etc.).       */
/* Per-section __title rules below only carry their unique bits        */
/* (line-height/letter-spacing, centering, max-width) + responsive.    */
/* ------------------------------------------------------------------ */
.section-heading {
  margin: 0;
  font: 600 40px/48px "Archivo", sans-serif;
  color: var(--r180-ink);
}

.section-heading .accent {
  color: var(--r180-periwinkle);
}

/* Resources dropdown */
.r180-resources {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  transform: translateY(8px);
  width: 200px;
  max-width: calc(100vw - 48px);
  display: flex;
  flex-direction: column;
  padding: 8px;
  background: #fff;
  border: 1px solid #e6e8f4;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(10, 14, 46, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.r180-nav__item.is-open .r180-resources {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.r180-resources__link {
  display: block;
  padding: 16px 20px;
  border-radius: 12px;
  font: 500 16px/1 "Archivo", sans-serif;
  letter-spacing: -0.32px;
  color: var(--r180-ink);
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.r180-resources__link:hover,
.r180-resources__link:focus-visible {
  background: var(--r180-tint);
  color: var(--r180-periwinkle);
}

/* Hamburger + drawer hidden on desktop */
.r180-header__toggle {
  display: none;
}

.r180-backdrop,
.r180-drawer {
  display: none;
}

/* ----------------------- Mobile header / drawer ----------------------- */
@media (max-width: 991px) {
  .r180-header__bar {
    gap: 16px;
  }

  .r180-nav {
    display: none;
  }

  .r180-header__bar>.r180-btn {
    display: none;
  }

  .r180-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    background: none;
    border: 0;
    color: var(--r180-ink);
    cursor: pointer;
  }

  .r180-header__toggle svg {
    width: 26px;
    height: 26px;
  }

  .r180-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(10, 14, 46, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .r180-backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }

  .r180-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100dvh;
    padding: 15px 20px 24px;
    z-index: 1200;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    background: url('/assets/images/menu-bg.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 0% 0%;
  }

  .r180-drawer.is-open {
    transform: translateX(0);
  }

  .r180-drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
  }

  .r180-drawer__logo img {
    height: 24px;
    width: auto;
    display: block;
  }

  .r180-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--r180-ink);
    cursor: pointer;
  }

  .r180-drawer__close svg {
    width: 22px;
    height: 22px;
  }

  .r180-drawer__nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .r180-drawer__nav>li {
    padding: 24px 0;
    border-bottom: 1px solid var(--r180-border);
  }

  .r180-drawer__nav>li:last-child {
    border-bottom: 0;
  }

  .r180-drawer__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
    padding: 0;
    font: 400 16px/24px "Archivo", sans-serif;
    color: var(--r180-ink);
    text-decoration: none;
    background: none;
    border: 0;
    cursor: pointer;
  }

  .r180-drawer__chevron {
    display: inline-flex;
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
  }

  .r180-drawer__item.is-open .r180-drawer__chevron {
    transform: rotate(180deg);
  }

  .r180-drawer__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
  }

  .r180-drawer__item.is-open .r180-drawer__panel {
    grid-template-rows: 1fr;
  }

  .r180-drawer__panel-inner {
    overflow: hidden;
  }

  .r180-drawer__sublist {
    list-style: none;
    margin: 0;
    padding: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .r180-drawer__sublink {
    display: block;
    padding-left: 32px;
    font: 400 16px/24px "Archivo", sans-serif;
    color: var(--r180-ink);
    text-decoration: none;
  }

  .r180-drawer__sublink:hover,
  .r180-drawer__sublink:focus-visible {
    color: var(--r180-periwinkle);
  }

  .r180-drawer .r180-btn {
    margin-top: auto;
  }
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.mb-18 {
  margin-bottom: 18px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.pt-78 {
  padding-top: 78px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* =====================================================================
   Hero — light surface + gradient glow, text left / video right
   (Figma 723-98690)
   ===================================================================== */

.home-hero {
  background-image: url("/assets/images/home/hero/home-hero-bg.png");
  background-size: cover;
  background-position: 0% 0%;
}

.about-hero {
  background-image: url("/assets/images/about/Hero/bg.png");
  background-size: cover;
  background-position: 0% 0%;
  padding-top: 32px;

  @media (max-width:768px) {
    padding-top: 24px;
  }
}

.school-hero-bg {
  background-image: url("/assets/images/education/Hero/education-bg.png");
  background-position: 10% 0%;
  background-repeat: no-repeat;

  @media (max-width:768px) {
    background-image: url('/assets/images/education/Hero/school-mob.png');
    background-position: 0 0;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}

.school-banner {
  width: 539px;
  max-width: 100%;

  @media (max-width:768px) {
    width: 295px;
  }
}

.edu-wws-bg {
  background: linear-gradient(180deg, #FFF 0%, #FAFAFE 3.96%) !important;
}

.about-hero__inner {
  padding-bottom: 40px;
}

#about .hero__copy {
  gap: 0;

  .hero__eyebrow {
    margin-bottom: 24px;
  }

  .hero__title {
    margin-bottom: 16px;
    font-size: 72px;
    font-style: normal;
    font-weight: 600;
    line-height: 80px;
    /* 111.111% */
    letter-spacing: -2.16px;

  }

  .hero__desc {
    margin-bottom: 32px;
  }
}

#hiring .hero__copy {
  gap: 0;

  .hero__eyebrow {
    margin-bottom: 24px;
  }

  .hero__title {
    margin-bottom: 12px;
    font-size: 64px;
  }

  .hero__desc {
    margin-bottom: 32px;
  }
}

@media (max-width: 991px) {
  #about .about-hero__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding-bottom: 24px;
  }

  #about .about-hero__inner .hero__text,
  #about .about-hero__inner .hero__copy {
    display: contents;
  }

  .about-hero .r180-eyebrow {
    justify-content: center;
    margin-bottom: 8px !important;
  }

  #about .about-hero .hero__title {
    text-align: center;
    margin-bottom: 0;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -1.2px;
  }

  #about .about-hero .hero__desc {
    text-align: center;
    margin-bottom: 0;
    max-width: none;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: normal;
  }

  #about .about-hero .hero__media {
    order: 1;
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 335 / 204;
    margin: 0;
    border-width: 2px;
    box-shadow: none;
  }

  #about .about-hero .hero__play {
    width: 64px;
    height: 64px;
  }

  #about .about-hero .hero__media-logo {
    width: 96px;
    right: 16px;
    bottom: 16px;
  }

  #about .about-hero .hero__btn {
    order: 2;
    align-self: stretch;
    justify-content: center;
    width: 100%;
    font-size: 18px;
    padding: 16px 40px;
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  gap: 64px;
  padding: 32px 3rem 40px;
}

#education .hero__inner {
  padding: 48px 20px;
  align-items: center;

  .hero__desc {
    width: 100%;
    max-width: unset;
  }
}

.solution .hero__inner {
  padding: 64px 20px 56px 20px !important;
  z-index: 99;
  position: relative;
}

.solution .hero-bg {
  position: relative;
  z-index: 1;
  background: url('/assets/images/hiring/Hero/bg.png') #FAFAFE;
  background-size: 100%;
  background-position: 0% 0%;
  background-repeat: no-repeat;

  @media (max-width:768px) {
    background-image: url('/assets/images/hiring/Hero/hiring-mob.png');
    background-position: 0 0;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}

.solution .hero-team {
  position: relative;
  z-index: 1;
  background: url('/assets/images/Team-Assessment/Hero/gradient.png') #FAFAFE;
  background-size: 100%;
  background-position: 0% 0%;
  background-repeat: no-repeat;

  @media (max-width:768px) {
    background-image: url('/assets/images/Team-Assessment/Hero/team-mob.png');
    background-position: 0 0;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}

#career .hero-bg {
  @media (max-width:768px) {
    background-image: url('/assets/images/Career/Hero/career-mob.png');
    background-position: 0 0;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}

#career .timeline {
  overflow: visible;
  z-index: 99;
}

#career .timeline::before {
  content: '';
  position: absolute;
  width: 392.821px;
  height: 541.633px;
  transform: rotate(14.485deg);
  left: -293px;
  top: -174px;
  background-color: var(--r180-periwinkle);
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(182px);
}

.hero__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  padding: 32px 0 40px;
}

.solution .hero__title {
  font-size: 64px;
  line-height: 72px;
  font-weight: 600;
  letter-spacing: -1.92px;
}

.hero__copy {
  display: flex;
  flex-direction: column;
}

.solution .hero-image {
  max-width: 600px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font: 500 16px/1 "Archivo", sans-serif;
  letter-spacing: -0.32px;
  color: var(--r180-periwinkle);
}

.hero__eyebrow svg {
  width: 14px;
  height: 16px;
}

.hero__title {
  margin: 0;
  font: 600 72px/80px "Archivo", sans-serif;
  letter-spacing: -2.16px;
  color: var(--r180-ink);
}

.hero__title .accent {
  color: var(--r180-periwinkle);
}

.hero__desc {
  margin: 0;
  max-width: 535px;
  font: 400 18px/1.45 "Archivo", sans-serif;
  letter-spacing: -0.36px;
  color: var(--r180-ink);
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 20px 40px;
  border-radius: 80px;
  background: var(--r180-periwinkle);
  border: 1px solid #fff;
  box-shadow: 0 4px 4px rgba(71, 90, 111, 0.25);
  color: #fff;
  font: 600 20px/24px "Archivo", sans-serif;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero__btn svg {
  width: 20px;
  height: 20px;
}

.hero__btn:hover,
.hero__btn:focus-visible {
  background: #3f47ce;
}

/* Client logos marquee inside hero */
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-250px * 5.5));
    transform: translateX(calc(-250px * 5.5));
  }
}

@keyframes scroll2 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(250px * 5.5));
    transform: translateX(calc(250px * 5.5));
  }
}

.hero__logos .logo-slider {
  height: 48px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero__logos .logo-slider .logo-slider-wrapper {
  -webkit-animation: scroll 52s linear infinite;
  animation: scroll 52s linear infinite;
  display: flex;
  gap: 100px;
  width: calc(250px * 11);
}

.hero__logos .logo-slider .logo-slide {
  height: 48px;
}

.hero__logos .logo-slider .logo-slide img {
  height: 100%;
  width: auto;
}

@media (max-width: 578px) {
  .hero__logos {
    margin-top: 8px;
    padding: 14px 0;
  }

  .hero__logos .logo-slider .logo-slider-wrapper {
    gap: 50px;
    width: calc(250px * 9);
  }

  .hero__logos .logo-slider .logo-slide {
    height: 26px;
  }

  .hero__logos .logo-slider {
    height: 26px;
  }
}

/* Video card */
.hero__media {
  position: relative;
  flex-shrink: 0;
  width: 494px;
  height: 645px;
  border: 3px solid #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 18px 8px rgba(141, 163, 192, 0.25);
}

.hero__media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(0, 0, 0, 0) 76%, rgba(0, 0, 0, 0.4) 100%);
}

.hero__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease;
}

.hero__play:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.hero__play img,
.hero__play svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__media-logo {
  position: absolute;
  right: 29px;
  bottom: 29px;
  width: 130px;
  height: auto;
  z-index: 2;
}

/* Inline video — used for mobile in-place playback (desktop uses the modal) */
.hero__media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 3;
  display: none;
}

.hero__media.is-playing .hero__media-video {
  display: block;
}

.hero__media.is-playing .hero__media-img,
.hero__media.is-playing .hero__play,
.hero__media.is-playing .hero__media-logo {
  display: none;
}

.hero__media.is-playing::after {
  display: none;
}

/* Custom inline video controls (Figma 723-128368) */
.hero__video-controls {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  display: none;
  align-items: center;
  gap: 8px;
}

.hero__media.is-playing .hero__video-controls {
  display: flex;
}

.hero__video-toggle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.2s ease;

  @media (max-width:768px) {
    padding: 4px 10px;
  }
}

.hero__video-toggle:hover {
  background: rgba(0, 0, 0, 0.32);
}

.hero__video-icon {
  display: none;
  width: 20px;
  height: 20px;
}

.hero__video-controls .hero__video-icon--pause {
  display: block;
}

.hero__video-controls.is-paused .hero__video-icon--pause {
  display: none;
}

.hero__video-controls.is-paused .hero__video-icon--play {
  display: block;
}

.hero__video-seek {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 20px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);

  @media (max-width:768px) {
    padding: 12px 16px;
  }
}

.hero__video-progress {
  flex: 1;
  height: 4px;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right,
      #4e5af4 0%,
      #4e5af4 var(--seek, 0%),
      #fff var(--seek, 0%),
      #fff 100%);
}

.hero__video-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, #4e5af4 0 5px, #fff 5px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.hero__video-progress::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, #4e5af4 0 5px, #fff 5px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

/* -------------------------------- Hero responsive -------------------- */
@media (max-width: 1199px) {
  .hero__inner {
    padding: 32px 64px 48px;
    gap: 48px;
  }

  .hero__title {
    font-size: 60px;
    line-height: 66px;
    letter-spacing: -1.6px;
  }

  .hero__media {
    width: 420px;
    height: 560px;
  }
}

@media (max-width: 991px) {

  .hero__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 24px 40px;
    gap: 40px;
  }

  .hero__text {
    padding: 16px 0 0;
    gap: 32px;
  }

  .hero__title {
    font-size: 44px;
    line-height: 50px;
    letter-spacing: -1.2px;
  }

  .hero__desc {
    font-size: 16px;
    max-width: none;
  }

  .hero__media {
    width: 100%;
    max-width: 460px;
    height: 460px;
    margin-inline: auto;
  }

  .hero__btn {
    font-size: 18px;
    padding: 16px 32px;
  }
}

@media (max-width: 560px) {
  .hero__title {
    font-size: 36px;
    line-height: 42px;
  }

  .hero__media {
    height: 380px;
  }

}

/* Home hero — mobile (Figma 1638-38777): centered copy -> full-width CTA -> video */
@media (max-width: 991px) {
  .home-hero .hero__inner {
    gap: 16px;
    padding: 24px 0;
  }

  .home-hero .hero__text {
    padding-top: 0;
  }

  /* Flatten hero__text so the marquee can sit below the image on mobile */
  .home-hero .hero__inner .hero__text {
    display: contents;
  }

  .home-hero .hero__copy {
    order: 1;
  }

  .home-hero .hero__media {
    order: 2;
  }

  .home-hero .hero__logos {
    order: 3;
  }

  .home-hero .r180-eyebrow {
    justify-content: center;
    width: 100%;
  }

  .home-hero .hero__title {
    text-align: center;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -1.2px;
  }

  .home-hero .hero__desc {
    text-align: center;
    max-width: none;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: normal;
    margin-bottom: 24px !important;
  }

  .home-hero .hero__btn {
    align-self: stretch;
    justify-content: center;
    width: 100%;
    font-size: 18px;
    padding: 16px 40px;
  }

  .home-hero .hero__media {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 335 / 204;
    margin: 0;
    border-width: 2px;
    box-shadow: none;
  }

  .home-hero .hero__play {
    width: 64px;
    height: 64px;
  }

  .home-hero .hero__media-logo {
    width: 117px;
    right: 16px;
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__logos .logo-slider .logo-slider-wrapper {
    animation: none;
  }
}

/* =====================================================================
   Video modal (Figma 176-32275 — dark overlay + player)
   ===================================================================== */
.hero-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.hero-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.hero-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
}

.hero-modal.is-open .hero-modal__dialog {
  transform: translateY(0) scale(1);
}

.hero-modal__video {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  display: block;
  object-fit: contain;
  background: #000;
}

/* Custom controls inside the modal use the shared .hero__video-controls styling */
.hero-modal__dialog .hero__video-controls {
  display: flex;
  left: 20px;
  right: 20px;
  bottom: 18px;
}

.hero-modal__close {
  position: absolute;
  top: 0;
  right: -1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: background 0.18s ease;
  background: none;
  box-shadow: none;
  outline: none;
  border: none;
}

.hero-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero-modal__close svg {
  width: 18px;
  height: 18px;
  display: block;
}

@media (max-width: 640px) {
  .hero-modal__close {
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.5);
  }
}


/* =====================================================================
   BRAND REFRESH v2 — Quote / testimonial (Figma 176-27641)
   ===================================================================== */
.quote-v2 {
  font-family: "Archivo", "Montserrat", sans-serif;
  padding-top: 88px;
  padding-bottom: 80px;
}

.quote-v2__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 768px;
  text-align: center;
}

.quote-v2__mark {
  display: block;
  line-height: 0;
  color: #e4e5fd;
}

.quote-v2__mark svg {
  width: 38px;
  height: 28px;
  display: block;
}

.quote-v2__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.quote-v2__text {
  margin: 0;
  font-weight: 400;
  font-size: 28px;
  line-height: 40px;
  color: #0a0e2e;
}

.quote-v2__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.quote-v2__name {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: #161937;
}

.quote-v2__role {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #4e5af4;
}

.quote-v2__divider {
  width: 100%;
  max-width: 768px;
  height: 1px;
  background: #e4e5fd;
}


/* =====================================================================
   Shared eyebrow label (sparkle + periwinkle text)
   ===================================================================== */
.r180-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font: 500 16px/1 "Archivo", sans-serif;
  letter-spacing: -0.32px;
  color: var(--r180-periwinkle);
}

.r180-eyebrow svg {
  width: 14px;
  height: 16px;
  flex-shrink: 0;
}

/* =====================================================================
   The challenge — heading + 3 problem cards (Figma 723-108314)
   ===================================================================== */
.challenge-v2 {
  /* background: var(--r180-surface, #FAFAFE); */
  /* padding: 80px 120px; */
}

.challenge-v2__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.challenge-v2__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.challenge-v2__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.challenge-v2__desc {
  margin: 0;
  max-width: 900px;
  font: 300 18px/24px "Archivo", sans-serif;
  color: var(--r180-muted);

  @media (max-width:768px) {
    font-size: 16px;
  }
}

.challenge-v2__row {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.challenge-v2__card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  background: var(--r180-white);
  border: 1px solid var(--r180-border, #e6e8f4);
  border-radius: 10px;
}

.challenge-v2__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--r180-tint);
}

.challenge-v2__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.challenge-v2__card-title {
  margin: 0;
  font: 500 24px/24px "Archivo", sans-serif;
  letter-spacing: -0.6px;
  color: var(--r180-ink);
}

.challenge-v2__card-desc {
  margin: 0;
  font: 400 16px/24px "Archivo", sans-serif;
  color: var(--r180-muted);
}

/* What you get — two rows of cards under a centred heading */
.whatyou__grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 991px) {
  .challenge-v2 {
    padding: 64px 40px;
  }

  .challenge-v2__title {
    font-size: 32px;
    line-height: 40px;
  }

  .challenge-v2__row {
    flex-wrap: wrap;
  }

  .challenge-v2__card {
    flex: 1 1 280px;
  }
}

@media (max-width: 640px) {
  .challenge-v2 {
    padding: 32px 0px;
  }

  .challenge-v2__title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
  }

  .challenge-v2__copy {
    gap: 1rem;
  }

  .challenge-v2__inner {
    gap: 32px;
  }

  .challenge-v2__row {
    flex-direction: column;
  }

  .challenge-v2__card {
    padding: 24px;
    gap: 24px;
  }

  .challenge-v2__icon {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 0.857px 13.714px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6.857px;
    border-radius: 13.714px;
  }

  .challenge-v2__card-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.6px;
  }
}

/* =====================================================================
   What R180 gives you — alternating feature rows (Figma 723-108361)
   ===================================================================== */
.feature-v2 {
  background: linear-gradient(180deg, #F9F9FE 0%, #FFF 100%);
}

.feature-v2__rows {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.feature-v2__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 72px;
}

.feature-v2__row--reverse {
  flex-direction: row-reverse;
}

.feature-v2__text {
  flex: 1 1 578px;
  max-width: 578px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-v2__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-v2__eyebrow {
  margin: 0;
  font: 500 16px/1 "Archivo", sans-serif;
  letter-spacing: -0.32px;
  color: var(--r180-periwinkle);
}

.feature-v2__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-v2__desc {
  margin: 0;
  font: 300 18px/24px "Archivo", sans-serif;
  color: var(--r180-muted);
}

.feature-v2__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-v2__point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-v2__point--wide {
  grid-column: 1 / -1;
}

.feature-v2__check {
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  margin-top: 3.5px;
}

.feature-v2__point-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-v2__point-title {
  margin: 0;
  font: 600 18px/28px "Archivo", sans-serif;
  letter-spacing: -0.36px;
  color: var(--r180-periwinkle);
}

.feature-v2__point-desc {
  margin: 0;
  font: 300 16px/24px "Archivo", sans-serif;
  color: var(--r180-muted);
}

/* .feature-v2__media {
  flex: 0 0 1;
  width: 550px;
  height: 570px;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 275 / 203;
  background: #D6D7E0;
  box-shadow: 0 4px 28px 0 rgba(178, 189, 235, 0.30);
} */

.feature-v2__media {
  flex: 0 0 1;
  width: 550px;
  height: 406px;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 275 / 203;
  background: #D6D7E0;
  box-shadow: 0 4px 28px 0 rgba(178, 189, 235, 0.30);

  @media (max-width:768px) {
    flex: 0 0 1;
    width: 100%;
    height: 247px;
    aspect-ratio: 275/203;
    overflow: hidden;
    border-radius: 14.618px;
    border: 1.218px solid #FFF;
    background: #D6D7E0;
    box-shadow: 0 2.436px 17.055px 0 rgba(178, 189, 235, 0.30);
  }
}

.feature-v2__media video {
  width: 102%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .feature-v2 {
    padding: 64px 40px;
  }

  .feature-v2__rows {
    gap: 64px;
  }

  .feature-v2__row,
  .feature-v2__row--reverse {
    flex-direction: column;
    gap: 32px;
  }

  .feature-v2__text {
    flex-basis: auto;
    max-width: none;
    width: 100%;
  }

  .feature-v2__title {
    font-size: 32px;
    line-height: 40px;
  }

  .feature-v2__media {
    flex-basis: auto;
    width: 100%;
    max-width: 550px;
    height: auto;
    aspect-ratio: 275 / 203;
  }
}

@media (max-width: 640px) {
  .feature-v2 {
    padding: 32px 0px;
  }

  .feature-v2__title {
    font-size: 28px;
    line-height: 30px;
    font-weight: 600;
  }

  .feature-v2__desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
  }

  .feature-v2__copy {
    gap: 1rem;
  }

  .feature-v2__points {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-v2__text {
    gap: 24px;
  }
}

/* =====================================================================
   The challenge — heading + 3 connected stat circles (Figma 1088-13109)
   ===================================================================== */
.stats-v2 {
  overflow: visible;
}

.stats-v2::before {
  content: '';
  width: 738.03px;
  height: 271.062px;
  transform: rotate(14.485deg);
  position: absolute;
  left: -20%;
  bottom: -10%;
  border-radius: 50%;
  opacity: 0.2;
  background: var(--r180-periwinkle, #4E5AF4);
  filter: blur(182px);

  @media (max-width:768px) {
    display: none;
  }
}

.stats-v2__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
  z-index: 99;
}

.stats-v2__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 0px;
}

.stats-v2__copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  align-items: end;
}

.stats-v2__title {
  line-height: 1.2;
}

.stats-v2__body {
  margin: 0;
  font: 400 18px/24px "Archivo", sans-serif;
  color: var(--r180-muted);
}

.stats-v2__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  @media (max-width:768px) {
    grid-template-columns: repeat(1, 1fr);
    max-width: 300px;
    margin: auto;
  }
}

/* .stats-v2__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  z-index: 0;
  pointer-events: none;
} */
.stats-v2__circle-outer {
  padding: 32px;
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;

  @media (max-width:768px) {
    padding: 1rem;
  }
}

.stats-v2__circle-outer::before {
  position: absolute;
  content: '';
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  border-top: 5px solid #7EDE9D50;
  border-left: 5px solid #7EDE9D50;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  top: -2.5px;
  left: -2.5px;
  border-radius: 50%;
  transform: rotate(45deg);

  @media (max-width:768px) {
    transform: rotate(135deg);

  }
}

.stats-v2__circle-outer:nth-child(2)::before {
  transform: rotate(-135deg);

  @media (max-width:768px) {
    transform: rotate(-45deg);

  }
}

.stats-v2__circle {
  z-index: 1;
  height: 100%;
  flex-shrink: 0;
  background: #ffffff;
  border: 2px solid #4E5AF4;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 10px 20px 0 rgba(175, 185, 213, 0.35);
}

#education {
  .stats-v2__circle {
    border: 2px solid var(--r180-green);
    box-shadow: 0 10px 20px 0 rgba(175, 185, 213, 0.35);
  }

  .stats-v2__circle--accent {
    border: 4px solid var(--r180-green);
    box-shadow: 0 10px 20px 0 rgba(126, 222, 157, 0.35);
  }

  .stats-v2__circle--accent .stats-v2__num {
    color: var(--r180-green);
    font-weight: 800;
  }

  .stats-v2__circle-outer::before {
    width: calc(100% + 3px);
    height: calc(100% + 3px);
    border-top: 3px solid var(--r180-periwinkle);
    border-left: 3px solid var(--r180-periwinkle);
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    top: -1.5px;
    left: -1.5px;
    opacity: 0.5;
  }
}

.stats-v2__circle--accent {
  border: 4px solid var(--r180-periwinkle);
  box-shadow: 0 10px 20px 0 rgba(78, 90, 244, 0.35);
}

.stats-v2__num {
  font: 600 56px/1 "Archivo", sans-serif;
  letter-spacing: -1.5px;
  color: var(--r180-ink);
}

.stats-v2__circle--accent .stats-v2__num {
  color: var(--r180-periwinkle);
  font-weight: 800;
}

.stats-v2__label {
  margin: 0;
  font: 400 18px/24px "Archivo", sans-serif;
  color: var(--r180-muted);
  letter-spacing: -0.18px;
}

@media (max-width: 1100px) {
  .stats-v2 {
    padding: 64px 40px;
  }

  .stats-v2__title {
    font-size: 32px;
  }

  .stats-v2__line {
    display: none;
  }
}

@media (max-width: 640px) {
  .stats-v2 {
    padding: 48px 20px;
  }

  .stats-v2__copy {
    grid-template-columns: 1fr;
  }

  .stats-v2__body {
    margin-top: 0;
  }

  .stats-v2__circle {
    width: 260px;
    height: 260px;
    padding: 32px;
  }

  .stats-v2__num {
    font-size: 44px;
  }
}

/* =====================================================================
   How it works — 3 illustrated step cards (Figma 723-98328)
   ===================================================================== */
.steps-v2 {
  position: relative;
  overflow: visible;
  clip-path: inset(-100% 0 -100% 0);
}

.mp-home .steps-v2::before {
  content: "";
  position: absolute;
  width: 307.914px;
  height: 824.638px;
  transform: rotate(14.485deg);
  right: -252.387px;
  top: -269.664px;
  border-radius: 50%;
  background: var(--r180-green, #7EDE9D);
  filter: blur(350px);
}

.mp-home .steps-v2::after {
  content: "";
  width: 241.702px;
  height: 346.363px;
  transform: rotate(79.371deg);
  position: absolute;
  left: 38%;
  bottom: -35.246px;
  border-radius: 50%;
  background: linear-gradient(180deg, #4E5AF4 0%, #7EDE9D 100%);
  filter: blur(350px);
}

#education .steps-v2::before {
  content: "";
  position: absolute;
  width: 995.796px;
  height: 271.062px;
  transform: rotate(14.485deg);
  border-radius: 50%;
  opacity: 0.2;
  left: 70%;
  background: var(--r180-periwinkle, #4E5AF4);
  filter: blur(182px);
}

.steps-v2__inner {
  position: relative;
  z-index: 99;
}

.steps-v2__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.steps-v2__title {
  line-height: 1.15;
  letter-spacing: -1px;
}

.steps-v2__subtitle {
  margin: 0;
  max-width: 620px;
  font: 300 18px/1.5 "Archivo", sans-serif;
  color: var(--r180-muted);
}

.steps-v2__row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-v2__card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e6e8f4;
  border-radius: 16px;
}

.home-videos .steps-v2__card {
  padding: 0;
}

.steps-v2__img {
  width: 100%;
  aspect-ratio: 287/265;
  border-radius: 12px;
  overflow: hidden;
  border-radius: 12px;
}

.steps-v2__img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.3);
  transform-origin: center;
}

.steps-v2__detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.home-videos .steps-v2__detail {
  padding: 0 24px 24px 24px;
}

.steps-v2__step-title {
  margin: 0;
  font: 500 24px/1 "Archivo", sans-serif;
  letter-spacing: -0.6px;
  color: var(--r180-ink);
}

.steps-v2__step-desc {
  margin: 0;
  font: 400 16px/1.5 "Archivo", sans-serif;
  color: var(--r180-muted);
}

@media (max-width: 991px) {

  .steps-v2__row {
    flex-wrap: wrap;
  }

  .steps-v2__card {
    flex: 1 1 280px;
  }
}

@media (max-width: 640px) {
  .steps-v2__row {
    flex-direction: column;
  }

  .steps-v2__img {
    width: 100%;
    aspect-ratio: 287/265;
  }
}

/* =====================================================================
   What we do — 3 photo cards with overlay (Figma 723-98360)
   ===================================================================== */
.cards-v2 {
  background: linear-gradient(180deg, #FFF 0%, #FAFAFE 5.55%, #FAFAFE 53.56%, #FAFAFE 99.09%, #FFF 100%);
}

.cards-v2__inner {
  position: relative;
  z-index: 99;
}

.cards-v2__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-bottom: 48px;

  @media (max-width:640px) {
    margin-bottom: 32px;
  }
}

.cards-v2__row {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.cards-v2__card {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 480px;
  border-radius: 18px;
  overflow: hidden;

  @media (max-width:768px) {
    height: 400px;
  }
}

.cards-v2__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards-v2__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #00000080 100%);
}

.cards-v2__content {
  position: absolute;
  z-index: 1;
  left: 32px;
  right: 32px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;

  @media (max-width:640px) {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

.cards-v2__card-title {
  margin: 0;
  font: 600 24px/32px "Archivo", sans-serif;
  letter-spacing: -0.6px;

  @media (max-width:768px) {
    letter-spacing: normal;
  }
}

.cards-v2__card-desc {
  margin: 0;
  font: 400 16px/24px "Archivo", sans-serif;
  color: rgba(255, 255, 255, 0.92);
}

.cards-v2__link {
  margin-top: 8px;
  font: 400 16px/24px "Archivo", sans-serif;
  color: var(--r180-green);
  text-decoration: none;
}

.cards-v2__link:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  /* .cards-v2 {
    padding: 64px 40px;
  } */

  .cards-v2__title {
    font-size: 32px;
  }

  .cards-v2__row {
    flex-wrap: wrap;
  }

  .cards-v2__card {
    flex: 1 1 400px;
  }
}

@media (max-width: 640px) {

  .cards-v2__row {
    flex-direction: column;
  }
}


/* =====================================================================
   BRAND REFRESH v2 — Details / How we compare (Figma 233-67574)
   ===================================================================== */
.compare-v2 {
  font-family: "Archivo", "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 99;
}

.compare-v2__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.compare-v2__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.32px;
  color: #3a45d9;
}

.compare-v2__eyebrow svg {
  width: 16px;
  height: 16px;
  color: #7ede9d;
}

.compare-v2__title {
  text-align: center;
}

.compare-v2__accent {
  color: #4e5af4;
}

/* --------------------------------- Table ----------------------------- */
.compare-v2__table-wrap {
  position: relative;
  width: 100%;
  max-width: 1008px;
}

.compare-v2__deco {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 40px;
  border-radius: 16px;
  background: #e4e5fd;
  z-index: -1;
}

.compare-v2__deco--1 {
  width: 96%;
  bottom: -8px;
  opacity: 0.5;
}

.compare-v2__deco--2 {
  width: 92%;
  bottom: -16px;
  opacity: 0.3;
}

.compare-v2__card {
  position: relative;
  z-index: 1;
  border: 3px solid #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(10, 14, 46, 0.06);
}

.compare-v2__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.compare-v2__table thead th {
  background: #4e5af4;
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  padding: 21px 24px;
  border-right: 1px solid rgba(230, 232, 244, 0.4);
}

.compare-v2__table thead th:last-child {
  border-right: 0;
}

.compare-v2__table tbody td {
  padding: 28px 24px;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #e6e8f4;
  border-top: 1px solid #e6e8f4;
}

.compare-v2__table tbody td:last-child {
  border-right: 0;
}

.compare-v2__table tbody tr:nth-child(even) {
  background: #fafafe;
}

.compare-v2__feature {
  text-align: left !important;
  padding-left: 32px !important;
  color: #0a0e2e;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

.compare-v2__table thead th.compare-v2__feature {
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
}

.compare-v2__cell-icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 991px) {
  .compare-v2 {
    padding: 32px 20px;
    gap: 40px;
  }

  .compare-v2__title {
    font-size: 28px;
    line-height: 36px;
  }

  .compare-v2__table thead th {
    font-size: 14px;
    padding: 16px 10px;
  }

  .compare-v2__table thead th.compare-v2__feature {
    font-size: 14px;
  }

  .compare-v2__table tbody td {
    padding: 18px 10px;
  }

  .compare-v2__feature {
    font-size: 14px;
    padding-left: 16px !important;
  }

  .compare-v2__cell-icon {
    width: 24px;
    height: 24px;
  }
}

/* --- Mobile: stacked layout matching Figma (feature label as its own row) --- */
@media (max-width: 575px) {
  .compare-v2__card {
    border: 1px solid #e6e8f4;
    border-radius: 20px;
    box-shadow: none;
  }

  .compare-v2__table,
  .compare-v2__table thead,
  .compare-v2__table tbody,
  .compare-v2__table tr {
    display: block;
    width: 100%;
  }

  /* Header becomes a gradient row with two equal columns */
  .compare-v2__table thead tr {
    display: flex;
    background-image: linear-gradient(117.25deg, #4e5af4 0%, #2c36b8 100%);
  }

  .compare-v2__table thead th {
    flex: 1 1 0;
    background: transparent;
    padding: 16px 8px;
    font-size: 14px;
    line-height: normal;
    border-right: 1px solid rgba(230, 232, 244, 0.4);
  }

  .compare-v2__table thead th:last-child {
    border-right: 0;
  }

  /* Feature column header is hidden on mobile */
  .compare-v2__table thead th.compare-v2__feature {
    display: none;
  }

  /* Each row: feature label spans full width, icons sit side by side below */
  .compare-v2__table tbody tr {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #e6e8f4;
    background: transparent;
  }

  .compare-v2__table tbody tr:last-child {
    border-bottom: 0;
  }

  .compare-v2__table tbody td {
    border: 0;
    padding: 12px 8px 16px;
  }

  /* Full-width feature label band */
  .compare-v2__table tbody td.compare-v2__feature {
    flex: 0 0 100%;
    text-align: center !important;
    padding: 18px 12px !important;
    background: #fafafe;
    color: #0a0e2e;
    font-size: 14px;
    line-height: 16px;
  }

  /* Two icon cells share the row equally */
  .compare-v2__table tbody td:not(.compare-v2__feature) {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Divider between the two icon cells */
  .compare-v2__table tbody td:nth-child(2) {
    border-right: 1px solid #e6e8f4;
  }
}


/* =====================================================================
   BRAND REFRESH v2 — For schools banner (Figma 176-27967 / mobile 176-35673)
   ===================================================================== */
.schools-v2 {
  font-family: "Archivo", "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.schools-v2__panel {
  padding: 64px;
  border-radius: 48px;
  border: 2px solid #FFF;
  box-shadow: 0 12px 12px 0 rgba(77, 89, 254, 0.05);
  z-index: 99;
  background: url("/assets/images/home/school-bg.png");
  background-size: 100%;
  background-repeat: no-repeat;

  @media (max-width:768px) {
    background: url("/assets/images/home/school-bg-mob.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
}

.schools-v2__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.32px;
  color: #4e5af4;
}

.schools-v2__star {
  display: block;
  flex-shrink: 0;
}

.schools-v2__title {
  margin: 0;
  font-weight: 600;
  font-size: 48px;
  line-height: 56px;
}

.schools-v2__desc {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
}

.schools-v2__btn {
  padding: 24px 40px;
  border-radius: 80px;
  background: #4e5af4;
  border: 2px solid #4e5af4;
  color: #ffffff;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  box-shadow: 0 3px 6px rgba(177, 177, 177, 0.45);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.schools-v2__btn svg {
  display: block;
}

.schools-v2__btn:hover,
.schools-v2__btn:focus-visible {
  background: #3a45d9;
  border-color: #3a45d9;
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .schools-v2 {
    padding: 32px 20px;
  }

  .schools-v2__panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 24px;
    border-radius: 24px;
  }

  .schools-v2__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .schools-v2__desc {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
  }

  .schools-v2__btn {
    width: 100%;
    padding: 16px 40px;
    font-size: 18px;
  }
}


/* =====================================================================
   BRAND REFRESH v2 — Testimonials (Figma 723-98488)
   ===================================================================== */
.testi-v2 {
  font-family: "Archivo", "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
}

.testi-v2::after {
  content: "";
  width: 738.03px;
  height: 271.062px;
  transform: rotate(14.485deg);
  position: absolute;
  left: -473px;
  top: -50px;
  border-radius: 50%;
  opacity: 0.2;
  background: var(--r180-periwinkle, #4E5AF4);
  filter: blur(182px);
}

.testi-v2::before {
  content: '';
  width: 307.914px;
  height: 824.638px;
  transform: rotate(14.485deg);
  position: absolute;
  right: -136.387px;
  bottom: 0;
  border-radius: 50%;
  background: var(--r180-green, #7EDE9D);
  filter: blur(350px);
  z-index: 5;
}

.testi-v2__card {
  background: #ffffff;
  border: 1px solid #e6e8f4;
  border-radius: 48px;
  box-shadow: 0 0 20px 2px rgba(78, 90, 244, 0.05);
  padding: 56px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  position: relative;
  z-index: 99;
}

/* --------------------------------- Header ---------------------------- */
.testi-v2__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testi-v2__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.32px;
  color: #4e5af4;
}

.testi-v2__star {
  display: block;
  flex-shrink: 0;
}

/* ---------------------------------- Body ----------------------------- */
.testi-v2__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* ------------------------------ Avatar arc --------------------------- */
.testi-v2__people {
  position: relative;
  flex-shrink: 0;
  width: 544px;
  height: 430px;
  overflow: hidden;
}

.testi-v2__arc {
  position: absolute;
  top: 15px;
  left: 0;
  width: 153px;
  height: auto;
  pointer-events: none;
}

/* Mobile-only elements — hidden on desktop. */
.testi-v2__arc--mobile,
.testi-v2__nav {
  display: none;
}

.testi-v2__person {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  transform-origin: left center;
  transition: top 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    left 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease;
  will-change: top, left;
}

/* Duplicated cards only ride the continuous loop; the static picker uses the
   three originals so screen readers and mobile stay simple. */
.testi-v2__person--clone {
  display: none;
}

.testi-v2__people--orbit .testi-v2__person--clone {
  display: flex;
}

/* In orbit mode JS positions every frame, so drop the position transition and
   let it move only opacity/transform smoothly on its own. */
.testi-v2__people--orbit .testi-v2__person {
  transition: opacity 0.2s ease, transform 0.2s ease;
  will-change: left, top, transform, opacity;
}

/* Rotating slots along the arc — the active testimonial always owns center. */
.testi-v2__person--top {
  top: 0;
  left: 41.5px;
}

.testi-v2__person--center {
  top: 176px;
  left: 113px;
  z-index: 2;
}

.testi-v2__person--bottom {
  top: 360.66px;
  left: 41.5px;
}

/* The portrait crossing the loop boundary travels around the back of the arc. */
.testi-v2__person--wrap-forward {
  animation: testi-v2-wrap-forward 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-v2__person--wrap-backward {
  animation: testi-v2-wrap-backward 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes testi-v2-wrap-forward {
  0% {
    top: 0;
    left: 41.5px;
    opacity: 0.85;
  }

  50% {
    top: 180px;
    left: -76px;
    opacity: 0.35;
  }

  100% {
    top: 360.66px;
    left: 41.5px;
    opacity: 0.85;
  }
}

@keyframes testi-v2-wrap-backward {
  0% {
    top: 360.66px;
    left: 41.5px;
    opacity: 0.85;
  }

  50% {
    top: 180px;
    left: -76px;
    opacity: 0.35;
  }

  100% {
    top: 0;
    left: 41.5px;
    opacity: 0.85;
  }
}

.testi-v2__avatar {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  overflow: hidden;
  border: 1.667px solid #eff0fe;
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}

.testi-v2__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-v2__person-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testi-v2__person-name {
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
  color: #000000;
  transition: font-size 0.25s ease;
}

.testi-v2__person-role {
  font-weight: 300;
  font-size: 10px;
  line-height: 1.4;
  color: #52566f;
  transition: font-size 0.25s ease;
}

/* Active person — enlarged avatar + larger text. */
.testi-v2__person--active .testi-v2__avatar {
  width: 80px;
  height: 80px;
}

.testi-v2__person--active .testi-v2__person-name {
  font-size: 16px;
}

.testi-v2__person--active .testi-v2__person-role {
  font-size: 14px;
}

.testi-v2__person:not(.testi-v2__person--active) {
  opacity: 0.85;
}

.testi-v2__person:not(.testi-v2__person--active):hover {
  opacity: 1;
}

.testi-v2__person:focus-visible {
  outline: 2px solid #4e5af4;
  outline-offset: 4px;
  border-radius: 8px;
}

/* --------------------------------- Quote ----------------------------- */
.testi-v2__quotes {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testi-v2__quote-icon {
  display: block;
  flex-shrink: 0;
}

.testi-v2__quote {
  margin: 0;
}

.testi-v2__quote[hidden] {
  display: none;
}

.testi-v2__quote p {
  margin: 0 0 8px;
  font-weight: 300;
  font-size: 20px;
  line-height: 32px;
  color: #0a0e2e;
}

.testi-v2__quote p:last-child {
  margin-bottom: 0;
}

.testi-v2__header.mobile {
  display: none;
}

@media (max-width: 991px) {
  .testi-v2::before {
    width: 65.146px;
    height: 211.911px;
    transform: rotate(14.485deg);
    filter: blur(146px);
    top: 0;
    right: 0;
  }

  .testi-v2 {
    padding: 0;
    display: block;
  }

  .testi-v2__header.desktop {
    display: none;
  }

  .testi-v2__header.mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
    gap: 24px;
  }

  .testi-v2 .container {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  .testi-v2__card {
    padding: 24px;
    border-radius: 20px;
    gap: 32px;
  }

  .testi-v2__title {
    font-size: 28px;
    line-height: 1.2;
  }

  /* Mobile stacks the quote on top and the spinning avatar wheel below. */
  .testi-v2__body {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .testi-v2__quotes {
    order: 1;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .testi-v2__people {
    order: 2;
    width: 100%;
    height: 160px;
    overflow: hidden;
    display: block;
  }

  /* Show the shallow dashed bowl, hide the tall desktop arc. */
  .testi-v2__arc {
    display: none;
  }

  .testi-v2__arc--mobile {
    display: block;
    position: absolute;
    top: 44px;
    left: 50%;
    transform: translateX(-50%);
    width: min(287px, 92%);
    height: auto;
    pointer-events: none;
    width: 100%;
  }

  /* One avatar rides the top of the wheel; JS positions it absolutely. */
  .testi-v2__person {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transform-origin: center top;
    width: 100%;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .testi-v2__avatar,
  .testi-v2__person--active .testi-v2__avatar {
    width: 80px;
    height: 80px;
  }

  .testi-v2__person-text {
    align-items: center;
    /* max-width: 260px; */
  }

  .testi-v2__person-name,
  .testi-v2__person--active .testi-v2__person-name {
    font-size: 16px;
  }

  .testi-v2__person-role,
  .testi-v2__person--active .testi-v2__person-role {
    font-size: 14px;
    line-height: 18px;
  }

  .testi-v2__quote p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }

  /* Prev / next navigation buttons. */
  .testi-v2__nav {
    display: flex;
    justify-content: center;
    gap: 16px;
  }

  .testi-v2__nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #4e5af4;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .testi-v2__nav-btn:hover {
    background: #3d48d8;
  }

  .testi-v2__nav-btn:focus-visible {
    outline: 2px solid #4e5af4;
    outline-offset: 3px;
  }

  /* Reduced-motion fallback: no spinning wheel — plain centred avatar row. */
  .testi-v2__people:not(.testi-v2__people--orbit) {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .testi-v2__people:not(.testi-v2__people--orbit) .testi-v2__person {
    position: static;
    transform: none;
    opacity: 1;
  }

  .testi-v2__people:not(.testi-v2__people--orbit) .testi-v2__person--clone,
  .testi-v2__people:not(.testi-v2__people--orbit) .testi-v2__arc--mobile {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testi-v2__person {
    transition: opacity 0.25s ease;
  }

  .testi-v2__person--wrap-forward,
  .testi-v2__person--wrap-backward {
    animation: none;
  }
}


/* =====================================================================
   What students get — two column report showcase (Figma 723-102212)
   ===================================================================== */
.report-v2 {
  position: relative;
  overflow-x: clip;
  background: #ffffff;
  font-family: "Archivo", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.report-v2 * {
  box-sizing: border-box;
}

.report-v2__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.report-v2__glow--1 {
  top: -200px;
  left: -180px;
  width: 420px;
  height: 420px;
  background: rgba(126, 222, 157, 0.35);
}

.report-v2__glow--2 {
  bottom: -260px;
  right: -160px;
  width: 620px;
  height: 420px;
  background: rgba(228, 229, 253, 0.6);
}

.report-v2__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 72px;
  z-index: 99;
}

/* ------------------------------- Left ------------------------------- */
#our-model .report-v2__head .r180-eyebrow {
  @media (max-width:768px) {
    justify-content: center;
  }
}

.report-v2__head {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.report-v2__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.report-v2__desc {
  margin: 0;
  font: 300 18px/24px "Archivo", sans-serif;
  color: var(--r180-muted);
}

.report-v2__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 288px 1fr;
  gap: 24px;
}

.report-v2__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.report-v2__check {
  flex-shrink: 0;
  display: block;
  margin-top: 3.5px;
  width: 21px;
  height: 21px;
}

.report-v2__item-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.report-v2__item-title {
  margin: 0;
  font: 500 18px/28px "Archivo", sans-serif;
  letter-spacing: -0.36px;
  color: var(--r180-periwinkle);
}

.report-v2__item-desc {
  margin: 0;
  font: 300 16px/24px "Archivo", sans-serif;
  letter-spacing: -0.32px;
  color: var(--r180-muted);
}

/* ------------------------------ Right card -------------------------- */
.report-v2__card {
  position: relative;
  flex-shrink: 0;
  width: 504px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid var(--r180-periwinkle);
  border-radius: 10px;
}

.report-v2__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.report-v2__card-person {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.report-v2__card-name {
  margin: 0;
  font: 500 16px/24px "Archivo", sans-serif;
  letter-spacing: -0.6px;
  color: var(--r180-ink);
}

.report-v2__card-role {
  margin: 0;
  font: 400 14px/16px "Archivo", sans-serif;
  color: var(--r180-muted);
}

.report-v2__card-tag {
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: 48px;
  background: var(--r180-periwinkle);
  font: 400 14px/16px "Archivo", sans-serif;
  color: #ffffff;
}

.report-v2__card-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 15px;
  border-radius: 3px;
  background: #fafafe;
}

.report-v2__card-box--bordered {
  gap: 21px;
  border: 1px solid #e6e8f4;
  border-radius: 16px;
}

.report-v2__card-label {
  margin: 0;
  font: 400 14px/16px "Archivo", sans-serif;
  color: var(--r180-muted);
}

.report-v2__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.report-v2__chip {
  padding: 9px 12px;
  border-radius: 48px;
  background: #eff0fe;
  font: 400 14px/16px "Archivo", sans-serif;
  color: var(--r180-periwinkle);
}

.report-v2__card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.report-v2__card-cluster {
  margin: 0;
  font: 600 17px/16px "Archivo", sans-serif;
  color: var(--r180-ink);
}

.report-v2__card-score {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--r180-green);
  font: 600 17px/16px "Archivo", sans-serif;
  color: var(--r180-ink);
}

.report-v2__divider {
  width: 100%;
  height: 0;
  margin: 0;
  border: none;
  border-top: 1px solid #e6e8f4;
}

.report-v2__card-note {
  margin: 0;
  font: 400 14px/16px "Archivo", sans-serif;
  color: var(--r180-ink);
}

.report-v2__card-note span {
  color: var(--r180-periwinkle);
}

@media (max-width: 991px) {
  /* .report-v2 {
    padding: 32px 20px;
  } */

  .report-v2__inner {
    flex-direction: column;
    /* gap: 40px; */
  }

  .report-v2__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .report-v2__list {
    grid-template-columns: 1fr;
  }

  .report-v2__card {
    width: 100%;
  }
}

/* --- Sample report card — mobile (Figma 1720-34748) --- */
@media (max-width: 768px) {

  /* only top padding; the head is inset while the boxes go full-bleed */
  .report-v2__card {
    padding: 16px 0 0;
    gap: 16px;
    border-radius: 10px;
    overflow: hidden;
  }

  .report-v2__card-head {
    padding: 0 16px;
  }

  .report-v2__card-name {
    font-size: 15px;
    line-height: 20px;
  }

  .report-v2__card-role {
    font-size: 13px;
  }

  .report-v2__card-tag {
    padding: 8px 10px;
    font-size: 12px;
  }

  /* full-width bands, square corners (clipped by the card radius) */
  .report-v2__card-box {
    border-radius: 0;
  }

  .report-v2__card-box:not(.report-v2__card-box--bordered) {
    padding: 12px 20px;
    gap: 14px;
  }

  .report-v2__card-box--bordered {
    padding: 15px;
    gap: 16px;
  }

  .report-v2__chip {
    padding: 4px 10px;
    font-size: 12px;
  }

  .report-v2__card-cluster {
    font-size: 15px;
  }

  .report-v2__card-score {
    padding: 6px 10px;
    font-size: 14px;
  }
}


/* =====================================================================
   BRAND REFRESH v2 — Typical engagement timeline (Figma 176-28022 / mobile 176-35728)
   ===================================================================== */
.solution.team .engage-v2 {
  position: relative;
}

.solution.team .engage-v2::before {
  position: absolute;
  content: '';
  width: 156.818px;
  height: 327.176px;
  transform: rotate(14.485deg);
  border-radius: 50%;
  opacity: 0.2;
  background: var(--r180-periwinkle, #4E5AF4);
  filter: blur(82px);
  left: 0;
  top: 0%;
  transform: translate(-50%, -50%);
}

.engage-v2 {
  background: linear-gradient(180deg, #FFF 0%, #FAFAFE 100%);
  font-family: "Archivo", "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding-left: 20px;
  padding-right: 20px;
}

#education .engage-v2 {
  background: linear-gradient(180deg, #FAFAFE 0%, #FFF 100%);
}

.engage-v2__inner {
  width: 100%;
  max-width: 1104px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* --------------------------------- Header ---------------------------- */
.engage-v2__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.engage-v2__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.32px;
  color: #3a45d9;
}

.engage-v2__star {
  display: block;
  flex-shrink: 0;
}

.engage-v2__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  text-align: center;
}

.engage-v2__accent {
  color: #4e5af4;
}

.engage-v2__subtitle {
  margin: 0;
  max-width: 1028px;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  color: #52566f;

  @media (max-width:768px) {
    font-size: 16px;
  }
}

/* ---------------------------------- Rows ----------------------------- */
.engage-v2__rows {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.engage-v2__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 0;
  border-top: 1px solid #e6e8f4;
}


@media (min-width:768px) {
  .engage-v2__row {
    height: 146px;
  }
}

.engage-v2__row:last-child {
  border-bottom: 1px solid #e6e8f4;
}

.engage-v2__lead {
  display: flex;
  align-items: center;
  gap: 96px;
  flex: 1 1 0;
  max-width: 520px;
  min-width: 0;
}

.engage-v2__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
  color: #2b2f52;
}

.engage-v2__icon svg {
  display: block;
}

.engage-v2__name {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
}

.engage-v2__label {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #4e5af4;
}

.engage-v2__label--green {
  color: #7ede9d;
}

.engage-v2__step {
  margin: 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #0a0e2e;
}

.engage-v2__info {
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  text-align: right;
  color: #52566f;
}

@media (max-width: 991px) {
  .engage-v2 {
    padding: 32px 20px 0;
    gap: 24px;
  }

  .engage-v2__inner {
    gap: 24px;
  }

  .engage-v2__header {
    align-items: flex-start;
  }

  .engage-v2__eyebrow {
    justify-content: flex-start;
  }

  .engage-v2__heading {
    align-items: flex-start;
    text-align: left;
  }

  .engage-v2__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .engage-v2__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
  }

  .engage-v2__lead {
    gap: 0;
    max-width: none;
    width: 100%;
  }

  /* Mobile design drops the icon circle */
  .engage-v2__icon {
    display: none;
  }

  .engage-v2__step {
    font-size: 18px;
    line-height: 24px;
  }

  .engage-v2__info {
    text-align: left;
    font-size: 16px;
    font-weight: 300;
  }
}


/* =====================================================================
   BRAND REFRESH v2 — FAQ (Figma 176-28111)
   ===================================================================== */
.faq-v2 {
  background: linear-gradient(180deg, #ffffff 0%, #fafafe 50%, #ffffff 100%);
  font-family: "Archivo", "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.faq-v2__inner {
  width: 912px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* --------------------------------- Header ---------------------------- */
.faq-v2__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.faq-v2__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.32px;
  color: #3a45d9;
}

.faq-v2__star {
  display: block;
  flex-shrink: 0;
}

.faq-v2__title {
  text-align: center;
}

.faq-v2__accent {
  color: #4e5af4;
}

/* ---------------------------------- List ----------------------------- */
.faq-v2__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: none;
  margin: 0;
}

.faq-v2 .faq-item {
  width: 100%;
  margin: 0;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e6e8f4;
  border-radius: 10px;
  transition: border-color 0.25s ease, border-radius 0.25s ease;
}

.faq-v2 .faq-item.active {
  border-color: #4e5af4;
  border-radius: 16px;
}

.faq-v2 .faq-question {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.faq-v2 .faq-question h3 {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #0a0e2e;
}

.faq-v2 .faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #eff0fe;
  color: #4e5af4;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-v2 .faq-item.active .faq-icon {
  background: #4e5af4;
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-v2 .faq-icon svg {
  display: block;
}

.faq-v2 .faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: none;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.faq-v2 .faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  margin-top: 16px;
  padding-bottom: 0;
}

.faq-v2 .faq-answer p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #52566f;
}

@media (max-width: 991px) {
  .faq-v2 {
    padding: 32px 0px;
  }

  .faq-v2__inner {
    gap: 24px;
  }

  .faq-v2__title {
    font-size: 28px;
    line-height: 30px;
  }

  .faq-v2 .faq-item {
    padding: 20px;
  }

  .faq-v2 .faq-question {
    gap: 16px;
  }

  .faq-v2 .faq-question h3 {
    font-size: 16px;
  }

  .faq-v2 .faq-answer p {
    font-size: 16px;
  }
}


/* =====================================================================
   BRAND REFRESH v2 — CTA banner (Figma 176-28123 / mobile 176-35774)
   ===================================================================== */
.cta-v2 {
  background: linear-gradient(180deg, #FAFAFE 92.98%, #FFF 100%);
  font-family: "Archivo", "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
}

#education .cta-v2::before {
  content: '';
  position: absolute;
  width: 995.796px;
  height: 271.062px;
  transform: rotate(14.485deg);
  top: -35%;
  right: 75%;
  border-radius: 50%;
  opacity: 0.2;
  background: var(--r180-periwinkle, #4E5AF4);
  filter: blur(125px);
  z-index: 1;
}

.cta-v2__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 64px;
  border-radius: 48px;
  overflow: hidden;
  border-radius: 48px;
  background: linear-gradient(95deg, #4E5AF4 0%, #2C36B8 100%);
  z-index: 99;
}

.cta-v2__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.cta-v2__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.32px;
  color: #ffffff;
}

.cta-v2__star {
  display: block;
  flex-shrink: 0;
}

.cta-v2__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  text-align: center;
  color: #ffffff;
}

.cta-v2__title {
  margin: 0;
  font-weight: 600;
  font-size: 48px;
  line-height: 56px;
}

.cta-v2__desc {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
}

.cta-v2__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 40px;
  border-radius: 80px;
  background: #7ede9d;
  color: #3a45d9;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta-v2__btn svg {
  display: block;
}

.cta-v2__btn:hover,
.cta-v2__btn:focus-visible {
  background: #6fd690;
  color: #3a45d9;
  transform: translateY(-1px);
}

@media (max-width: 991px) {

  .cta-v2__panel {
    gap: 24px;
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(95deg, #4e5af4 0%, #2c36b8 100%);
  }

  .cta-v2__grid {
    background-size: 40px 40px;
  }

  .cta-v2__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .cta-v2__desc {
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
  }

  .cta-v2__btn {
    width: 100%;
    padding: 16px 40px;
    font-size: 18px;
  }
}


/* =====================================================================
   BRAND REFRESH v2 — Footer (Figma 844-51642 / responsive mobile)
   ===================================================================== */
.footer-v2 {
  background: linear-gradient(180deg, #ffffff 0%, #c4fdd6 65.53%, #7ede9d 100%);
  font-family: "Archivo", "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #0a0e2e;
  position: relative;
  z-index: 99;
}

.footer-v2 * {
  box-sizing: border-box;
}

.footer-v2__inner {
  display: flex;
  padding-top: 80px;
  padding-bottom: 40px;
  flex-direction: column;
  gap: 48px;
}

.footer-v2__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

/* ------------------------------- Address ----------------------------- */
.footer-v2__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1 1 0;
  max-width: 232px;
  min-width: 0;
}

.footer-v2__address {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-v2__address li {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #0a0e2e;
}

/* --------------------------------- Links ----------------------------- */
.footer-v2__links {
  display: flex;
  align-items: flex-start;
  gap: 62px;
  flex: 1 1 0;
  max-width: 672px;
  min-width: 0;
}

.footer-v2__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 0;
  min-width: 0;
}

.footer-v2__heading {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1.632px;
  text-transform: uppercase;
  color: #0a0e2e;
}

.footer-v2__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-v2__list a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #0a0e2e;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-v2__list a:hover,
.footer-v2__list a:focus-visible {
  opacity: 0.65;
  color: #0a0e2e;
}

/* -------------------------------- Divider ---------------------------- */
.footer-v2__divider {
  width: 100%;
  height: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid #E6E8F420;
}

/* --------------------------- Copyright / social --------------------- */
.footer-v2__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-v2__copyright {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #0a0e2e;
}

.footer-v2__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid #0a0e2e;
  border-radius: 50%;
  color: #0a0e2e;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-v2__social:hover,
.footer-v2__social:focus-visible {
  background: #0a0e2e;
  color: #ffffff;
}

.footer-v2__social svg {
  display: block;
  width: 16px;
  height: 16px;
}

/* ------------------------------- Wordmark ---------------------------- */
.footer-v2__wordmark {
  line-height: 0;
}

.footer-v2__wordmark img {
  display: block;
  width: 644px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {

  .footer-v2__inner {
    gap: 24px;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .footer-v2__top {
    flex-direction: column-reverse;
    gap: 32px;
  }

  .footer-v2__brand {
    gap: 16px;
    max-width: none;
    width: 100%;
    order: 2;
  }

  .footer-v2__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 32px;
    max-width: none;
    width: 100%;
    order: 1;
  }

  /* Solutions (col 1, row 1), Company (col 2, row 1), Legal (col 1, row 2) */
  .footer-v2__col:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-v2__col:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-v2__col:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-v2__bottom {
    flex-direction: row;
    align-items: center;
  }
}

/* ===== Story section (Figma 723-99536) ===== */

.story__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 128px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.story__card {
  flex-shrink: 0;
  border: 2px solid var(--r180-periwinkle);
  border-radius: 18px;
}

.story__card-inner {
  position: relative;
  width: 406px;
  height: 518px;
  border: 2px solid var(--r180-white);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
}

.story__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;

  @media (max-width:768px) {
    object-position: 20% 16%;
  }
}

.story__card-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(78, 90, 244, 0) 55.5%, rgba(78, 90, 244, 0.8) 93.6%);
}

.story__card-info {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--r180-white);
}

.story__card-name {
  margin: 0;
  font: 600 20px/24px "Archivo", sans-serif;
  letter-spacing: -0.4px;
}

.story__card-role {
  margin: 0;
  font: 400 16px/16px "Archivo", sans-serif;
}

.story__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.story__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font: 500 16px/1 "Archivo", sans-serif;
  letter-spacing: -0.32px;
  color: var(--r180-periwinkle);
}

.story__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story__body p {
  margin: 0;
  font: 300 16px/24px "Archivo", sans-serif;
  color: var(--r180-muted);
}

@media (max-width: 768px) {
  .story {
    padding: 32px 0;
  }

  .story__inner {
    flex-direction: column;
    align-items: stretch;
    padding-inline: 24px;
    gap: 32px;
  }

  .story__card {
    align-self: center;
    max-width: 406px;
    width: 100%;
  }

  .story__card-inner {
    width: 100%;
    height: 315px;
    aspect-ratio: 335/315;
  }

  .story__title {
    font-size: 28px;
    line-height: 30px;
  }

  .story__text {
    text-align: center;
  }

  .story__text .r180-eyebrow {
    margin-bottom: 24px !important;
  }

  .story__body p {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* ===== Meet the team section (Figma 723-99615) ===== */
.team-v2 {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.team-v2__glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.team-v2__glow--right {
  top: -120px;
  right: -160px;
  width: 480px;
  height: 600px;
  background: rgba(126, 222, 157, 0.28);
}

.team-v2__glow--left {
  top: 200px;
  left: -260px;
  width: 640px;
  height: 360px;
  background: rgba(228, 229, 253, 0.6);
}

.team-v2__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.team-v2__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-v2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font: 500 16px/1 "Archivo", sans-serif;
  letter-spacing: -0.32px;
  color: var(--r180-periwinkle);
}

.team-v2__title {
  max-width: 760px;
}

.team-v2__subtitle {
  margin: 0;
  max-width: 640px;
  font: 300 18px/24px "Archivo", sans-serif;
  color: var(--r180-muted);
}

.team-v2__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.team-v2__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: var(--r180-white);
  border-radius: 24px;
  border: 1.5px solid #F3F8FF;
}

.team-v2__card-img {
  height: 272px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(131.42deg, #f9f9f9 0%, #cbd4dd 100%);
  border-radius: 1rem;
  border: 1px solid #EDF2F9;
  box-shadow: 0 4px 12px 0 rgba(68, 78, 106, 0.25);
}

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

.team-v2__card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-v2__card-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-v2__card-name {
  margin: 0;
  font: 600 20px/24px "Archivo", sans-serif;
  letter-spacing: -0.4px;
  color: #161937;
}

.team-v2__card-role {
  margin: 0;
  font: 400 14px/16px "Archivo", sans-serif;
  color: var(--r180-periwinkle);
}

.team-v2__card-cred {
  margin: 0;
  font: 300 italic 14px/20px "Archivo", sans-serif;
  letter-spacing: 0.56px;
  color: var(--r180-muted);
}

@media (max-width: 1200px) {
  .team-v2__inner {
    padding-inline: 64px;
  }

  .team-v2__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .team-v2 {
    padding: 32px 0;
  }

  .team-v2 .team-v2__glow {
    display: none;
  }

  .team-v2__inner {
    padding-inline: 24px;
    gap: 24px;
  }

  .team-v2__title {
    font-size: 32px;
    line-height: 40px;
  }

  .team-v2__subtitle {
    font-size: 16px;
  }

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

@media (max-width: 560px) {
  .team-v2__title {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 16px !important;
  }

  .team-v2__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

  .team-v2__card {
    padding: 1rem;
    gap: 1rem;
  }

  .team-v2__card-body {
    gap: 12px;
  }

  .team-v2__card-head {
    gap: 4px;
  }

  .team-v2__card-name {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
  }

  .team-v2__card-img {
    height: 248px;
  }
}

/* ---------------------------------------------------------------------
   Contact page 
   --------------------------------------------------------------------- */
.contact {
  background: var(--r180-surface, #FAFAFE);
}

/* --- Centered head --- */
.contact__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font: 500 16px/1 "Archivo", sans-serif;
  letter-spacing: -0.32px;
  color: var(--r180-periwinkle);
  margin-bottom: 24px;
}

.contact__eyebrow svg {
  width: 14px;
  height: 16px;
}

.contact__title {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  margin-top: 0;
  margin-bottom: 18px;
}

.contact__title .accent {
  color: var(--r180-periwinkle);
}

.contact__desc {
  margin: 0;
  max-width: 560px;
  font: 300 18px/1.55 "Archivo", sans-serif;
  letter-spacing: -0.36px;
  color: var(--r180-muted);
  margin-bottom: 32px;
}

/* --- Two-column body --- */
.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}

/* --- Form card --- */
.contact__form-card {
  background: #fff;
  border: 1px solid var(--r180-periwinkle);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 24px 60px rgba(10, 14, 46, 0.05);

  @media (max-width:678px) {
    border-radius: 20px;
  }
}

.contact-form__title {
  margin: 0 0 32px;
  font: 500 24px/1 "Archivo", sans-serif;
  letter-spacing: -0.6px;
  color: var(--r180-ink);

  @media (max-width:768px) {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.6px;
    margin-bottom: 24px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.field__label {
  font: 400 16px/1.5 "Archivo", sans-serif;
  color: var(--r180-muted);

  @media (max-width:768px) {
    font-size: 14px;
    line-height: 16px;
  }
}

.field__label .req {
  color: #E05555;
}

.field input,
.field textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #E6E8F4;
  border-radius: 12px;
  background: #fff;
  font: 400 16px/1.5 "Archivo", sans-serif;
  color: var(--r180-ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 136px;
  resize: vertical;
  field-sizing: content;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a6a9bd;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--r180-periwinkle);
  box-shadow: 0 0 0 4px rgba(78, 90, 244, 0.12);
}

/* --- Radio chip groups (Company Size / What are you interested in) --- */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  position: relative;
  display: inline-flex;
}

.chip input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.chip__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: 1px solid #E6E8F4;
  border-radius: 12px;
  background: #fff;
  font: 400 16px/1.5 "Archivo", sans-serif;
  color: var(--r180-ink);
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.chip__label:hover {
  border-color: #C2C6F8;
}

.chip input:checked+.chip__label {
  border-color: var(--r180-periwinkle);
  background: var(--r180-periwinkle);
  color: var(--r180-white);
}

.chip input:focus-visible+.chip__label {
  box-shadow: 0 0 0 4px rgba(78, 90, 244, 0.18);
}

/* --- Submit --- */
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 4px;
  padding: 20px 40px;
  border: none;
  border-radius: 80px;
  background: var(--r180-periwinkle);
  color: #fff;
  font: 600 20px/24px "Archivo", sans-serif;
  letter-spacing: -0.17px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-form__submit svg {
  width: 20px;
  height: 20px;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background: var(--r180-periwinkle);
}

/* --- Contact info card (right) --- */
.contact-info {
  background: #fff;
  border: 1px solid #E6E8F4;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(10, 14, 46, 0.05);
  position: sticky;
  top: 100px;

  @media (max-width:768px) {
    padding: 24px;
    border-radius: 20px;
  }
}

.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 24px 0;

  &:first-child {
    padding-top: 0%;
  }

  &:last-child {
    padding-bottom: 0;
  }
}

.contact-info__item+.contact-info__item {
  border-top: 1px solid #EDEEF6;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--r180-tint);
  color: var(--r180-periwinkle);
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
}

.contact-info__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info__label {
  font: 300 14px/16px "Archivo", sans-serif;
  color: var(--r180-muted);
}

.contact-info__value,
.contact-info__value a {
  font: 500 16px/1.5 "Archivo", sans-serif;
  color: var(--r180-ink);
  text-decoration: none;
}

.contact-info__value a:hover {
  color: var(--r180-periwinkle);
}

@media (max-width: 992px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .contact {
    padding-top: 32px;
    padding-bottom: 32px;

    section {
      padding-top: 70px !important;
      padding-bottom: 0 !important;
    }
  }

  .contact__form-card {
    padding: 24px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact__title {
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 16px;
    letter-spacing: -1.2px;
  }

  .contact__desc {
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.5;
  }

  .chip__label,
  .field input,
  .field textarea {
    padding: 1rem;
  }

  .contact-form__submit {
    width: 100%;
  }
}

/* ---------------------------------------------------------------------
   Legal documents — privacy policy, terms & conditions, cookie policy
   (Figma 723-125873 / 723-125978 / 723-126066)
   --------------------------------------------------------------------- */
.legal {
  background: var(--r180-surface);
  /* padding-block: 56px; */
}

.legal__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  word-break: break-word;
  padding-top: 56px;
  padding-bottom: 56px;

  @media (max-width:768px) {
    padding-top: 24px;
    padding-bottom: 24px;
    gap: 32px;
  }
}

/* Intro / page header */
.legal__intro {
  display: flex;
  flex-direction: column;
  /* gap: 24px; */
}

.legal__title {
  margin: 0;
  font-weight: 600;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -1.92px;
  color: var(--r180-ink);
  margin-bottom: 18px;
}

.legal__lead {
  margin: 0;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  color: var(--r180-ink);
}

.legal__summary {
  margin: 0;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  color: var(--r180-muted);
  margin-bottom: 24px;

  @media (max-width:768px) {
    font-size: 1rem;
  }
}

.legal__updated {
  margin: 0;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  color: var(--r180-periwinkle);

  @media (max-width:768px) {
    font-size: 1rem;
    font-weight: 400;
  }
}

/* Content blocks */
.legal__block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.legal__block>h2 {
  margin: 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.6px;
  color: var(--r180-ink);
  text-transform: capitalize;
}

.legal__block p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--r180-muted);
}

.legal__block ul,
.legal__block ol {
  margin: 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--r180-muted);
  font-size: 16px;
  line-height: 24px;
}

/* Tighten spacing to 12px between consecutive paragraphs, or when a list
   directly follows a paragraph (flex gap is 20px; -8px brings it to 12px). */
.legal__block p+p,
.legal__block p+ul,
.legal__block p+ol {
  margin-top: -8px;
}

.legal__block ul {
  list-style: disc;
}

.legal__block ol {
  list-style: decimal;
}

/* Bold the numbering to match the bold item titles (e.g. cookie lists). */
.legal__block ol>li::marker {
  font-weight: 600;
  color: var(--r180-ink);
}

/* Indented sub-group (e.g. cookie categories, dispute resolution) */
.legal__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.legal__group-title {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.6px;
  color: var(--r180-ink);
  text-transform: capitalize;
}

.legal__group-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 30px;
}

/* Inline emphasis + links */
.legal strong {
  font-weight: 600;
  color: var(--r180-ink);
}

.legal a {
  font-weight: 600;
  color: var(--r180-periwinkle);
  text-decoration: underline;
  word-break: break-word;
}

@media (max-width: 768px) {

  .legal__title {
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -1.2px;
  }

  .legal__lead {
    font-size: 22px;
    letter-spacing: -0.6px;
  }

  .legal__block>h2 {
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.6px;
    font-weight: 500;
  }

  .legal__group-title {
    font-size: 18px;
  }
}

/* ==========================================================================
   Insights (Figma 723-102585)
   ========================================================================== */
.resource-bg {
  background: url('/assets/images/resources-bg.png');
  background-size: 100%;
  background-position: 0% 0%;
  background-repeat: no-repeat;
}

.blog-detail-wrapper {
  padding-top: 78px;
}

.insights__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.blogs_list_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding-top: 64px;
  padding-bottom: 64px;

  @media (max-width:768px) {
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}



.insights__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.insights__heading {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  width: 100%;
}

.insights__title {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -1.92px;
  color: #0a0e2e;
}

.insights__subtitle {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  color: #52566f;
}

/* Filters */
.insights__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.insights__filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(78, 90, 244, 0.05);
  color: #0a0e2e;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.insights__filter:hover {
  background: rgba(78, 90, 244, 0.12);
}

.insights__filter.is-active {
  background: #4e5af4;
  color: #fff;
  font-weight: 600;
}

/* Grid */
.insights__grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.insights__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

/* Auto-flowing grid for the dynamic blog listing (all cards as direct children) */
.insights__grid--flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
  align-items: stretch;
}

/* Featured "This Week In Values" card */
.insight-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: 32px;
  border: 2px solid #fff;
  border-radius: 10px;
  overflow: hidden;
  background-color: #7dde9d;
  background-image: url("/assets/images/Insights/card-bg-green.png");
  background-size: cover;
  background-position: bottom right;
  box-shadow: 0 4px 28px 0 rgba(178, 189, 235, 0.3);
}

.insight-feature__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.insight-feature__badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px;
  border: 1.5px solid #fff;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
}

.insight-feature__badge img {
  display: block;
  width: 85px;
  height: 85px;
}

.insight-feature__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.insight-feature__title {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: #0a0e2e;
}

.insight-feature__desc {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #52566f;
}

.insight-feature__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  border: 1px solid #4e5af4;
  border-radius: 80px;
  background: #fff;
  color: #4e5af4;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  filter: drop-shadow(0 4px 4px rgba(71, 90, 111, 0.25));
  transition: background 0.2s ease, color 0.2s ease;
}

.insight-feature__btn svg {
  width: 20px;
  height: 20px;
}

.insight-feature__btn:hover {
  background: #4e5af4;
  color: #fff;
}

/* Blog / insight card */
.insight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 2px solid #e6e8f4;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  filter: drop-shadow(0 4px 14px rgba(178, 189, 235, 0.3));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insight-card:hover {
  transform: translateY(-4px);
}

.insight-card__badge {
  position: absolute;
  top: 0px;
  left: 14px;
  z-index: 2;
  padding: 4px 12px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #4e5af4;
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  transform: translateY(-50%);
}

.insight-card__media {
  display: block;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.insight-card__media img {
  width: 100%;
  height: auto;
}

.insight-card__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
}

.insight-card__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insight-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.6px;
  color: #0a0e2e;
}

.insight-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #52566f;
}

.insight-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.insight-card__date {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #52566f;
}

.insight-card__more {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #4e5af4;
  white-space: nowrap;
}

/* Pagination */
.insights__pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.insights__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid #4e5af4;
  border-radius: 8px;
  background: #fff;
  color: #4e5af4;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.insights__page:hover {
  background: rgba(78, 90, 244, 0.08);
}

.insights__page.is-active {
  background: #4e5af4;
  color: #fff;
}

.insights__page.is-active:hover {
  background: #4e5af4;
}

.insights__page.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.insights__ellipsis {
  display: inline-flex;
  align-items: center;
  padding: 8px 4px;
  color: #4e5af4;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

@media (max-width: 992px) {

  .insights__row,
  .insights__grid--flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .resource-bg {
    background: none;
    position: relative;
    overflow: hidden;
  }

  .resource-bg::after {
    content: '';
    position: absolute;
    width: 144px;
    height: 254px;
    border-radius: 50%;
    right: -28px;
    top: -100px;
    background: var(--r180-periwinkle);
    filter: blur(150px);
  }

  .resource-bg::before {
    content: '';
    position: absolute;
    width: 89px;
    height: 281px;
    border-radius: 50%;
    left: -50px;
    top: 0;
    background: var(--r180-periwinkle);
    transform: translateY(200%);
    filter: blur(132px);
  }

  .insights .py-80 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .insights__head {
    gap: 24px;
  }

  .insights__heading {
    gap: 1rem;
  }

  .insights__inner {
    gap: 24px;
  }

  .insights__title {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.96px;
  }

  .insights__subtitle,
  .stats-v2__body {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
  }

  .insights__filters {
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    margin-inline: calc(var(--r180-gutter) * -1);
    padding-inline: var(--r180-gutter);
  }

  .insights__filters::-webkit-scrollbar {
    display: none;
  }

  .insights__filter {
    padding: 8px 24px;
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {

  .insights__row,
  .insights__grid--flow {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Blog hub (Figma 2189-31406, mobile 2189-33461, hero 2189-32426)
   ========================================================================== */
.insights__heading--hub {
  text-align: left;
  gap: 16px;
}

.insights__heading--hub .insights__title {
  font-weight: 500;
  font-size: 72px;
  line-height: 80px;
  letter-spacing: normal;
}

.insights__title-accent {
  display: block;
  color: #4e5af4;
}

.insights__heading--hub .insights__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  max-width: 660px;
}

.bloghub {
  display: grid;
  grid-template-columns: 636px minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "featured wiv"
    "featured recommended"
    "recent recent";
  gap: 32px 40px;
  width: 100%;
}

.bloghub__area {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.bloghub__area--featured {
  grid-area: featured;
  gap: 32px;
}

.bloghub__area--featured .bloghub-card--featured {
  flex: 1;
}

.bloghub__area--wiv {
  grid-area: wiv;
}

.bloghub__area--recommended {
  grid-area: recommended;
}


/* Section heading with underline accent */
.bloghub__section-head {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding-bottom: 22px;
}

.bloghub__section-head::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #e6e8f4;
}

.bloghub__section-title {
  position: relative;
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: -0.48px;
  color: #0a0e2e;
}

.bloghub__section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -22px;
  width: 100%;
  height: 2px;
  background: #0a0e2e;
  z-index: 1;
}

.bloghub__section-title-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bloghub__info {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.bloghub__info img {
  display: block;
  width: 20px;
  height: 20px;
}

.bloghub__info-tip {
  position: absolute;
  top: calc(100% + 12px);
  left: -8px;
  z-index: 30;
  width: 324px;
  padding: 8px;
  gap: 8px;
  border-radius: 4px;
  border: 1px solid var(--r180-border, #E6E8F4);
  background: var(--r180-surface, #FAFAFE);
  color: var(--Neutrals-Ink, #0A0E2E);
  font-family: Archivo;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease;
  pointer-events: none;
}

.bloghub__info:hover .bloghub__info-tip,
.bloghub__info:focus .bloghub__info-tip {
  opacity: 1;
  visibility: visible;
}

.bloghub__view-all {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #4e5af4;
  text-decoration: none;
  white-space: nowrap;
}

.bloghub__view-all:hover {
  text-decoration: underline;
}

/* Cards */
.bloghub-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  min-width: 0;
  border: 1px solid #e6e8f4;
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bloghub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(178, 189, 235, 0.3);
}

.bloghub-card__media {
  display: block;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
}

.bloghub-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bloghub-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 0;
  width: 100%;
}

.bloghub-card__badge {
  padding: 6px 8px;
  border-radius: 2px;
  background: #eff0fe;
  color: #2b2f52;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  white-space: nowrap;
}

.bloghub-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #0a0e2e;
}

.bloghub-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: -8px;
  font-family: "Archivo", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #52566f;
}

.bloghub-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px 16px;
  width: 100%;
  margin-top: auto;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.12px;
  text-transform: uppercase;
  color: #2b2f52;
}
.mt--4{
  @media (min-width:768px) {
    margin-top: -4px;
  }
}
.bloghub-card__author {
  white-space: nowrap;
}

.bloghub-card__stats {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* Featured variant */
.bloghub-card--featured {
  padding: 32px;
}

.bloghub-card--featured .bloghub-card__media {
  aspect-ratio: 572 / 308;
}

.bloghub-card--featured .bloghub-card__title {
  font-size: 24px;
  line-height: 32px;
}

.bloghub-card--featured .bloghub-card__desc {
  font-size: 18px;
}

/* Compact horizontal variant */
.bloghub-card--row {
  flex-direction: row;
  gap: 20px;
  padding: 16px;
}

.bloghub-card--row .bloghub-card__media {
  width: 152px;
  height: 136px;
}

.bloghub-card--row .bloghub-card__body {
  gap: 14px;
}

.bloghub-card--row .bloghub-card__title {
  font-size: 16px;
  line-height: 22px;
}

.bloghub-card--row .bloghub-card__desc {
  -webkit-line-clamp: 1;
  font-size: 14px;
  line-height: 18px;
}

/* Grid variant */
.bloghub-card--grid .bloghub-card__media {
  height: 168px;
}

/* Recent posts */
.bloghub__recent {
  grid-area: recent;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  min-width: 0;
  margin-top: 48px;

  @media (max-width:768px) {
    gap: 24px;
  }
}

/* Toolbar: search + explore-by filters */
.bloghub__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.bloghub__search {
  width: 268px;
  max-width: 100%;
  padding: 16px 18px;
  border: 1px solid #e6e8f4;
  border-radius: 9999px;
  background: #fff;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #0a0e2e;
  outline: none;
}

.bloghub__search::placeholder {
  color: rgba(82, 86, 111, 0.5);
}

.bloghub__search:focus {
  border-color: #4e5af4;
}

.bloghub__explore {
  display: flex;
  align-items: center;
  gap: 24px;
}

.bloghub__explore-label {
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #0a0e2e;
  white-space: nowrap;
}

.bloghub__pills {
  display: flex;
  gap: 8px;
}

.bloghub-select {
  position: relative;
}

.bloghub-select__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  max-height: 48px;
  border: 1px solid #e6e8f4;
  border-radius: 9999px;
  background: #fff;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #0a0e2e;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease;
}

.bloghub-select__toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.bloghub-select.is-open .bloghub-select__toggle svg {
  transform: rotate(180deg);
}

.bloghub-select.has-value .bloghub-select__toggle {
  border-color: #4e5af4;
  background: rgba(78, 90, 244, 0.05);
  color: #4e5af4;
}

.bloghub-select__menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 20;
  min-width: 100%;
  width: max-content;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #fff;
  border: 1px solid #e6e8f4;
  border-radius: 16px;
}

.bloghub-select.is-open .bloghub-select__menu {
  display: grid;
  gap: 8px;
}

.bloghub-select__menu li {
  padding: 12px 16px;
  border-radius: 8px;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #0a0e2e;
  cursor: pointer;
  white-space: nowrap;
}

.bloghub-select__menu li:hover {
  background: #edfaf3;
}

.bloghub-select__menu li.bloghub-select__clear {
  color: var(--r180-periwinkle);
}

/* Scrim behind the mobile filter drawer */
.bloghub__scrim {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
}

/* Grid */
.bloghub__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  align-items: stretch;
}

.bloghub__empty {
  margin: 0;
  text-align: center;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #52566f;
}

/* Pagination */
.bloghub__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  /* 32px .bloghub__recent flex gap + 48px = 80px from the grid */
  margin-top: 48px;
}

.bloghub__pages {
  display: flex;
  align-items: center;
  gap: 24px;
}

.bloghub__page {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #0a0e2e;
  text-decoration: none;
}

.bloghub__page:hover {
  color: var(--r180-periwinkle);
}

.bloghub__page.is-active {
  color: var(--r180-periwinkle);
  font-weight: 600;
  text-decoration: underline;
}

.bloghub__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #0a0e2e;
  text-decoration: none;
}

.bloghub__nav svg {
  width: 16px;
  height: 16px;
}

.bloghub__nav--prev svg {
  transform: rotate(90deg);
}

.bloghub__nav--next svg {
  transform: rotate(-90deg);
}

.bloghub__nav.is-disabled {
  opacity: 0.2;
  pointer-events: none;
}

.bloghub__ellipsis {
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #0a0e2e;
}

@media (max-width: 1100px) {
  .bloghub {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas:
      "featured"
      "wiv"
      "recommended"
      "recent";
    gap: 48px;
  }

  .bloghub__recent {
    margin-top: 0;
  }
}

@media (max-width: 992px) {
  .bloghub__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .insights__heading--hub {
    text-align: center;
    gap: 12px;
  }

  .insights__heading--hub .insights__title {
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.96px;
  }

  .bloghub {
    gap: 40px;
  }

  .bloghub__area--featured,
  .bloghub__area--recommended {
    gap: 24px;
  }

  .bloghub__toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .bloghub__search {
    width: 100%;
  }

  .bloghub__explore {
    width: 100%;
    min-width: 0;
  }

  .bloghub__explore-label {
    display: none;
  }

  .bloghub__pills {
    flex-wrap: nowrap;
    justify-content: flex-start;
    min-width: 0;
    flex: 1 1 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: calc(var(--r180-gutter) * -1);
    padding-inline: var(--r180-gutter);
  }

  .bloghub__pills::-webkit-scrollbar {
    display: none;
  }

  .bloghub-select__toggle {
    padding: 12px 16px;
    gap: 4px;
  }

  /* Filter menus become a bottom drawer (Figma 2189-33461) */
  .bloghub-select {
    position: static;
    flex: 0 0 auto;
  }

  .bloghub__scrim.is-visible {
    display: block;
  }

  .bloghub-select__menu {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    min-width: 0;
    width: auto;
    padding: 8px;
    gap: 0;
    border-radius: 16px 16px 0 0;
    box-shadow: none;
  }

  .bloghub-select__menu li {
    font-size: 16px;
    line-height: 20px;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .bloghub__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bloghub__section-head {
    padding-bottom: 14px;
  }

  .bloghub__section-title {
    font-size: 18px;
    letter-spacing: -0.36px;
  }

  .bloghub__section-title::after {
    bottom: -14px;
  }

  .bloghub__info {
    position: static;
  }

  .bloghub__info-tip {
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: auto;
  }

  .bloghub-card--featured {
    padding: 24px;
    gap: 16px;
  }

  .bloghub-card--featured .bloghub-card__media {
    aspect-ratio: auto;
    height: 154px;
  }

  .bloghub-card--grid {
    gap: 16px;
  }

  .bloghub-card--grid .bloghub-card__media {
    height: 154px;
  }

  .bloghub-card--row {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .bloghub-card--row .bloghub-card__media {
    width: 100%;
    height: 154px;
  }

  .bloghub-card--wiv .bloghub-card__media {
    height: auto;
    aspect-ratio: 572 / 276;
  }

  .bloghub-card--wiv .bloghub-card__badge {
    display: none;
  }

  .bloghub-card__title,
  .bloghub-card--featured .bloghub-card__title,
  .bloghub-card--row .bloghub-card__title {
    font-size: 18px;
    line-height: 28px;
  }

  .bloghub-card__desc,
  .bloghub-card--featured .bloghub-card__desc,
  .bloghub-card--row .bloghub-card__desc {
    -webkit-line-clamp: 2;
    font-size: 16px;
    line-height: 24px;
  }

  .bloghub-card__meta {
    letter-spacing: -0.24px;
    padding-top: 10px;
  }

  .bloghub-card__stats {
    gap: 6px;
  }

  .bloghub__pagination {
    justify-content: space-between;
    gap: 16px;
    /* 24px .bloghub__recent flex gap + 16px = 40px from the grid */
    margin-top: 16px;
  }

  .bloghub__pages {
    gap: 24px;
  }
}

/* Tools (Figma 723-102764) — reuses .insights / .insight-card */
.tools .insights__heading {
  margin-bottom: 0;
}

.tools__grid {
  gap: 32px;
}

@media (max-width: 992px) {
  .tools__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* =====================================================================
   OUR MODEL — page-specific sections
   ===================================================================== */

/* Hero background */
.solution .model-hero-bg {
  position: relative;
  z-index: 1;
  background: url('/assets/images/Model/Hero/modal-bg.png');
  background-size: 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
}

#our-model {
  .hero__inner {
    padding: 64px 20px 72px !important;
    align-items: center;
    justify-content: space-between;
    gap: 0 !important;
  }

  .hero__desc {
    max-width: 600px !important;
  }
}

.mp-modal-report-btn {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 24px 40px;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 120% */
}

/* --- Our Model hero — mobile (Figma 1723-38046) --- */
@media (max-width: 991px) {
  #our-model .hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0 !important;
    padding: 24px 24px 32px !important;
  }

  /* flatten the text wrappers so the button & image become siblings,
     letting us drop the button below the image to match the design */
  #our-model .hero__text,
  #our-model .hero__copy {
    display: contents;
  }

  /* flattened flex items must fill the row, otherwise they size to
     max-content (the whole line) and overflow instead of wrapping */
  #our-model .hero__title,
  #our-model .hero__desc {
    width: 100%;
  }

  #our-model .hero__title {
    font-size: 40px;
    line-height: 1;
    letter-spacing: -1.2px;
  }

  #our-model .hero__desc {
    max-width: 100% !important;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: normal;
    margin-bottom: 16px !important;
  }

  #our-model .hero-image {
    order: 4;
    width: 100%;
    max-width: 420px;
  }

  #our-model .hero__btn {
    order: 5;
    width: 100%;
    align-self: stretch;
    justify-content: center;
    margin-top: -2rem;
  }
}

/* --- Centered hero — mobile (Figma 1706-32682) ---
   Shared by for-schools, hiring, team-assessment and career via the
   common .hero--centered class on the hero section. */
@media (max-width: 991px) {
  .hero--centered .hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0px;
    padding: 24px 20px !important;
  }

  /* flatten the text wrappers so the button & image become siblings,
     letting the button drop below the image to match the design */
  .hero--centered .hero__text,
  .hero--centered .hero__copy {
    display: contents;
  }

  /* normalise the desktop utility margins so the column gap controls spacing */
  .hero--centered .hero__copy>* {
    margin: 0;
  }

  /* flattened flex items must fill the row, else they size to max-content */
  .hero--centered .hero__title,
  .hero--centered .hero__desc {
    width: 100%;
    max-width: 100% !important;
  }

  .hero--centered .hero__desc {
    margin-bottom: 16px !important;
  }

  .hero--centered .hero__title {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -1.2px;
  }

  .hero--centered .hero__desc {
    font-size: 16px;
    line-height: 24px;
  }

  .hero--centered .hero-image {
    order: 4;
    max-width: 100%;
    margin-inline: auto;
    margin-bottom: 16px;
  }

  .hero--centered .hero__btn {
    order: 5;
    width: 100%;
    align-self: stretch;
    justify-content: center;
  }
}

/* ---------------------------------------------------------------------
   Foundation — four value clusters
   --------------------------------------------------------------------- */
.foundation-v2 {
  position: relative;
  font-family: "Archivo", sans-serif;
}

.foundation-v2__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1030px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 99;
}

.foundation-v2::before {
  position: absolute;
  content: '';
  width: 157.255px;
  height: 541.633px;
  transform: rotate(14.485deg);
  left: -140px;
  bottom: -143.75px;
  background: var(--r180-green);
  border-radius: 50%;
  filter: blur(250px);
}

.foundation-v2__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.foundation-v2 .r180-eyebrow {
  justify-content: center;
}

.foundation-v2__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.foundation-v2__desc {
  margin: 0;
  max-width: 920px;
  font: 300 18px/24px "Archivo", sans-serif;
  color: var(--r180-muted);
}

.foundation-v2__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.vcluster {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e6e8f4;
  border-radius: 24px;
  box-shadow: 0 4px 20px 0 rgba(159, 199, 255, 0.25);
  overflow: hidden;
}

.vcluster__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vcluster__title {
  margin: 0;
  font: 500 24px/24px "Archivo", sans-serif;
  letter-spacing: -0.6px;
  color: var(--r180-ink);
}

.vcluster__desc {
  margin: 0;
  font: 400 16px/24px "Archivo", sans-serif;
  color: var(--r180-muted);
}

.vcluster__strip {
  position: relative;
  height: 198px;
  background: var(--r180-surface);
  border: 1px solid #e6e8f4;
  border-radius: 12px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.vcluster__track {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 8px;
  width: max-content;
  animation: vcluster-scroll 28s linear infinite;
}

.vcluster__track img {
  width: 122px;
  height: 166px;
  object-fit: cover;
  border: 0.595px solid #e6e8f4;
  border-radius: 8px;
  flex: 0 0 auto;
}

@keyframes vcluster-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 4px));
  }
}

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

.vcluster__num {
  position: absolute;
  top: 32px;
  right: 24px;
  font: 700 70px/1 "Archivo", sans-serif;
  letter-spacing: -3.5px;
  color: var(--r180-periwinkle);
  opacity: 0.1;
  pointer-events: none;
}

/* ---------------------------------------------------------------------
   Value atlas — radar chart
   --------------------------------------------------------------------- */
.atlas-v2 {
  position: relative;
  font-family: "Archivo", sans-serif;
  overflow: hidden;
}

.atlas-v2::before {
  position: absolute;
  content: '';
  width: 995.796px;
  height: 271.062px;
  transform: rotate(14.485deg);
  right: -607.943px;
  bottom: -280px;
  border-radius: 50%;
  opacity: 0.2;
  background: var(--r180-periwinkle, #4E5AF4);
  filter: blur(182px);
}

.atlas-v2__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
}

.atlas-v2__text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 528px;
}

.atlas-v2__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.atlas-v2__list {
  margin: 0;
  padding-left: 27px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font: 300 18px/24px "Archivo", sans-serif;
  color: var(--r180-muted);

  @media (max-width:768px) {
    font-size: 16px;
  }
}

.atlas-v2__list>li::marker {
  color: var(--r180-periwinkle);
}

.atlas-v2__term {
  color: var(--r180-periwinkle);
}

.atlas-v2__desc {
  margin: 0;
  font: 300 18px/24px "Archivo", sans-serif;
  color: var(--r180-muted);

  @media (max-width:768px) {
    font-size: 16px;
  }
}

.atlas-v2__chart {
  flex: 0 0 533px;
  max-width: 533px;
  /* align-self: stretch; */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e6e8f4;
  border-radius: 24px;
  box-shadow: 0 20px 25px -5px rgba(84, 142, 183, 0.1);
  overflow: hidden;
}

.atlas-v2__chart video {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------------------------------------------------------------------
   Value blockers
   --------------------------------------------------------------------- */
.blockers-v2 {
  background: linear-gradient(180deg, #FFF 0%, #FAFAFE 3.96%);
  font-family: "Archivo", sans-serif;
  z-index: 99;
}

.blockers-v2__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.blockers-v2__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.blockers-v2 .r180-eyebrow {
  justify-content: center;
}

.blockers-v2__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.blockers-v2__title {
  max-width: 780px;
}

.blockers-v2__desc {
  margin: 0;
  max-width: 1048px;
  font: 300 18px/24px "Archivo", sans-serif;
  color: var(--r180-muted);

  @media (max-width:768px) {
    font-size: 16px;
  }
}

.blockers-v2__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 912px;
  position: relative;

}

.blocker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px;
  /* position: relative; */
}

.blocker--reverse {
  flex-direction: column-reverse;
  margin-top: 18px;
}

.blocker__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 256px;
  height: 256px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--r180-periwinkle);
  box-shadow: 0 10px 20px 0 rgba(175, 185, 213, 0.35);
  text-align: center;
  /* position: relative; */
}

.blocker__svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.blocker__circle span {
  max-width: 200px;
  font: 500 28px/32px "Archivo", sans-serif;
  letter-spacing: -0.6px;
  color: var(--r180-periwinkle);
}

.blocker__desc {
  margin: 0;
  font: 400 16px/22px "Archivo", sans-serif;
  letter-spacing: -0.16px;
  color: var(--r180-muted);
  text-align: center;
}

/* --- Value Blockers — mobile (Figma 1723-39304) --- */
@media (max-width: 991px) {

  /* the centered flex columns otherwise size to max-content, so the
     header text never wraps — force them (and the text) to full width */
  .blockers-v2__head,
  .blockers-v2__copy,
  .blockers-v2__title,
  .blockers-v2__desc {
    width: 100%;
    max-width: 100%;
  }

  .blockers-v2__row {
    grid-template-columns: 1fr;
    justify-items: center;
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    gap: 32px;
  }

  .blocker {
    flex-direction: column;
    width: 100%;
    padding: 16px 0;
    gap: 20px;
  }

  /* every circle sits on top with its text below, no staggering */
  .blocker--reverse {
    flex-direction: column;
    margin-top: 0;
  }

  /* decorative arcs are desktop-only */
  .blocker__circle::before,
  .blocker__circle::after {
    display: none;
  }

  .blocker__desc {
    padding-inline: 16px;
  }

  .blocker__svg {
    display: none;
  }
}

/* ---------------------------------------------------------------------
   The 3Ps
   --------------------------------------------------------------------- */
.threeps-v2 {
  background: linear-gradient(180deg, #ffffff 0%, #fafafe 100%);
  font-family: "Archivo", sans-serif;
}

.threeps-v2__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 99;
}

.threeps-v2__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.threeps-v2 .r180-eyebrow {
  justify-content: center;
}

.threeps-v2__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.threeps-v2__desc {
  margin: 0;
  max-width: 860px;
  font: 300 18px/24px "Archivo", sans-serif;
  color: var(--r180-muted);

  @media (max-width:768px) {
    font-size: 16px;
  }
}

.threeps-v2__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  padding: 0;
}

.threeps-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(180deg, rgba(250, 250, 254, 0.00) 51.62%, #FAFAFE 70.5%);
  border: 2px solid #e6e8f4;
  border-radius: 10px;
  overflow: hidden;
}

.threeps-card__video {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
}

.threeps-card__video::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2rem;
  background: linear-gradient(180deg, rgba(250, 250, 254, 0) 0%, #fafafe 100%);
  pointer-events: none;
}

.threeps-card__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.threeps-card__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  text-align: center;
  padding: 6px 32px 24px 32px;
}

.threeps-card__title {
  margin: 0;
  font: 500 24px/24px "Archivo", sans-serif;
  letter-spacing: -0.6px;
  color: var(--r180-ink);
}

.threeps-card__desc {
  margin: 0;
  font: 400 16px/24px "Archivo", sans-serif;
  color: var(--r180-muted);
}

/* ---------------------------------------------------------------------
   What you actually get (extends .report-v2)
   --------------------------------------------------------------------- */
.modelget-v2__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modelget-v2__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.modelget-v2__check {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
}

.modelget-v2__item p {
  margin: 0;
  font: 500 18px/28px "Archivo", sans-serif;
  letter-spacing: -0.36px;
  color: var(--r180-periwinkle);
}

.modelget-v2__media {
  flex: 1 1;
  min-width: 0;
  border-radius: 24px;
  overflow: hidden;
}

.modelget-v2__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------- */
@media (max-width: 992px) {
  .foundation-v2__grid {
    grid-template-columns: 1fr;
  }

  .foundation-v2__copy,
  .foundation-v2__title,
  .foundation-v2__desc {
    width: 100%;
    max-width: 100%;
  }

  .foundation-v2__desc {
    font-size: 16px;
  }

  .atlas-v2__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .atlas-v2__chart {
    flex-basis: auto;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .stats-v2 {
    text-align: center;

    .r180-eyebrow {
      justify-content: center;
    }
  }

  .steps-v2__head {
    margin-bottom: 32px;
  }

  .foundation-v2,
  .atlas-v2,
  .blockers-v2,
  .threeps-v2,
  .report-v2,
  .cta-v2,
  .stats-v2,
  .cards-v2,
  .steps-v2 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  .foundation-v2__copy,
  .blockers-v2__copy,
  .threeps-v2__copy,
  .report-v2__copy,
  .stats-v2__copy {
    gap: 16px;
  }

  .foundation-v2__inner,
  .atlas-v2__inner,
  .blockers-v2__inner,
  .threeps-v2__inner,
  .report-v2__inner,
  .stats-v2__inner,
  .cards-v2__inner {
    gap: 32px;
  }

  .steps-v2__head {
    margin-bottom: 32px;
  }

  .vcluster__copy {
    gap: 8px;
  }

  .report-v2 .modelget-v2__item svg,
  .report-v2__item svg,
  .feature-v2__point svg {
    width: 21px !important;
    height: 21px !important;
    margin-top: 3.5px !important;
  }

  .quote-v2__body,
  .report-v2__list,
  .steps-v2__row {
    gap: 1rem;
  }

  .foundation-v2__title,
  .atlas-v2__title,
  .blockers-v2__title,
  .threeps-v2__title,
  .stats-v2__title,
  .steps-v2__title,
  .cards-v2__title,
  .compare-v2__title {
    font-size: 28px;
    line-height: 1;
  }

  .report-v2__desc {
    font-size: 1rem;
  }

  .threeps-v2__row,
  .quote-v2__inner {
    gap: 24px;
  }

  .quote-v2 {
    padding: 48px 0 !important;
  }

  .quote-v2__info {
    gap: 8px;
  }

  .quote-v2__name {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: -0.36px;
  }

  .quote-v2__text {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
  }

  .quote-v2__role {
    font-size: 14px;
    line-height: 16px;
  }

  /* .foundation-v2__title br,
  .atlas-v2__title br,
  .threeps-v2__title br {
    display: none;
  } */

  /* Foundation value-cluster cards — mobile (Figma 1723-38067) */
  .vcluster {
    padding: 24px;
    border-radius: 20px;
  }

  .vcluster__title {
    font-size: 20px;
  }

  .vcluster__num {
    top: 16px;
    right: 15px;
    font-size: 48px;
    letter-spacing: -2.4px;
  }

  .threeps-v2__row {
    grid-template-columns: 1fr;
  }

  .threeps-card {
    min-height: 280px;
  }

  .blockers-v2__row {
    gap: 32px;
  }

  .blocker--reverse {
    margin-top: 0;
  }

  #education .faq-section::before {
    display: none;
  }
}

/* ---------------------------------------------------------------------
   Contact form — submit loading state + result modal
   --------------------------------------------------------------------- */
.contact-form__submit:disabled {
  opacity: 0.2;
  cursor: not-allowed;
  pointer-events: none;
}

.contact-form__submit.is-loading {
  opacity: 0.75;
  cursor: progress;
  pointer-events: none;
}

.cf-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.cf-modal.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.cf-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 46, 0.55);
  backdrop-filter: blur(4px);
}

.cf-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px 32px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(10, 14, 46, 0.25);
  transform: translateY(12px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.cf-modal.is-open .cf-modal__dialog {
  transform: translateY(0) scale(1);
}

.cf-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--r180-tint);
  color: var(--r180-ink);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cf-modal__close:hover {
  background: #e2e4fb;
}

.cf-modal__close svg {
  width: 20px;
  height: 20px;
}

.cf-modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: 50%;
}

.cf-modal__icon svg {
  width: 38px;
  height: 38px;
}

.cf-modal__icon-success,
.cf-modal__icon-error {
  display: none;
}

.cf-modal__icon--success {
  background: rgba(126, 222, 157, 0.18);
  color: #1f9d57;
}

.cf-modal__icon--success .cf-modal__icon-success {
  display: block;
}

.cf-modal__icon--error {
  background: rgba(244, 63, 94, 0.12);
  color: #e11d48;
}

.cf-modal__icon--error .cf-modal__icon-error {
  display: block;
}

.cf-modal__title {
  margin: 0 0 8px;
  font: 600 24px/1.2 "Archivo", sans-serif;
  letter-spacing: -0.3px;
  color: var(--r180-ink);
}

.cf-modal__text {
  margin: 0 0 28px;
  font: 400 16px/1.5 "Archivo", sans-serif;
  color: var(--r180-muted);
}

.cf-modal__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 14px 34px;
  border: none;
  border-radius: 80px;
  background: var(--r180-periwinkle);
  color: #fff;
  font: 600 16px/1 "Archivo", sans-serif;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cf-modal__action:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .cf-modal__dialog {
    padding: 36px 22px 26px;
  }
}

/* =====================================================================
   Sample report modal (Figma 2092-23183 — email capture + states)
   ===================================================================== */
.report-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.report-modal.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.report-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 46, 0.55);
  backdrop-filter: blur(4px);
}

.report-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--r180-white);
  border: 1px solid var(--r180-border);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 30px 80px rgba(10, 14, 46, 0.25);
  transform: translateY(12px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.report-modal.is-open .report-modal__dialog {
  transform: translateY(0) scale(1);
}

.report-modal__close {
  position: absolute;
  top: 0;
  right: -52px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  background: var(--r180-white);
  color: var(--r180-ink);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(10, 14, 46, 0.18);
  transition: background-color 0.2s ease;
}

.report-modal__close:hover {
  background: var(--r180-tint);
}

.report-modal__close svg {
  width: 22px;
  height: 22px;
}

.report-modal__form,
.report-modal__success {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.report-modal__form[hidden],
.report-modal__success[hidden] {
  display: none;
}

.report-modal__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.report-modal__head--center {
  text-align: center;
}

.report-modal__title {
  margin: 0;
  font: 600 20px/1.2 "Archivo", sans-serif;
  color: var(--r180-ink);
}

.report-modal__desc {
  margin: 0;
  font: 300 14px/20px "Archivo", sans-serif;
  color: var(--r180-muted);
}

.report-modal__email {
  font-weight: 500;
  color: var(--r180-periwinkle);
  word-break: break-word;
}

.report-modal__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.report-modal__label {
  font: 400 14px/16px "Archivo", sans-serif;
  color: var(--r180-muted);
}

.report-modal__control {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.report-modal__input {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--r180-border);
  border-radius: 12px;
  background: var(--r180-white);
  font: 400 16px/24px "Archivo", sans-serif;
  color: var(--r180-ink);
  transition: border-color 0.2s ease;
}

.report-modal__input::placeholder {
  color: var(--r180-muted);
  opacity: 0.5;
}

.report-modal__input:focus {
  outline: none;
  border-color: var(--r180-periwinkle);
}

.report-modal--error .report-modal__input {
  border-color: #e05555;
}

.report-modal__submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 56px;
  padding: 16px;
  border: none;
  border-radius: 80px;
  background: var(--r180-periwinkle);
  color: var(--r180-white);
  font: 600 16px/24px "Archivo", sans-serif;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.report-modal__submit:hover:not(:disabled) {
  opacity: 0.92;
  transform: translateY(-1px);
}

.report-modal__submit:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.report-modal__submit-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Loading state — hide label/arrow, show spinner */
.report-modal__spinner {
  display: none;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--r180-white);
  border-radius: 50%;
  animation: report-spin 0.7s linear infinite;
}

.report-modal__submit.is-loading {
  opacity: 1;
  cursor: progress;
}

.report-modal__submit.is-loading .report-modal__submit-label,
.report-modal__submit.is-loading .report-modal__submit-arrow {
  display: none;
}

.report-modal__submit.is-loading .report-modal__spinner {
  display: block;
}

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

.report-modal__error {
  margin: 0;
  font: 400 12px/16px "Archivo", sans-serif;
  color: #e05555;
  text-align: center;
}

.report-modal__error[hidden] {
  display: none;
}

/* Success state */
.report-modal__success {
  align-items: center;
  padding: 8px 0;
}

.report-modal__check {
  width: 96px;
  height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.report-modal__check-circle {
  fill: var(--r180-tint);
  transform-origin: center;
  animation: report-check-pop 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.report-modal__check-mark {
  stroke: var(--r180-periwinkle);
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: report-check-draw 0.4s ease-out 0.25s forwards;
}

@keyframes report-check-pop {
  0% {
    transform: scale(0);
  }

  60% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes report-check-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 480px) {
  .report-modal__dialog {
    padding: 36px 22px 26px;
  }

  .report-modal__close {
    top: 12px;
    right: 12px;
    box-shadow: none;
    background: var(--r180-tint);
  }
}

@media (max-width: 560px) {
  .vcluster {
    padding: 24px;
  }

  .blocker {
    padding: 0;
  }

  .blocker__circle {
    width: 100%;
    max-width: 256px;
  }
}

/* BLOGS DETAIL PAGE */
.mp-breadcrubs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style-type: none;
  margin-top: 24px;

  li,
  a {
    font-family: Archivo;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.12px;
    color: var(--r180-muted);
    text-decoration: none;
    opacity: 0.5;
  }

  li:last-item() {
    opacity: 1;
  }
}

.mp-blog-container {
  width: 1120px;
  max-width: 100%;
  margin: auto;
  padding: 0 20px;
  margin-top: 56px;

  @media (max-width:768px) {
    margin-top: 40px;
  }

  @media (max-width:540px) {
    margin-top: 24px;
  }
}

.blog-detail-container {
  margin-top: 48px !important;

  @media (max-width:540px) {
    margin-top: 1rem !important;
  }
}

.mp-blog-banner {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  img {
    border-radius: 8px;
    width: 100%;
    height: auto;
  }

  @media (max-width:540px) {
    gap: 0.5rem;
  }
}

.blog-baner-tags {
  gap: 0.5rem;

  @media (max-width:540px) {
    gap: 0.25rem;
  }
}

.blog-baner-tag {
  padding: 10px;
  gap: 8px;
  border-radius: 4px;
  background: var(--r180-tint, #EFF0FE);
  color: #2B2F52;
  font-family: Archivo;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;

  @media (max-width:768px) {
    padding: 6px;
    font-size: 10px;
    line-height: 12px;
  }
}