  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --purple: #7C3AED;
    --pink: #EC4899;
    --blue: #3B82F6;
    --cyan: #06B6D4;
    --bg: #050510;
    --bg2: #0A0A1F;
    --bg3: #0F0F2D;
    --text: #E2E8F0;
    --muted: #94A3B8;
    --glow-purple: rgba(124,58,237,0.4);
    --glow-pink: rgba(236,72,153,0.3);
    --glow-cyan: rgba(6,182,212,0.3);
  }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* === BLOB / ORB ANIMATIONS === */
  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
  }
  .orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, #7C3AED, #EC4899); top: -100px; right: -100px; animation-delay: 0s; }
  .orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, #3B82F6, #06B6D4); bottom: -100px; left: -100px; animation-delay: 3s; }
  .orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, #EC4899, #7C3AED); top: 50%; left: 50%; animation-delay: 5s; }
  @keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
  }

  /* === NAVBAR === */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 5%;
    background: rgba(5,5,16,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(124,58,237,0.2);
    animation: slideDown 0.6s ease;
  }
  @keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
  .nav-logo {
    display: flex;
    align-items: center;
  }
  .nav-logo-img {
    height: 44px;
    filter: invert(1) hue-rotate(180deg) brightness(1.7);
    mix-blend-mode: screen;
  }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
    background: linear-gradient(90deg, #7C3AED, #EC4899);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: #fff; }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: linear-gradient(135deg, #7C3AED, #EC4899);
    color: #fff !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem !important;
    font-weight: 700;
    letter-spacing: 1px;
    transition: box-shadow 0.3s, transform 0.2s !important;
  }
  .nav-cta:hover { box-shadow: 0 0 30px rgba(124,58,237,0.6); transform: translateY(-2px); }

  /* === HERO === */
  #hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 6rem 5% 4rem;
    overflow: hidden;
    background: var(--bg);
  }
  .hero-content { position: relative; z-index: 2; max-width: 700px; }
  .hero-eyebrow {
    display: inline-block;
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cyan);
    border: 1px solid rgba(6,182,212,0.3);
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 2px;
    animation: fadeInUp 0.8s ease 0.2s both;
  }
  .hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
  }
  .hero-title .tech-text {
    background: linear-gradient(135deg, #7C3AED 0%, #EC4899 50%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  /* Cyber Text Animations */
  .cyber-text {
    position: relative;
    display: inline-block;
    color: transparent;
  }
  .cyber-text::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    width: 0%;
    overflow: hidden;
    animation: scanReveal 1.2s cubic-bezier(0.8, 0, 0.2, 1) forwards;
    border-right: 4px solid var(--cyan);
    white-space: nowrap;
  }
  .cyber-text-delay-1::before { animation-delay: 1.6s; border-color: var(--pink); }
  
  .tech-text-wrap {
    display: inline-block;
    opacity: 0;
    transform: scale(0.9);
    filter: blur(10px);
    animation: techPop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.8s forwards;
  }

  @keyframes scanReveal { to { width: 100%; border-right-color: transparent; } }
  @keyframes techPop { to { opacity: 1; transform: scale(1); filter: blur(0); } }
  .hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 500px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.6s both;
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.8s both; }
  .btn-primary {
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, #7C3AED, #EC4899);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: box-shadow 0.3s, transform 0.2s;
  }
  .btn-primary:hover { box-shadow: 0 0 40px rgba(124,58,237,0.7); transform: translateY(-3px); }
  .btn-outline {
    padding: 0.85rem 2rem;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(124,58,237,0.6);
    border-radius: 4px;
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
  }
  .btn-outline:hover { border-color: #EC4899; box-shadow: 0 0 20px rgba(236,72,153,0.3); transform: translateY(-3px); }
  .hero-bg-text {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Orbitron', monospace;
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    color: rgba(124,58,237,0.05);
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
    animation: fadeIn 1.5s ease 0.5s both;
  }

  /* === SECTION COMMONS === */
  section { position: relative; overflow: hidden; }
  .section-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .section-title span {
    background: linear-gradient(135deg, #7C3AED, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .container { max-width: 1100px; margin: 0 auto; padding: 5rem 5%; }

  /* === ABOUT === */
  #about { background: var(--bg2); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .about-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
  }
  .about-orb-wrap {
    width: 300px; height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(236,72,153,0.3));
    display: flex; align-items: center; justify-content: center;
    position: relative;
    animation: pulse 4s ease-in-out infinite;
    border: 1px solid rgba(124,58,237,0.3);
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 40px rgba(124,58,237,0.3); transform: scale(1); }
    50% { box-shadow: 0 0 80px rgba(236,72,153,0.5); transform: scale(1.05); }
  }
  .about-orb-inner {
    width: 200px; height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED, #EC4899, #06B6D4);
    opacity: 0.8;
    animation: spin 10s linear infinite;
  }
  @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  .about-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(6,182,212,0.2);
    animation: expand 3s ease-in-out infinite;
  }
  .about-ring:nth-child(2) { width: 350px; height: 350px; animation-delay: 0s; }
  .about-ring:nth-child(3) { width: 420px; height: 420px; animation-delay: 1s; }
  .about-ring:nth-child(4) { width: 490px; height: 490px; animation-delay: 2s; }
  @keyframes expand {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.4; }
  }
  .about-text p { color: var(--muted); margin-bottom: 1rem; }
  .stats-row { display: flex; gap: 2rem; margin-top: 2rem; }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7C3AED, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
  }
  .stat-label { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

  /* === SERVICES === */
  #services { background: var(--bg); }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
  .service-card {
    background: rgba(10,10,31,0.8);
    border: 1px solid rgba(124,58,237,0.15);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: default;
  }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--card-accent, linear-gradient(90deg, #7C3AED, #EC4899));
    opacity: 0;
    transition: opacity 0.3s;
  }
  .service-card:hover { transform: translateY(-8px); border-color: rgba(124,58,237,0.4); box-shadow: 0 20px 60px rgba(124,58,237,0.15); }
  .service-card:hover::before { opacity: 1; }
  .service-icon {
    width: 56px; height: 56px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    background: var(--icon-bg, rgba(124,58,237,0.15));
    border: 1px solid var(--icon-border, rgba(124,58,237,0.3));
  }
  .service-name {
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
  }
  .service-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

  /* === PROCESS === */
  #process { background: var(--bg3); }
  .process-steps { margin-top: 3rem; }
  .process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(124,58,237,0.1);
    align-items: start;
    transition: background 0.3s;
    border-radius: 8px;
  }
  .process-step:last-child { border-bottom: none; }
  .step-num {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(124,58,237,0.15);
    line-height: 1;
    transition: color 0.3s;
  }
  .process-step:hover .step-num { color: rgba(124,58,237,0.5); }
  .step-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  .step-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  .step-desc { color: var(--muted); font-size: 0.9rem; }

  /* === MARQUEE / CLIENTS === */
  #clients { background: var(--bg2); padding: 4rem 0; overflow: hidden; }
  .marquee-label { text-align: center; font-family: 'Orbitron', monospace; font-size: 0.65rem; letter-spacing: 4px; color: var(--muted); margin-bottom: 2rem; text-transform: uppercase; }
  .marquee-track { display: flex; gap: 3rem; white-space: nowrap; animation: marquee 20s linear infinite; }
  .marquee-track:hover { animation-play-state: paused; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .client-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(124,58,237,0.08);
    border: 1px solid rgba(124,58,237,0.15);
    border-radius: 4px;
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--muted);
    flex-shrink: 0;
  }
  .client-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple); }

  /* === CONTACT === */
  #contact { background: var(--bg); }
  .contact-wrapper { max-width: 700px; margin: 0 auto; }
  .contact-form { margin-top: 3rem; display: grid; gap: 1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-family: 'Orbitron', monospace; }
  .form-input, .form-select, .form-textarea {
    background: rgba(10,10,31,0.8);
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 4px;
    color: var(--text);
    padding: 0.75rem 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 2px rgba(124,58,237,0.15);
  }
  .form-select option { background: #0A0A1F; }
  .form-textarea { min-height: 130px; resize: vertical; }
  .form-submit {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #7C3AED, #EC4899);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.2s;
    text-transform: uppercase;
    width: 100%;
    margin-top: 0.5rem;
  }
  .form-submit:hover { box-shadow: 0 0 40px rgba(124,58,237,0.6); transform: translateY(-2px); }

  /* === FOOTER === */
  footer {
    background: var(--bg2);
    border-top: 1px solid rgba(124,58,237,0.1);
    padding: 3rem 5% 2rem;
    text-align: center;
  }
  .footer-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #7C3AED, #EC4899, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: block;
    letter-spacing: 3px;
  }
  .footer-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; list-style: none; }
  .footer-links a { color: var(--muted); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
  .footer-links a:hover { color: #fff; }
  .footer-bottom { color: var(--muted); font-size: 0.8rem; border-top: 1px solid rgba(124,58,237,0.08); padding-top: 1.5rem; }
  .footer-bottom span {
    background: linear-gradient(90deg, #7C3AED, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* === CTA BAND === */
  .cta-band {
    background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(236,72,153,0.1));
    border-top: 1px solid rgba(124,58,237,0.2);
    border-bottom: 1px solid rgba(124,58,237,0.2);
    padding: 5rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-band-text { font-family: 'Orbitron', monospace; font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.3; margin-bottom: 2rem; }
  .cta-band-text span { background: linear-gradient(135deg, #7C3AED, #EC4899, #06B6D4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

  /* === SCROLL REVEAL === */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  /* === RESPONSIVE === */
  @media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .stats-row { flex-wrap: wrap; }
    .process-step { grid-template-columns: 60px 1fr; }
    .step-num { font-size: 2.5rem; }
  }

  /* === NEW ANIMATIONS === */
  /* Service Network Hero Animation */
  .service-network-container { position: absolute; right: 8%; top: 50%; transform: translateY(-50%); width: 400px; height: 400px; z-index: 1; }
  .network-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100px; height: 100px; background: linear-gradient(135deg, #7C3AED, #EC4899); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Orbitron', monospace; font-size: 0.75rem; font-weight: 900; color: #fff; box-shadow: 0 0 40px rgba(124,58,237,0.6); z-index: 10; letter-spacing: 1px; }
  .network-orbit { position: absolute; top: 50%; left: 50%; border-radius: 50%; border: 1px dashed rgba(6,182,212,0.4); border-left-style: solid; box-sizing: border-box; }
  .nc-1 { width: 260px; height: 260px; margin: -130px 0 0 -130px; animation: spinOrbital 15s linear infinite; }
  .nc-2 { width: 400px; height: 400px; margin: -200px 0 0 -200px; animation: spinOrbitalRev 25s linear infinite; border-color: rgba(236,72,153,0.3); border-right-style: solid; }
  .s-node-wrapper { position: absolute; top: 50%; left: 50%; width: 0; height: 0; }
  .nc-1 .s-node-wrapper:nth-child(1) { transform: rotate(0deg) translateY(-130px); }
  .nc-1 .s-node-wrapper:nth-child(2) { transform: rotate(180deg) translateY(-130px); }
  .nc-2 .s-node-wrapper:nth-child(1) { transform: rotate(60deg) translateY(-200px); }
  .nc-2 .s-node-wrapper:nth-child(2) { transform: rotate(180deg) translateY(-200px); }
  .nc-2 .s-node-wrapper:nth-child(3) { transform: rotate(300deg) translateY(-200px); }
  
  .s-node { position: absolute; width: 70px; height: 70px; margin: -35px 0 0 -35px; background: rgba(10,10,31,0.9); border: 2px solid var(--ncolor); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: 'Orbitron', monospace; font-size: 0.6rem; color: #fff; font-weight: 700; box-shadow: 0 0 15px var(--ncolor); backdrop-filter: blur(4px); letter-spacing: 1px; }
  .nc-1 .s-node { animation: stabilizeOrbital 15s linear infinite; }
  .nc-2 .s-node { animation: stabilizeOrbitalRev 25s linear infinite; }
  .s-node::after { content:''; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--ncolor); animation: pulseNode 2s infinite; }
  .s-node i { font-size: 1.2rem; margin-bottom: 2px; font-style: normal; }

  @keyframes spinOrbital { 100% { transform: rotate(360deg); } }
  @keyframes spinOrbitalRev { 100% { transform: rotate(-360deg); } }
  @keyframes stabilizeOrbital { 100% { transform: rotate(-360deg); } }
  @keyframes stabilizeOrbitalRev { 100% { transform: rotate(360deg); } }
  @keyframes pulseNode { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.4); opacity: 0; } }

  /* Brand Growth Visual */
  .brand-growth-visual { display: flex; align-items: flex-end; justify-content: center; gap: 1rem; width: 100%; aspect-ratio: 1; position: relative; padding-bottom: 20%; }
  .growth-bar { width: 40px; background: linear-gradient(to top, rgba(124,58,237,0.1), #7C3AED); border-radius: 4px 4px 0 0; position: relative; border-top: 2px solid #EC4899; box-shadow: 0 -5px 15px rgba(236,72,153,0.4); animation: growBar 3s ease-out infinite alternate; transform-origin: bottom; }
  .gb1 { height: 30%; animation-delay: 0.0s; }
  .gb2 { height: 50%; animation-delay: 0.4s; }
  .gb3 { height: 75%; animation-delay: 0.8s; }
  .gb4 { height: 100%; animation-delay: 1.2s; }
  .growth-arrow { position: absolute; inset: 0; pointer-events: none; }
  .arrow-line { position: absolute; left: 10%; bottom: 20%; width: 80%; height: 2px; background: #06B6D4; transform: rotate(-35deg); transform-origin: left center; box-shadow: 0 0 10px rgba(6,182,212,0.8); animation: drawLine 3s ease-in-out infinite alternate; }
  .arrow-head { position: absolute; right: 10%; top: 15%; color: #06B6D4; font-size: 2rem; transform: rotate(-35deg); text-shadow: 0 0 10px rgba(6,182,212,0.8); animation: fadeInArrow 3s ease-in-out infinite alternate; }
  @keyframes growBar { 0% { transform: scaleY(0.2); opacity: 0.5; } 100% { transform: scaleY(1); opacity: 1; } }
  @keyframes drawLine { 0% { width: 0%; opacity: 0; } 100% { width: 90%; opacity: 1; } }
  @keyframes fadeInArrow { 0%, 50% { opacity: 0; } 100% { opacity: 1; } }
  .growth-glow { position: absolute; bottom: 10%; width: 300px; height: 100px; background: radial-gradient(ellipse, rgba(124,58,237,0.4), transparent 70%); filter: blur(20px); }

  /* Portfolio Monitors */
  #portfolio { background: var(--bg2); border-top: 1px solid rgba(124,58,237,0.1); border-bottom: 1px solid rgba(124,58,237,0.1); }
  .portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem; margin-top: 3rem; }
  .monitor-frame { background: #111118; padding: 10px; border-radius: 12px 12px 0 0; border: 1px solid rgba(6,182,212,0.3); border-bottom-width: 20px; border-bottom-color: #222230; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.5); display: flex; flex-direction: column; align-items: center; transition: transform 0.3s, box-shadow 0.3s; }
  .monitor-frame:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(6,182,212,0.15); }
  .monitor-frame::after { content: ''; position: absolute; bottom: -12px; width: 8px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; }
  .monitor-stand { width: 60px; height: 25px; background: linear-gradient(to bottom, #222230, #111); margin: 0 auto; border-left: 1px solid rgba(6,182,212,0.2); border-right: 1px solid rgba(6,182,212,0.2); }
  .monitor-base { width: 120px; height: 8px; background: #2a2a4a; border-radius: 4px 4px 0 0; margin: 0 auto; border-bottom: 1px solid #111; }
  .monitor-screen-wrap { width: 100%; height: 250px; background: #050510; overflow: hidden; position: relative; border-radius: 4px; border: 1px solid rgba(255,255,255,0.05); }
  .monitor-screen { width: 100%; position: absolute; top: 0; left: 0; animation: autoScroll 12s linear infinite; }
  .monitor-frame:hover .monitor-screen { animation-play-state: paused; }
  @keyframes autoScroll { 0%, 10% { transform: translateY(0); } 90%, 100% { transform: translateY(calc(-100% + 250px)); } }
  .portfolio-title-bar { width: 100%; text-align: center; margin-top: 2rem; font-family: 'Orbitron', monospace; font-size: 0.9rem; color: var(--cyan); letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }