/* ===== Design System & Theme ===== */
    :root {
      --bg-color: #EAEDF0;
      --text-color: #1d1d1f;
      --text-muted: #86868b;
      --glass-bg: rgba(255,255,255,0.4);
      --glass-border: rgba(0,0,0,0.08);
      --section-border: rgba(0,0,0,0.06);
      --accent-color: #0071e3; /* Apple Blue */
      --page-pd: clamp(24px,6vw,100px);
      --transition-base: all 0.8s cubic-bezier(0.16,1,0.3,1);
    }
    body[data-color="dark"] {
      --bg-color: #09090b;
      --text-color: #f5f5f7;
      --text-muted: #86868b;
      --glass-bg: rgba(255,255,255,0.03);
      --glass-border: rgba(255,255,255,0.08);
      --section-border: rgba(255,255,255,0.08);
      --accent-color: #a855f7; /* Royal Purple */
    }

    * { box-sizing:border-box; margin:0; padding:0; cursor:none !important; user-select:none; -webkit-user-select:none; }

    html {
      font-size:16px; scroll-behavior:smooth; scroll-padding-top:70px;
      scrollbar-width:none; -ms-overflow-style:none; overflow-x:clip;
    }
    html::-webkit-scrollbar { display:none; }
    html.lenis { height:auto; }
    .lenis.lenis-smooth { scroll-behavior:auto !important; }
    .lenis.lenis-stopped { overflow:hidden; }

    body {
      background-color:var(--bg-color);
      color:var(--text-color);
      font-family:'Inter',-apple-system,system-ui,sans-serif;
      overflow-x:clip;
      transition:background-color 0.8s cubic-bezier(0.16,1,0.3,1),color 0.5s ease;
      -webkit-font-smoothing:antialiased;
    }

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

    /* ===== Custom Cursor ===== */
    .custom-cursor {
      position:fixed; top:0; left:0; width:14px; height:14px;
      border-radius:50%; background-color:var(--text-color);
      pointer-events:none; z-index:999999; transform:translate(-50%,-50%);
      opacity:0; transition:transform 0.2s ease,opacity 0.2s ease,background-color 0.3s;
    }
    .custom-cursor.visible { opacity:1; }
    .custom-cursor.hover {
      transform:translate(-50%,-50%) scale(3.5);
      border:1px solid var(--text-color);
      backdrop-filter:invert(1) grayscale(1);
    }

    @media (max-width: 991px) {
      .custom-cursor {
        display: none !important;
      }
      * {
        cursor: auto !important;
      }
      a, button, [role="button"], select, option, .mobile-menu-btn {
        cursor: pointer !important;
      }
    }

    /* ===== Page Loader ===== */
    #intellihome-loader {
      position:fixed; inset:0; z-index:99999;
      background:#EAEDF0;
      transition:transform 0.85s cubic-bezier(0.76,0,0.24,1);
    }
    body[data-color="dark"] #intellihome-loader { background:#09090b; }
    #intellihome-loader.slide-up { transform:translateY(-100%); }

    /* ===== Navbar ===== */
    nav {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translate3d(-50%, 0, 0);
      width: calc(100% - 40px);
      max-width: 1000px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 100;
      background-color: rgba(255, 255, 255, 0.75);
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 9999px;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    body[data-color="dark"] nav {
      background-color: rgba(9, 9, 11, 0.75);
      border-color: rgba(255, 255, 255, 0.08);
    }
    nav.scrolled {
      top: 12px;
      height: 52px;
      background-color: rgba(255, 255, 255, 0.85);
      border-color: rgba(0, 0, 0, 0.12);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    }
    body[data-color="dark"] nav.scrolled {
      background-color: rgba(9, 9, 11, 0.85);
      border-color: rgba(255, 255, 255, 0.12);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }
    nav.nav-hidden {
      transform: translate3d(-50%, -100px, 0) !important;
      opacity: 0 !important;
      pointer-events: none;
    }
    .nav-container {
      width: 100%;
      height: 100%;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-brand {
      display:flex; align-items:center; gap:10px; text-decoration:none;
      color:var(--text-color); font-family:'Outfit',sans-serif;
      font-size:20px; font-weight:500; letter-spacing:-0.02em;
    }
    .nav-links { display:flex; align-items:center; gap:28px; }
    .nav-links a {
      font-size:13px; font-weight:500; color:var(--text-muted);
      text-decoration:none; transition:color 0.3s;
    }
    .nav-links a:hover, .nav-links a.active { color:var(--text-color); }
    .nav-contact { color:var(--accent-color) !important; }
    .custom-theme-toggle {
      background:transparent; border:none; color:var(--text-muted);
      font-family:'Inter',sans-serif; font-size:13px; font-weight:500;
      padding:0; cursor:pointer; transition:color 0.3s;
    }
    .custom-theme-toggle:hover {
      color:var(--text-color); background-color:transparent;
    }
    .mobile-menu-btn {
      display:none; background:transparent; border:none; color:var(--text-muted);
      font-family:'Inter',sans-serif; font-size:13px; font-weight:500;
      padding:0; cursor:pointer; z-index:10001; transition:color 0.3s;
    }
    .mobile-menu-btn:hover {
      color:var(--text-color);
    }
    @media(max-width:850px) {
      .nav-links { display:none; }
      .mobile-menu-btn { display:block; }
    }

    /* Mobile Menu Overlay */
    .mobile-nav-overlay {
      position:fixed; inset:0; width:100%; height:100vh;
      background-color:var(--bg-color); z-index:99;
      display:flex; flex-direction:column; justify-content:center;
      padding:0 var(--page-pd); opacity:0; pointer-events:none;
      transition:opacity 0.5s ease;
    }
    body.menu-open .mobile-nav-overlay { opacity:1; pointer-events:auto; }
    .mobile-nav-links { display:flex; flex-direction:column; gap:24px; }
    .mobile-nav-links a {
      font-family:'Outfit',sans-serif; font-size:28px; font-weight:600;
      color:var(--text-color); text-decoration:none;
    }
    .mobile-nav-links a:hover { color:var(--accent-color); }

    /* ===== Editorial Main Content ===== */
    .about-main {
      padding: 140px var(--page-pd) 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .about-container {
      width: 100%;
      max-width: 900px;
      display: flex;
      flex-direction: column;
      gap: 72px;
    }

    /* Hero Header */
    .about-hero {
      display: flex;
      flex-direction: column;
      gap: 20px;
      opacity: 0;
      transform: translateY(24px);
      animation: revealAbout 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
    }
    .about-eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--text-muted);
    }
    .about-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(38px, 6vw, 68px);
      font-weight: 800; line-height: 1.02; letter-spacing: -0.04em;
      color: var(--text-color);
    }
    .about-lead {
      font-size: clamp(18px, 2.5vw, 22px);
      font-weight: 400; line-height: 1.45;
      color: var(--text-muted);
      margin-top: 10px;
    }

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

    /* Philosophy / Manifesto Cards */
    .about-section {
      display: flex;
      flex-direction: column;
      gap: 24px;
      opacity: 0;
      transform: translateY(24px);
      animation: revealAbout 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    }
    .section-title {
      font-family: 'Outfit', sans-serif;
      font-size: 24px; font-weight: 700; letter-spacing: -0.02em;
      color: var(--text-color);
      border-bottom: 1px solid var(--section-border);
      padding-bottom: 12px;
    }
    .philosophy-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      margin-top: 12px;
    }
    @media (min-width: 650px) {
      .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .philosophy-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-radius: 24px;
      padding: 28px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.02);
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .card-num {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px; font-weight: 600; color: var(--accent-color);
    }
    .card-head {
      font-family: 'Outfit', sans-serif;
      font-size: 18px; font-weight: 600; color: var(--text-color);
      letter-spacing: -0.01em;
    }
    .card-body {
      font-size: 14px; line-height: 1.55; color: var(--text-muted);
    }

    /* Founders Section Layout - Split row style */
    .founders-section-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      opacity: 0;
      transform: translateY(24px);
      animation: revealAbout 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    }
    @media (min-width: 800px) {
      .founders-section-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 0;
      }
    }

    .founders-premium-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(28px) saturate(180%);
      -webkit-backdrop-filter: blur(28px) saturate(180%);
      border-radius: 44px;
      padding: 40px 24px;
      box-shadow: 
        0 40px 80px rgba(0,0,0,0.03),
        inset 0 1px 0 rgba(255,255,255,0.4);
      display: flex;
      flex-direction: column;
      gap: 20px;
      flex-grow: 1;
      width: 100%;
    }
    @media (min-width: 800px) {
      .founders-premium-card {
        padding: 48px;
      }
    }
    body[data-color="dark"] .founders-premium-card {
      box-shadow: 0 40px 80px rgba(0,0,0,0.45);
    }
    .founders-card-body {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .founders-eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .founders-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(24px, 4vw, 36px);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: var(--text-color);
    }
    .founders-text {
      font-size: 15px;
      line-height: 1.65;
      color: var(--text-muted);
    }
    .founders-text strong {
      color: var(--text-color);
      font-weight: 600;
    }

    /* Nagpur Roots Section */
    .roots-box {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 28px;
      padding: 40px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      opacity: 0;
      transform: translateY(24px);
      animation: revealAbout 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
    }
    .roots-city {
      font-family: 'Outfit', sans-serif;
      font-size: 32px; font-weight: 800; letter-spacing: -0.03em;
      color: var(--text-color);
    }
    .roots-text {
      font-size: 15px; line-height: 1.6; color: var(--text-muted);
    }
    .roots-highlight {
      font-weight: 600; color: var(--text-color);
    }

    /* Call To Action Row */
    .about-cta-row {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      text-align: center;
      margin-top: 20px;
      opacity: 0;
      transform: translateY(24px);
      animation: revealAbout 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
    }
    .cta-heading {
      font-family: 'Outfit', sans-serif;
      font-size: 28px; font-weight: 700; letter-spacing: -0.02em;
      color: var(--text-color);
    }
    .glass-pill-btn {
      display: inline-block;
      padding: 14px 36px;
      font-size: 14px; font-weight: 600;
      font-family: inherit;
      color: var(--text-color);
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 30px;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0,0,0,0.03);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    }
    .glass-pill-btn:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,0.6);
      box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    }
    body[data-color="dark"] .glass-pill-btn:hover {
      background: rgba(255,255,255,0.08);
      box-shadow: 0 10px 24px rgba(255, 255, 255, 0.05);
    }

    /* ===== Footer ===== */
    footer {
      border-top:1px solid var(--section-border);
      padding:60px var(--page-pd) 40px; color:var(--text-color);
      display:flex; align-items:center; justify-content:center;
      width: 100%;
    }
    .footer-container {
      width:100%; max-width:1200px; display:flex;
      flex-direction:column; align-items:center; gap:24px;
    }
    .footer-logo {
      font-family:'Outfit',sans-serif; font-size:20px;
      font-weight:500; color:var(--text-color);
    }
    .footer-credits {
      font-size:12px; color:var(--text-muted); text-align:center;
      border-top:1px solid var(--section-border); padding-top:20px; width:100%;
    }
    .footer-credits a { color:var(--accent-color); text-decoration:none; font-weight:500; }

    /* ===== Founders Profile Grid & Cards (Mock Middle Card Style) ===== */
    .founders-profiles-section {
      display: flex;
      flex-direction: column;
      gap: 24px;
      opacity: 0;
      transform: translateY(24px);
      animation: revealAbout 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    }
    .founders-profiles-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      margin-top: 12px;
    }
    @media (min-width: 650px) {
      .founders-profiles-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    .profile-card {
      position: relative;
      width: 100%;
      min-height: 480px;
      border-radius: 32px;
      background: rgba(255, 255, 255, 0.45);
      border: 1px solid rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
      padding: 36px 24px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 20px;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .profile-card:hover {
      transform: translateY(-4px);
    }
    body[data-color="dark"] .profile-card {
      background: rgba(20, 20, 25, 0.4);
      border-color: rgba(255, 255, 255, 0.08);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }
    .profile-card-image {
      width: 160px;
      height: 160px;
      object-fit: cover;
      border-radius: 50%;
      border: 4px solid var(--glass-border);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
      display: block;
      transition: transform 0.4s ease;
    }
    .profile-card:hover .profile-card-image {
      transform: scale(1.03);
    }
    .profile-card-overlay {
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: center;
      margin-top: auto;
    }
    body[data-color="dark"] .profile-card-overlay {
      background: transparent;
      border-color: transparent;
    }
    .profile-card-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }
    .profile-name {
      font-family: 'Outfit', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: #1d1d1f;
      letter-spacing: -0.01em;
    }
    body[data-color="dark"] .profile-name {
      color: #f5f5f7;
    }
    .verified-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #10b981;
    }
    .verified-badge svg {
      width: 16px;
      height: 16px;
    }
    .profile-title {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-color);
      margin-bottom: 2px;
      text-align: center;
    }
    .profile-bio {
      font-size: 12px;
      line-height: 1.45;
      color: var(--text-muted);
      margin-bottom: 12px;
      text-align: center;
    }
    .profile-card-footer {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin-top: auto;
    }
    .profile-stats {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .stat-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 500;
      color: var(--text-color);
    }
    .stat-icon {
      width: 14px;
      height: 14px;
      color: var(--text-muted);
    }
    .follow-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 16px;
      font-size: 12px;
      font-weight: 600;
      color: #1d1d1f !important;
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 20px;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
      transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s;
    }
    body[data-color="dark"] .follow-btn {
      background: #f5f5f7;
      color: #1d1d1f !important;
      border-color: transparent;
    }
    .follow-btn:hover {
      transform: scale(1.05);
      background-color: #f5f5f7;
    }
    body[data-color="dark"] .follow-btn:hover {
      background-color: #ffffff;
    }