    :root, [data-theme="dark"] {
      --bg: #0d0e11;
      --surface: #15171c;
      --card: #1c1f27;
      --accent: #e8c96a;
      --accent2: #5be5c5;
      --text: #f0eeea;
      --muted: #7a7e8a;
      --border: rgba(255,255,255,0.07);
      --inp: rgba(255,255,255,0.06);
      --shadow: 0 8px 32px rgba(0,0,0,0.55);
      --glass: rgba(18,20,28,0.65);
    }
    [data-theme="light"] {
      --bg: #f0ede8;
      --surface: #e8e4de;
      --card: #ffffff;
      --accent: #c9a030;
      --accent2: #2aab8e;
      --text: #1a1a1a;
      --muted: #888888;
      --border: rgba(0,0,0,0.08);
      --inp: rgba(0,0,0,0.05);
      --shadow: 0 8px 32px rgba(0,0,0,0.12);
      --glass: rgba(255,255,255,0.75);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }

    body::before {
      content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    }

    /* NAV */
    nav {
      position: sticky; top: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.2rem 2.5rem;
      background: rgba(13,14,17,.9); backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }
    .logo { text-decoration: none; display: flex; align-items: center; }
    .logo-img { height: 40px; width: auto; display: block; }
    .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
    .nav-links a { text-decoration: none; color: var(--muted); font-size: .88rem; font-weight: 500; transition: color .2s; }
    .nav-links a:hover { color: var(--text); }
    .nav-theme-btn { width:36px;height:36px;border-radius:8px;display:flex;align-items:center;justify-content:center;cursor:pointer;border:none;background:rgba(255,255,255,.06);font-size:1rem;flex-shrink:0;transition:transform .3s;color:var(--text); }
    .nav-theme-btn:hover{transform:rotate(22deg);}
    .nav-cta { background: var(--accent); color: #0d0e11 !important; padding: .5rem 1.2rem; border-radius: 6px; font-weight: 600 !important; }

    /* HERO */
    .hero {
      position: relative; min-height: 92vh;
      display: flex; align-items: center;
      padding: 7rem 2.5rem 5rem;
      overflow: hidden;
    }
    .hero-bg-grid {
      position: absolute; inset: 0;
      background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 60px 60px; opacity: .3; pointer-events: none;
    }
    .glow { position: absolute; border-radius: 50%; pointer-events: none; }
    .g1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(232,201,106,.1) 0%, transparent 65%); top: -200px; right: -150px; }
    .g2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(91,229,197,.08) 0%, transparent 65%); bottom: -100px; left: -80px; }

    .hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: .5rem;
      font-size: .72rem; letter-spacing: 3px; text-transform: uppercase;
      color: var(--accent); font-weight: 600; margin-bottom: 1.5rem;
      animation: fadeUp .6s ease both;
    }
    .hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
    h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 6vw, 5.5rem);
      font-weight: 900; line-height: 1.0; letter-spacing: -2px;
      margin-bottom: 2rem;
      animation: fadeUp .7s .1s ease both;
    }
    h1 em { font-style: italic; color: var(--accent); }
    .hero-desc {
      font-size: 1.1rem; color: var(--muted); line-height: 1.85;
      max-width: 580px; font-weight: 300; margin-bottom: 3rem;
      animation: fadeUp .7s .2s ease both;
    }
    .hero-stats {
      display: flex; gap: 3rem; flex-wrap: wrap;
      animation: fadeUp .7s .3s ease both;
    }
    .hero-stat-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--accent); letter-spacing: -1px; display: block; }
    .hero-stat-label { font-size: .8rem; color: var(--muted); font-weight: 300; letter-spacing: .5px; margin-top: .2rem; }

    /* SCROLL INDICATOR */
    .scroll-hint {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: .5rem;
      color: var(--muted); font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
      animation: fadeUp .8s .6s ease both;
    }
    .scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--accent), transparent); animation: scrollPulse 2s ease-in-out infinite; }
    @keyframes scrollPulse { 0%,100%{opacity:.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

    /* SECTIONS SHARED */
    section { position: relative; z-index: 1; }
    .section-inner { max-width: 1200px; margin: 0 auto; padding: 6rem 2.5rem; }
    .eyebrow { font-size: .72rem; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; margin-bottom: .8rem; }
    .eyebrow.gold { color: var(--accent); }
    .eyebrow.teal { color: var(--accent2); }
    .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; letter-spacing: -.8px; line-height: 1.1; margin-bottom: 1.2rem; }
    .section-sub { color: var(--muted); font-size: .95rem; font-weight: 300; line-height: 1.8; max-width: 520px; }

    /* STORY */
    .story { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .story-text p { color: var(--muted); font-size: .95rem; font-weight: 300; line-height: 1.85; margin-bottom: 1.2rem; }
    .story-text p:last-child { margin-bottom: 0; }
    .story-text p strong { color: var(--text); font-weight: 500; }
    .story-visual { position: relative; }
    .story-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 20px; padding: 2.5rem;
      position: relative; overflow: hidden;
    }
    .story-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent2)); }
    .story-quote {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem; font-style: italic; font-weight: 400;
      line-height: 1.6; color: var(--text); margin-bottom: 1.5rem;
    }
    .story-quote-mark { font-size: 4rem; color: var(--accent); line-height: 0; display: block; margin-bottom: .5rem; font-family: Georgia, serif; }
    .quote-author { display: flex; align-items: center; gap: 1rem; }
    .qa-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(232,201,106,.3); flex-shrink: 0; }
    .qa-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .qa-name { font-size: .88rem; font-weight: 600; }
    .qa-role { font-size: .78rem; color: var(--muted); }
    .floating-badge {
      position: absolute; bottom: -15px; right: -15px;
      background: var(--accent); color: #0d0e11;
      padding: .7rem 1.2rem; border-radius: 10px;
      font-size: .78rem; font-weight: 700; letter-spacing: .3px;
      box-shadow: 0 8px 24px rgba(232,201,106,.3);
    }

    /* MISSION */
    .mission-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .mcard {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 18px; padding: 2rem;
      position: relative; overflow: hidden;
      transition: transform .3s, border-color .3s;
    }
    .mcard:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.14); }
    .mcard-icon { font-size: 2.2rem; margin-bottom: 1.2rem; display: block; }
    .mcard-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: .7rem; }
    .mcard-desc { color: var(--muted); font-size: .88rem; font-weight: 300; line-height: 1.75; }
    .mcard-accent { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent2)); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
    .mcard:hover .mcard-accent { transform: scaleX(1); }

    /* TEAM */
    .team { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .team-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 18px; padding: 1.8rem 1.5rem; text-align: center;
      transition: transform .3s, border-color .3s;
    }
    .team-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.14); }
    .team-avatar {
      width: 80px; height: 80px; border-radius: 50%;
      margin: 0 auto 1.2rem;
      overflow: hidden;
      border: 3px solid rgba(232,201,106,.35);
      box-shadow: 0 4px 18px rgba(0,0,0,.25);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; font-weight: 800;
      font-family: 'Playfair Display', serif;
    }
    .team-avatar img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform .4s;
    }
    .team-card:hover .team-avatar img {
      transform: scale(1.07);
    }
    .team-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
    .team-role { font-size: .78rem; color: var(--accent); font-weight: 500; letter-spacing: .3px; margin-bottom: .7rem; }
    .team-bio { font-size: .82rem; color: var(--muted); font-weight: 300; line-height: 1.6; }

    /* TIMELINE */
    .timeline { margin-top: 3rem; position: relative; }
    .timeline::before { content: ''; position: absolute; left: 120px; top: 0; bottom: 0; width: 1px; background: var(--border); }
    .tl-item { display: flex; gap: 2.5rem; margin-bottom: 2.5rem; align-items: flex-start; }
    .tl-year { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--accent); min-width: 80px; text-align: right; padding-top: .15rem; }
    .tl-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: .3rem; position: relative; z-index: 1; box-shadow: 0 0 0 4px rgba(232,201,106,.15); }
    .tl-content { flex: 1; }
    .tl-title { font-weight: 600; margin-bottom: .3rem; font-size: .95rem; }
    .tl-desc { color: var(--muted); font-size: .88rem; font-weight: 300; line-height: 1.7; }

    /* VALUES */
    .values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 3rem; }
    .value-item {
      display: flex; gap: 1.2rem; align-items: flex-start;
      background: var(--card); border: 1px solid var(--border);
      border-radius: 14px; padding: 1.5rem;
      transition: border-color .3s;
    }
    .value-item:hover { border-color: rgba(232,201,106,.25); }
    .value-icon { font-size: 1.6rem; flex-shrink: 0; }
    .value-title { font-weight: 600; margin-bottom: .3rem; font-size: .95rem; }
    .value-desc { color: var(--muted); font-size: .85rem; font-weight: 300; line-height: 1.65; }

    /* CTA */
    .cta-strip {
      background: linear-gradient(135deg, rgba(232,201,106,.08), rgba(91,229,197,.05));
      border-top: 1px solid rgba(232,201,106,.15);
      border-bottom: 1px solid var(--border);
    }
    .cta-strip-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
    .cta-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; letter-spacing: -.5px; margin-bottom: .5rem; }
    .cta-text p { color: var(--muted); font-size: .92rem; font-weight: 300; }
    .btn-primary { display: inline-flex; align-items: center; gap: .5rem; background: var(--accent); color: #0d0e11; padding: .9rem 1.8rem; border-radius: 8px; font-weight: 700; font-size: .95rem; text-decoration: none; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 20px rgba(232,201,106,.25); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,201,106,.35); }
    .btn-ghost { display: inline-flex; align-items: center; gap: .5rem; border: 1px solid var(--border); color: var(--text); padding: .9rem 1.8rem; border-radius: 8px; font-weight: 500; font-size: .95rem; text-decoration: none; transition: border-color .2s, background .2s; }
    .btn-ghost:hover { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.04); }
    .cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

    /* FOOTER */
    footer { position: relative; z-index: 1; border-top: 1px solid var(--border); padding: 2.5rem; }
    .footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
    .footer-logo { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.15rem; color: var(--accent); }
    .footer-logo span { color: var(--text); }
    .footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
    .footer-links a { text-decoration: none; color: var(--muted); font-size: .83rem; transition: color .2s; }
    .footer-links a:hover { color: var(--text); }
    .footer-copy { color: var(--muted); font-size: .78rem; }

    /* ANIMATIONS */
    @keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
    .reveal { opacity:0; transform:translateY(28px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity:1; transform:translateY(0); }

    /* RESPONSIVE */
    @media (max-width: 1024px) { .story-grid { grid-template-columns: 1fr; gap: 3rem; } .team-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 768px) {
      nav { padding: 1rem 1.5rem; } .nav-links { display: none; }
      .hero { padding: 5rem 1.5rem 4rem; min-height: auto; }
      .section-inner { padding: 4rem 1.5rem; }
      .mission-cards { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .values-grid { grid-template-columns: 1fr; }
      .timeline::before { left: 70px; }
      .tl-year { min-width: 50px; font-size: .85rem; }
      .cta-strip-inner { flex-direction: column; text-align: center; }
      .cta-actions { justify-content: center; }
      .footer-inner { flex-direction: column; text-align: center; }
      .footer-links { justify-content: center; }
    }
    @media (max-width: 480px) {
      .team-grid { grid-template-columns: 1fr; }
      .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
      .hero-stat-num { font-size: 2rem; }
      h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); letter-spacing: -1.5px; }
      .timeline::before { left: 48px; }
      .tl-year { min-width: 38px; font-size: .78rem; }
      .tl-item { gap: 1.2rem; }
      .story-card { padding: 1.5rem; }
      .floating-badge { position: static; margin-top: 1rem; display: inline-block; }
      .cta-strip-inner { padding: 3rem 1.5rem; }
      .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
    }
    @media (max-width: 380px) {
      .section-inner { padding: 3rem 1rem; }
      .hero { padding: 4.5rem 1.2rem 3rem; }
      .hero-stat-num { font-size: 1.8rem; }
      .tl-year { display: none; }
      .timeline::before { display: none; }
      .tl-item { padding-left: 0; }
      .mcard-title, .feat-title { font-size: 1.05rem; }
    }
