
/* ===== index.html ===== */
:root {
      --bg: #030508;
      --bg-mid: #0a0f1a;
      --cyber-blue: #00f0ff;
      --cyber-blue-dim: rgba(0,240,255,0.15);
      --cyber-pink: #ff00aa;
      --cyber-pink-dim: rgba(255,0,170,0.12);
      --neon-green: #00ff88;
      --gold: #ffd700;
      --white: #e8f2ff;
      --muted: #7aa2c4;
      --card-r: 16px;
      --glass: rgba(10,15,26,0.7);
      --glass-border: rgba(0,240,255,0.15);
      --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
      --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Exo 2', system-ui, sans-serif;
      -webkit-font-smoothing: antialiased;
      background: var(--bg);
      color: var(--white);
      overflow-x: hidden;
      min-height: 100vh;
    }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

    /* ══════════════════════════════════════════
       PARTICLE CANVAS & ANIMATED BACKGROUND
    ══════════════════════════════════════════ */
    #particles-canvas {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    .cyber-grid {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background: 
        linear-gradient(90deg, rgba(0,240,255,0.03) 1px, transparent 1px),
        linear-gradient(rgba(0,240,255,0.03) 1px, transparent 1px);
      background-size: 80px 80px;
      -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, black 20%, transparent 70%);
              mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, black 20%, transparent 70%);
      animation: gridPulse 8s ease-in-out infinite;
    }

    .floating-orbs {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .orb-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      animation: orbFloat 20s ease-in-out infinite;
    }
    .orb-glow.cyan { width: 500px; height: 500px; left: -150px; top: 100px; background: radial-gradient(circle, rgba(0,240,255,0.25) 0%, transparent 70%); }
    .orb-glow.pink { width: 400px; height: 400px; right: -100px; top: 300px; background: radial-gradient(circle, rgba(255,0,170,0.2) 0%, transparent 70%); animation-delay: -7s; animation-direction: reverse; }
    .orb-glow.green { width: 350px; height: 350px; left: 40%; bottom: 10%; background: radial-gradient(circle, rgba(0,255,136,0.15) 0%, transparent 70%); animation-delay: -14s; }

    /* ══════════════════════════════════════════
       3D HERO SECTION
    ══════════════════════════════════════════ */
    .hero {
      position: relative;
      z-index: 1;
      min-height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      perspective: 1000px;
    }

    .hero-bg-layers {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .hero-gradient {
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(ellipse 80% 100% at 30% 50%, rgba(0,240,255,0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 70% 30%, rgba(255,0,170,0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-mid) 100%);
    }

    .hero-scanlines {
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,240,255,0.02) 2px,
        rgba(0,240,255,0.02) 4px
      );
      animation: scanMove 10s linear infinite;
      pointer-events: none;
    }

    .hero-glitch-lines {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }
    .glitch-line {
      position: absolute;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--cyber-blue), transparent);
      opacity: 0;
      animation: glitchLine 4s ease-in-out infinite;
    }
    .glitch-line:nth-child(1) { top: 20%; animation-delay: 0s; }
    .glitch-line:nth-child(2) { top: 50%; animation-delay: 1.3s; }
    .glitch-line:nth-child(3) { top: 80%; animation-delay: 2.7s; }

    .hero-bottom-glow {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, transparent 0%, var(--cyber-blue) 20%, var(--cyber-pink) 50%, var(--cyber-blue) 80%, transparent 100%);
      box-shadow: 0 0 30px var(--cyber-blue), 0 0 60px var(--cyber-pink);
      animation: bottomGlow 3s ease-in-out infinite alternate;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 60px;
      padding: 60px;
      max-width: 1100px;
      transform-style: preserve-3d;
      animation: heroFloat 6s ease-in-out infinite;
    }

    .hero-logo-container {
      position: relative;
      flex-shrink: 0;
    }

    .hero-logo-ring {
      position: absolute;
      inset: -30px;
      border: 2px solid transparent;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-pink)) border-box;
      -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
              mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
              mask-composite: exclude;
      animation: ringRotate 15s linear infinite;
    }
    .hero-logo-ring::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      background: conic-gradient(from 0deg, transparent, var(--cyber-blue), transparent, var(--cyber-pink), transparent);
      filter: blur(8px);
      animation: ringRotate 10s linear infinite reverse;
    }

    .hero-logo-wrap {
      position: relative;
      width: 180px;
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: logoHover 4s ease-in-out infinite;
    }
    .hero-logo-wrap img {
      width: 140px;
      height: auto;
      filter: drop-shadow(0 0 30px rgba(0,240,255,0.5)) drop-shadow(0 0 60px rgba(255,0,170,0.3));
      animation: logoPulse 2s ease-in-out infinite;
    }

    .hero-text {
      flex: 1;
      transform: translateZ(20px);
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 8px 20px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 30px;
      font-family: 'Orbitron', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--cyber-blue);
      margin-bottom: 20px;
      backdrop-filter: blur(10px);
      animation: fadeSlideUp 1s var(--ease-out) 0.2s both;
    }
    .hero-kicker::before {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--cyber-blue);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--cyber-blue);
      animation: pulse 2s ease-in-out infinite;
    }

    .hero-title {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 20px;
      animation: fadeSlideUp 1s var(--ease-out) 0.4s both;
    }
    .hero-title .line-1 {
      display: block;
      background: linear-gradient(90deg, var(--white), var(--muted));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-title .line-2 {
      display: block;
      background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-pink), var(--neon-green));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: textShimmer 3s linear infinite;
      background-size: 200% auto;
    }

    .hero-divider {
      width: 100px;
      height: 3px;
      background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-pink), transparent);
      margin: 20px 0;
      border-radius: 2px;
      box-shadow: 0 0 20px var(--cyber-blue);
      animation: fadeSlideUp 1s var(--ease-out) 0.5s both, dividerGlow 2s ease-in-out infinite alternate;
    }

    .hero-sub {
      font-size: 15px;
      color: var(--muted);
      font-weight: 500;
      letter-spacing: 1px;
      animation: fadeSlideUp 1s var(--ease-out) 0.6s both;
    }
    .hero-sub span {
      color: var(--cyber-blue);
      font-weight: 600;
    }

    /* ══════════════════════════════════════════
       MAIN CONTENT
    ══════════════════════════════════════════ */
    .page-shell { position: relative; }
    .content { position: relative; z-index: 1; padding: 60px 0; }

    /* ══════════════════════════════════════════
       SECTION STYLES
    ══════════════════════════════════════════ */
    .section {
      margin-bottom: 80px;
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    }
    .section.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .section-header {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-bottom: 40px;
    }
    .section-header::before,
    .section-header::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--cyber-blue-dim));
      transform: scaleX(0);
      transition: transform 1.2s var(--ease-out);
    }
    .section-header::after {
      background: linear-gradient(90deg, var(--cyber-blue-dim), transparent);
    }
    .section.in-view .section-header::before,
    .section.in-view .section-header::after {
      transform: scaleX(1);
    }

    .section-pill {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 32px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 50px;
      backdrop-filter: blur(20px);
      box-shadow: 0 10px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
      opacity: 0;
      transform: translateY(20px) scale(0.95);
      transition: all 0.8s var(--ease-spring);
    }
    .section.in-view .section-pill {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    .section-pill:hover {
      border-color: var(--cyber-blue);
      box-shadow: 0 10px 40px rgba(0,240,255,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
    }

    .pill-dot {
      width: 10px;
      height: 10px;
      background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-pink));
      border-radius: 50%;
      box-shadow: 0 0 15px var(--cyber-blue);
      animation: pulse 2s ease-in-out infinite;
    }

    .pill-text {
      font-family: 'Orbitron', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      background: linear-gradient(90deg, var(--white), var(--cyber-blue));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ══════════════════════════════════════════
       PORTAL CARD GRID
    ══════════════════════════════════════════ */
    .portal-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .card-wrap {
      opacity: 0;
      transform: translateY(40px) rotateX(10deg);
      transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
      perspective: 1000px;
    }
    .section.in-view .card-wrap {
      opacity: 1;
      transform: translateY(0) rotateX(0);
    }
    .section.in-view .card-wrap:nth-child(1) { transition-delay: 0.1s; }
    .section.in-view .card-wrap:nth-child(2) { transition-delay: 0.2s; }
    .section.in-view .card-wrap:nth-child(3) { transition-delay: 0.3s; }
    .section.in-view .card-wrap:nth-child(4) { transition-delay: 0.4s; }
    .section.in-view .card-wrap:nth-child(5) { transition-delay: 0.5s; }
    .section.in-view .card-wrap:nth-child(6) { transition-delay: 0.6s; }
    .section.in-view .card-wrap:nth-child(7) { transition-delay: 0.7s; }
    .section.in-view .card-wrap:nth-child(8) { transition-delay: 0.8s; }
    .section.in-view .card-wrap:nth-child(9) { transition-delay: 0.9s; }

    .portal-card {
      position: relative;
      display: block;
      aspect-ratio: 16/9;
      border-radius: var(--card-r);
      overflow: hidden;
      background: var(--bg-mid);
      border: 1px solid var(--glass-border);
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      transform-style: preserve-3d;
      transition: all 0.5s var(--ease-out);
    }
    .card-wrap:hover .portal-card {
      border-color: var(--cyber-blue);
      box-shadow:
        0 0 0 1px var(--cyber-blue-dim),
        0 25px 60px rgba(0,0,0,0.6),
        0 0 40px var(--cyber-blue-dim),
        inset 0 0 60px rgba(0,240,255,0.05);
      transform: translateY(-12px) scale(1.03) rotateX(5deg);
    }

    .portal-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      filter: brightness(0.9) saturate(1.1);
      transition: transform 1s var(--ease-out), filter 0.5s ease;
    }
    .card-wrap:hover .portal-card img {
      transform: scale(1.1);
      filter: brightness(0.7) saturate(1.2);
    }

    .card-veil {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(3,5,8,0.95) 0%,
        rgba(3,5,8,0.5) 40%,
        transparent 100%
      );
      z-index: 1;
      transition: background 0.5s ease;
    }
    .card-wrap:hover .portal-card .card-veil {
      background: linear-gradient(
        to top,
        rgba(3,5,8,0.98) 0%,
        rgba(0,240,255,0.1) 50%,
        transparent 100%
      );
    }

    /* Cyber corner decorations */
    .portal-card::before,
    .portal-card::after {
      content: '';
      position: absolute;
      z-index: 3;
      transition: all 0.5s var(--ease-out);
    }
    .portal-card::before {
      top: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-pink));
      box-shadow: 0 0 10px var(--cyber-blue);
    }
    .portal-card::after {
      bottom: 0;
      right: 0;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--cyber-pink), var(--cyber-blue));
      box-shadow: 0 0 10px var(--cyber-pink);
    }
    .card-wrap:hover .portal-card::before { width: 60%; }
    .card-wrap:hover .portal-card::after { width: 60%; }

    /* Holographic shimmer */
    .card-shimmer {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 40%,
        rgba(0,240,255,0.15) 45%,
        rgba(255,0,170,0.15) 50%,
        rgba(0,255,136,0.1) 55%,
        transparent 60%,
        transparent 100%
      );
      background-size: 250% 100%;
      background-position: 150% 0;
      z-index: 2;
      pointer-events: none;
      transition: background-position 1s var(--ease-out);
    }
    .card-wrap:hover .card-shimmer {
      background-position: -50% 0;
    }

    /* Card label */
    .card-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 4;
      padding: 12px 16px 14px;
      background: linear-gradient(to top, rgba(3,5,8,0.98) 0%, transparent 100%);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .card-label::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--cyber-blue), var(--cyber-pink), transparent);
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    .card-wrap:hover .card-label::before {
      opacity: 1;
    }

    .card-label-icon {
      width: 8px;
      height: 8px;
      background: var(--cyber-blue);
      border-radius: 2px;
      box-shadow: 0 0 8px var(--cyber-blue);
      transform: rotate(45deg);
      transition: all 0.3s ease;
    }
    .card-wrap:hover .card-label-icon {
      background: var(--neon-green);
      box-shadow: 0 0 12px var(--neon-green);
      animation: iconSpin 0.5s var(--ease-spring);
    }

    .card-label-text {
      flex: 1;
      font-family: 'Orbitron', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--white);
      text-shadow: 0 0 20px rgba(0,240,255,0.5);
    }

    .keep-case { text-transform: none; }

    /* Card arrow */
    .card-arrow {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 4;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--glass);
      border: 1px solid var(--cyber-blue-dim);
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(0.5) rotate(-90deg);
      transition: all 0.5s var(--ease-spring);
    }
    .card-wrap:hover .card-arrow {
      opacity: 1;
      transform: scale(1) rotate(0);
    }
    .card-arrow svg {
      width: 14px;
      height: 14px;
      stroke: var(--cyber-blue);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* Floating orbs on card */
    .card-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(40px);
      opacity: 0;
      transition: opacity 0.6s ease, transform 0.6s ease;
      pointer-events: none;
      z-index: 0;
    }
    .card-orb.cyan { width: 150px; height: 150px; right: -40px; top: -40px; background: rgba(0,240,255,0.4); }
    .card-orb.pink { width: 120px; height: 120px; left: -30px; bottom: -30px; background: rgba(255,0,170,0.3); }
    .card-wrap:hover .card-orb {
      opacity: 1;
      transform: scale(1.2);
    }

    /* ══════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════ */
    .footer {
      position: relative;
      z-index: 1;
      border-top: 1px solid var(--glass-border);
      background: linear-gradient(180deg, transparent 0%, rgba(0,240,255,0.02) 100%);
      margin-top: 40px;
    }
    .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--cyber-blue), var(--cyber-pink), transparent);
    }

    .footer-top {
      display: flex;
      align-items: flex-start;
      gap: 60px;
      padding: 60px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-logo {
      flex-shrink: 0;
      width: 120px;
    }
    .footer-logo img {
      width: 100%;
      height: auto;
      filter: drop-shadow(0 0 20px rgba(0,240,255,0.3));
    }

    .footer-contact { flex: 1; }

    .footer-address {
      font-size: 13px;
      font-weight: 500;
      color: var(--white);
      line-height: 1.9;
      letter-spacing: 0.5px;
      margin-bottom: 28px;
    }
    .footer-address .label {
      display: block;
      font-family: 'Orbitron', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--cyber-blue);
      margin-bottom: 10px;
    }

    .footer-info-grid {
      display: grid;
      grid-template-columns: repeat(3, auto);
      gap: 24px 48px;
    }

    .footer-info-item .info-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Orbitron', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--cyber-blue);
      margin-bottom: 8px;
    }
    .footer-info-item .info-label svg {
      width: 14px;
      height: 14px;
      stroke: var(--cyber-blue);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .footer-info-item p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.8;
    }

    .footer-bottom {
      border-top: 1px solid var(--glass-border);
      padding: 20px 60px;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .footer-bottom p {
      font-size: 12px;
      color: var(--muted);
    }
    .footer-bottom .copy-right { color: var(--white); }
    .footer-bottom .unit {
      font-family: 'Orbitron', sans-serif;
      color: var(--cyber-blue);
      font-weight: 600;
      letter-spacing: 1px;
    }

    /* ══════════════════════════════════════════
       KEYFRAMES
    ══════════════════════════════════════════ */
    @keyframes gridPulse {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 1; }
    }

    @keyframes orbFloat {
      0% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -40px) scale(1.1); }
      66% { transform: translate(-20px, 20px) scale(0.95); }
      100% { transform: translate(0, 0) scale(1); }
    }

    @keyframes scanMove {
      0% { transform: translateY(0); }
      100% { transform: translateY(4px); }
    }

    @keyframes glitchLine {
      0%, 90%, 100% { opacity: 0; transform: translateX(-100%); }
      95% { opacity: 1; transform: translateX(100%); }
    }

    @keyframes bottomGlow {
      0% { opacity: 0.7; filter: hue-rotate(0deg); }
      100% { opacity: 1; filter: hue-rotate(30deg); }
    }

    @keyframes heroFloat {
      0%, 100% { transform: translateY(0) rotateX(0); }
      50% { transform: translateY(-10px) rotateX(2deg); }
    }

    @keyframes ringRotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes logoHover {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    @keyframes logoPulse {
      0%, 100% { filter: drop-shadow(0 0 30px rgba(0,240,255,0.5)) drop-shadow(0 0 60px rgba(255,0,170,0.3)); }
      50% { filter: drop-shadow(0 0 40px rgba(0,240,255,0.7)) drop-shadow(0 0 80px rgba(255,0,170,0.5)); }
    }

    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(1.2); }
    }

    @keyframes textShimmer {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }

    @keyframes dividerGlow {
      0% { box-shadow: 0 0 20px var(--cyber-blue); }
      100% { box-shadow: 0 0 30px var(--cyber-pink); }
    }

    @keyframes iconSpin {
      0% { transform: rotate(45deg) scale(1); }
      50% { transform: rotate(225deg) scale(1.3); }
      100% { transform: rotate(405deg) scale(1); }
    }

    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .portal-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .hero-content {
        flex-direction: column;
        padding: 40px 24px;
        text-align: center;
        gap: 32px;
      }
      .hero-logo-wrap { width: 140px; height: 140px; }
      .hero-logo-wrap img { width: 100px; }
      .hero-kicker { margin: 0 auto 20px; }
      .hero-divider { margin: 20px auto; }
      .portal-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .footer-top { flex-direction: column; padding: 40px 24px; gap: 32px; }
      .footer-bottom { flex-direction: column; padding: 20px 24px; text-align: center; }
      .footer-info-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
      .portal-grid { grid-template-columns: 1fr; }
      .footer-info-grid { grid-template-columns: 1fr; }
    }
  
    /* CARDS VIDEO BACKGROUND */
    .content {
      overflow: hidden;
    }

    .cards-video-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .cards-video-bg video {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 100%;
      height: 100%;
      min-width: 100%;
      min-height: 100%;
      transform: translate(-50%, -50%);
      -o-object-fit: cover;
         object-fit: cover;
      opacity: 0.52;
      filter: saturate(0.9) brightness(0.7) contrast(1.06);
      background: #000;
    }

    .cards-video-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(3,5,8,0.78) 0%, rgba(3,5,8,0.54) 24%, rgba(3,5,8,0.38) 50%, rgba(3,5,8,0.54) 76%, rgba(3,5,8,0.78) 100%);
      z-index: 1;
    }

    .cards-video-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 48%, rgba(0,0,0,0) 0%, rgba(3,5,8,0.04) 48%, rgba(3,5,8,0.14) 100%);
      z-index: 1;
    }

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

    @media (max-width: 768px) {
      .cards-video-bg video {
        opacity: 0.42;
      }
    }


    /* FOOTER BLEND WITH VIDEO SECTION */
    .footer {
      background: transparent !important;
      border-top: none !important;
      margin-top: 0 !important;
    }

    .footer::before {
      display: none !important;
    }

    .footer-bottom {
      border-top: none !important;
    }


/* ===== cawangan.html ===== */
:root {
      --bg: #030508;
      --bg-mid: #0a0f1a;
      --cyber-blue: #00f0ff;
      --cyber-blue-dim: rgba(0,240,255,0.15);
      --cyber-pink: #ff00aa;
      --cyber-pink-dim: rgba(255,0,170,0.12);
      --neon-green: #00ff88;
      --gold: #ffd700;
      --white: #e8f2ff;
      --muted: #7aa2c4;
      --card-r: 16px;
      --glass: rgba(10,15,26,0.7);
      --glass-border: rgba(0,240,255,0.15);
      --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Exo 2', system-ui, sans-serif;
      background: var(--bg);
      color: var(--white);
      overflow-x: hidden;
      min-height: 100vh;
    }

    .container { max-width: 1300px; margin: 0 auto; padding: 0 28px; }

    /* PARTICLE CANVAS & BG */
    #particles-canvas {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    .cyber-grid {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background: 
        linear-gradient(90deg, rgba(0,240,255,0.03) 1px, transparent 1px),
        linear-gradient(rgba(0,240,255,0.03) 1px, transparent 1px);
      background-size: 80px 80px;
      -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, black 20%, transparent 70%);
              mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, black 20%, transparent 70%);
      animation: gridPulse 8s ease-in-out infinite;
    }

    .floating-orbs {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .orb-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      animation: orbFloat 20s ease-in-out infinite;
    }
    .orb-glow.cyan { width: 500px; height: 500px; left: -150px; top: 100px; background: radial-gradient(circle, rgba(0,240,255,0.25) 0%, transparent 70%); }
    .orb-glow.pink { width: 400px; height: 400px; right: -100px; top: 300px; background: radial-gradient(circle, rgba(255,0,170,0.2) 0%, transparent 70%); animation-delay: -7s; animation-direction: reverse; }
    .orb-glow.green { width: 350px; height: 350px; left: 40%; bottom: 10%; background: radial-gradient(circle, rgba(0,255,136,0.15) 0%, transparent 70%); animation-delay: -14s; }

    /* HERO */
    .hero {
      position: relative;
      z-index: 1;
      min-height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      perspective: 1000px;
    }

    .hero-bg-layers {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }
    .hero-gradient {
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(ellipse 80% 100% at 30% 50%, rgba(0,240,255,0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 70% 30%, rgba(255,0,170,0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-mid) 100%);
    }
    .hero-scanlines {
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,240,255,0.02) 2px, rgba(0,240,255,0.02) 4px);
      animation: scanMove 10s linear infinite;
      pointer-events: none;
    }
    .hero-glitch-lines {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }
    .glitch-line {
      position: absolute;
      left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--cyber-blue), transparent);
      opacity: 0;
      animation: glitchLine 4s ease-in-out infinite;
    }
    .glitch-line:nth-child(1) { top: 20%; animation-delay: 0s; }
    .glitch-line:nth-child(2) { top: 50%; animation-delay: 1.3s; }
    .glitch-line:nth-child(3) { top: 80%; animation-delay: 2.7s; }
    .hero-bottom-glow {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, transparent 0%, var(--cyber-blue) 20%, var(--cyber-pink) 50%, var(--cyber-blue) 80%, transparent 100%);
      box-shadow: 0 0 30px var(--cyber-blue), 0 0 60px var(--cyber-pink);
      animation: bottomGlow 3s ease-in-out infinite alternate;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 60px;
      padding: 50px 60px;
      max-width: 1100px;
      transform-style: preserve-3d;
      animation: heroFloat 6s ease-in-out infinite;
    }
    .hero-logo-container { position: relative; flex-shrink: 0; }
    .hero-logo-ring {
      position: absolute;
      inset: -25px;
      border: 2px solid transparent;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-pink)) border-box;
      -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
              mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
              mask-composite: exclude;
      animation: ringRotate 15s linear infinite;
    }
    .hero-logo-ring::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      background: conic-gradient(from 0deg, transparent, var(--cyber-blue), transparent, var(--cyber-pink), transparent);
      filter: blur(8px);
      animation: ringRotate 10s linear infinite reverse;
    }
    .hero-logo-wrap {
      position: relative;
      width: 160px; height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: logoHover 4s ease-in-out infinite;
    }
    .hero-logo-wrap img {
      width: 120px;
      height: auto;
      filter: drop-shadow(0 0 30px rgba(0,240,255,0.5)) drop-shadow(0 0 60px rgba(255,0,170,0.3));
      animation: logoPulse 2s ease-in-out infinite;
    }
    .hero-text { flex: 1; transform: translateZ(20px); }
    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 8px 20px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 30px;
      font-family: 'Orbitron', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--cyber-blue);
      margin-bottom: 20px;
      backdrop-filter: blur(10px);
      animation: fadeSlideUp 1s var(--ease-out) 0.2s both;
    }
    .hero-kicker::before {
      content: '';
      width: 8px; height: 8px;
      background: var(--cyber-blue);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--cyber-blue);
      animation: pulse 2s ease-in-out infinite;
    }
    .hero-title {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(26px, 3.5vw, 44px);
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 20px;
      animation: fadeSlideUp 1s var(--ease-out) 0.4s both;
    }
    .hero-title .line-1 {
      display: block;
      background: linear-gradient(90deg, var(--white), var(--muted));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-title .line-2 {
      display: block;
      background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-pink), var(--neon-green));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: textShimmer 3s linear infinite;
      background-size: 200% auto;
    }
    .hero-divider {
      width: 100px;
      height: 3px;
      background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-pink), transparent);
      margin: 20px 0;
      border-radius: 2px;
      box-shadow: 0 0 20px var(--cyber-blue);
      animation: fadeSlideUp 1s var(--ease-out) 0.5s both, dividerGlow 2s ease-in-out infinite alternate;
    }
    .hero-sub {
      font-size: 14px;
      color: var(--muted);
      font-weight: 500;
      letter-spacing: 1px;
      animation: fadeSlideUp 1s var(--ease-out) 0.6s both;
    }

    /* MAIN */
    .page-shell { position: relative; }
    .content { position: relative; z-index: 1; padding: 50px 0 80px; }

    /* BACK BUTTON */
    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 24px;
      border-radius: 30px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      color: var(--muted);
      font-family: 'Orbitron', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      backdrop-filter: blur(10px);
      transition: all 0.4s var(--ease-out);
      margin-bottom: 40px;
    }
    .back-btn:hover {
      border-color: var(--cyber-blue);
      color: var(--cyber-blue);
      box-shadow: 0 0 30px var(--cyber-blue-dim);
      transform: translateX(-5px);
    }
    .back-btn svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.3s ease;
    }
    .back-btn:hover svg { transform: translateX(-4px); }

    /* SECTION */
    .section {
      margin-bottom: 70px;
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    }
    .section.in-view { opacity: 1; transform: translateY(0); }

    .section-header {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 32px;
    }
    .section-header::before,
    .section-header::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--cyber-blue-dim));
      transform: scaleX(0);
      transition: transform 1.2s var(--ease-out);
    }
    .section-header::after { background: linear-gradient(90deg, var(--cyber-blue-dim), transparent); }
    .section.in-view .section-header::before,
    .section.in-view .section-header::after { transform: scaleX(1); }

    .section-pill {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 28px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 50px;
      backdrop-filter: blur(20px);
      box-shadow: 0 10px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
      opacity: 0;
      transform: translateY(20px) scale(0.95);
      transition: all 0.8s var(--ease-spring);
    }
    .section.in-view .section-pill { opacity: 1; transform: translateY(0) scale(1); }
    .section-pill:hover {
      border-color: var(--cyber-blue);
      box-shadow: 0 10px 40px rgba(0,240,255,0.15);
    }
    .pill-icon {
      width: 8px; height: 8px;
      background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-pink));
      border-radius: 50%;
      box-shadow: 0 0 12px var(--cyber-blue);
      animation: pulse 2s ease-in-out infinite;
    }
    .pill-text {
      font-family: 'Orbitron', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      background: linear-gradient(90deg, var(--white), var(--cyber-blue));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* GRID */
    .grid {
      display: grid;
      gap: 20px;
      justify-content: center;
      margin: 0 auto;
    }
    .grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 1300px; }
    .grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 1600px; }
    .grid + .grid { margin-top: 20px; }

    /* CARD */
    .card {
      position: relative;
      display: block;
      aspect-ratio: 16/9;
      border-radius: var(--card-r);
      overflow: hidden;
      background: var(--bg-mid);
      border: 1px solid var(--glass-border);
      text-decoration: none;
      opacity: 0;
      transform: translateY(40px) rotateX(10deg);
      transition: all 0.6s var(--ease-out);
      will-change: transform, opacity;
      isolation: isolate;
      perspective: 1000px;
    }
    .section.in-view .card { opacity: 1; transform: translateY(0) rotateX(0); }

    .card img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      filter: brightness(0.9) saturate(1.1);
      transition: transform 1s var(--ease-out), filter 0.5s ease;
    }
    .card-veil {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(3,5,8,0.92) 0%, rgba(3,5,8,0.4) 50%, transparent 100%);
      z-index: 1;
      transition: background 0.5s ease;
    }

    .card::before,
    .card::after {
      content: '';
      position: absolute;
      z-index: 3;
      transition: all 0.5s var(--ease-out);
    }
    .card::before {
      top: 0; left: 0;
      width: 0; height: 3px;
      background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-pink));
      box-shadow: 0 0 10px var(--cyber-blue);
    }
    .card::after {
      bottom: 0; right: 0;
      width: 0; height: 3px;
      background: linear-gradient(90deg, var(--cyber-pink), var(--cyber-blue));
      box-shadow: 0 0 10px var(--cyber-pink);
    }

    .card:hover {
      border-color: var(--cyber-blue);
      box-shadow: 0 0 0 1px var(--cyber-blue-dim), 0 25px 60px rgba(0,0,0,0.6), 0 0 40px var(--cyber-blue-dim);
      transform: translateY(-10px) scale(1.025) rotateX(5deg);
    }
    .card:hover img { transform: scale(1.1); filter: brightness(0.7) saturate(1.2); }
    .card:hover .card-veil { background: linear-gradient(to top, rgba(3,5,8,0.98) 0%, rgba(0,240,255,0.1) 50%, transparent 100%); }
    .card:hover::before { width: 55%; }
    .card:hover::after { width: 55%; }

    .card-shimmer {
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent 0%, transparent 40%, rgba(0,240,255,0.15) 45%, rgba(255,0,170,0.15) 50%, rgba(0,255,136,0.1) 55%, transparent 60%, transparent 100%);
      background-size: 250% 100%;
      background-position: 150% 0;
      z-index: 2;
      pointer-events: none;
      transition: background-position 1s var(--ease-out);
    }
    .card:hover .card-shimmer { background-position: -50% 0; }

    .card-num {
      position: absolute;
      bottom: 10px; left: 12px;
      z-index: 4;
      font-family: 'Orbitron', sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--cyber-blue);
      opacity: 0;
      transform: translateY(6px);
      transition: all 0.4s ease;
    }
    .card:hover .card-num { opacity: 1; transform: translateY(0); }

    .card-arrow {
      position: absolute;
      top: 12px; right: 12px;
      z-index: 4;
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--glass);
      border: 1px solid var(--cyber-blue-dim);
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(0.5) rotate(-90deg);
      transition: all 0.5s var(--ease-spring);
    }
    .card:hover .card-arrow { opacity: 1; transform: scale(1) rotate(0); }
    .card-arrow svg {
      width: 12px; height: 12px;
      stroke: var(--cyber-blue);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(40px);
      opacity: 0;
      transition: opacity 0.6s ease, transform 0.6s ease;
      pointer-events: none;
      z-index: 0;
    }
    .orb.blue { width: 140px; height: 140px; right: -35px; top: -35px; background: rgba(0,240,255,0.4); }
    .orb.gold { width: 110px; height: 110px; left: -25px; bottom: -25px; background: rgba(255,0,170,0.3); }
    .card:hover .orb { opacity: 1; transform: scale(1.2); }

    /* Card Label */
    .card-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 5;
      padding: 10px 14px 12px;
      background: linear-gradient(to top, rgba(3,5,8,0.98) 0%, transparent 100%);
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: end;
      gap: 8px;
      pointer-events: none;
      min-height: 58px;
    }
    .card-label::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--cyber-blue), var(--cyber-pink), transparent);
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    .card:hover .card-label::before { opacity: 1; }
    .card-label-icon {
      width: 6px; height: 6px;
      background: var(--cyber-blue);
      border-radius: 2px;
      box-shadow: 0 0 8px var(--cyber-blue);
      transform: rotate(45deg);
      transition: all 0.3s ease;
    }
    .card:hover .card-label-icon {
      background: var(--neon-green);
      box-shadow: 0 0 12px var(--neon-green);
    }
    .card-label-text {
      min-width: 0;
      font-family: 'Orbitron', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.2;
      white-space: normal;
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      text-shadow: 0 0 20px rgba(0,240,255,0.5);
    }
    .card-label-num {
      flex-shrink: 0;
      font-family: 'Orbitron', sans-serif;
      font-size: 8px;
      font-weight: 600;
      letter-spacing: 1.5px;
      color: rgba(0,240,255,0.5);
      text-transform: uppercase;
      white-space: nowrap;
    }

    /* FOOTER */
    .footer {
      position: relative;
      z-index: 1;
      border-top: 1px solid var(--glass-border);
      background: linear-gradient(180deg, transparent 0%, rgba(0,240,255,0.02) 100%);
    }
    .footer::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--cyber-blue), var(--cyber-pink), transparent);
    }
    .footer-top {
      display: flex;
      align-items: flex-start;
      gap: 60px;
      padding: 60px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-logo { flex-shrink: 0; width: 110px; }
    .footer-logo img { width: 100%; height: auto; filter: drop-shadow(0 0 20px rgba(0,240,255,0.3)); }
    .footer-contact { flex: 1; }
    .footer-address {
      font-size: 12.5px;
      font-weight: 500;
      color: var(--white);
      line-height: 1.85;
      letter-spacing: 0.4px;
      margin-bottom: 24px;
    }
    .footer-address .label {
      display: block;
      font-family: 'Orbitron', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--cyber-blue);
      margin-bottom: 10px;
    }
    .footer-info-grid {
      display: grid;
      grid-template-columns: repeat(3, auto);
      gap: 20px 40px;
    }
    .footer-info-item .info-label {
      display: flex;
      align-items: center;
      gap: 7px;
      font-family: 'Orbitron', sans-serif;
      font-size: 11px;
      font-weight: 700;
      color: var(--cyber-blue);
      letter-spacing: 0.5px;
      margin-bottom: 5px;
    }
    .footer-info-item .info-label svg {
      width: 14px; height: 14px;
      stroke: var(--cyber-blue);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .footer-info-item p { font-size: 12.5px; color: var(--muted); line-height: 1.75; }
    .footer-bottom {
      border-top: 1px solid var(--glass-border);
      padding: 18px 60px;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .footer-bottom p { font-size: 12px; color: var(--muted); }
    .footer-bottom .copy-right { color: var(--white); }
    .footer-bottom .unit {
      font-family: 'Orbitron', sans-serif;
      color: var(--cyber-blue);
      font-weight: 600;
      letter-spacing: 1px;
    }

    /* KEYFRAMES */
    @keyframes gridPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
    @keyframes orbFloat { 0% { transform: translate(0, 0) scale(1); } 33% { transform: translate(30px, -40px) scale(1.1); } 66% { transform: translate(-20px, 20px) scale(0.95); } 100% { transform: translate(0, 0) scale(1); } }
    @keyframes scanMove { 0% { transform: translateY(0); } 100% { transform: translateY(4px); } }
    @keyframes glitchLine { 0%, 90%, 100% { opacity: 0; transform: translateX(-100%); } 95% { opacity: 1; transform: translateX(100%); } }
    @keyframes bottomGlow { 0% { opacity: 0.7; filter: hue-rotate(0deg); } 100% { opacity: 1; filter: hue-rotate(30deg); } }
    @keyframes heroFloat { 0%, 100% { transform: translateY(0) rotateX(0); } 50% { transform: translateY(-10px) rotateX(2deg); } }
    @keyframes ringRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
    @keyframes logoHover { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
    @keyframes logoPulse { 0%, 100% { filter: drop-shadow(0 0 30px rgba(0,240,255,0.5)) drop-shadow(0 0 60px rgba(255,0,170,0.3)); } 50% { filter: drop-shadow(0 0 40px rgba(0,240,255,0.7)) drop-shadow(0 0 80px rgba(255,0,170,0.5)); } }
    @keyframes fadeSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.2); } }
    @keyframes textShimmer { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }
    @keyframes dividerGlow { 0% { box-shadow: 0 0 20px var(--cyber-blue); } 100% { box-shadow: 0 0 30px var(--cyber-pink); } }

    /* RESPONSIVE */
    @media (max-width: 1200px) { .grid.cols-4, .grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px) {
      .grid.cols-4, .grid.cols-3 { grid-template-columns: 1fr 1fr; gap: 12px; }
      .hero-content { flex-direction: column; padding: 40px 24px; text-align: center; gap: 28px; }
      .hero-logo-wrap { width: 120px; height: 120px; }
      .hero-logo-wrap img { width: 90px; }
      .container { padding: 0 14px; }
      .section { margin-bottom: 48px; }
      .card-label { min-height: 60px; }
      .card-label-text { font-size: 9px; }
      .footer-top { flex-direction: column; padding: 36px 24px; gap: 28px; }
      .footer-bottom { flex-direction: column; padding: 16px 24px; text-align: center; }
      .footer-info-grid { grid-template-columns: 1fr 1fr; }
    }


/* ===== penyelaras_ict_jkr.html ===== */
:root {
      --bg: #030508;
      --bg-mid: #0a0f1a;
      --cyber-blue: #00f0ff;
      --cyber-blue-dim: rgba(0,240,255,0.15);
      --cyber-pink: #ff00aa;
      --cyber-pink-dim: rgba(255,0,170,0.12);
      --neon-green: #00ff88;
      --white: #e8f2ff;
      --muted: #7aa2c4;
      --card-r: 16px;
      --glass: rgba(10,15,26,0.7);
      --glass-border: rgba(0,240,255,0.15);
      --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Exo 2', system-ui, sans-serif;
      background: var(--bg);
      color: var(--white);
      overflow-x: hidden;
      min-height: 100vh;
    }

    .container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

    /* BACKGROUND */
    #particles-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
    .cyber-grid {
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background: linear-gradient(90deg, rgba(0,240,255,0.03) 1px, transparent 1px), linear-gradient(rgba(0,240,255,0.03) 1px, transparent 1px);
      background-size: 80px 80px;
      -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, black 20%, transparent 70%);
              mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, black 20%, transparent 70%);
      animation: gridPulse 8s ease-in-out infinite;
    }
    .floating-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
    .orb-glow { position: absolute; border-radius: 50%; filter: blur(80px); animation: orbFloat 20s ease-in-out infinite; }
    .orb-glow.cyan { width: 500px; height: 500px; left: -150px; top: 100px; background: radial-gradient(circle, rgba(0,240,255,0.25) 0%, transparent 70%); }
    .orb-glow.pink { width: 400px; height: 400px; right: -100px; top: 300px; background: radial-gradient(circle, rgba(255,0,170,0.2) 0%, transparent 70%); animation-delay: -7s; animation-direction: reverse; }
    .orb-glow.green { width: 350px; height: 350px; left: 40%; bottom: 10%; background: radial-gradient(circle, rgba(0,255,136,0.15) 0%, transparent 70%); animation-delay: -14s; }

    /* HERO */
    .hero {
      position: relative; z-index: 1; min-height: 380px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden; perspective: 1000px;
    }
    .hero-bg-layers { position: absolute; inset: 0; overflow: hidden; }
    .hero-gradient {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 100% at 30% 50%, rgba(0,240,255,0.12) 0%, transparent 50%), radial-gradient(ellipse 60% 80% at 70% 30%, rgba(255,0,170,0.1) 0%, transparent 50%), linear-gradient(180deg, var(--bg) 0%, var(--bg-mid) 100%);
    }
    .hero-scanlines {
      position: absolute; inset: 0;
      background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,240,255,0.02) 2px, rgba(0,240,255,0.02) 4px);
      animation: scanMove 10s linear infinite;
      pointer-events: none;
    }
    .hero-glitch-lines { position: absolute; inset: 0; overflow: hidden; }
    .glitch-line {
      position: absolute; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--cyber-blue), transparent);
      opacity: 0; animation: glitchLine 4s ease-in-out infinite;
    }
    .glitch-line:nth-child(1) { top: 20%; animation-delay: 0s; }
    .glitch-line:nth-child(2) { top: 50%; animation-delay: 1.3s; }
    .glitch-line:nth-child(3) { top: 80%; animation-delay: 2.7s; }
    .hero-bottom-glow {
      position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, transparent 0%, var(--cyber-blue) 20%, var(--cyber-pink) 50%, var(--cyber-blue) 80%, transparent 100%);
      box-shadow: 0 0 30px var(--cyber-blue), 0 0 60px var(--cyber-pink);
      animation: bottomGlow 3s ease-in-out infinite alternate;
    }
    .hero-content {
      position: relative; z-index: 2; display: flex; align-items: center; gap: 60px;
      padding: 50px 60px; max-width: 1100px; transform-style: preserve-3d;
      animation: heroFloat 6s ease-in-out infinite;
    }
    .hero-logo-container { position: relative; flex-shrink: 0; }
    
    .hero-logo-wrap {
      position: relative; width: 160px; height: 160px;
      display: flex; align-items: center; justify-content: center;
      animation: logoHover 4s ease-in-out infinite;
    }
    .hero-logo-wrap img {
      width: 120px; height: auto;
      filter: drop-shadow(0 0 30px rgba(0,240,255,0.5)) drop-shadow(0 0 60px rgba(255,0,170,0.3));
      animation: logoPulse 2s ease-in-out infinite;
    }
    .hero-text { flex: 1; transform: translateZ(20px); }
    .hero-kicker {
      display: inline-flex; align-items: center; gap: 12px; padding: 8px 20px;
      background: var(--glass); border: 1px solid var(--glass-border); border-radius: 30px;
      font-family: 'Orbitron', sans-serif; font-size: 11px; font-weight: 600;
      letter-spacing: 4px; text-transform: uppercase; color: var(--cyber-blue);
      margin-bottom: 20px; backdrop-filter: blur(10px);
      animation: fadeSlideUp 1s var(--ease-out) 0.2s both;
    }
    .hero-kicker::before {
      content: ''; width: 8px; height: 8px; background: var(--cyber-blue);
      border-radius: 50%; box-shadow: 0 0 10px var(--cyber-blue);
      animation: pulse 2s ease-in-out infinite;
    }
    .hero-title {
      font-family: 'Orbitron', sans-serif; font-size: clamp(24px, 3vw, 40px);
      font-weight: 800; line-height: 1.2; letter-spacing: 2px; text-transform: uppercase;
      margin-bottom: 20px; animation: fadeSlideUp 1s var(--ease-out) 0.4s both;
    }
    .hero-title .line-1 {
      display: block; background: linear-gradient(90deg, var(--white), var(--muted));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .hero-title .line-2 {
      display: block;
      background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-pink), var(--neon-green));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      animation: textShimmer 3s linear infinite; background-size: 200% auto;
    }
    .hero-divider {
      width: 100px; height: 3px;
      background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-pink), transparent);
      margin: 20px 0; border-radius: 2px; box-shadow: 0 0 20px var(--cyber-blue);
      animation: fadeSlideUp 1s var(--ease-out) 0.5s both, dividerGlow 2s ease-in-out infinite alternate;
    }
    .hero-sub {
      font-size: 14px; color: var(--muted); font-weight: 500; letter-spacing: 1px;
      animation: fadeSlideUp 1s var(--ease-out) 0.6s both;
    }
    .hero-sub span { color: var(--cyber-blue); font-weight: 600; }

    /* MAIN */
    .page-shell { position: relative; }
    .content { position: relative; z-index: 1; padding: 50px 0 80px; }

    /* BACK BUTTON */
    .submenu-top { margin-bottom: 16px; }
    .back-btn {
      display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px;
      border-radius: 30px; background: var(--glass); border: 1px solid var(--glass-border);
      color: var(--muted); font-family: 'Orbitron', sans-serif; font-size: 11px;
      font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
      text-decoration: none; backdrop-filter: blur(10px);
      transition: all 0.4s var(--ease-out);
    }
    .back-btn:hover {
      border-color: var(--cyber-blue); color: var(--cyber-blue);
      box-shadow: 0 0 30px var(--cyber-blue-dim); transform: translateX(-5px);
    }
    .back-btn svg {
      width: 16px; height: 16px; stroke: currentColor; fill: none;
      stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
      transition: transform 0.3s ease;
    }
    .back-btn:hover svg { transform: translateX(-4px); }

    /* SECTION */
    .section {
      margin-bottom: 64px; opacity: 0; transform: translateY(50px);
      transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    }
    .section.in-view { opacity: 1; transform: translateY(0); }

    .section-header {
      display: flex; align-items: center; gap: 20px; margin-bottom: 32px;
    }
    .section-header::before, .section-header::after {
      content: ''; flex: 1; height: 1px;
      background: linear-gradient(90deg, transparent, var(--cyber-blue-dim));
      transform: scaleX(0); transition: transform 1.2s var(--ease-out);
    }
    .section-header::after { background: linear-gradient(90deg, var(--cyber-blue-dim), transparent); }
    .section.in-view .section-header::before,
    .section.in-view .section-header::after { transform: scaleX(1); }

    .section-pill {
      display: flex; align-items: center; gap: 12px; padding: 12px 28px;
      background: var(--glass); border: 1px solid var(--glass-border); border-radius: 50px;
      backdrop-filter: blur(20px);
      box-shadow: 0 10px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
      opacity: 0; transform: translateY(20px) scale(0.95);
      transition: all 0.8s var(--ease-spring);
    }
    .section.in-view .section-pill { opacity: 1; transform: translateY(0) scale(1); }
    .section-pill:hover {
      border-color: var(--cyber-blue);
      box-shadow: 0 10px 40px rgba(0,240,255,0.15);
    }
    .pill-dot {
      width: 8px; height: 8px;
      background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-pink));
      border-radius: 50%; box-shadow: 0 0 12px var(--cyber-blue);
      animation: pulse 2s ease-in-out infinite;
    }
    .pill-text {
      font-family: 'Orbitron', sans-serif; font-size: 12px; font-weight: 700;
      letter-spacing: 2.5px; text-transform: uppercase;
      background: linear-gradient(90deg, var(--white), var(--cyber-blue));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }

    /* SUBMENU INTRO */
    .submenu-intro {
      text-align: center; margin: 0 auto 36px; max-width: 760px;
      opacity: 0; transform: translateY(22px);
      transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
    }
    .section.in-view .submenu-intro { opacity: 1; transform: translateY(0); }
    .submenu-title {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(22px, 2.5vw, 32px); font-weight: 700;
      background: linear-gradient(90deg, var(--white), var(--cyber-blue));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      margin-bottom: 12px; letter-spacing: 1px;
    }
    .submenu-sub { font-size: 15px; color: var(--muted); line-height: 1.75; }

    /* SUBMENU GRID */
    .submenu-grid {
      display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px; max-width: 950px; margin: 0 auto;
    }

    /* CARD */
    .card {
      position: relative; display: block; aspect-ratio: 16/9;
      border-radius: var(--card-r); overflow: hidden; background: var(--bg-mid);
      border: 1px solid var(--glass-border); text-decoration: none;
      opacity: 0; transform: translateY(40px) rotateX(10deg);
      transition: all 0.6s var(--ease-out);
      will-change: transform, opacity; isolation: isolate; perspective: 1000px;
    }
    .section.in-view .card { opacity: 1; transform: translateY(0) rotateX(0); }
    .submenu-card { min-height: 280px; }

    .submenu-image {
      position: absolute; inset: 0; width: 100%; height: 100%;
      -o-object-fit: cover;
         object-fit: cover; z-index: 1;
      filter: brightness(0.9) saturate(1.1);
      transition: transform 1s var(--ease-out), filter 0.5s ease;
    }

    .card-bg {
      position: absolute; inset: 0;
      background: radial-gradient(circle at 20% 20%, rgba(0,240,255,0.14) 0%, transparent 30%), radial-gradient(circle at 80% 15%, rgba(255,0,170,0.18) 0%, transparent 32%), linear-gradient(135deg, rgba(10,15,26,0.98) 0%, rgba(3,5,8,1) 50%, rgba(10,20,40,0.95) 100%);
      z-index: 0;
    }
    .card-veil {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(3,5,8,0.92) 0%, rgba(3,5,8,0.4) 50%, transparent 100%);
      z-index: 2; transition: background 0.5s ease;
    }
    .card-shimmer {
      position: absolute; inset: 0;
      background: linear-gradient(120deg, transparent 0%, transparent 40%, rgba(0,240,255,0.15) 45%, rgba(255,0,170,0.15) 50%, rgba(0,255,136,0.1) 55%, transparent 60%, transparent 100%);
      background-size: 250% 100%; background-position: 150% 0;
      z-index: 3; pointer-events: none;
      transition: background-position 1s var(--ease-out);
    }

    .card::before, .card::after {
      content: ''; position: absolute; z-index: 4;
      transition: all 0.5s var(--ease-out);
    }
    .card::before {
      top: 0; left: 0; width: 0; height: 3px;
      background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-pink));
      box-shadow: 0 0 10px var(--cyber-blue);
    }
    .card::after {
      bottom: 0; right: 0; width: 0; height: 3px;
      background: linear-gradient(90deg, var(--cyber-pink), var(--cyber-blue));
      box-shadow: 0 0 10px var(--cyber-pink);
    }

    .card:hover {
      border-color: var(--cyber-blue);
      box-shadow: 0 0 0 1px var(--cyber-blue-dim), 0 25px 60px rgba(0,0,0,0.6), 0 0 40px var(--cyber-blue-dim);
      transform: translateY(-10px) scale(1.025) rotateX(5deg);
    }
    .card:hover .submenu-image { transform: scale(1.1); filter: brightness(0.7) saturate(1.2); }
    .card:hover .card-veil { background: linear-gradient(to top, rgba(3,5,8,0.98) 0%, rgba(0,240,255,0.1) 50%, transparent 100%); }
    .card:hover .card-shimmer { background-position: -50% 0; }
    .card:hover::before { width: 55%; }
    .card:hover::after { width: 55%; }

    .submenu-chip {
      position: absolute; top: 16px; left: 16px; z-index: 6;
      padding: 8px 14px; border-radius: 999px;
      background: var(--glass); border: 1px solid var(--cyber-blue-dim);
      color: var(--cyber-blue); font-family: 'Orbitron', sans-serif;
      font-size: 10px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; backdrop-filter: blur(10px);
    }
    .card-arrow {
      position: absolute; top: 14px; right: 14px; z-index: 6;
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--glass); border: 1px solid var(--cyber-blue-dim);
      backdrop-filter: blur(10px);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transform: scale(0.5) rotate(-90deg);
      transition: all 0.5s var(--ease-spring);
    }
    .card:hover .card-arrow { opacity: 1; transform: scale(1) rotate(0); }
    .card-arrow svg {
      width: 14px; height: 14px; stroke: var(--cyber-blue); fill: none;
      stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    }

    .orb {
      position: absolute; border-radius: 50%; filter: blur(40px);
      opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease;
      pointer-events: none; z-index: 0;
    }
    .orb.blue { width: 140px; height: 140px; right: -35px; top: -35px; background: rgba(0,240,255,0.4); }
    .orb.gold { width: 110px; height: 110px; left: -25px; bottom: -25px; background: rgba(255,0,170,0.3); }
    .card:hover .orb { opacity: 1; transform: scale(1.2); }

    .card-label {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 6;
      padding: 10px 16px 14px;
      background: linear-gradient(to top, rgba(3,5,8,0.98) 0%, transparent 100%);
      display: flex; align-items: center; gap: 10px;
      pointer-events: none; min-height: 40px;
    }
    .card-label::before {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--cyber-blue), var(--cyber-pink), transparent);
      opacity: 0; transition: opacity 0.5s ease;
    }
    .card:hover .card-label::before { opacity: 1; }
    .card-label-icon {
      width: 8px; height: 8px; background: var(--cyber-blue);
      border-radius: 2px; box-shadow: 0 0 8px var(--cyber-blue);
      transform: rotate(45deg); transition: all 0.3s ease;
    }
    .card:hover .card-label-icon { background: var(--neon-green); box-shadow: 0 0 12px var(--neon-green); }
    .card-label-text {
      flex: 1; font-family: 'Orbitron', sans-serif;
      font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--white);
      text-shadow: 0 0 20px rgba(0,240,255,0.5);
    }

    /* FOOTER */
    .footer {
      position: relative; z-index: 1;
      border-top: 1px solid var(--glass-border);
      background: linear-gradient(180deg, transparent 0%, rgba(0,240,255,0.02) 100%);
    }
    .footer::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--cyber-blue), var(--cyber-pink), transparent);
    }
    .footer-top {
      display: flex; align-items: flex-start; gap: 60px;
      padding: 60px; max-width: 1120px; margin: 0 auto;
    }
    .footer-logo { flex-shrink: 0; width: 110px; }
    .footer-logo img { width: 100%; height: auto; filter: drop-shadow(0 0 20px rgba(0,240,255,0.3)); }
    .footer-contact { flex: 1; }
    .footer-address {
      font-size: 13px; font-weight: 500; color: var(--white);
      line-height: 1.9; letter-spacing: 0.4px; margin-bottom: 24px;
    }
    .footer-address .label {
      display: block; font-family: 'Orbitron', sans-serif;
      font-size: 11px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--cyber-blue); margin-bottom: 10px;
    }
    .footer-info-grid { display: grid; grid-template-columns: repeat(3, auto); gap: 20px 40px; }
    .footer-info-item .info-label {
      display: flex; align-items: center; gap: 7px;
      font-family: 'Orbitron', sans-serif; font-size: 11px;
      font-weight: 700; color: var(--cyber-blue); letter-spacing: 0.5px;
      margin-bottom: 5px;
    }
    .footer-info-item .info-label svg {
      width: 14px; height: 14px; stroke: var(--cyber-blue); fill: none;
      stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
    }
    .footer-info-item p { font-size: 13px; color: var(--muted); line-height: 1.8; }
    .footer-bottom {
      border-top: 1px solid var(--glass-border);
      padding: 18px 60px; max-width: 1120px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
    }
    .footer-bottom p { font-size: 12px; color: var(--muted); }
    .footer-bottom .copy-right { color: var(--white); }
    .footer-bottom .unit {
      font-family: 'Orbitron', sans-serif;
      color: var(--cyber-blue); font-weight: 600; letter-spacing: 1px;
    }

    /* KEYFRAMES */
    @keyframes gridPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
    @keyframes orbFloat { 0% { transform: translate(0, 0) scale(1); } 33% { transform: translate(30px, -40px) scale(1.1); } 66% { transform: translate(-20px, 20px) scale(0.95); } 100% { transform: translate(0, 0) scale(1); } }
    @keyframes scanMove { 0% { transform: translateY(0); } 100% { transform: translateY(4px); } }
    @keyframes glitchLine { 0%, 90%, 100% { opacity: 0; transform: translateX(-100%); } 95% { opacity: 1; transform: translateX(100%); } }
    @keyframes bottomGlow { 0% { opacity: 0.7; filter: hue-rotate(0deg); } 100% { opacity: 1; filter: hue-rotate(30deg); } }
    @keyframes heroFloat { 0%, 100% { transform: translateY(0) rotateX(0); } 50% { transform: translateY(-10px) rotateX(2deg); } }
    @keyframes ringRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
    @keyframes logoHover { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
    @keyframes logoPulse { 0%, 100% { filter: drop-shadow(0 0 30px rgba(0,240,255,0.5)) drop-shadow(0 0 60px rgba(255,0,170,0.3)); } 50% { filter: drop-shadow(0 0 40px rgba(0,240,255,0.7)) drop-shadow(0 0 80px rgba(255,0,170,0.5)); } }
    @keyframes fadeSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.2); } }
    @keyframes textShimmer { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }
    @keyframes dividerGlow { 0% { box-shadow: 0 0 20px var(--cyber-blue); } 100% { box-shadow: 0 0 30px var(--cyber-pink); } }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .hero-content { flex-direction: column; padding: 40px 24px; text-align: center; gap: 28px; }
      .hero-logo-wrap { width: 120px; height: 120px; }
      .hero-logo-wrap img { width: 90px; }
      .submenu-grid { grid-template-columns: 1fr; max-width: 100%; }
      .footer-top { flex-direction: column; padding: 36px 24px; gap: 28px; }
      .footer-bottom { flex-direction: column; padding: 16px 24px; text-align: center; }
      .footer-info-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .container { padding: 0 16px; }
      .footer-info-grid { grid-template-columns: 1fr; }
    }


/* ===== sewaan.html ===== */
:root {
      --bg: #030508;
      --bg-mid: #0a0f1a;
      --cyber-blue: #00f0ff;
      --cyber-blue-dim: rgba(0,240,255,0.15);
      --cyber-pink: #ff00aa;
      --cyber-pink-dim: rgba(255,0,170,0.12);
      --neon-green: #00ff88;
      --white: #e8f2ff;
      --muted: #7aa2c4;
      --card-r: 16px;
      --glass: rgba(10,15,26,0.7);
      --glass-border: rgba(0,240,255,0.15);
      --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Exo 2', system-ui, sans-serif;
      background: var(--bg);
      color: var(--white);
      overflow-x: hidden;
      min-height: 100vh;
      font-size: 16px;
      line-height: 1.65;
    }

    .container { max-width: 1000px; margin: 0 auto; padding: 0 28px; }

    /* BACKGROUND */
    #particles-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
    .cyber-grid {
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background: linear-gradient(90deg, rgba(0,240,255,0.03) 1px, transparent 1px), linear-gradient(rgba(0,240,255,0.03) 1px, transparent 1px);
      background-size: 80px 80px;
      -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, black 20%, transparent 70%);
              mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, black 20%, transparent 70%);
      animation: gridPulse 8s ease-in-out infinite;
    }
    .floating-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
    .orb-glow { position: absolute; border-radius: 50%; filter: blur(80px); animation: orbFloat 20s ease-in-out infinite; }
    .orb-glow.cyan { width: 500px; height: 500px; left: -150px; top: 100px; background: radial-gradient(circle, rgba(0,240,255,0.25) 0%, transparent 70%); }
    .orb-glow.pink { width: 400px; height: 400px; right: -100px; top: 300px; background: radial-gradient(circle, rgba(255,0,170,0.2) 0%, transparent 70%); animation-delay: -7s; animation-direction: reverse; }
    .orb-glow.green { width: 350px; height: 350px; left: 40%; bottom: 10%; background: radial-gradient(circle, rgba(0,255,136,0.15) 0%, transparent 70%); animation-delay: -14s; }

    /* HERO */
    .hero {
      position: relative; z-index: 1; min-height: 380px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden; perspective: 1000px;
    }
    .hero-bg-layers { position: absolute; inset: 0; overflow: hidden; }
    .hero-gradient {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 100% at 30% 50%, rgba(0,240,255,0.12) 0%, transparent 50%), radial-gradient(ellipse 60% 80% at 70% 30%, rgba(255,0,170,0.1) 0%, transparent 50%), linear-gradient(180deg, var(--bg) 0%, var(--bg-mid) 100%);
    }
    .hero-scanlines {
      position: absolute; inset: 0;
      background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,240,255,0.02) 2px, rgba(0,240,255,0.02) 4px);
      animation: scanMove 10s linear infinite; pointer-events: none;
    }
    .hero-glitch-lines { position: absolute; inset: 0; overflow: hidden; }
    .glitch-line {
      position: absolute; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--cyber-blue), transparent);
      opacity: 0; animation: glitchLine 4s ease-in-out infinite;
    }
    .glitch-line:nth-child(1) { top: 20%; animation-delay: 0s; }
    .glitch-line:nth-child(2) { top: 50%; animation-delay: 1.3s; }
    .glitch-line:nth-child(3) { top: 80%; animation-delay: 2.7s; }
    .hero-bottom-glow {
      position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, transparent 0%, var(--cyber-blue) 20%, var(--cyber-pink) 50%, var(--cyber-blue) 80%, transparent 100%);
      box-shadow: 0 0 30px var(--cyber-blue), 0 0 60px var(--cyber-pink);
      animation: bottomGlow 3s ease-in-out infinite alternate;
    }
    .hero-content {
      position: relative; z-index: 2; display: flex; align-items: center; gap: 60px;
      padding: 50px 60px; max-width: 1100px; transform-style: preserve-3d;
      animation: heroFloat 6s ease-in-out infinite;
    }
    .hero-logo-container { position: relative; flex-shrink: 0; }
    .hero-logo-ring {
      position: absolute; inset: -25px; border: 2px solid transparent; border-radius: 50%;
      background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-pink)) border-box;
      -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
              mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
              mask-composite: exclude; animation: ringRotate 15s linear infinite;
    }
    .hero-logo-ring::before {
      content: ''; position: absolute; inset: -4px; border-radius: 50%;
      background: conic-gradient(from 0deg, transparent, var(--cyber-blue), transparent, var(--cyber-pink), transparent);
      filter: blur(8px); animation: ringRotate 10s linear infinite reverse;
    }
    .hero-logo-wrap {
      position: relative; width: 160px; height: 160px;
      display: flex; align-items: center; justify-content: center;
      animation: logoHover 4s ease-in-out infinite;
    }
    .hero-logo-wrap img {
      width: 120px; height: auto;
      filter: drop-shadow(0 0 30px rgba(0,240,255,0.5)) drop-shadow(0 0 60px rgba(255,0,170,0.3));
      animation: logoPulse 2s ease-in-out infinite;
    }
    .hero-text { flex: 1; transform: translateZ(20px); }
    .hero-kicker {
      display: inline-flex; align-items: center; gap: 12px; padding: 8px 20px;
      background: var(--glass); border: 1px solid var(--glass-border); border-radius: 30px;
      font-family: 'Orbitron', sans-serif; font-size: 11px; font-weight: 600;
      letter-spacing: 4px; text-transform: uppercase; color: var(--cyber-blue);
      margin-bottom: 20px; backdrop-filter: blur(10px);
      animation: fadeSlideUp 1s var(--ease-out) 0.2s both;
    }
    .hero-kicker::before {
      content: ''; width: 8px; height: 8px; background: var(--cyber-blue);
      border-radius: 50%; box-shadow: 0 0 10px var(--cyber-blue);
      animation: pulse 2s ease-in-out infinite;
    }
    .hero-title {
      font-family: 'Orbitron', sans-serif; font-size: clamp(24px, 3vw, 40px);
      font-weight: 800; line-height: 1.2; letter-spacing: 2px; text-transform: uppercase;
      margin-bottom: 20px; animation: fadeSlideUp 1s var(--ease-out) 0.4s both;
    }
    .hero-title .line-1 {
      display: block; background: linear-gradient(90deg, var(--white), var(--muted));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .hero-title .line-2 {
      display: block;
      background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-pink), var(--neon-green));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      animation: textShimmer 3s linear infinite; background-size: 200% auto;
    }
    .hero-divider {
      width: 100px; height: 3px;
      background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-pink), transparent);
      margin: 20px 0; border-radius: 2px; box-shadow: 0 0 20px var(--cyber-blue);
      animation: fadeSlideUp 1s var(--ease-out) 0.5s both, dividerGlow 2s ease-in-out infinite alternate;
    }
    .hero-sub {
      font-size: 14px; color: var(--muted); font-weight: 500; letter-spacing: 1px;
      animation: fadeSlideUp 1s var(--ease-out) 0.6s both;
    }
    .hero-sub span { color: var(--cyber-blue); font-weight: 600; }

    /* MAIN */
    .page-shell { position: relative; }
    .content { position: relative; z-index: 1; padding: 0 0 80px; }

    /* BREADCRUMB */
    .breadcrumb {
      display: flex; align-items: center; gap: 10px;
      margin: 24px 0 36px;
      font-family: 'Orbitron', sans-serif;
      font-size: 11px; font-weight: 600;
      letter-spacing: 2px; text-transform: uppercase;
    }
    .breadcrumb a {
      color: var(--muted); text-decoration: none;
      transition: color 0.3s ease;
    }
    .breadcrumb a:hover { color: var(--cyber-blue); }
    .breadcrumb span { color: rgba(0,240,255,0.4); }
    .breadcrumb .current { color: var(--cyber-blue); }

    /* SECTION */
    .section {
      margin-bottom: 60px; opacity: 0; transform: translateY(50px);
      transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    }
    .section.in-view { opacity: 1; transform: translateY(0); }

    .section-header {
      display: flex; align-items: center; gap: 20px; margin-bottom: 36px;
    }
    .section-header::before, .section-header::after {
      content: ''; flex: 1; height: 1px;
      background: linear-gradient(90deg, transparent, var(--cyber-blue-dim));
      transform: scaleX(0); transition: transform 1.2s var(--ease-out);
    }
    .section-header::after { background: linear-gradient(90deg, var(--cyber-blue-dim), transparent); }
    .section.in-view .section-header::before,
    .section.in-view .section-header::after { transform: scaleX(1); }

    .section-pill {
      display: flex; align-items: center; gap: 12px; padding: 12px 28px;
      background: var(--glass); border: 1px solid var(--glass-border); border-radius: 50px;
      backdrop-filter: blur(20px);
      box-shadow: 0 10px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
      opacity: 0; transform: translateY(20px) scale(0.95);
      transition: all 0.8s var(--ease-spring);
    }
    .section.in-view .section-pill { opacity: 1; transform: translateY(0) scale(1); }
    .pill-icon {
      width: 8px; height: 8px;
      background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-pink));
      border-radius: 50%; box-shadow: 0 0 12px var(--cyber-blue);
      animation: pulse 2s ease-in-out infinite;
    }
    .pill-text {
      font-family: 'Orbitron', sans-serif; font-size: 12px; font-weight: 700;
      letter-spacing: 2.5px; text-transform: uppercase;
      background: linear-gradient(90deg, var(--white), var(--cyber-blue));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }

    /* FASA GRID */
    .fasa-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; align-items: stretch;
    }

    /* FASA CARD */
    .fasa-card {
      position: relative;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: var(--card-r);
      overflow: hidden;
      display: flex; flex-direction: column;
      opacity: 0; transform: translateY(40px) rotateX(8deg);
      transition: all 0.6s var(--ease-out);
      backdrop-filter: blur(20px);
    }
    .section.in-view .fasa-card { opacity: 1; transform: translateY(0) rotateX(0); }
    .section.in-view .fasa-card:nth-child(1) { transition-delay: 0.1s; }
    .section.in-view .fasa-card:nth-child(2) { transition-delay: 0.2s; }
    .section.in-view .fasa-card:nth-child(3) { transition-delay: 0.3s; }

    .fasa-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-pink), var(--neon-green));
      opacity: 0; transition: opacity 0.4s ease;
    }
    .fasa-card:not(.locked):hover {
      border-color: var(--cyber-blue);
      box-shadow: 0 0 0 1px var(--cyber-blue-dim), 0 25px 60px rgba(0,0,0,0.5), 0 0 40px var(--cyber-blue-dim);
      transform: translateY(-8px) scale(1.02);
    }
    .fasa-card:not(.locked):hover::before { opacity: 1; }

    /* Locked state */
    .fasa-card.locked {
      border-color: rgba(0,240,255,0.05);
      opacity: 0.5 !important;
      cursor: default;
    }
    .fasa-card.locked::after {
      content: ''; position: absolute; inset: 0;
      background: rgba(3,5,8,0.5);
      z-index: 10; pointer-events: none;
    }

    /* Card Header */
    .card-head {
      padding: 20px 20px 16px;
      border-bottom: 1px solid var(--glass-border);
      display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
    }
    .fasa-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 14px; border-radius: 20px;
      background: var(--cyber-blue-dim);
      border: 1px solid rgba(0,240,255,0.3);
      font-family: 'Orbitron', sans-serif;
      font-size: 10px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--cyber-blue);
    }
    .fasa-badge .dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--cyber-blue); box-shadow: 0 0 8px var(--cyber-blue);
    }

    /* Status badges */
    .status-badge {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 5px 12px; border-radius: 20px;
      font-family: 'Orbitron', sans-serif;
      font-size: 9px; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase;
    }
    .status-dot {
      width: 6px; height: 6px; border-radius: 50%;
    }
    .status-aktif {
      background: rgba(0,255,136,0.1);
      border: 1px solid rgba(0,255,136,0.3);
      color: var(--neon-green);
    }
    .status-aktif .status-dot {
      background: var(--neon-green);
      box-shadow: 0 0 8px var(--neon-green);
      animation: pulse-green 2s infinite;
    }
    .status-coming {
      background: var(--cyber-blue-dim);
      border: 1px solid rgba(0,240,255,0.3);
      color: var(--cyber-blue);
    }
    .status-coming .status-dot {
      background: var(--cyber-blue);
      box-shadow: 0 0 8px var(--cyber-blue);
      animation: pulse-cyan 2s infinite;
    }

    /* Card Body */
    .card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 16px; }

    .company-name {
      font-family: 'Orbitron', sans-serif;
      font-size: 17px; font-weight: 700; color: var(--white);
      line-height: 1.3; letter-spacing: 0.5px;
    }
    .company-name span { color: var(--cyber-blue); }

    .info-rows { display: flex; flex-direction: column; gap: 12px; }
    .info-row {
      display: flex; align-items: flex-start; gap: 12px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--glass-border);
    }
    .info-row:last-child { border-bottom: none; padding-bottom: 0; }
    .info-icon {
      flex-shrink: 0; width: 32px; height: 32px;
      border-radius: 8px;
      background: var(--cyber-blue-dim);
      border: 1px solid rgba(0,240,255,0.2);
      display: flex; align-items: center; justify-content: center;
    }
    .info-icon svg {
      width: 14px; height: 14px;
      stroke: var(--cyber-blue); fill: none;
      stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
    }
    .info-content { flex: 1; }
    .info-label {
      font-family: 'Orbitron', sans-serif;
      font-size: 9px; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
    }
    .info-value { font-size: 13px; font-weight: 600; color: var(--white); }

    /* Card Footer */
    .card-foot { padding: 16px 20px 20px; margin-top: auto; }
    .btn-primary {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      width: 100%; padding: 14px 20px; border-radius: 12px;
      background: linear-gradient(135deg, var(--cyber-blue-dim), rgba(255,0,170,0.1));
      border: 1px solid rgba(0,240,255,0.4);
      color: var(--cyber-blue);
      font-family: 'Orbitron', sans-serif;
      font-size: 11px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      text-decoration: none; cursor: pointer;
      transition: all 0.4s var(--ease-out);
    }
    .btn-primary:hover {
      background: linear-gradient(135deg, rgba(0,240,255,0.25), rgba(255,0,170,0.15));
      border-color: var(--cyber-blue);
      box-shadow: 0 0 30px var(--cyber-blue-dim);
      transform: translateY(-2px);
    }
    .btn-primary svg {
      width: 14px; height: 14px;
      stroke: currentColor; fill: none;
      stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    }
    .btn-locked {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      width: 100%; padding: 14px 20px; border-radius: 12px;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.08);
      color: rgba(122,162,196,0.4);
      font-family: 'Orbitron', sans-serif;
      font-size: 11px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      cursor: not-allowed;
    }
    .btn-locked svg {
      width: 14px; height: 14px;
      stroke: currentColor; fill: none;
      stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    }

    /* Coming Soon Body */
    .coming-soon-body {
      flex: 1; display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 16px; padding: 40px 20px;
      text-align: center;
    }
    .lock-icon {
      width: 60px; height: 60px; border-radius: 50%;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      display: flex; align-items: center; justify-content: center;
    }
    .lock-icon svg {
      width: 24px; height: 24px;
      stroke: rgba(0,240,255,0.4); fill: none;
      stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
    }
    .coming-soon-title {
      font-family: 'Orbitron', sans-serif;
      font-size: 14px; font-weight: 700;
      color: rgba(232,242,255,0.4); letter-spacing: 1px;
    }
    .coming-soon-sub { font-size: 12px; color: rgba(122,162,196,0.3); line-height: 1.5; }

    /* FOOTER */
    .footer {
      position: relative; z-index: 1;
      border-top: 1px solid var(--glass-border);
      background: linear-gradient(180deg, transparent 0%, rgba(0,240,255,0.02) 100%);
      margin-top: 40px;
    }
    .footer::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--cyber-blue), var(--cyber-pink), transparent);
    }
    .footer-top {
      display: flex; align-items: flex-start; gap: 60px;
      padding: 60px; max-width: 1000px; margin: 0 auto;
    }
    .footer-logo { flex-shrink: 0; width: 110px; }
    .footer-logo img { width: 100%; height: auto; filter: drop-shadow(0 0 20px rgba(0,240,255,0.3)); }
    .footer-contact { flex: 1; }
    .footer-address {
      font-size: 12.5px; font-weight: 500; color: var(--white);
      line-height: 1.85; letter-spacing: 0.4px; margin-bottom: 24px;
    }
    .footer-address .label {
      display: block; font-family: 'Orbitron', sans-serif;
      font-size: 11px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--cyber-blue); margin-bottom: 10px;
    }
    .footer-info-grid { display: grid; grid-template-columns: repeat(3, auto); gap: 20px 40px; }
    .footer-info-item .info-label-ft {
      display: flex; align-items: center; gap: 7px;
      font-family: 'Orbitron', sans-serif;
      font-size: 11px; font-weight: 700;
      color: var(--cyber-blue); letter-spacing: 0.5px; margin-bottom: 5px;
    }
    .footer-info-item .info-label-ft svg {
      width: 14px; height: 14px; stroke: var(--cyber-blue); fill: none;
      stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
    }
    .footer-info-item p { font-size: 13px; color: var(--muted); line-height: 1.8; }
    .footer-bottom {
      border-top: 1px solid var(--glass-border);
      padding: 18px 60px; max-width: 1000px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
    }
    .footer-bottom p { font-size: 12px; color: var(--muted); }
    .footer-bottom .copy-right { color: var(--white); }
    .footer-bottom .unit {
      font-family: 'Orbitron', sans-serif;
      color: var(--cyber-blue); font-weight: 600; letter-spacing: 1px;
    }

    /* KEYFRAMES */
    @keyframes gridPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
    @keyframes orbFloat { 0% { transform: translate(0, 0) scale(1); } 33% { transform: translate(30px, -40px) scale(1.1); } 66% { transform: translate(-20px, 20px) scale(0.95); } 100% { transform: translate(0, 0) scale(1); } }
    @keyframes scanMove { 0% { transform: translateY(0); } 100% { transform: translateY(4px); } }
    @keyframes glitchLine { 0%, 90%, 100% { opacity: 0; transform: translateX(-100%); } 95% { opacity: 1; transform: translateX(100%); } }
    @keyframes bottomGlow { 0% { opacity: 0.7; filter: hue-rotate(0deg); } 100% { opacity: 1; filter: hue-rotate(30deg); } }
    @keyframes heroFloat { 0%, 100% { transform: translateY(0) rotateX(0); } 50% { transform: translateY(-10px) rotateX(2deg); } }
    @keyframes ringRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
    @keyframes logoHover { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
    @keyframes logoPulse { 0%, 100% { filter: drop-shadow(0 0 30px rgba(0,240,255,0.5)) drop-shadow(0 0 60px rgba(255,0,170,0.3)); } 50% { filter: drop-shadow(0 0 40px rgba(0,240,255,0.7)) drop-shadow(0 0 80px rgba(255,0,170,0.5)); } }
    @keyframes fadeSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.2); } }
    @keyframes textShimmer { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }
    @keyframes dividerGlow { 0% { box-shadow: 0 0 20px var(--cyber-blue); } 100% { box-shadow: 0 0 30px var(--cyber-pink); } }
    @keyframes pulse-green { 0%, 100% { box-shadow: 0 0 8px var(--neon-green); } 50% { box-shadow: 0 0 16px var(--neon-green), 0 0 24px rgba(0,255,136,0.4); } }
    @keyframes pulse-cyan { 0%, 100% { box-shadow: 0 0 8px var(--cyber-blue); } 50% { box-shadow: 0 0 16px var(--cyber-blue), 0 0 24px rgba(0,240,255,0.4); } }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .hero-content { flex-direction: column; padding: 40px 24px; text-align: center; gap: 28px; }
      .hero-logo-wrap { width: 120px; height: 120px; }
      .hero-logo-wrap img { width: 90px; }
      .fasa-grid { grid-template-columns: 1fr; }
      .footer-top { flex-direction: column; padding: 36px 24px; gap: 28px; }
      .footer-bottom { flex-direction: column; padding: 16px 24px; text-align: center; }
      .footer-info-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ===== LOCKED HOMEPAGE CARDS ===== */
.card-wrap.locked .portal-card {
  cursor: not-allowed;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-color: rgba(255,255,255,0.08);
  box-shadow: none !important;
  transform: none !important;
}

.card-wrap.locked .portal-card img {
  transform: none !important;
  filter: blur(1px) grayscale(0.14) brightness(0.58);
}

.card-wrap.locked .card-veil {
  background: linear-gradient(
    to top,
    rgba(3,5,8,0.86) 0%,
    rgba(3,5,8,0.48) 55%,
    rgba(3,5,8,0.14) 100%
  );
}

.card-wrap.locked .card-shimmer,
.card-wrap.locked .card-arrow,
.card-wrap.locked .card-orb {
  display: none !important;
}

.card-wrap.locked .portal-card::before,
.card-wrap.locked .portal-card::after {
  width: 0 !important;
  opacity: 0 !important;
}

.card-wrap.locked .card-label::before {
  opacity: 0 !important;
}

.card-wrap.locked:hover .portal-card {
  border-color: rgba(255,255,255,0.08);
  box-shadow: none !important;
  transform: none !important;
}

.card-wrap.locked:hover .portal-card img {
  transform: none !important;
  filter: blur(1px) grayscale(0.14) brightness(0.58);
}

.card-wrap.locked:hover .card-label-icon {
  background: var(--cyber-blue);
  box-shadow: 0 0 8px var(--cyber-blue);
  animation: none;
}

.lock-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3,5,8,0.08);
  backdrop-filter: blur(1px);
  text-align: center;
  padding: 18px;
}

.lock-overlay span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(10,15,26,0.66);
  border: 1px solid rgba(255,215,0,0.40);
  color: var(--gold);
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(255,215,0,0.12);
}

.card-wrap.locked .card-label-text {
  color: var(--white);
  opacity: 0.98;
  text-shadow: 0 0 12px rgba(0,240,255,0.16);
}