:root {
      --bg: #060810;
      --bg2: #0b0f1a;
      --bg3: #111827;
      --surface: #141c2e;
      --surface2: #1a2438;
      --border: rgba(255,255,255,0.07);
      --accent: #00c2ff;
      --accent2: #0066ff;
      --accent3: #00ffc8;
      --text: #e8edf5;
      --muted: #6b7a99;
      --muted2: #4a5568;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Source Sans 3', sans-serif;
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
      overflow-x: hidden;
    }

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

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 72px;
      background: rgba(6,8,16,0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: all 0.3s ease;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      text-decoration: none;
    }

    .nav-logo-icon {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .nav-logo-text {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 19px;
      color: var(--text);
      letter-spacing: -0.3px;
    }

    .nav-logo-text span { color: var(--accent); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--muted);
      font-size: 14px;
      font-weight: 500;
      padding: 8px 16px;
      border-radius: 8px;
      transition: all 0.2s;
      cursor: pointer;
    }

    .nav-links a:hover, .nav-links a.active {
      color: var(--text);
      background: var(--surface);
    }

    .nav-links a.active { color: var(--accent); }

    .nav-cta {
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: #fff !important;
      padding: 9px 22px !important;
      border-radius: 8px !important;
      font-weight: 600 !important;
      transition: all 0.2s !important;
    }
    .nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

    /* ─── HOME PAGE ─── */

    /* Hero */
    .hero {
      position: relative;
      min-height: calc(100vh - 72px);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding: 80px 24px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,194,255,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0,102,255,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 20% 60%, rgba(0,255,200,0.05) 0%, transparent 60%);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0,194,255,0.1);
      border: 1px solid rgba(0,194,255,0.25);
      border-radius: 100px;
      padding: 6px 16px 6px 8px;
      font-size: 13px;
      color: var(--accent);
      margin-bottom: 28px;
      animation: fadeUp 0.6s ease both;
    }

    .hero-badge-dot {
      width: 8px; height: 8px;
      background: var(--accent);
      border-radius: 50%;
      animation: pulse 2s ease infinite;
    }

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

    .hero-content { position: relative; z-index: 2; max-width: 800px; }

    .hero h1 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(44px, 7vw, 80px);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -0.5px;
      margin-bottom: 24px;
      animation: fadeUp 0.6s 0.1s ease both;
    }

    .hero h1 .grad {
      background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero p {
      font-size: 18px;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.7;
      max-width: 560px;
      margin: 0 auto 40px;
      animation: fadeUp 0.6s 0.2s ease both;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeUp 0.6s 0.3s ease both;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: #fff;
      border: none;
      padding: 14px 32px;
      border-radius: 10px;
      font-family: 'Source Sans 3', sans-serif;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,194,255,0.3); }

    .btn-secondary {
      background: var(--surface);
      color: var(--text);
      border: 1px solid var(--border);
      padding: 14px 32px;
      border-radius: 10px;
      font-family: 'Source Sans 3', sans-serif;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-secondary:hover { background: var(--surface2); border-color: rgba(255,255,255,0.15); }

    /* Stats bar */
    .stats-bar {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--bg2);
      padding: 40px 48px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .stat-item {
      text-align: center;
      padding: 16px 24px;
      border-right: 1px solid var(--border);
      animation: fadeUp 0.5s ease both;
    }
    .stat-item:last-child { border-right: none; }

    .stat-number {
      font-family: 'Outfit', sans-serif;
      font-size: 40px;
      font-weight: 700;
      letter-spacing: -0.5px;
      background: linear-gradient(135deg, var(--accent), var(--accent3));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-label {
      font-size: 13px;
      color: var(--muted);
      margin-top: 4px;
      font-weight: 400;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    /* Features */
    .section {
      padding: 100px 48px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-tag {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--accent);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 700;
      letter-spacing: -0.25px;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 16px;
      color: var(--muted);
      max-width: 500px;
      line-height: 1.7;
      margin-bottom: 60px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
    }

    .feature-card {
      background: var(--bg2);
      padding: 36px;
      transition: background 0.3s;
      position: relative;
    }
    .feature-card:hover { background: var(--surface); }

    .feature-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 20px;
      background: rgba(0,194,255,0.1);
      border: 1px solid rgba(0,194,255,0.2);
    }

    .feature-title {
      font-family: 'Outfit', sans-serif;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .feature-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
    }

    /* Network map */
    .map-section {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 80px 48px;
      text-align: center;
    }

    .map-container {
      position: relative;
      max-width: 900px;
      margin: 48px auto 0;
    }

    .world-map {
      width: 100%;
      opacity: 0.15;
      filter: brightness(2);
    }

    .node {
      position: absolute;
      width: 12px; height: 12px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(0,194,255,0.2), 0 0 16px rgba(0,194,255,0.5);
      animation: nodeGlow 2s ease infinite;
    }

    @keyframes nodeGlow {
      0%, 100% { box-shadow: 0 0 0 4px rgba(0,194,255,0.2), 0 0 16px rgba(0,194,255,0.4); }
      50% { box-shadow: 0 0 0 8px rgba(0,194,255,0.1), 0 0 32px rgba(0,194,255,0.6); }
    }

    .nodes-overlay {
      position: absolute;
      inset: 0;
    }

    /* Pricing */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .pricing-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px;
      position: relative;
      transition: border-color 0.3s, transform 0.3s;
    }
    .pricing-card:hover { border-color: rgba(0,194,255,0.3); transform: translateY(-4px); }
    .pricing-card.featured {
      border-color: var(--accent);
      background: linear-gradient(160deg, rgba(0,194,255,0.07) 0%, var(--bg2) 50%);
    }

    .pricing-badge {
      position: absolute;
      top: -12px; left: 50%; transform: translateX(-50%);
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 100px;
      white-space: nowrap;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .pricing-tier {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--muted);
      margin-bottom: 12px;
      font-weight: 600;
    }

    .pricing-price {
      font-family: 'Outfit', sans-serif;
      font-size: 48px;
      font-weight: 700;
      letter-spacing: -0.5px;
      margin-bottom: 4px;
    }

    .pricing-price span {
      font-size: 18px;
      font-weight: 400;
      color: var(--muted);
      letter-spacing: 0;
    }

    .pricing-desc {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 28px;
      line-height: 1.6;
    }

    .pricing-features {
      list-style: none;
      margin-bottom: 32px;
    }

    .pricing-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
      color: var(--muted);
    }
    .pricing-features li:last-child { border-bottom: none; }

    .pricing-features li::before {
      content: '✓';
      color: var(--accent3);
      font-weight: 700;
      flex-shrink: 0;
    }

    /* Testimonials */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .testimonial-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px;
    }

    .testimonial-text {
      font-size: 15px;
      line-height: 1.7;
      color: var(--muted);
      margin-bottom: 20px;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .author-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      object-fit: cover;
      background: var(--surface2);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      font-weight: 700;
      color: var(--accent);
      font-family: 'Outfit', sans-serif;
      flex-shrink: 0;
    }

    .author-name {
      font-size: 14px;
      font-weight: 600;
    }
    .author-role {
      font-size: 12px;
      color: var(--muted);
    }

    /* CTA Banner */
    .cta-banner {
      background: linear-gradient(135deg, rgba(0,194,255,0.12), rgba(0,102,255,0.12));
      border: 1px solid rgba(0,194,255,0.2);
      border-radius: 20px;
      padding: 64px;
      text-align: center;
      margin: 0 48px 80px;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      top: -50%; left: 50%; transform: translateX(-50%);
      width: 600px; height: 300px;
      background: radial-gradient(ellipse, rgba(0,194,255,0.1) 0%, transparent 70%);
    }

    .cta-banner h2 {
      font-family: 'Outfit', sans-serif;
      font-size: 40px;
      font-weight: 700;
      letter-spacing: -0.25px;
      margin-bottom: 16px;
      position: relative;
    }
    .cta-banner p {
      color: var(--muted);
      font-size: 16px;
      margin-bottom: 32px;
      position: relative;
    }

    /* ─── EMPLOYEES PAGE ─── */
    .page-header {
      padding: 80px 48px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-header::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 400px;
      background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(0,194,255,0.1) 0%, transparent 70%);
    }

    .page-header-tag {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .page-header h1 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 700;
      letter-spacing: -0.5px;
      margin-bottom: 16px;
      position: relative;
    }

    .page-header p {
      font-size: 17px;
      color: var(--muted);
      max-width: 540px;
      margin: 0 auto;
      line-height: 1.7;
      position: relative;
    }

    /* Leadership */
    .emp-section {
      padding: 0 48px 80px;
      max-width: 1280px;
      margin: 0 auto;
    }

    .emp-section-title {
      font-family: 'Outfit', sans-serif;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: var(--muted);
      margin-bottom: 28px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .emp-section-title::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    .leadership-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 60px;
    }

    .leader-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s;
      cursor: default;
    }
    .leader-card:hover { border-color: rgba(0,194,255,0.3); transform: translateY(-4px); }

    .leader-photo {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      background: var(--surface2);
    }

    .leader-photo-placeholder {
      width: 100%;
      height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Outfit', sans-serif;
      font-size: 52px;
      font-weight: 700;
      background: linear-gradient(135deg, var(--surface), var(--surface2));
      color: var(--accent);
      letter-spacing: -0.5px;
    }

    .leader-info { padding: 24px; }

    .leader-name {
      font-family: 'Outfit', sans-serif;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .leader-role {
      font-size: 13px;
      color: var(--accent);
      font-weight: 500;
      margin-bottom: 12px;
    }

    .leader-bio {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .leader-socials {
      display: flex;
      gap: 8px;
    }

    .social-btn {
      width: 32px; height: 32px;
      border-radius: 8px;
      background: var(--surface);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 13px;
      cursor: pointer;
      transition: all 0.2s;
      color: var(--muted);
    }
    .social-btn:hover { background: var(--surface2); color: var(--accent); border-color: rgba(0,194,255,0.3); }

    /* Team grid */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 16px;
      margin-bottom: 60px;
    }

    .team-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 24px 20px;
      text-align: center;
      transition: all 0.3s;
    }
    .team-card:hover { border-color: rgba(0,194,255,0.25); background: var(--surface); transform: translateY(-2px); }

    .team-avatar {
      width: 64px; height: 64px;
      border-radius: 50%;
      margin: 0 auto 12px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Outfit', sans-serif;
      font-size: 22px;
      font-weight: 700;
      background: linear-gradient(135deg, var(--surface2), var(--surface));
      border: 2px solid var(--border);
      color: var(--accent);
    }

    .team-name {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 4px;
    }
    .team-role {
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .team-dept {
      display: inline-block;
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 3px 10px;
      border-radius: 100px;
      background: rgba(0,194,255,0.1);
      color: var(--accent);
      border: 1px solid rgba(0,194,255,0.2);
    }

    /* Dept filter */
    .dept-filters {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .dept-filter {
      padding: 7px 18px;
      border-radius: 100px;
      background: var(--surface);
      border: 1px solid var(--border);
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      color: var(--muted);
      transition: all 0.2s;
    }
    .dept-filter:hover, .dept-filter.active {
      background: rgba(0,194,255,0.12);
      border-color: rgba(0,194,255,0.35);
      color: var(--accent);
    }

    /* ─── NEWS PAGE ─── */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 20px;
      padding: 0 48px 80px;
      max-width: 1280px;
      margin: 0 auto;
    }

    .news-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s;
      cursor: pointer;
    }
    .news-card:hover { border-color: rgba(0,194,255,0.3); transform: translateY(-3px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

    .news-card.featured { grid-column: span 7; }
    .news-card.secondary { grid-column: span 5; }
    .news-card.thirds { grid-column: span 4; }

    .news-img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      display: block;
      background: var(--surface2);
    }
    .news-card.featured .news-img { height: 340px; }

    .news-img-placeholder {
      width: 100%;
      height: 280px;
      background: linear-gradient(135deg, var(--surface), var(--surface2));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
    }
    .news-card.featured .news-img-placeholder { height: 340px; }

    .news-body { padding: 24px; }

    .news-cat {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 14px;
    }

    .cat-announcement { background: rgba(0,194,255,0.12); color: var(--accent); }
    .cat-team { background: rgba(0,255,200,0.1); color: var(--accent3); }
    .cat-culture { background: rgba(255,150,0,0.12); color: #ffaa00; }
    .cat-tech { background: rgba(150,0,255,0.12); color: #b060ff; }

    .news-title {
      font-family: 'Outfit', sans-serif;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.5px;
      line-height: 1.3;
      margin-bottom: 10px;
    }
    .news-card.featured .news-title { font-size: 26px; letter-spacing: 0px; }

    .news-excerpt {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .news-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      color: var(--muted2);
    }

    .news-author-dot {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--surface2);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px;
      font-weight: 700;
      color: var(--accent);
      font-family: 'Outfit', sans-serif;
    }

    /* Sidebar news items */
    .news-sidebar-item {
      display: flex;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }
    .news-sidebar-item:last-child { border-bottom: none; }

    .sidebar-img {
      width: 72px; height: 72px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0;
      background: var(--surface2);
      display: flex; align-items: center; justify-content: center;
      font-size: 24px;
    }

    .sidebar-content { flex: 1; }
    .sidebar-title { font-size: 14px; font-weight: 600; line-height: 1.4; margin-bottom: 4px; }
    .sidebar-date { font-size: 12px; color: var(--muted2); }

    /* Photos gallery */
    .gallery-section {
      padding: 0 48px 80px;
      max-width: 1280px;
      margin: 0 auto;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .gallery-item {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      aspect-ratio: 4/3;
      cursor: pointer;
      background: var(--surface);
    }

    .gallery-item:first-child {
      grid-column: span 2;
      aspect-ratio: 16/9;
    }

    .gallery-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
      display: block;
    }

    .gallery-item:hover .gallery-img { transform: scale(1.04); }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(6,8,16,0.8) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex;
      align-items: flex-end;
      padding: 16px;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-label { font-size: 13px; font-weight: 600; }

    /* ─── FOOTER ─── */
    footer {
      border-top: 1px solid var(--border);
      background: var(--bg);
      padding: 60px 48px 32px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      margin-top: 16px;
      max-width: 280px;
    }

    .footer-col h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 20px;
      color: var(--text);
    }

    .footer-col a {
      display: block;
      font-size: 14px;
      color: var(--muted);
      text-decoration: none;
      margin-bottom: 10px;
      transition: color 0.2s;
      cursor: pointer;
    }
    .footer-col a:hover { color: var(--text); }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: var(--muted2);
    }

    .status-dot {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--accent3);
    }
    .status-dot::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent3);
      display: inline-block;
      animation: pulse 2s ease infinite;
    }

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

    .animate { animation: fadeUp 0.5s ease both; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      nav { padding: 0 24px; }
      .features-grid, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
      .stats-bar { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .leadership-grid { grid-template-columns: 1fr; }
      .news-card.featured, .news-card.secondary, .news-card.thirds { grid-column: span 12; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gallery-item:first-child { grid-column: span 2; }
      .section, .emp-section, .gallery-section { padding-left: 24px; padding-right: 24px; }
      .news-grid { padding-left: 24px; padding-right: 24px; }
      .map-section { padding: 60px 24px; }
      .cta-banner { margin: 0 24px 60px; padding: 40px 24px; }
    }
/* ── NAV DROPDOWN ── */
.pt-nav { padding-top: 72px; }

.nav-links { position: relative; }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: " ▾"; font-size: 9px; opacity: 0.6; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.18s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 8px;
  font-size: 13px; color: var(--muted); text-decoration: none;
  transition: all 0.15s;
  font-family: "Source Sans 3", sans-serif;
}
.dropdown-menu a:hover { background: var(--surface); color: var(--text); }
.dropdown-menu a:hover, .dropdown-menu a.active { background: var(--surface); }

.nav-intranet {
  background: rgba(255,170,0,0.1) !important;
  border: 1px solid rgba(255,170,0,0.25) !important;
  color: #ffaa00 !important;
  border-radius: 8px;
}
.nav-intranet:hover { background: rgba(255,170,0,0.18) !important; }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--bg2); border-bottom: 1px solid var(--border); }
.bc-inner {
  max-width: 1280px; margin: 0 auto; padding: 12px 48px;
  font-size: 13px; color: var(--muted2); display: flex; align-items: center; gap: 6px;
}
.bc-link { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.bc-link:hover { color: var(--accent); }
.bc-sep { color: var(--muted2); font-size: 11px; }

/* ── SOLUTION HERO ── */
.sol-hero {
  padding: 80px 48px 100px;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.sol-hero-text .section-tag { margin-bottom: 14px; }
.sol-hero-text h1 { font-family: "Outfit",sans-serif; font-size: clamp(36px,4vw,54px); font-weight: 700; letter-spacing: -0.5px; line-height: 1.1; margin-bottom: 20px; }
.sol-hero-text p { font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.sol-hero-visual {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 20px;
  padding: 32px; aspect-ratio: 1; display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.sol-hero-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(0,194,255,0.07) 0%, transparent 70%);
}
.metric-row { display: flex; justify-content: space-between; }
.metric-box {
  flex: 1; padding: 20px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; margin: 4px; text-align: center;
}
.metric-val { font-family: "Outfit",sans-serif; font-size: 28px; font-weight: 700; color: var(--accent); }
.metric-lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }

/* ── SPEC TABLE ── */
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table th {
  text-align: left; padding: 12px 16px;
  background: var(--surface); color: var(--muted);
  font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.spec-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--muted); }
.spec-table td:first-child { color: var(--text); font-weight: 500; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:hover td { background: var(--surface); }
.spec-ok { color: var(--accent3); font-weight: 700; }
.spec-warn { color: #ffaa00; font-weight: 700; }

/* ── CODE BLOCK ── */
.code-block {
  background: #010409; border: 1px solid var(--border); border-radius: 12px;
  padding: 24px 28px; font-family: "JetBrains Mono", monospace; font-size: 13px;
  line-height: 1.8; overflow-x: auto; position: relative;
}
.code-block .c-key { color: #79c0ff; }
.code-block .c-str { color: #a5d6ff; }
.code-block .c-num { color: #f0883e; }
.code-block .c-cmt { color: #8b949e; }
.code-block .c-fn  { color: #d2a8ff; }
.code-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  color: var(--muted2); margin-bottom: 8px;
}

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; transition: all 0.3s; text-decoration: none; display: block;
}
.blog-card:hover { border-color: rgba(0,194,255,0.3); transform: translateY(-3px); }
.blog-thumb {
  width: 100%; height: 180px; object-fit: cover;
  background: var(--surface); display: block;
}
.blog-body { padding: 24px; }
.blog-title { font-family:"Outfit",sans-serif; font-size: 17px; font-weight: 700; color: var(--text); margin: 10px 0 8px; line-height: 1.35; }
.blog-excerpt { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.blog-meta { font-size: 12px; color: var(--muted2); display: flex; gap: 10px; align-items: center; }

/* ── ARTICLE ── */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 60px 48px 80px; }
.article-wrap h2 { font-family:"Outfit",sans-serif; font-size: 26px; font-weight: 700; letter-spacing: -0.3px; margin: 40px 0 16px; }
.article-wrap h3 { font-family:"Outfit",sans-serif; font-size: 20px; font-weight: 600; margin: 32px 0 12px; color: var(--text); }
.article-wrap p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.article-wrap ul, .article-wrap ol { padding-left: 24px; margin-bottom: 20px; }
.article-wrap li { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 8px; }
.article-hero-img { width: 100%; max-width: 900px; margin: 0 auto 40px; display: block; border-radius: 16px; aspect-ratio: 16/7; object-fit: cover; }
.article-header { max-width: 760px; margin: 0 auto; padding: 60px 48px 0; }
.article-header .news-cat { margin-bottom: 16px; }
.article-title { font-family:"Outfit",sans-serif; font-size: clamp(28px,4vw,42px); font-weight: 700; letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px; }
.article-meta { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--muted2); margin-bottom: 40px; }

/* ── STATUS PAGE ── */
.status-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,255,200,0.07); border: 1px solid rgba(0,255,200,0.2);
  border-radius: 12px; padding: 20px 28px; margin-bottom: 40px;
}
.status-ok { font-family:"Outfit",sans-serif; font-size: 20px; font-weight: 700; color: var(--accent3); }
.status-component {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 14px;
}
.status-component:last-child { border-bottom: none; }
.status-pill {
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.pill-ok   { background: rgba(0,255,200,0.1); color: var(--accent3); }
.pill-warn { background: rgba(255,170,0,0.1); color: #ffaa00; }
.pill-down { background: rgba(255,80,80,0.1); color: #ff5050; }
.uptime-row { display: flex; gap: 3px; margin-top: 6px; }
.uptime-bar { flex: 1; height: 6px; border-radius: 2px; background: var(--accent3); }
.uptime-bar.warn { background: #ffaa00; }
.uptime-bar.down { background: #ff5050; }

/* ── CAREERS ── */
.job-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 14px;
  padding: 28px 32px; display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px; transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.job-card:hover { border-color: rgba(0,194,255,0.3); background: var(--surface); }
.job-title { font-family:"Outfit",sans-serif; font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.job-meta { display: flex; gap: 12px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.job-tag { background: var(--surface2); padding: 3px 10px; border-radius: 6px; font-size: 12px; }
.job-apply { background: linear-gradient(135deg,var(--accent),var(--accent2)); color:#fff; padding:10px 24px; border-radius:8px; font-size:13px; font-weight:600; white-space:nowrap; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.form-input {
  width: 100%; background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px; font-size: 14px; color: var(--text);
  font-family: "Source Sans 3",sans-serif; transition: border-color 0.2s;
  outline: none;
}
.form-input:focus { border-color: var(--accent); }
textarea.form-input { resize: vertical; min-height: 120px; }
.office-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 24px; margin-bottom: 16px; }
.office-city { font-family:"Outfit",sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.office-addr { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── ABOUT ── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.value-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 32px; }
.value-icon { font-size: 28px; margin-bottom: 16px; }
.value-title { font-family:"Outfit",sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.value-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
.investor-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.investor-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 12px;
  padding: 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.investor-logo { font-family:"Outfit",sans-serif; font-size: 20px; font-weight: 800; color: var(--text); letter-spacing: -0.5px; }
.investor-type { font-size: 12px; color: var(--muted); }
.timeline { border-left: 2px solid var(--border); padding-left: 32px; margin-left: 16px; }
.tl-item { position: relative; margin-bottom: 36px; }
.tl-item::before {
  content: ''; position: absolute; left: -40px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); border: 2px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(0,194,255,0.2);
}
.tl-year { font-family:"Outfit",sans-serif; font-size: 13px; font-weight: 700; color: var(--accent); margin-bottom: 4px; }
.tl-title { font-family:"Outfit",sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.tl-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── PRESS ── */
.press-release { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 28px; margin-bottom: 16px; display: flex; gap: 28px; align-items: flex-start; }
.pr-date { font-size: 12px; color: var(--muted2); white-space: nowrap; margin-top: 4px; min-width: 90px; }
.pr-title { font-family:"Outfit",sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.pr-excerpt { font-size: 13px; color: var(--muted); line-height: 1.6; }
.media-logo {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 10px;
  padding: 20px 28px; font-family:"Outfit",sans-serif; font-size: 18px; font-weight: 700;
  color: var(--muted2); display: flex; align-items: center; justify-content: center;
}

/* ── NETWORK ── */
.pop-table { width: 100%; border-collapse: collapse; }
.pop-table th { text-align: left; padding: 10px 16px; background: var(--surface); border-bottom: 1px solid var(--border); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.pop-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--muted); }
.pop-table td:first-child { color: var(--text); font-weight: 500; }
.pop-online { display: inline-flex; align-items: center; gap: 6px; color: var(--accent3); font-size: 12px; font-weight: 600; }
.pop-online::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--accent3); display:inline-block; }

/* ── DOCS ── */
.docs-layout { display: grid; grid-template-columns: 240px 1fr; gap: 0; max-width: 1200px; margin: 0 auto; padding: 0 0 80px; }
.docs-sidebar { padding: 40px 24px; border-right: 1px solid var(--border); position: sticky; top: 72px; align-self: start; max-height: calc(100vh - 72px); overflow-y: auto; }
.docs-sidebar h3 { font-family:"Outfit",sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--muted2); margin: 24px 0 8px; font-weight: 600; }
.docs-sidebar h3:first-child { margin-top: 0; }
.docs-sidebar a { display: block; padding: 7px 12px; border-radius: 8px; font-size: 13px; color: var(--muted); text-decoration: none; transition: all 0.15s; }
.docs-sidebar a:hover { background: var(--surface); color: var(--text); }
.docs-sidebar a.active { background: rgba(0,194,255,0.1); color: var(--accent); }
.docs-content { padding: 40px 60px; }
.docs-content h1 { font-family:"Outfit",sans-serif; font-size: 36px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 12px; }
.docs-content h2 { font-family:"Outfit",sans-serif; font-size: 22px; font-weight: 700; margin: 40px 0 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.docs-content p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.docs-content ul { padding-left: 20px; margin-bottom: 18px; }
.docs-content li { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 6px; }
.callout { background: rgba(0,194,255,0.07); border: 1px solid rgba(0,194,255,0.2); border-left: 3px solid var(--accent); border-radius: 8px; padding: 16px 20px; margin: 24px 0; font-size: 14px; color: var(--muted); line-height: 1.7; }
.callout strong { color: var(--accent); }

/* ── PRICING EXTENDED ── */
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-q { font-family:"Outfit",sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── API PAGE ── */
.api-endpoint { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 20px; overflow: hidden; }
.api-ep-header { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.method { font-family:"JetBrains Mono",monospace; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 6px; }
.method-get  { background: rgba(0,255,200,0.1); color: var(--accent3); }
.method-post { background: rgba(0,194,255,0.1); color: var(--accent); }
.method-del  { background: rgba(255,80,80,0.1); color: #ff5050; }
.method-put  { background: rgba(255,170,0,0.1); color: #ffaa00; }
.api-path { font-family:"JetBrains Mono",monospace; font-size: 14px; color: var(--text); }
.api-desc { padding: 16px 20px; font-size: 13px; color: var(--muted); line-height: 1.6; }

@media (max-width: 900px) {
  .sol-hero { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .investor-grid { grid-template-columns: repeat(2,1fr); }
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .bc-inner { padding: 12px 24px; }
}
