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

    :root {
      --bg: #09111b;
      --bg-2: #0d1724;
      --panel: rgba(255, 255, 255, 0.06);
      --text: #f5f7fb;
      --muted: rgba(245, 247, 251, 0.75);
      --gold: #f4b544;
      --cyan: #5ed6ff;
      --line: rgba(255, 255, 255, 0.12);
      --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top, rgba(94,214,255,0.12), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(244,181,68,0.1), transparent 28%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
      line-height: 1.5;
    }

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

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

    .container {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 30;
      padding: 16px 0;
      backdrop-filter: blur(10px);
      background: rgba(9, 17, 27, 0.55);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 14px 18px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(9, 17, 27, 0.75);
      box-shadow: var(--shadow);
      flex-wrap: wrap;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      overflow: hidden;
    }

    .brand img {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid var(--line);
      object-fit: cover;
      transform: scale(1.3);
      flex-shrink: 0;
    }

    .brand strong {
      font-size: 0.96rem;
      letter-spacing: 0.08em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 20px;
      color: var(--muted);
      flex-wrap: wrap;
      justify-content: center;
    }

    .nav-links a:hover {
      color: #fff;
    }

    .button,
    .button-light {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 14px;
      font-weight: 700;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }

    .button:hover,
    .button-light:hover {
      transform: translateY(-1px);
    }

    .button {
      background: linear-gradient(135deg, var(--gold), #ff8b38);
      color: #0a0f18;
      box-shadow: 0 16px 30px rgba(244, 181, 68, 0.22);
    }

    .button-light {
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      border: 1px solid var(--line);
    }

    .gradient-text {
      background: linear-gradient(90deg, #a855f7, #3b82f6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      text-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
    }

    .hero {
      padding: 34px 0 70px;
    }

    .hero-card {
      position: relative;
      min-height: 640px;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: var(--shadow);
      background:
        linear-gradient(180deg, rgba(5, 10, 18, 0.12) 0%, rgba(5, 10, 18, 0.88) 100%),
        radial-gradient(circle at center, rgba(94,214,255,0.08), transparent 35%),
        linear-gradient(160deg, #102033 0%, #0b1522 55%, #09111b 100%);
      border: 1px solid var(--line);
      color: #fff;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      align-items: stretch;
    }

    .hero-copy {
      padding: 82px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      z-index: 1;
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 16px;
      color: var(--cyan);
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .hero h1 {
      font-size: clamp(3.2rem, 8vw, 7rem);
      line-height: 0.9;
      margin-bottom: 20px;
      max-width: 900px;
    }

    .hero p {
      max-width: 760px;
      margin-bottom: 28px;
      font-size: clamp(1rem, 2vw, 1.15rem);
      color: var(--muted);
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 4px;
    }

    .hero-side {
      position: relative;
      padding: 26px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02)),
        radial-gradient(circle at 50% 30%, rgba(244,181,68,0.16), transparent 30%);
    }

    .hero-logo-card {
      width: 100%;
      max-width: 360px;
      padding: 28px;
      border-radius: 24px;
      background: rgba(255,255,255,0.06);
      border: 1px solid var(--line);
      backdrop-filter: blur(12px);
    }

    .hero-logo-card img {
      width: 100%;
      object-fit: contain;
      filter: drop-shadow(0 16px 30px rgba(0,0,0,0.28));
    }

    .hero-mini-stats {
      margin-top: 18px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .mini-stat {
      padding: 14px;
      border-radius: 16px;
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--line);
    }

    .mini-stat strong {
      display: block;
      font-size: 1.2rem;
      margin-bottom: 4px;
      color: #fff;
    }

    .mini-stat span {
      color: var(--muted);
      font-size: 0.92rem;
    }

    .section {
      padding: 18px 0 78px;
    }

    .section-title {
      text-align: left;
      font-size: clamp(2rem, 4vw, 3.2rem);
      margin-bottom: 14px;
      line-height: 1.03;
    }

    .section-text {
      color: var(--muted);
      max-width: 760px;
      margin-bottom: 30px;
      font-size: 1.04rem;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 18px;
      align-items: stretch;
    }

    .team-card,
    .stat-card {
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 24px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
    }

    .team-card {
      text-align: center;
      padding: 22px 18px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 280px;
    }

    .avatar {
      width: 110px;
      height: 110px;
      margin: 0 auto 16px;
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(94,214,255,0.16), rgba(255,255,255,0.06));
      border: 1px solid var(--line);
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .team-card h3 {
      font-size: 1.25rem;
      margin-bottom: 6px;
    }

    .role {
      color: var(--cyan);
      font-weight: 700;
      margin-bottom: 10px;
    }

    .handle {
      color: rgba(245,247,251,0.56);
      font-size: 0.95rem;
    }

    .feature-banner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .feature-media,
    .feature-copy {
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
      min-height: 380px;
    }

    .feature-media {
      background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.18)),
        linear-gradient(140deg, rgba(94,214,255,0.18), rgba(244,181,68,0.1)),
        #101c2a;
      display: grid;
      place-items: center;
      padding: 36px;
    }

    .feature-media img {
      max-width: 78%;
      object-fit: contain;
    }

    .feature-copy {
      padding: 46px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 18px;
      background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    }

    .feature-copy h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.04;
    }

    .feature-copy p {
      font-size: 1.08rem;
      color: var(--muted);
      max-width: 540px;
    }

    .stats-grid {
      margin-top: 34px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .stat-card {
      padding: 24px 20px;
      text-align: left;
    }

    .stat-number {
      display: block;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--gold);
      font-weight: 800;
      margin-bottom: 8px;
    }

    .stat-label {
      color: var(--muted);
      font-size: 1rem;
    }

    .live-dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      background-color: #22c55e;
      border-radius: 50%;
      margin-right: 6px;
      box-shadow: 0 0 10px #22c55e;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.15); }
      100% { opacity: 1; transform: scale(1); }
    }

    footer {
      padding: 0 0 28px;
    }

    .footer-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--line);
      border-radius: 22px;
      box-shadow: var(--shadow);
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
      padding: 20px 24px;
      color: var(--muted);
      flex-wrap: wrap;
    }

    @media (max-width: 1080px) {
      .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 900px) {
      .hero-card,
      .feature-banner {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        padding: 58px 28px 20px;
      }

      .hero-side {
        padding-top: 0;
      }
    }

    @media (max-width: 860px) {
      .nav-wrap {
        position: static;
      }

      .nav {
        border-radius: 20px;
        justify-content: center;
      }
    }

    @media (max-width: 640px) {
      .stats-grid,
      .hero-mini-stats {
        grid-template-columns: 1fr;
      }

      .nav-links {
        width: 100%;
        justify-content: center;
      }

      .hero h1 {
        font-size: 2.9rem;
      }

      .hero-card,
      .feature-media,
      .feature-copy {
        border-radius: 22px;
      }
    }

    .team-section-actions {
      margin-top: 26px;
      display: flex;
      justify-content: flex-start;
    }

    .team-page-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .back-link {
      color: var(--muted);
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 14px;
    }

    .back-link:hover {
      color: #fff;
    }

    .team-group {
      margin-bottom: 46px;
    }

    .team-group:last-child {
      margin-bottom: 0;
    }

    .team-group-title {
      font-size: clamp(1.3rem, 2.4vw, 1.7rem);
      margin-bottom: 18px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--line);
      color: #fff;
    }
