:root {
    --black: #020305;
    --dark: #060810;
    --dark2: #0a0d14;
    --dark3: #0f1320;
    --cyan: #00e5ff;
    --cyan-dim: #00b8d4;
    --cyan-glow: rgba(0, 229, 255, 0.15);
    --cyan-glow2: rgba(0, 229, 255, 0.05);
    --purple: #7c3aed;
    --purple-dim: #5b21b6;
    --purple-glow: rgba(124, 58, 237, 0.2);
    --red: #ff003c;
    --red-glow: rgba(255, 0, 60, 0.2);
    --text: #c8d0e0;
    --text-dim: #6b7a99;
    --text-bright: #e8ecf5;
    --border: rgba(0, 229, 255, 0.1);
    --border-bright: rgba(0, 229, 255, 0.3);
    --glass: rgba(6, 8, 16, 0.7);
    --glass2: rgba(10, 13, 20, 0.8);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    width: 8px; height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    box-shadow: 0 0 12px var(--cyan), 0 0 24px var(--cyan);
  }
  .cursor-ring {
    width: 32px; height: 32px;
    border: 1px solid rgba(0, 229, 255, 0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.2s ease;
    transform: translate(-50%, -50%);
  }

  /* SCROLLBAR */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--dark); }
  ::-webkit-scrollbar-thumb { background: var(--cyan-dim); border-radius: 2px; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(2,3,5,0.95) 0%, transparent 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,229,255,0.05);
  }

  .nav-logo {
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    font-weight: 900;
    color: var(--text-bright);
    letter-spacing: 4px;
    text-decoration: none;
    text-shadow: 0 0 20px var(--text-bright);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo-mark {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(254, 255, 255, 0.35));
  }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: var(--text-dim);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--cyan);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .nav-links a:hover { color: var(--cyan); }
  .nav-links a:hover::after { transform: scaleX(1); }

  /* GRID BACKGROUND */
  .grid-bg {
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,229,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,229,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
  }

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

  /* SECTIONS */
  section { position: relative; z-index: 1; }

  /* ===================== HERO ===================== */
  #hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero-shader {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.35;
  }

  .hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at center, transparent 20%, rgba(2,3,5,0.7) 60%, rgba(2,3,5,0.95) 100%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    letter-spacing: 8px;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
  }

  .hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(64px, 12vw, 140px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 0.9;
    text-transform: uppercase;
    position: relative;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
  }

  /* GLITCH EFFECT */
  .glitch {
    position: relative;
    display: inline-block;
  }

  .glitch::before,
  .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
  }

  .glitch::before {
    color: var(--cyan);
    animation: glitch-1 3.5s infinite linear;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    text-shadow: 2px 0 var(--red);
  }

  .glitch::after {
    color: var(--purple);
    animation: glitch-2 3.5s infinite linear;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    text-shadow: -2px 0 var(--cyan);
  }

  @keyframes glitch-1 {
    0%, 90%, 100% { transform: translate(0); opacity: 0; }
    91% { transform: translate(-3px, 1px); opacity: 1; }
    92% { transform: translate(3px, -1px); opacity: 1; }
    93% { transform: translate(-2px, 2px); opacity: 1; }
    94% { transform: translate(0); opacity: 0; }
    97% { transform: translate(-4px, 0); opacity: 1; }
    98% { transform: translate(4px, 0); opacity: 0; }
  }

  @keyframes glitch-2 {
    0%, 85%, 100% { transform: translate(0); opacity: 0; }
    86% { transform: translate(3px, -2px); opacity: 1; }
    87% { transform: translate(-3px, 2px); opacity: 1; }
    88% { transform: translate(0); opacity: 0; }
    95% { transform: translate(2px, 1px); opacity: 1; }
    96% { transform: translate(-2px, -1px); opacity: 0; }
  }

  .hero-subtitle {
    font-family: 'Share Tech Mono', monospace;
    font-size: clamp(14px, 2vw, 20px);
    color: var(--text-dim);
    letter-spacing: 6px;
    margin-top: 24px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
  }

  .hero-subtitle span {
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan);
  }

  .hero-cta {
    margin-top: 56px;
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s ease 1.1s forwards;
  }

  .btn-primary {
    padding: 14px 36px;
    background: transparent;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cyan);
    transform: translateX(-101%);
    transition: transform 0.3s ease;
    z-index: -1;
  }

  .btn-primary:hover {
    color: var(--dark);
    box-shadow: 0 0 30px var(--cyan-glow), 0 0 60px var(--cyan-glow);
  }

  .btn-primary:hover::before { transform: translateX(0); }

  .btn-secondary {
    padding: 14px 36px;
    background: transparent;
    border: 1px solid rgba(124,58,237,0.5);
    color: var(--text-dim);
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: none;
    transition: all 0.3s ease;
  }

  .btn-secondary:hover {
    border-color: var(--purple);
    color: #a78bfa;
    box-shadow: 0 0 20px var(--purple-glow);
  }

  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s ease 1.5s forwards;
  }

  .hero-scroll span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-dim);
    text-transform: uppercase;
  }

  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
    animation: scrollPulse 2s ease infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 30px; }
    50% { opacity: 1; height: 50px; }
  }

  /* CORNER DECORATIONS */
  .corner-tl, .corner-br {
    position: absolute;
    width: 60px; height: 60px;
    z-index: 2;
  }

  .corner-tl { top: 20px; left: 20px; border-top: 2px solid var(--cyan); border-left: 2px solid var(--cyan); }
  .corner-br { bottom: 20px; right: 20px; border-bottom: 2px solid var(--cyan); border-right: 2px solid var(--cyan); }

  /* ===================== SECTION BASE ===================== */
  .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 60px;
  }

  .section-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .section-label::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--cyan);
  }

  .section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 700;
    color: var(--text-bright);
    line-height: 1.1;
    margin-bottom: 60px;
    letter-spacing: -1px;
  }

  .section-title em {
    color: var(--cyan);
    font-style: normal;
    text-shadow: 0 0 30px rgba(0,229,255,0.5);
  }

  /* ===================== ABOUT ===================== */
  #about {
    background: linear-gradient(to bottom, var(--black), var(--dark) 50%, var(--black));
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-text p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 24px;
  }

  .about-text p strong {
    color: var(--text-bright);
    font-weight: 600;
  }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .stat-card {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .stat-card:hover { background: rgba(0,229,255,0.03); border-color: var(--border-bright); }
  .stat-card:hover::before { opacity: 1; }

  .stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 42px;
    font-weight: 900;
    color: var(--cyan);
    line-height: 1;
    text-shadow: 0 0 30px rgba(0,229,255,0.4);
    margin-bottom: 8px;
  }

  .stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-dim);
    text-transform: uppercase;
  }

  .about-focus {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .focus-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border: 1px solid var(--border);
    background: var(--glass2);
    transition: all 0.3s ease;
  }

  .focus-item:hover { border-color: rgba(0,229,255,0.2); transform: translateX(8px); }

  .focus-dot {
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan);
    flex-shrink: 0;
  }

  .focus-item span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--text);
  }

  /* ===================== ACHIEVEMENTS ===================== */
  #achievements {
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }

  #achievements::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(0,229,255,0.04) 0%, transparent 70%);
    pointer-events: none;
  }

  .achievements-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .achievement-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 28px 32px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
  }

  .achievement-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,229,255,0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .achievement-item:hover {
    border-left-color: var(--cyan);
    background: rgba(0,229,255,0.02);
    transform: translateX(4px);
  }

  .achievement-item:hover::before { opacity: 1; }

  .achievement-rank {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    font-weight: 900;
    color: var(--cyan);
    text-shadow: 0 0 20px rgba(0,229,255,0.5);
    text-align: center;
  }

  .achievement-rank.gold { color: #ffd700; text-shadow: 0 0 20px rgba(255,215,0,0.5); }
  .achievement-rank.silver { color: #c0c0c0; text-shadow: 0 0 20px rgba(192,192,192,0.5); }
  .achievement-rank.bronze { color: #cd7f32; text-shadow: 0 0 20px rgba(205,127,50,0.5); }

  .achievement-info h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-bright);
    letter-spacing: 1px;
    margin-bottom: 4px;
  }

  .achievement-info p {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 1px;
  }

  .achievement-badge {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    padding: 6px 14px;
    border: 1px solid;
    text-transform: uppercase;
  }

  .badge-gold { color: #ffd700; border-color: rgba(255,215,0,0.3); background: rgba(255,215,0,0.05); }
  .badge-cyan { color: var(--cyan); border-color: rgba(0,229,255,0.3); background: var(--cyan-glow2); }
  .badge-purple { color: #a78bfa; border-color: rgba(167,139,250,0.3); background: rgba(167,139,250,0.05); }

  /* ===================== EXPERTISE ===================== */
  #expertise {
    background: var(--black);
  }

  .expertise-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
  }

  .expertise-card {
    padding: 40px 24px;
    background: var(--glass);
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: none;
  }

  .expertise-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--cyan), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .expertise-card:hover {
    background: rgba(0,229,255,0.03);
    border-color: rgba(0,229,255,0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px var(--cyan-glow2);
  }

  .expertise-card:hover::after { transform: scaleX(1); }

  .expertise-icon {
    width: 56px; height: 56px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: var(--glass2);
    position: relative;
  }

  .expertise-card:hover .expertise-icon {
    border-color: var(--cyan);
    box-shadow: 0 0 20px var(--cyan-glow);
  }

  .expertise-icon svg {
    width: 26px; height: 26px;
    stroke: var(--cyan);
    fill: none;
    stroke-width: 1.5;
  }

  .expertise-name {
    font-family: 'Orbitron', monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .expertise-desc {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.8;
    letter-spacing: 0.5px;
  }

  .expertise-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 4px 12px;
    background: var(--cyan-glow2);
    border: 1px solid rgba(0,229,255,0.1);
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--cyan);
    text-transform: uppercase;
  }

  /* ===================== MEMBERS ===================== */
  #members {
    background: var(--dark);
    position: relative;
  }

  #members::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-bright), transparent);
  }

  .members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }

  .member-card {
    background: var(--glass);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: none;
  }

  .member-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,229,255,0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .member-card:hover {
    border-color: rgba(0,229,255,0.25);
    box-shadow: 0 0 40px rgba(0,229,255,0.05);
  }

  .member-card:hover::before { opacity: 1; }

  .member-avatar {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    background: var(--dark3);
  }

  .member-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.05);
    position: relative;
    z-index: 0;
  }

  .member-avatar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 3, 5, 0.2) 0%, rgba(2, 3, 5, 0.6) 70%);
    pointer-events: none;
    z-index: 1;
  }

  .member-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 48px;
    font-weight: 900;
    color: rgba(0,229,255,0.15);
    background: linear-gradient(135deg, var(--dark3) 0%, var(--dark2) 100%);
    position: relative;
  }

  .member-avatar-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,229,255,0.02) 2px,
        rgba(0,229,255,0.02) 4px
      );
  }

  .member-status {
    position: absolute;
    top: 12px; right: 12px;
    width: 8px; height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--cyan);
    animation: pulse 2s ease infinite;
    z-index: 2;
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 8px var(--cyan); }
    50% { box-shadow: 0 0 16px var(--cyan), 0 0 24px var(--cyan); }
  }

  .member-info {
    padding: 24px;
  }

  .member-handle {
    font-family: 'Orbitron', monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: 1px;
    margin-bottom: 4px;
  }

  .member-handle span {
    color: var(--cyan);
    font-size: 12px;
  }

  .member-role {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
  }

  .member-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .member-tag {
    padding: 3px 10px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid;
  }

  .tag-pwn { color: #ff6b6b; border-color: rgba(255,107,107,0.3); background: rgba(255,107,107,0.05); }
  .tag-rev { color: #ffd93d; border-color: rgba(255,217,61,0.3); background: rgba(255,217,61,0.05); }
  .tag-web { color: var(--cyan); border-color: rgba(0,229,255,0.3); background: var(--cyan-glow2); }
  .tag-crypto { color: #a78bfa; border-color: rgba(167,139,250,0.3); background: rgba(167,139,250,0.05); }
  .tag-forensics { color: #6bcb77; border-color: rgba(107,203,119,0.3); background: rgba(107,203,119,0.05); }
  .tag-misc { color: #ff9f43; border-color: rgba(255,159,67,0.3); background: rgba(255,159,67,0.05); }

  /* ===================== CONTACT ===================== */
  #contact {
    background: var(--black);
    position: relative;
    overflow: hidden;
  }

  #contact::before {
    content: '';
    position: absolute;
    bottom: -300px; left: 50%;
    transform: translateX(-50%);
    width: 1000px; height: 600px;
    background: radial-gradient(ellipse, rgba(124,58,237,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contact-text p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 40px;
  }

  .social-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .social-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--glass);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: none;
  }

  .social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,229,255,0.03), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .social-link:hover {
    border-color: rgba(0,229,255,0.2);
    transform: translateX(6px);
  }

  .social-link:hover::before { transform: translateX(0); }

  .social-icon {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    flex-shrink: 0;
  }

  .social-link:hover .social-icon {
    border-color: var(--cyan);
    box-shadow: 0 0 16px var(--cyan-glow);
  }

  .social-icon svg {
    width: 18px; height: 18px;
    stroke: var(--cyan);
    fill: none;
    stroke-width: 1.5;
  }

  .social-info {
    flex: 1;
  }

  .social-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-bright);
    letter-spacing: 1px;
    margin-bottom: 2px;
  }

  .social-desc {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 1px;
  }

  .social-arrow {
    color: var(--text-dim);
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .social-link:hover .social-arrow {
    color: var(--cyan);
    transform: translateX(4px);
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .form-group {
    position: relative;
  }

  .form-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-dim);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
  }

  .form-input, .form-textarea {
    width: 100%;
    background: var(--glass2);
    border: 1px solid var(--border);
    padding: 14px 18px;
    color: var(--text-bright);
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    outline: none;
    transition: all 0.3s ease;
    resize: none;
  }

  .form-input:focus, .form-textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 20px var(--cyan-glow2);
  }

  .form-textarea { height: 120px; }

  /* ===================== FOOTER ===================== */
  footer {
    padding: 40px 60px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--black);
    position: relative;
    z-index: 1;
  }

  .footer-logo {
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    font-weight: 900;
    color: var(--cyan);
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(0,229,255,0.3);
  }

  .footer-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 2px;
  }

  .footer-text span { color: var(--cyan); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* SCAN LINE EFFECT */
  .scanlines {
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 2px,
      rgba(0,0,0,0.03) 2px,
      rgba(0,0,0,0.03) 4px
    );
    pointer-events: none;
    z-index: 999;
  }

  /* TERMINAL BLINK */
  .blink {
    animation: blink 1.2s step-end infinite;
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .expertise-grid { grid-template-columns: repeat(3, 1fr); }
    .members-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    nav { padding: 20px 30px; }
    .section-container { padding: 80px 30px; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .members-grid { grid-template-columns: 1fr 1fr; }
    footer { flex-direction: column; gap: 16px; text-align: center; }
    .achievement-item { grid-template-columns: 60px 1fr; }
    .achievement-badge { display: none; }
  }

  /* HOVER REVEAL EFFECT ON CARDS */
  .reveal-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* TERMINAL LINE */
  .terminal-line {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 1px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .terminal-line::before {
    content: '$';
    color: var(--cyan);
  }

  .separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
    margin: 0;
  }
