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

  :root {
    --brand: #3C3FDE;
    --brand-dark: #2a2db8;
    --brand-darker: #1e2090;
    --brand-light: #e8e9fd;
    --brand-mid: #6366ef;
    --brand-50: #f0f0fe;
    --brand-100: #d4d5fb;
    --brand-200: #a9abf7;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--slate-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; }

  /* ── NAV ── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--slate-200);
    padding: 0 2.5rem;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo img { height: 36px; width: auto; display: block; }
  .nav-logo { text-decoration: none; }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--brand); }
  .nav-links a.active { color: var(--brand); font-weight: 600; }

  .nav-cta {
    background: var(--brand) !important;
    color: white !important;
    padding: 9px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--brand-dark) !important; }

  /* ── PAGE HERO ── */
  .page-hero {
    background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand) 55%, var(--brand-mid) 100%);
    padding: 72px 2rem 68px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }

  .page-hero-inner { position: relative; }

  .page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.9);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 22px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 16px;
  }

  .page-hero h1 em {
    font-style: normal;
    color: #a5b4fc;
  }

  .page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* ── MAIN CONTENT ── */
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2.5rem;
  }

  /* ── MISSION ── */
  .mission-section {
    padding: 80px 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .mission-text .eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 12px;
    display: block;
  }

  .mission-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .mission-text p {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .mission-visual {
    background: linear-gradient(135deg, var(--brand-darker), var(--brand));
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .stat-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 20px 24px;
  }

  .stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.62);
  }

  /* ── VALUES ── */
  .values-section {
    background: var(--slate-50);
    padding: 80px 2.5rem;
  }

  .values-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 10px;
    display: block;
  }

  .section-title {
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -0.025em;
    margin-bottom: 8px;
  }

  .section-sub {
    font-size: 0.925rem;
    color: var(--slate-500);
    margin-bottom: 52px;
  }

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

  .value-card {
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  }

  .value-card:hover {
    border-color: var(--brand-200);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(60,63,222,0.08);
  }

  .value-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--brand-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }

  .value-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--brand);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .value-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }

  .value-card p {
    font-size: 0.855rem;
    color: var(--slate-500);
    line-height: 1.65;
  }

  /* ── STORY ── */
  .story-section {
    padding: 80px 2.5rem;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .story-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -0.025em;
    margin-bottom: 24px;
  }

  .story-section p {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.85;
    margin-bottom: 18px;
  }

  .story-section p strong {
    color: var(--slate-700);
    font-weight: 600;
  }

  /* ── CTA ── */
  .cta-section {
    background: var(--brand-darker);
    background-image: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand) 100%);
    padding: 88px 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

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

  .cta-inner { max-width: 560px; margin: 0 auto; position: relative; }

  .cta-section h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    font-weight: 700;
    color: white;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
  }

  .cta-section h2 em { font-style: normal; color: #a5b4fc; }

  .cta-section p {
    font-size: 0.975rem;
    color: rgba(255,255,255,0.62);
    margin-bottom: 40px;
    line-height: 1.75;
  }

  .cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: white;
    color: var(--brand);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.01em;
  }

  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

  .btn-primary svg {
    width: 17px; height: 17px;
    stroke: var(--brand); fill: none;
    stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  }

  .btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.78);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.25);
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
  }

  .btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: white; transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    background: var(--slate-900);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 40px 2.5rem;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-logo img {
    height: 30px; width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
  }

  .footer-links { display: flex; gap: 1.75rem; list-style: none; flex-wrap: wrap; }
  .footer-links a { font-size: 0.84rem; color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: rgba(255,255,255,0.8); }

  .footer-bottom {
    max-width: 1100px;
    margin: 24px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
  .footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.28); }

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

  @media (max-width: 600px) {
    nav { padding: 0 1.25rem; }
    .nav-links { display: none; }
    .page-hero { padding: 56px 1.25rem 52px; }
    .mission-section { padding: 56px 1.25rem; }
    .values-section { padding: 56px 1.25rem; }
    .story-section { padding: 56px 1.25rem; }
    .values-grid { grid-template-columns: 1fr; }
    footer { padding: 36px 1.25rem; }
  }
