/* ========== Custom Properties ========== */
    :root {
      --bg-base: #0a0a0f;
      --bg-surface: #111118;
      --bg-card: #16161f;
      --bg-card-hover: #1c1c28;
      --border: #1e1e2e;
      --border-glow: #2a2a3e;
      --text-primary: #e4e4ef;
      --text-secondary: #8888a0;
      --text-muted: #55556a;
      --accent-blue: #3b82f6;
      --accent-cyan: #22d3ee;
      --accent-purple: #a78bfa;
      --accent-green: #34d399;
      --glow-blue: rgba(59, 130, 246, 0.15);
      --glow-cyan: rgba(34, 211, 238, 0.12);
      --glow-purple: rgba(167, 139, 250, 0.12);
      --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      --font-mono: 'JetBrains Mono', monospace;
      --radius: 12px;
      --radius-sm: 8px;
    }

    /* ========== Reset & Base ========== */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
    }

    body {
      font-family: var(--font-sans);
      background: var(--bg-base);
      color: var(--text-primary);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      position: relative;
      overflow-x: hidden;
    }

    /* Dot-grid pattern overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image:
        radial-gradient(circle, rgba(136, 136, 160, 0.12) 1px, transparent 1px);
      background-size: 32px 32px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 100%);
      -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 100%);
    }

    /* Floating gradient orbs */
    body::after {
      content: '';
      position: fixed;
      top: 20%;
      right: -10%;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, rgba(59, 130, 246, 0.04) 40%, transparent 70%);
      pointer-events: none;
      z-index: 0;
      animation: floatOrb1 20s ease-in-out infinite;
    }

    @keyframes floatOrb1 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      25% { transform: translate(-40px, 30px) scale(1.05); }
      50% { transform: translate(-20px, -40px) scale(0.95); }
      75% { transform: translate(30px, 20px) scale(1.02); }
    }

    /* Second floating orb via a wrapper element — added in HTML */
    .bg-orb {
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }
    .bg-orb--1 {
      bottom: 10%;
      left: -5%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(167, 139, 250, 0.06) 0%, rgba(167, 139, 250, 0.03) 40%, transparent 70%);
      animation: floatOrb2 25s ease-in-out infinite;
    }
    .bg-orb--2 {
      top: 40%;
      left: 30%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(52, 211, 153, 0.04) 0%, transparent 60%);
      animation: floatOrb3 30s ease-in-out infinite;
    }

    @keyframes floatOrb2 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(50px, -30px) scale(1.08); }
      66% { transform: translate(-30px, 40px) scale(0.95); }
    }
    @keyframes floatOrb3 {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(40px, -50px); }
    }

    /* Ensure all main content sits above background layers */
    .navbar, section, .footer {
      position: relative;
      z-index: 1;
    }

    /* Particle canvas */
    #particleCanvas {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: 0.5;
    }

    /* Animated scan line on hero */
    .hero::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 200%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.3), rgba(34, 211, 238, 0.2), transparent);
      animation: scanLine 8s linear infinite;
      pointer-events: none;
      z-index: 0;
    }

    @keyframes scanLine {
      0% { top: 10%; }
      100% { top: 90%; }
    }

    /* Staggered entrance for tech cards */
    .tech-card {
      animation: cardEntrance 0.5s ease backwards;
    }
    .tech-card:nth-child(1) { animation-delay: 0.05s; }
    .tech-card:nth-child(2) { animation-delay: 0.1s; }
    .tech-card:nth-child(3) { animation-delay: 0.15s; }
    .tech-card:nth-child(4) { animation-delay: 0.2s; }

    @keyframes cardEntrance {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Shimmer effect on tech cards on hover */
    .tech-card::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(167, 139, 250, 0.03) 45%,
        rgba(167, 139, 250, 0.05) 50%,
        rgba(167, 139, 250, 0.03) 55%,
        transparent 60%
      );
      transform: translateX(-100%);
      transition: none;
      pointer-events: none;
      z-index: 0;
    }
    .tech-card:hover::after {
      animation: shimmer 0.8s ease forwards;
    }
    @keyframes shimmer {
      to { transform: translateX(60%); }
    }

    /* Section glow divider */
    .section-glow-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent-purple), var(--accent-cyan), transparent);
      opacity: 0.3;
      margin: 0;
    }

    /* Smooth scroll reveal for all sections */
    section {
      animation: sectionReveal 0.8s ease;
    }
    @keyframes sectionReveal {
      from { opacity: 0.8; }
      to { opacity: 1; }
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    /* ========== Layout ========== */
    .container {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }

    section {
      padding: 100px 0;
    }

    .section-title {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 12px;
      background: linear-gradient(135deg, var(--text-primary), var(--accent-purple));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-subtitle {
      color: var(--text-secondary);
      font-size: 1rem;
      margin-bottom: 48px;
    }

    /* ========== Scroll Animations ========== */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ========== Navigation ========== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(10, 10, 15, 0.8);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .navbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--text-primary);
    }

    .logo svg {
      width: 28px;
      height: 28px;
      color: var(--accent-purple);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text-secondary);
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--text-primary);
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--text-primary);
      cursor: pointer;
      padding: 4px;
    }

    .nav-toggle svg {
      width: 24px;
      height: 24px;
    }

    /* ========== Hero ========== */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 64px;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: 50%;
      transform: translateX(-50%);
      width: 1000px;
      height: 1000px;
      background:
        radial-gradient(ellipse at 30% 50%, rgba(167, 139, 250, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(59, 130, 246, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 80%, rgba(34, 211, 238, 0.08) 0%, transparent 50%);
      pointer-events: none;
      animation: heroColorShift 12s ease-in-out infinite alternate;
    }

    @keyframes heroColorShift {
      0% { opacity: 0.8; transform: translateX(-50%) scale(1); }
      50% { opacity: 1; transform: translateX(-48%) scale(1.05); }
      100% { opacity: 0.85; transform: translateX(-52%) scale(0.98); }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 680px;
    }

    .hero-tag {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 0.8rem;
      color: var(--accent-purple);
      background: rgba(167, 139, 250, 0.08);
      border: 1px solid rgba(167, 139, 250, 0.15);
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 24px;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 8px;
      background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-purple) 50%, var(--accent-purple) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-subline {
      font-size: clamp(1.1rem, 2.5vw, 1.35rem);
      font-weight: 600;
      color: var(--accent-purple);
      margin-bottom: 20px;
      font-family: var(--font-mono);
    }

    .hero-description {
      font-size: 1.05rem;
      color: var(--text-secondary);
      max-width: 520px;
      margin-bottom: 36px;
      line-height: 1.7;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      font-family: var(--font-sans);
      font-size: 0.9rem;
      font-weight: 600;
      border-radius: var(--radius-sm);
      border: none;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .btn-primary {
      background: var(--accent-purple);
      color: #fff;
      box-shadow: 0 0 20px var(--glow-purple);
    }

    .btn-primary:hover {
      background: #b9a2fa;
      box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
      transform: translateY(-1px);
    }

    .btn-primary svg {
      width: 16px;
      height: 16px;
    }

    /* ========== Non-Profit Banner ========== */
    .nonprofit-banner {
      position: relative;
      z-index: 1;
      padding: 48px 0;
    }

    .nonprofit-content {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      max-width: 800px;
      margin: 0 auto;
      padding: 28px 32px;
      background: linear-gradient(135deg, rgba(167, 139, 250, 0.06) 0%, rgba(34, 211, 238, 0.04) 100%);
      border: 1px solid rgba(167, 139, 250, 0.12);
      border-radius: var(--radius);
      position: relative;
      overflow: hidden;
    }

    .nonprofit-content::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan), var(--accent-green));
      opacity: 0.6;
    }

    .nonprofit-icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #f47b7b;
      animation: heartbeat 2s ease-in-out infinite;
    }

    .nonprofit-icon svg {
      width: 28px;
      height: 28px;
    }

    @keyframes heartbeat {
      0%, 100% { transform: scale(1); }
      15% { transform: scale(1.15); }
      30% { transform: scale(1); }
      45% { transform: scale(1.1); }
      60% { transform: scale(1); }
    }

    .nonprofit-text {
      flex: 1;
    }

    .nonprofit-text strong {
      display: block;
      font-size: 1rem;
      color: var(--text-primary);
      margin-bottom: 6px;
    }

    .nonprofit-text p {
      font-size: 0.88rem;
      color: var(--text-secondary);
      line-height: 1.65;
      margin: 0;
    }

    /* ========== ASN / Network ========== */
    .asn-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
    }

    .asn-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-cyan));
      opacity: 0.7;
    }

    .asn-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .asn-header-links {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .asn-badge {
      display: flex;
      align-items: center;
      gap: 14px;
      color: var(--accent-cyan);
    }

    .asn-badge svg {
      width: 36px;
      height: 36px;
      flex-shrink: 0;
    }

    .asn-number {
      display: block;
      font-family: var(--font-mono);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1.2;
    }

    .asn-label {
      display: block;
      font-size: 0.78rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .asn-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--accent-purple);
      padding: 8px 16px;
      background: rgba(167, 139, 250, 0.08);
      border: 1px solid rgba(167, 139, 250, 0.15);
      border-radius: 100px;
      transition: all 0.25s;
    }

    .asn-link:hover {
      background: rgba(167, 139, 250, 0.14);
      border-color: rgba(167, 139, 250, 0.3);
      gap: 10px;
    }

    .asn-link--secondary {
      background: rgba(255, 255, 255, 0.03);
      border-color: rgba(255, 255, 255, 0.08);
      color: var(--text-secondary);
    }

    .asn-link--secondary:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.15);
      color: var(--text-primary);
    }

    .asn-description {
      margin-bottom: 28px;
    }

    .asn-description p {
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.7;
      margin: 0;
    }

    .asn-description strong {
      color: var(--text-primary);
    }

    .asn-description em {
      color: var(--accent-cyan);
      font-style: normal;
      font-weight: 500;
    }

    .asn-features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .asn-feature {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.04);
      border-radius: var(--radius-sm);
      transition: all 0.3s;
    }

    .asn-feature:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: var(--border-glow);
      transform: translateY(-1px);
    }

    .asn-feature-icon {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .asn-feature-icon svg {
      width: 22px;
      height: 22px;
    }

    .asn-feature-text {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .asn-feature-text strong {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text-primary);
    }

    .asn-feature-text span {
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* ========== Services ========== */
    #services {
      background: var(--bg-surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .service-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 28px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent-purple), var(--accent-purple));
      opacity: 0;
      transition: opacity 0.3s;
    }

    .service-card:hover {
      background: var(--bg-card-hover);
      border-color: var(--border-glow);
      transform: translateY(-2px);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--glow-purple);
      border-radius: var(--radius-sm);
      margin-bottom: 20px;
      color: var(--accent-purple);
    }

    .service-card:nth-child(2) .service-icon {
      background: var(--glow-purple);
      color: var(--accent-purple);
    }

    .service-card:nth-child(3) .service-icon {
      background: rgba(167, 139, 250, 0.1);
      color: var(--accent-purple);
    }

    .service-card:nth-child(4) .service-icon {
      background: rgba(52, 211, 153, 0.1);
      color: var(--accent-green);
    }

    .service-icon svg {
      width: 24px;
      height: 24px;
    }

    .service-card h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .service-card p {
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.65;
    }

    /* ========== Tech Stack ========== */
    .tech-category {
      margin-bottom: 40px;
    }
    .tech-category:last-child {
      margin-bottom: 0;
    }

    .tech-category-title {
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--text-secondary);
      margin-bottom: 16px;
      padding-left: 16px;
      border-left: 3px solid var(--accent-purple);
    }

    .tech-category:nth-child(odd) .tech-category-title {
      border-left-color: var(--accent-cyan);
    }
    .tech-category:nth-child(3n) .tech-category-title {
      border-left-color: var(--accent-green);
    }

    .tech-card-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .tech-card {
      display: flex;
      align-items: center;
      gap: 14px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 16px 18px;
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      cursor: default;
      position: relative;
      overflow: hidden;
    }

    .tech-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(135deg, rgba(167, 139, 250, 0.04) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .tech-card:hover {
      background: var(--bg-card-hover);
      border-color: var(--border-glow);
      transform: translateY(-2px);
      box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(167, 139, 250, 0.08);
    }

    .tech-card:hover::before {
      opacity: 1;
    }

    .tech-card-logo {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: rgba(255, 255, 255, 0.04);
      border-radius: 8px;
      padding: 6px;
    }

    .tech-card-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: brightness(1.2);
    }

    .tech-card-logo svg {
      width: 22px;
      height: 22px;
    }

    .tech-card-info {
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 0;
    }

    .tech-card-name {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-primary);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .tech-card-desc {
      font-size: 0.75rem;
      color: var(--text-muted);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Keep older .tech-pill for customer section usage */
    .tech-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      font-size: 0.875rem;
      font-weight: 500;
      font-family: var(--font-mono);
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 100px;
      color: var(--text-primary);
      transition: all 0.3s ease;
      white-space: nowrap;
    }

<<<<<<< HEAD
    .tech-pill-interactive {
      display: flex;
      flex-direction: column;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      color: var(--text-primary);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      cursor: pointer;
      overflow: hidden;
      min-height: 48px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .tech-pill-interactive:not(.expanded):hover {
      border-color: var(--pill-color, var(--text-secondary));
      transform: translateY(-2px);
      box-shadow: 0 6px 16px color-mix(in srgb, var(--pill-color, var(--text-secondary)) 20%, transparent);
    }

    .tech-pill-header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 20px;
      font-size: 0.95rem;
      font-weight: 600;
      font-family: var(--font-mono);
      z-index: 2;
      background: inherit;
    }

    .tech-pill-interactive .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .tech-pill-desc {
      max-height: 0;
      opacity: 0;
      padding: 0 20px;
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.5;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
      transform: translateY(-10px);
    }

    /* Expanded State */
    .tech-pill-interactive.expanded {
      background: var(--bg-card-hover);
      transform: scale(1.02);
      z-index: 10;
      border-color: var(--pill-color, var(--text-secondary));
      box-shadow: 0 0 24px color-mix(in srgb, var(--pill-color, var(--text-secondary)) 30%, transparent);
    }

    .tech-pill-interactive.expanded .dot {
      transform: scale(1.2);
    }

    .tech-pill-interactive.expanded .tech-pill-desc {
      max-height: 100px;
      opacity: 1;
      padding: 0 20px 16px 20px;
      transform: translateY(0);
    }

=======
>>>>>>> e1c128d41a132a58d5d6eb696c468a32ca124a40
    /* ========== Status ========== */
    #status {
      background: var(--bg-surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .status-container {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 40px;
      text-align: center;
      max-width: 560px;
      margin: 0 auto;
    }

    .status-indicator {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 12px 24px;
      background: rgba(52, 211, 153, 0.06);
      border: 1px solid rgba(52, 211, 153, 0.15);
      border-radius: 100px;
      margin-bottom: 28px;
    }

    .status-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--accent-green);
      box-shadow: 0 0 12px var(--accent-green);
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    .status-text {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--accent-green);
    }

    .status-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--accent-purple);
      transition: all 0.2s;
    }

    .status-link:hover {
      color: var(--accent-purple);
      gap: 12px;
    }

    .status-link svg {
      width: 16px;
      height: 16px;
    }

    /* ========== Contact ========== */
    .contact-content {
      text-align: center;
      max-width: 480px;
      margin: 0 auto;
    }

    .contact-content .section-title,
    .contact-content .section-subtitle {
      text-align: center;
    }

    .contact-tagline {
      font-size: 1.15rem;
      color: var(--text-secondary);
      margin-bottom: 32px;
    }

    .contact-email {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-mono);
      font-size: 1.05rem;
      color: var(--accent-purple);
      padding: 14px 28px;
      background: var(--glow-purple);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: var(--radius-sm);
      transition: all 0.25s;
      margin-bottom: 28px;
    }

    .contact-email:hover {
      background: rgba(59, 130, 246, 0.12);
      border-color: var(--accent-purple);
      box-shadow: 0 0 20px var(--glow-purple);
    }

    .contact-email svg {
      width: 18px;
      height: 18px;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 16px;
    }

    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: var(--radius-sm);
      background: var(--bg-card);
      border: 1px solid var(--border);
      color: var(--text-secondary);
      transition: all 0.25s;
    }

    .social-link:hover {
      color: var(--text-primary);
      border-color: var(--border-glow);
      transform: translateY(-2px);
    }

    .social-link svg {
      width: 20px;
      height: 20px;
    }

    /* ========== Footer ========== */
    .footer {
      border-top: 1px solid var(--border);
      padding: 40px 0;
    }

    .footer .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .footer-text {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .footer-links {
      display: flex;
      gap: 24px;
      list-style: none;
    }

    .footer-links a {
      font-size: 0.8rem;
      color: var(--text-muted);
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--text-secondary);
    }

    /* ========== Responsive ========== */
    @media (max-width: 1024px) {
      .tech-card-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 72px 0;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
      }

      .nav-links.open {
        display: flex;
      }

      .nav-toggle {
        display: block;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .status-container {
        padding: 28px 24px;
      }

      .tech-card-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .asn-features {
        grid-template-columns: 1fr;
      }

      .nonprofit-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding: 0 16px;
      }

      .hero-tag {
        font-size: 0.75rem;
      }

      .service-card {
        padding: 24px 20px;
      }

      .tech-card-grid {
        grid-template-columns: 1fr;
      }
    }
