/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
    :root {
      --brand: #8327D2;
      --brand-dark: #6A1FB0;
      --brand-deep: #510F92;
      --brand-light: #9F45E8;
      --brand-pale: #F3EAFD;
      --brand-soft: #EAD8FA;
      --brand-mid: #C598F0;
      --surface: #FFFFFF;
      --canvas: #F9F7FD;
      --canvas-alt: #F2EEF9;
      --border: #E6DFF5;
      --border-soft: #EDE8F6;
      --ink-900: #0F0B1A;
      --ink-700: #2D2240;
      --ink-500: #5E4D78;
      --ink-400: #8474A0;
      --ink-300: #B0A2C8;
      --ink-200: #D7CEED;
      --ink-100: #EDE8F6;
      --success: #12B76A;
      --warning: #F79009;
      --danger: #F04438;
      --ff-heading: 'Sora', sans-serif;
      --ff-body: 'DM Sans', sans-serif;
      --r-sm: 8px;
      --r-md: 12px;
      --r-lg: 16px;
      --r-xl: 24px;
      --r-full: 999px;
      --shadow-xs: 0 1px 2px rgba(131, 39, 210, 0.06);
      --shadow-sm: 0 2px 8px rgba(131, 39, 210, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 4px 20px rgba(131, 39, 210, 0.12), 0 2px 6px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 12px 48px rgba(131, 39, 210, 0.16), 0 4px 12px rgba(0, 0, 0, 0.06);
    }

    /* ─── RESET ─────────────────────────────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--ff-body);
      background: var(--canvas);
      color: var(--ink-700);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

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

    ul {
      list-style: none;
    }

    ::-webkit-scrollbar {
      width: 5px;
    }

    ::-webkit-scrollbar-track {
      background: var(--canvas);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--ink-200);
      border-radius: 99px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--brand-mid);
    }

    /* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: var(--ff-heading);
      color: var(--ink-900);
      letter-spacing: -0.025em;
      line-height: 1.12;
    }

    h1 {
      font-size: clamp(2.5rem, 5.5vw, 4.5rem);
      font-weight: 800;
    }

    h2 {
      font-size: clamp(1.75rem, 3.5vw, 2.75rem);
      font-weight: 700;
    }

    h3 {
      font-size: 1.125rem;
      font-weight: 600;
    }

    h4 {
      font-size: 1rem;
      font-weight: 600;
    }

    p {
      color: var(--ink-500);
      font-size: 1rem;
      line-height: 1.7;
    }

    .label {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand);
    }

    /* ─── LAYOUT ─────────────────────────────────────────────────── */
    .container {
      /* max-width: 1200px;
      margin-inline: auto;
      padding-inline: clamp(1.25rem, 4vw, 4rem); */
      max-width: 1600px;
      margin-inline: auto;
      padding: 0 100px 0 100px;
    }

    @media (max-width: 560px) {
      .container {
        /* max-width: 1200px; */
        margin-inline: auto;
        /* padding-inline: clamp(1.25rem, 4vw, 5rem); */
        padding: 0 20px 0 20px;
      }
    }

    /* ─── ANIMATIONS ─────────────────────────────────────────────── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes floatY {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-8px)
      }
    }

    @keyframes floatY2 {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(6px)
      }
    }

    @keyframes gradMove {
      0% {
        background-position: 0% 50%
      }

      50% {
        background-position: 100% 50%
      }

      100% {
        background-position: 0% 50%
      }
    }

    @keyframes countUp {
      from {
        opacity: 0;
        transform: translateY(12px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .reveal {
      opacity: 0;
      animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      animation-play-state: paused;
    }

    .reveal-d1 {
      animation-delay: 0.1s
    }

    .reveal-d2 {
      animation-delay: 0.2s
    }

    .reveal-d3 {
      animation-delay: 0.3s
    }

    .reveal-d4 {
      animation-delay: 0.4s
    }

    .reveal-d5 {
      animation-delay: 0.5s
    }

    .reveal-d6 {
      animation-delay: 0.6s
    }

    /* ─── BUTTONS ────────────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.75rem 1.625rem;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      outline: none;
      transition: all 0.2s ease;
    }

    .btn-primary {
      background: var(--brand);
      color: #fff;
      box-shadow: 0 4px 20px rgba(131, 39, 210, 0.35);
    }

    .btn-primary:hover {
      background: var(--brand-dark);
      transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(131, 39, 210, 0.5);
    }

    .btn-outline {
      background: transparent;
      color: var(--ink-700);
      border: 1.5px solid var(--border);
    }

    .btn-outline:hover {
      border-color: var(--brand-mid);
      color: var(--brand);
      background: var(--brand-pale);
    }

    .btn-lg {
      padding: 1rem 2.25rem;
      font-size: 1rem;
    }

    .btn-sm {
      padding: 0.5rem 1.125rem;
      font-size: 0.875rem;
      border-radius: var(--r-sm);
    }

    /* ─── HERO ───────────────────────────────────────────────────── */
    .about-hero {
      padding-top: 120px;
      padding-bottom: 100px;
      position: relative;
      overflow: hidden;
      background: var(--canvas);
      min-height: 88vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

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

    .hero-orb-1 {
      position: absolute;
      top: -220px;
      right: -180px;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle at center, rgba(131, 39, 210, 0.12) 0%, transparent 65%);
    }

    .hero-orb-2 {
      position: absolute;
      bottom: -100px;
      left: -120px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle at center, rgba(131, 39, 210, 0.07) 0%, transparent 65%);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(131, 39, 210, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(131, 39, 210, 0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 80% 60% at 60% 30%, black 0%, transparent 80%);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .hero-copy .label {
      color: var(--brand);
      display: block;
      margin-bottom: 1.5rem;
    }

    .hero-copy h1 {
      color: var(--ink-900);
      margin-bottom: 1.25rem;
    }

    .hero-copy h1 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-copy>p {
      font-size: 1.0625rem;
      line-height: 1.75;
      max-width: 480px;
      margin-bottom: 2.5rem;
      color: var(--ink-500);
    }

    /* Trust strip — same pattern as features/pricing */
    .hero-trust-strip {
      display: flex;
      align-items: stretch;
      gap: 0;
    }

    .trust-pill {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem 1.25rem;
      flex: 1;
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
    }

    .trust-pill:first-child {
      border-radius: 12px 0 0 12px;
    }

    .trust-pill:last-child {
      border-radius: 0 12px 12px 0;
      border-left: none;
    }

    .trust-pill:not(:first-child):not(:last-child) {
      border-left: none;
    }

    .trust-pill-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .trust-pill-val {
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 800;
      color: var(--ink-900);
      line-height: 1.2;
    }

    .trust-pill-label {
      font-size: 0.75rem;
      color: var(--ink-400);
      line-height: 1.3;
    }

    /* Hero visual — about card composition */
    .hero-visual {
      position: relative;
    }

    .about-visual-main {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 24px;
      padding: 2rem;
      box-shadow: var(--shadow-lg);
      animation: floatY 7s ease-in-out infinite;
      position: relative;
      z-index: 1;
    }

    .avm-header {
      display: flex;
      align-items: center;
      gap: 0.875rem;
      margin-bottom: 1.5rem;
    }

    .avm-logo-mark {
      width: 40px;
      height: 40px;
      background: var(--brand);
      border-radius: 11px;
      display: grid;
      place-items: center;
      box-shadow: 0 4px 12px rgba(131, 39, 210, 0.4);
    }

    .avm-title {
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--ink-900);
    }

    .avm-sub {
      font-size: 0.6875rem;
      color: var(--ink-400);
    }

    .avm-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.625rem;
      margin-bottom: 1.25rem;
    }

    .avm-stat {
      background: var(--canvas);
      border: 1px solid var(--border-soft);
      border-radius: 12px;
      padding: 0.875rem 0.75rem;
      text-align: center;
    }

    .avm-stat-val {
      font-family: var(--ff-heading);
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--ink-900);
      line-height: 1;
    }

    .avm-stat-label {
      font-size: 0.5625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: var(--ink-400);
      margin-top: 4px;
      font-family: var(--ff-heading);
    }

    .avm-divider {
      height: 1px;
      background: var(--border-soft);
      margin-bottom: 1.25rem;
    }

    .avm-team-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .avm-team-avatars {
      display: flex;
      flex-direction: row-reverse;
    }

    .avm-avatar {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 2.5px solid var(--surface);
      margin-left: -10px;
      display: grid;
      place-items: center;
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 800;
      color: #fff;
      flex-shrink: 0;
    }

    .avm-team-label {
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--ink-500);
    }

    .avm-team-label strong {
      color: var(--ink-900);
      font-weight: 700;
    }

    /* Two floating cards */
    .hero-float {
      position: absolute;
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 14px;
      padding: 0.875rem 1rem;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      gap: 0.75rem;
      z-index: 10;
    }

    .hero-float-1 {
      top: -22px;
      right: -24px;
      animation: floatY 5s ease-in-out infinite 0.8s;
    }

    .hero-float-2 {
      bottom: 30px;
      left: -32px;
      animation: floatY2 6s ease-in-out infinite 0.3s;
    }

    .hf-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .hf-val {
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 800;
      color: var(--ink-900);
      line-height: 1.2;
    }

    .hf-label {
      font-size: 0.625rem;
      color: var(--ink-400);
    }

    /* ─── SECTION SHARED ─────────────────────────────────────────── */
    .section {
      padding: 7rem 0;
    }

    .section-alt {
      padding: 7rem 0;
      background: var(--surface);
    }

    .section-dark {
      padding: 7rem 0;
      background: var(--ink-900);
      position: relative;
      overflow: hidden;
    }

    .section-dark::before {
      content: '';
      position: absolute;
      top: -200px;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.2) 0%, transparent 65%);
      pointer-events: none;
    }

    .section-dark::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }

    .section-canvas-alt {
      padding: 7rem 0;
      background: var(--canvas-alt);
    }

    .section-intro {
      margin-bottom: 4rem;
    }

    .section-intro .label {
      display: block;
      margin-bottom: 0.875rem;
    }

    .section-intro h2 {
      margin-bottom: 1rem;
    }

    .section-intro p {
      font-size: 1.0625rem;
      max-width: 560px;
    }

    .section-intro.centered {
      text-align: center;
    }

    .section-intro.centered p {
      margin-inline: auto;
    }

    .section-intro.on-dark h2 {
      color: #fff;
    }

    .section-intro.on-dark p {
      color: rgba(255, 255, 255, 0.5);
    }

    .section-intro.on-dark .label {
      color: var(--brand-mid);
    }

    /* ─── MISSION SECTION ────────────────────────────────────────── */
    .mission-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .mission-copy .label {
      display: block;
      margin-bottom: 0.875rem;
    }

    .mission-copy h2 {
      margin-bottom: 1rem;
    }

    .mission-copy>p {
      font-size: 1.0625rem;
      line-height: 1.8;
      margin-bottom: 1.75rem;
    }

    .mission-supporting {
      padding: 1.5rem;
      background: var(--brand-pale);
      border: 1.5px solid var(--brand-soft);
      border-radius: 16px;
      font-size: 1rem;
      font-weight: 500;
      color: var(--brand-dark);
      line-height: 1.7;
      font-family: var(--ff-heading);
      letter-spacing: -0.01em;
      position: relative;
      padding-left: 2rem;
    }

    .mission-supporting::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: var(--brand);
      border-radius: 4px 0 0 4px;
    }

    /* Mission visual — big stat card */
    .mission-visual {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .mission-stat-card {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      padding: 1.875rem;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      box-shadow: var(--shadow-sm);
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    }

    .mission-stat-card:hover {
      transform: translateX(6px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-soft);
    }

    .mission-stat-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      transition: transform 0.3s;
    }

    .mission-stat-card:hover .mission-stat-icon {
      transform: scale(1.08) rotate(-5deg);
    }

    .mission-stat-val {
      font-family: var(--ff-heading);
      font-size: 2rem;
      font-weight: 800;
      color: var(--ink-900);
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .mission-stat-label {
      font-size: 0.875rem;
      color: var(--ink-400);
      margin-top: 4px;
    }

    /* ─── STORY SECTION ──────────────────────────────────────────── */
    .story-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .story-copy .label {
      display: block;
      margin-bottom: 0.875rem;
    }

    .story-copy h2 {
      margin-bottom: 1rem;
    }

    .story-copy>p {
      font-size: 1.0625rem;
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .story-body {
      font-size: 1rem;
      line-height: 1.85;
      color: var(--ink-500);
    }

    /* Timeline visual */
    .story-timeline {
      display: flex;
      flex-direction: column;
      gap: 0;
      padding-left: 1.5rem;
    }

    .timeline-item {
      position: relative;
      padding-left: 2rem;
      padding-bottom: 2.5rem;
    }

    .timeline-item:last-child {
      padding-bottom: 0;
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      bottom: 0;
      width: 1px;
      background: var(--border);
    }

    .timeline-item:last-child::before {
      display: none;
    }

    .timeline-dot {
      position: absolute;
      left: -7px;
      top: 6px;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: var(--brand);
      border: 2.5px solid var(--canvas-alt);
      box-shadow: 0 0 0 4px rgba(131, 39, 210, 0.12);
    }

    .timeline-year {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 800;
      color: var(--brand);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.5rem;
    }

    .timeline-title {
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.375rem;
    }

    .timeline-desc {
      font-size: 0.9rem;
      color: var(--ink-400);
      line-height: 1.65;
    }

    .timeline-mascot {
      position: absolute;
      top: -100px;
      left: -120px;
      width: 130px;
      z-index: 10;
      filter: drop-shadow(0 15px 30px rgba(131, 39, 210, 0.25));
      animation: floatY 4s infinite ease-in-out;
      pointer-events: none;
    }

    @media (max-width: 900px) {
      .timeline-mascot {
        width: 90px;
        left: -100px;
        top: -70px;
      }
    }

    /* ─── VALUES SECTION ─────────────────────────────────────────── */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }

    .value-card {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      padding: 2rem 1.75rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    }

    .value-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--vc-top, transparent);
      border-radius: 20px 20px 0 0;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .value-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: transparent;
    }

    .value-card:hover::before {
      opacity: 1;
    }

    .vc-1 {
      --vc-top: linear-gradient(90deg, var(--brand), var(--brand-light));
    }

    .vc-2 {
      --vc-top: linear-gradient(90deg, #3B82F6, #60A5FA);
    }

    .vc-3 {
      --vc-top: linear-gradient(90deg, #8B5CF6, #A78BFA);
    }

    .vc-4 {
      --vc-top: linear-gradient(90deg, #10B981, #34D399);
    }

    .value-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      margin-bottom: 1.5rem;
      transition: transform 0.3s;
    }

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

    .vi-1 {
      background: linear-gradient(135deg, rgba(131, 39, 210, 0.12), rgba(131, 39, 210, 0.05));
      color: var(--brand);
    }

    .vi-2 {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.05));
      color: #3B82F6;
    }

    .vi-3 {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(139, 92, 246, 0.05));
      color: #8B5CF6;
    }

    .vi-4 {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.05));
      color: #10B981;
    }

    .value-card h3 {
      font-size: 1.0625rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.625rem;
    }

    .value-card p {
      font-size: 0.875rem;
      color: var(--ink-400);
      line-height: 1.7;
    }

    .value-card-num {
      position: absolute;
      top: 1.25rem;
      right: 1.5rem;
      font-family: var(--ff-heading);
      font-size: 4rem;
      font-weight: 900;
      color: var(--border-soft);
      line-height: 1;
      letter-spacing: -0.06em;
      user-select: none;
      transition: color 0.3s;
    }

    .value-card:hover .value-card-num {
      color: var(--brand-pale);
    }

    /* ─── IMPACT SECTION — DARK ──────────────────────────────────── */
    .impact-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 20px;
      overflow: hidden;
      margin-bottom: 4rem;
      position: relative;
      z-index: 1;
    }

    .impact-stat {
      background: rgba(255, 255, 255, 0.03);
      padding: 2.5rem 2rem;
      text-align: center;
      position: relative;
      transition: background 0.3s;
    }

    .impact-stat:hover {
      background: rgba(131, 39, 210, 0.18);
    }

    .impact-stat-num {
      font-family: var(--ff-heading);
      font-size: clamp(2.25rem, 4vw, 3.25rem);
      font-weight: 800;
      color: #fff;
      line-height: 1;
      letter-spacing: -0.04em;
      margin-bottom: 0.5rem;
    }

    .impact-stat-num span {
      color: var(--brand-mid);
    }

    .impact-stat-label {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.5;
    }

    .impact-desc {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 600px;
      margin-inline: auto;
    }

    .impact-desc p {
      font-size: 1.0625rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.8;
    }

    /* ─── TEAM SECTION ───────────────────────────────────────────── */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }

    .team-card {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      position: relative;
    }

    .team-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-soft);
    }

    .team-card-avatar {
      width: 100%;
      aspect-ratio: 1 / 1;
      position: relative;
      overflow: hidden;
      background: var(--canvas-alt);
    }

    .team-avatar-inner {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .team-avatar-initials {
      font-family: var(--ff-heading);
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--brand-dark);
      letter-spacing: -0.04em;
      opacity: 0.22;
    }

    .team-avatar-icon {
      position: absolute;
      bottom: 1rem;
      right: 1rem;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2.5px solid var(--surface);
      display: grid;
      place-items: center;
      box-shadow: var(--shadow-sm);
    }

    .team-card-body {
      padding: 1.375rem;
    }

    .team-card-name {
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.25rem;
    }

    .team-card-role {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--brand);
      margin-bottom: 0.75rem;
    }

    .team-card-bio {
      font-size: 0.875rem;
      color: var(--ink-400);
      line-height: 1.65;
    }

    .team-card-divider {
      height: 1px;
      background: var(--border-soft);
      margin: 1rem 0;
    }

    .team-card-social {
      display: flex;
      gap: 0.5rem;
    }

    .team-social-btn {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--canvas);
      border: 1px solid var(--border-soft);
      display: grid;
      place-items: center;
      color: var(--ink-400);
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }

    .team-social-btn:hover {
      background: var(--brand);
      color: #fff;
      transform: scale(1.1);
    }

    /* ─── CTA SECTION ────────────────────────────────────────────── */
    .cta-section {
      background: var(--ink-900);
      padding: 7rem 0;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 900px;
      height: 900px;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.22) 0%, transparent 65%);
      pointer-events: none;
    }

    .cta-section::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }

    .cta-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 680px;
      margin-inline: auto;
    }

    .cta-inner .label {
      color: var(--brand-mid);
      display: block;
      margin-bottom: 1rem;
    }

    .cta-inner h2 {
      color: #fff;
      margin-bottom: 1.25rem;
      font-size: clamp(1.875rem, 4vw, 3rem);
    }

    .cta-inner>p {
      font-size: 1.0625rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.8;
      margin-bottom: 2.75rem;
    }

    .cta-btns {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2.25rem;
    }

    .btn-cta-white {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #fff;
      color: var(--brand-dark);
      padding: 1rem 2.25rem;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 700;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
      transition: all 0.25s;
    }

    .btn-cta-white:hover {
      background: var(--brand-pale);
      transform: translateY(-2px);
    }

    .btn-cta-ghost {
      display: inline-flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.06);
      color: rgba(255, 255, 255, 0.85);
      border: 1.5px solid rgba(255, 255, 255, 0.14);
      padding: 1rem 2.25rem;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 600;
      transition: all 0.2s;
    }

    .btn-cta-ghost:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.28);
      transform: translateY(-2px);
    }

    .cta-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.75rem;
      flex-wrap: wrap;
    }

    .cta-trust-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.45);
    }

    .cta-trust-item svg {
      color: var(--brand-mid);
    }

    /* ─── RESPONSIVE ─────────────────────────────────────────────── */
    @media (max-width: 1100px) {
      .values-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

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

    @media (max-width: 900px) {

      .hero-inner,
      .mission-inner,
      .story-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .hero-visual {
        display: none;
      }
    }

    @media (max-width: 768px) {

      .nav-links,
      .nav-actions .btn {
        display: none;
      }

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

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

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

    @media (max-width: 640px) {

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

      .hero-trust-strip {
        flex-direction: column;
      }

      .trust-pill {
        border-radius: 12px !important;
        border-left: 1.5px solid var(--border-soft) !important;
        margin-bottom: 0.5rem;
      }
    }