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

  :root {
    --red: #e82b2b;
    --red-dark: #c41e1e;
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-text: #555;
    --gray-border: #e0e0e0;
    --font-main: 'Manrope', sans-serif;
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--font-main); background: var(--white); color: var(--black); overflow-x: hidden; }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,10,10,0.95); backdrop-filter: blur(12px);
    padding: 0 48px; height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.06); transition: background 0.3s;
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo img { height: 48px; width: 48px; border-radius: 8px; object-fit: contain; flex-shrink: 0; }
  .nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
  .nav-logo-name { color: #ffffff; font-size: 15px; font-weight: 800; letter-spacing: 0.5px; font-family: 'Manrope', sans-serif; }
  .nav-logo-tag { color: rgba(255,255,255,0.45); font-size: 10px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; }
  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover { color: #fff; }
  .nav-links a.active { color: var(--red); }
  .nav-actions { display: flex; align-items: center; gap: 12px; }
  .btn-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--red); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; }
  .btn-icon:hover { background: var(--red-dark); transform: scale(1.05); }
  .btn-icon svg { width: 16px; height: 16px; stroke: #fff; }
  .btn-discuss { background: var(--red); color: #fff; border: none; padding: 12px 26px; border-radius: 50px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; cursor: pointer; transition: background 0.2s, transform 0.2s; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; }
  .btn-discuss:hover { background: var(--red-dark); transform: translateY(-1px); }

  /* ===== HAMBURGER ===== */
  .hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; background: transparent; border: 1.5px solid rgba(255,255,255,0.2); border-radius: 8px; cursor: pointer; padding: 0; transition: border-color 0.2s; flex-shrink: 0; z-index: 1100; position: relative; }
  .hamburger:hover { border-color: var(--red); }
  .hamburger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s ease; transform-origin: center; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ===== MOBILE BACKDROP ===== */
  .mobile-menu-backdrop { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 1050; opacity: 0; transition: opacity 0.3s ease; }
  .mobile-menu-backdrop.open { display: block; opacity: 1; }

  /* ===== MOBILE DRAWER ===== */
  .mobile-menu {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 85%; max-width: 320px;
    background: #ffffff; z-index: 1100;
    display: flex; flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 48px rgba(0,0,0,0.18);
    overflow-y: auto; overflow-x: hidden;
    height: 100%; min-height: 100vh; min-height: -webkit-fill-available;
  }
  .mobile-menu.open { transform: translateX(0); }

  .mobile-drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px; border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0; background: #fff;
  }
  .mobile-drawer-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
  .mobile-drawer-logo img { height: 32px; width: 32px; border-radius: 6px; object-fit: contain; }
  .mobile-drawer-logo-name { color: #111; font-size: 12px; font-weight: 800; }
  .mobile-drawer-close { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid #ddd; background: #f5f5f5; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; }
  .mobile-drawer-close:hover { border-color: var(--red); background: #fff0f0; }
  .mobile-drawer-close svg { width: 12px; height: 12px; stroke: #555; }

  .mobile-nav-links { list-style: none; display: block; padding: 0; margin: 0; flex: 1; width: 100%; }
  .mobile-nav-links li { display: block; width: 100%; border-bottom: 1px solid #f2f2f2; }
  .mobile-nav-links li a { display: flex; align-items: center; justify-content: space-between; color: #1a1a1a; text-decoration: none; font-size: 14px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; padding: 16px 16px; width: 100%; transition: color 0.2s, background 0.2s; }
  .mobile-nav-links li a:hover, .mobile-nav-links li a:active { color: var(--red); background: #fff5f5; }
  .mn-plus { width: 28px; height: 28px; border-radius: 6px; border: 1.5px solid #e0e0e0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: #f7f7f7; transition: all 0.2s; font-size: 18px; font-weight: 300; color: #555; line-height: 1; }
  .mobile-nav-links li a:hover .mn-plus, .mobile-nav-links li a:active .mn-plus { border-color: var(--red); background: var(--red); color: #fff; }

  .mobile-menu-footer { padding: 16px; border-top: 1px solid #f0f0f0; display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; background: #fff; }
  .mobile-contact-btn { background: var(--red); color: #fff; text-decoration: none; padding: 14px 20px; border-radius: 50px; font-size: 13px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; text-align: center; display: block; transition: background 0.2s; }
  .mobile-contact-btn:hover { background: var(--red-dark); }
  .mobile-contact-info { display: flex; flex-direction: column; gap: 2px; margin-top: 4px; }
  .mobile-contact-info a { color: #666; font-size: 13px; font-weight: 500; text-decoration: none; display: flex; align-items: center; gap: 10px; transition: color 0.2s, background 0.2s; padding: 9px 8px; border-radius: 8px; }
  .mobile-contact-info a:hover { color: var(--red); background: #fff5f5; }
  .mobile-contact-info a svg { width: 15px; height: 15px; flex-shrink: 0; stroke: #999; }

  /* ─── PAGE HERO ─── */
  .page-hero {
    background: #0a0a0a; padding: 140px 48px 90px;
    position: relative; overflow: hidden; text-align: center;
  }
  .page-hero::before {
    content: ''; position: absolute; top: -100px; left: 50%;
    transform: translateX(-50%); width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,43,43,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .page-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,43,43,0.12); border: 1px solid rgba(232,43,43,0.3); border-radius: 50px; padding: 8px 18px; margin-bottom: 28px; animation: fadeUp 0.6s ease both; }
  .badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #e82b2b; animation: pulseDot 2s ease-in-out infinite; }
  .badge-text { color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; }
  .page-hero h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; color: #fff; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 20px; animation: fadeUp 0.7s 0.1s ease both; opacity: 0; }
  .page-hero h1 span { color: var(--red); }
  .page-hero p { color: rgba(255,255,255,0.6); font-size: 17px; max-width: 600px; margin: 0 auto; line-height: 1.75; animation: fadeUp 0.7s 0.25s ease both; opacity: 0; }
  .hero-line { width: 60px; height: 3px; background: var(--red); border-radius: 2px; margin: 28px auto 0; animation: fadeUp 0.7s 0.35s ease both; opacity: 0; }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes pulseDot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.5); } }

  /* ─── LEADERSHIP ─── */
  .leadership { background: #fff; padding: 96px 48px; }
  .section-label { color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
  .section-title { font-size: clamp(28px, 3.5vw, 48px); font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 20px; }

  .ceo-card { display: grid; grid-template-columns: 420px 1fr; gap: 0; background: #0a0a0a; border-radius: 24px; overflow: hidden; margin-top: 52px; position: relative; }
  .ceo-visual { position: relative; background: linear-gradient(135deg, #111 0%, #1a0505 50%, #0a0a0a 100%); display: flex; align-items: center; justify-content: center; min-height: 480px; overflow: hidden; }
  .ceo-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 60% 40%, rgba(232,43,43,0.18) 0%, transparent 65%); }
  .ceo-avatar-ring { width: 220px; height: 220px; border-radius: 50%; border: 2px solid rgba(232,43,43,0.3); display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; animation: ringPulse 3s ease-in-out infinite; }
  .ceo-avatar-ring::before { content: ''; position: absolute; width: 260px; height: 260px; border-radius: 50%; border: 1px solid rgba(232,43,43,0.12); }
  .ceo-avatar-ring::after { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(232,43,43,0.06); }
  @keyframes ringPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(232,43,43,0.15); } 50% { box-shadow: 0 0 0 20px rgba(232,43,43,0); } }
  .ceo-initials { width: 190px; height: 190px; border-radius: 50%; background: linear-gradient(135deg, #1a0505, #2d0a0a); border: 3px solid rgba(232,43,43,0.4); display: flex; align-items: center; justify-content: center; font-size: 64px; font-weight: 800; color: #fff; letter-spacing: -2px; position: relative; }
  .ceo-initials span { background: linear-gradient(135deg, #fff 40%, #e82b2b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
  .ceo-badge-float { position: absolute; bottom: 36px; right: 28px; background: var(--red); color: #fff; font-size: 12px; font-weight: 700; padding: 8px 16px; border-radius: 50px; letter-spacing: 0.5px; z-index: 3; }
  .ceo-info { padding: 56px 60px; display: flex; flex-direction: column; justify-content: center; }
  .ceo-role-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,43,43,0.12); border: 1px solid rgba(232,43,43,0.25); border-radius: 50px; padding: 6px 16px; color: #e82b2b; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; width: fit-content; }
  .ceo-name { font-size: 48px; font-weight: 800; color: #fff; letter-spacing: -1px; line-height: 1.05; margin-bottom: 8px; }
  .ceo-title { color: rgba(255,255,255,0.5); font-size: 16px; font-weight: 500; margin-bottom: 32px; }
  .ceo-bio { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.8; margin-bottom: 36px; }
  .ceo-stats { display: flex; gap: 40px; margin-bottom: 40px; padding: 24px 28px; background: rgba(255,255,255,0.05); border-radius: 14px; border: 1px solid rgba(255,255,255,0.08); }
  .ceo-stat-num { font-size: 32px; font-weight: 800; color: #fff; letter-spacing: -1px; line-height: 1; }
  .ceo-stat-num span { color: var(--red); }
  .ceo-stat-label { color: rgba(255,255,255,0.5); font-size: 13px; margin-top: 4px; }
  .ceo-expertise { display: flex; flex-wrap: wrap; gap: 10px; }
  .expertise-tag { border: 1px solid rgba(255,255,255,0.15); border-radius: 50px; padding: 6px 16px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); transition: all 0.2s; }
  .expertise-tag:hover { border-color: var(--red); color: var(--red); }

  /* ─── JOIN SECTION ─── */
  .join-section { background: var(--gray-light); padding: 96px 48px; }
  .join-inner { background: #0a0a0a; border-radius: 24px; padding: 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; overflow: hidden; }
  .join-inner::before { content: ''; position: absolute; top: -120px; right: -120px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(232,43,43,0.08) 0%, transparent 70%); }
  .join-left { position: relative; z-index: 1; }
  .join-left .section-label { color: var(--red); margin-bottom: 16px; }
  .join-left h2 { font-size: clamp(28px, 3vw, 44px); font-weight: 800; color: #fff; letter-spacing: -0.5px; line-height: 1.15; margin-bottom: 20px; }
  .join-left p { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.75; margin-bottom: 36px; }
  .join-btn { display: inline-flex; align-items: center; gap: 0; }
  .join-icon-btn { width: 52px; height: 52px; border-radius: 50%; background: var(--red); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; margin-right: -6px; z-index: 1; }
  .join-icon-btn svg { width: 18px; height: 18px; stroke: #fff; }
  .join-main-btn { background: var(--red); color: #fff; border: none; padding: 16px 36px 16px 44px; border-radius: 50px; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: background 0.2s; }
  .join-main-btn:hover { background: var(--red-dark); }
  .join-right { position: relative; z-index: 1; }
  .join-perks { display: flex; flex-direction: column; gap: 20px; }
  .join-perk { display: flex; align-items: flex-start; gap: 18px; }
  .perk-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
  .perk-icon-1 { background: rgba(232,43,43,0.15); }
  .perk-icon-2 { background: rgba(99,102,241,0.15); }
  .perk-icon-3 { background: rgba(16,185,129,0.15); }
  .perk-icon-4 { background: rgba(245,158,11,0.15); }
  .perk-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
  .perk-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

  /* ─── FOOTER ─── */
  .site-footer { background: #0a0a0a; color: rgba(255,255,255,0.7); padding: 70px 48px 0; }
  .footer-top-band { display: flex; align-items: flex-start; gap: 60px; margin-bottom: 60px; }
  .footer-brand-col { max-width: 360px; }
  .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
  .footer-logo-text h3 { color: #fff; font-size: 20px; font-weight: 800; }
  .footer-logo-text span { color: #666; font-size: 12px; }
  .footer-brand-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); }
  .footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; flex: 1; }
  .footer-col-title { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 18px; position: relative; padding-bottom: 12px; }
  .footer-col-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--red); }
  .footer-links { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
  .footer-links li a { color: rgba(255,255,255,0.5); font-size: 13px; text-decoration: none; transition: color 0.2s; }
  .footer-links li a:hover { color: #fff; }
  .footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; align-items: center; justify-content: center; }
  .footer-bottom-bar p { color: rgba(255,255,255,0.35); font-size: 13px; }

  /* ─── SCROLL REVEAL ─── */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.15s; }
  .reveal-delay-2 { transition-delay: 0.3s; }
  .scroll-up { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(232,43,43,0.5); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 999; transition: all 0.2s; opacity: 0; pointer-events: none; }
  .scroll-up.show { opacity: 1; pointer-events: auto; }
  .scroll-up:hover { background: var(--red); border-color: var(--red); }
  .scroll-up svg { width: 18px; height: 18px; stroke: var(--red); transition: stroke 0.2s; }
  .scroll-up:hover svg { stroke: #fff; }

  /* ─── RESPONSIVE ─── */
  @media(max-width: 1024px) {
    nav { padding: 0 24px; }
    .page-hero, .leadership, .join-section { padding-left: 24px; padding-right: 24px; }
    .ceo-card { grid-template-columns: 340px 1fr; }
    .ceo-info { padding: 40px; }
    .ceo-name { font-size: 38px; }
    .join-inner { padding: 52px; gap: 48px; }
  }
  @media(max-width: 768px) {
    nav { padding: 0 16px; height: 60px; }
    .nav-links { display: none; }
    .nav-logo img { height: 36px; width: 36px; }
    .nav-logo { gap: 8px; }
    .nav-logo-name { font-size: 12px; }
    .nav-logo-tag { display: none; }
    .btn-icon { display: none; }
    .btn-discuss { display: none; }
    .hamburger { display: flex; }
    .ceo-card { grid-template-columns: 1fr; }
    .ceo-visual { min-height: 300px; }
    .ceo-info { padding: 36px 28px; }
    .ceo-name { font-size: 32px; }
    .ceo-stats { gap: 24px; flex-wrap: wrap; }
    .join-inner { grid-template-columns: 1fr; padding: 36px 28px; }
    .footer-top-band { flex-direction: column; }
    .footer-cols { grid-template-columns: 1fr; }
    .page-hero { padding: 100px 16px 60px; }
  }
